From 2f0bfd90b2ddf266dbe6fc96bc6cb98b1019cfff Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Thu, 23 Oct 2025 02:27:20 -0400 Subject: [PATCH 01/25] first commit --- biergarten.sql | 410 +++++++++++++++++++++++++++++++++++++++++++++ docker-compose.yml | 14 ++ 2 files changed, 424 insertions(+) create mode 100644 biergarten.sql create mode 100644 docker-compose.yml diff --git a/biergarten.sql b/biergarten.sql new file mode 100644 index 0000000..1297b47 --- /dev/null +++ b/biergarten.sql @@ -0,0 +1,410 @@ +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- + +USE master; + +IF EXISTS (SELECT name +FROM sys.databases +WHERE name = N'Biergarten') +BEGIN + ALTER DATABASE Biergarten SET SINGLE_USER WITH ROLLBACK IMMEDIATE; +END +GO + +DROP DATABASE IF EXISTS Biergarten; +GO + +CREATE DATABASE Biergarten; +GO + +USE Biergarten; + +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- + +CREATE TABLE UserAccount +( + UserAccountID UNIQUEIDENTIFIER + CONSTRAINT DF_UserAccountID DEFAULT NEWID(), + + Username VARCHAR(64) NOT NULL, + + FirstName NVARCHAR(128) NOT NULL, + + LastName NVARCHAR(128) NOT NULL, + + Email VARCHAR(128) NOT NULL, + + CreatedAt DATETIME NOT NULL, + + UpdatedAt DATETIME, + + DateOfBirth DATETIME NOT NULL, + + CONSTRAINT PK_UserAccount + PRIMARY KEY (UserAccountID), + + CONSTRAINT AK_Username + UNIQUE (Username), + + CONSTRAINT AK_Email + UNIQUE (Email), + +); +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- +CREATE TABLE Comment +( + CommentID UNIQUEIDENTIFIER + CONSTRAINT DF_CommentID DEFAULT NEWID(), + + CommentText NVARCHAR(512), + + PostedByID UNIQUEIDENTIFIER NOT NULL, + + CONSTRAINT PK_CommentID + PRIMARY KEY (CommentID), + + CONSTRAINT FK_PostedByID + FOREIGN KEY (PostedByID) REFERENCES UserAccount(UserAccountID), +) + +CREATE NONCLUSTERED INDEX IX_Comment_PostedByID +ON Comment(PostedByID); + +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- + +CREATE TABLE Photo -- All photos must be linked to a user account, you cannot delete a user account if they have uploaded photos +( + PhotoID UNIQUEIDENTIFIER + CONSTRAINT DF_PhotoID DEFAULT NEWID(), + + Hyperlink NVARCHAR(256), + -- storage is handled via filesystem or cloud service + + UploadedByID UNIQUEIDENTIFIER NOT NULL, + + UploadedAt DATETIME NOT NULL + CONSTRAINT DF_Photo_UploadedAt DEFAULT GETDATE(), + + CONSTRAINT PK_Photo + PRIMARY KEY (PhotoID), + + CONSTRAINT FK_Photo_UploadedBy + FOREIGN KEY (UploadedByID) + REFERENCES UserAccount(UserAccountID) + ON DELETE NO ACTION +); + +CREATE NONCLUSTERED INDEX IX_Photo_UploadedByID + ON Photo(UploadedByID); + +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- + +CREATE TABLE UserAvatar -- delete avatar photo when user account is deleted +( + UserAvatarID UNIQUEIDENTIFIER + CONSTRAINT DF_UserAvatarID DEFAULT NEWID(), + + UserAccountID UNIQUEIDENTIFIER NOT NULL, + + PhotoID UNIQUEIDENTIFIER NOT NULL, + + CONSTRAINT PK_UserAvatar PRIMARY KEY (UserAvatarID), + + CONSTRAINT FK_UserAvatar_UserAccount + FOREIGN KEY (UserAccountID) + REFERENCES UserAccount(UserAccountID) + ON DELETE CASCADE, + + CONSTRAINT FK_UserAvatar_PhotoID + FOREIGN KEY (PhotoID) + REFERENCES Photo(PhotoID), + + CONSTRAINT AK_UserAvatar_UserAccountID + UNIQUE (UserAccountID) +) + +CREATE NONCLUSTERED INDEX IX_UserAvatar_UserAccount + ON UserAvatar(UserAccountID); + +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- + +CREATE TABLE UserVerification -- delete verification data when user account is deleted +( + UserVerificationID UNIQUEIDENTIFIER + CONSTRAINT DF_UserVerificationID DEFAULT NEWID(), + + UserAccountID UNIQUEIDENTIFIER NOT NULL, + + VerificationDateTime DATETIME NOT NULL + CONSTRAINT DF_VerificationDateTime + DEFAULT GETDATE(), + + CONSTRAINT PK_UserVerification + PRIMARY KEY (UserVerificationID), + + CONSTRAINT FK_UserVerification_UserAccount + FOREIGN KEY (UserAccountID) + REFERENCES UserAccount(UserAccountID) + ON DELETE CASCADE, + + CONSTRAINT AK_UserVerification_UserAccountID + UNIQUE (UserAccountID) +); + +CREATE NONCLUSTERED INDEX IX_UserVerification_UserAccount + ON UserVerification(UserAccountID); + +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- + +CREATE TABLE UserCredential -- delete credentials when user account is deleted +( + UserCredentialID UNIQUEIDENTIFIER + CONSTRAINT DF_UserCredentialID DEFAULT NEWID(), + + UserAccountID UNIQUEIDENTIFIER NOT NULL, + + CreatedAt DATETIME + CONSTRAINT DF_UserCredential_CreatedAt DEFAULT GETDATE() NOT NULL, + + Expiry DATETIME + CONSTRAINT DF_UserCredential_Expiry DEFAULT DATEADD(DAY, 90, GETDATE()) NOT NULL, + + Hash NVARCHAR(100) NOT NULL, + -- uses argon2 + + CONSTRAINT PK_UserCredential + PRIMARY KEY (UserCredentialID), + + CONSTRAINT FK_UserCredential_UserAccount + FOREIGN KEY (UserAccountID) + REFERENCES UserAccount(UserAccountID) + ON DELETE CASCADE, + + CONSTRAINT AK_UserCredential_UserAccountID + UNIQUE (UserAccountID) +); + +CREATE NONCLUSTERED INDEX IX_UserCredential_UserAccount + ON UserCredential(UserAccountID); + +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- + +CREATE TABLE UserFollow +( + UserFollowID UNIQUEIDENTIFIER + CONSTRAINT DF_UserFollowID DEFAULT NEWID(), + + UserAccountID UNIQUEIDENTIFIER NOT NULL, + + FollowingID UNIQUEIDENTIFIER NOT NULL, + + CreatedAt DATETIME + CONSTRAINT DF_UserFollow_CreatedAt DEFAULT GETDATE() NOT NULL, + + CONSTRAINT PK_UserFollow + PRIMARY KEY (UserFollowID), + + CONSTRAINT FK_UserFollow_UserAccount + FOREIGN KEY (UserAccountID) + REFERENCES UserAccount(UserAccountID), + + CONSTRAINT FK_UserFollow_UserAccountFollowing + FOREIGN KEY (FollowingID) + REFERENCES UserAccount(UserAccountID), + + CONSTRAINT CK_CannotFollowOwnAccount + CHECK (UserAccountID != FollowingID) +); + +CREATE NONCLUSTERED INDEX IX_UserFollow_UserAccount_FollowingID + ON UserFollow(UserAccountID, FollowingID); + +CREATE NONCLUSTERED INDEX IX_UserFollow_FollowingID_UserAccount + ON UserFollow(FollowingID, UserAccountID); + +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- + +CREATE TABLE BreweryPost -- A user cannot be deleted if they have a post +( + BreweryPostID UNIQUEIDENTIFIER + CONSTRAINT DF_BreweryPostID DEFAULT NEWID(), + + PostedByID UNIQUEIDENTIFIER NOT NULL, + + Description NVARCHAR(512) NOT NULL, + + CreatedAt DATETIME NOT NULL + CONSTRAINT DF_BreweryPost_CreatedAt DEFAULT GETDATE(), + + UpdatedAt DATETIME NULL, + + CONSTRAINT PK_BreweryPost + PRIMARY KEY (BreweryPostID), + + CONSTRAINT FK_BreweryPost_UserAccount + FOREIGN KEY (PostedByID) + REFERENCES UserAccount(UserAccountID) + ON DELETE NO ACTION +) + +CREATE NONCLUSTERED INDEX IX_BreweryPost_PostedByID + ON BreweryPost(PostedByID); + +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- + +CREATE TABLE BreweryPostPhoto -- All photos linked to a post are deleted if the post is deleted +( + BreweryPostPhotoID UNIQUEIDENTIFIER + CONSTRAINT DF_BreweryPostPhotoID DEFAULT NEWID(), + + BreweryPostID UNIQUEIDENTIFIER NOT NULL, + + PhotoID UNIQUEIDENTIFIER NOT NULL, + + LinkedAt DATETIME NOT NULL + CONSTRAINT DF_BreweryPostPhoto_LinkedAt DEFAULT GETDATE(), + + CONSTRAINT PK_BreweryPostPhoto + PRIMARY KEY (BreweryPostPhotoID), + + CONSTRAINT FK_BreweryPostPhoto_BreweryPost + FOREIGN KEY (BreweryPostID) + REFERENCES BreweryPost(BreweryPostID) + ON DELETE CASCADE, + + CONSTRAINT FK_BreweryPostPhoto_Photo + FOREIGN KEY (PhotoID) + REFERENCES Photo(PhotoID) + ON DELETE CASCADE +); + +CREATE NONCLUSTERED INDEX IX_BreweryPostPhoto_Photo_BreweryPost +ON BreweryPostPhoto(PhotoID, BreweryPostID); + +CREATE NONCLUSTERED INDEX IX_BreweryPostPhoto_BreweryPost_Photo +ON BreweryPostPhoto(BreweryPostID, PhotoID); + +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- +CREATE TABLE BeerStyle +( + BeerStyleID UNIQUEIDENTIFIER + CONSTRAINT DF_BeerStyleID DEFAULT NEWID(), + + StyleName NVARCHAR(100) NOT NULL, + + Description NVARCHAR(MAX), + + CONSTRAINT PK_BeerStyle + PRIMARY KEY (BeerStyleID), + + CONSTRAINT AK_BeerStyle_StyleName + UNIQUE (StyleName) +); + +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- + +CREATE TABLE BeerPost +( + BeerPostID UNIQUEIDENTIFIER + CONSTRAINT DF_BeerPostID DEFAULT NEWID(), + + Name NVARCHAR(100) NOT NULL, + + Description NVARCHAR(MAX), + + ABV DECIMAL(4,2), + -- Alcohol By Volume (typically 0-67%) + + IBU INT, + -- International Bitterness Units (typically 0-100) + + PostedByID UNIQUEIDENTIFIER NOT NULL, + + BeerStyleID UNIQUEIDENTIFIER NOT NULL, + + BrewedByID UNIQUEIDENTIFIER NOT NULL, + + CreatedAt DATETIME NOT NULL + CONSTRAINT DF_BeerPost_CreatedAt DEFAULT GETDATE(), + + UpdatedAt DATETIME, + + CONSTRAINT PK_BeerPost + PRIMARY KEY (BeerPostID), + + CONSTRAINT FK_BeerPost_PostedBy + FOREIGN KEY (PostedByID) + REFERENCES UserAccount(UserAccountID), + + CONSTRAINT FK_BeerPost_BeerStyle + FOREIGN KEY (BeerStyleID) + REFERENCES BeerStyle(BeerStyleID), + + CONSTRAINT FK_BeerPost_Brewery + FOREIGN KEY (BrewedByID) + REFERENCES BreweryPost(BreweryPostID), + + CONSTRAINT CHK_BeerPost_ABV + CHECK (ABV >= 0 AND ABV <= 67), + + CONSTRAINT CHK_BeerPost_IBU + CHECK (IBU >= 0 AND IBU <= 120) +); + +CREATE NONCLUSTERED INDEX IX_BeerPost_PostedBy + ON BeerPost(PostedByID); + +CREATE NONCLUSTERED INDEX IX_BeerPost_BeerStyle + ON BeerPost(BeerStyleID); + +CREATE NONCLUSTERED INDEX IX_BeerPost_BrewedBy + ON BeerPost(BrewedByID); + +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- + +CREATE TABLE BeerPostPhoto -- All photos linked to a beer post are deleted if the post is deleted +( + BeerPostPhotoID UNIQUEIDENTIFIER + CONSTRAINT DF_BeerPostPhotoID DEFAULT NEWID(), + + BeerPostID UNIQUEIDENTIFIER NOT NULL, + + PhotoID UNIQUEIDENTIFIER NOT NULL, + + LinkedAt DATETIME NOT NULL + CONSTRAINT DF_BeerPostPhoto_LinkedAt DEFAULT GETDATE(), + + CONSTRAINT PK_BeerPostPhoto + PRIMARY KEY (BeerPostPhotoID), + + CONSTRAINT FK_BeerPostPhoto_BeerPost + FOREIGN KEY (BeerPostID) + REFERENCES BeerPost(BeerPostID) + ON DELETE CASCADE, + + CONSTRAINT FK_BeerPostPhoto_Photo + FOREIGN KEY (PhotoID) + REFERENCES Photo(PhotoID) + ON DELETE CASCADE +); + +CREATE NONCLUSTERED INDEX IX_BeerPostPhoto_Photo_BeerPost +ON BeerPostPhoto(PhotoID, BeerPostID); + +CREATE NONCLUSTERED INDEX IX_BeerPostPhoto_BeerPost_Photo +ON BeerPostPhoto(BeerPostID, PhotoID); + +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..d551229 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,14 @@ +services: + sqlserver: + image: mcr.microsoft.com/mssql/server:2022-latest + container_name: sqlserver + environment: + ACCEPT_EULA: "Y" + MSSQL_SA_PASSWORD: "YourStrong!Passw0rd" + ports: + - "1433:1433" + volumes: + - sqlserverdata:/var/opt/mssql + +volumes: + sqlserverdata: \ No newline at end of file From 738c055bf7650a9f2d962f51acfba0deefb10b64 Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Tue, 28 Oct 2025 18:28:30 -0400 Subject: [PATCH 02/25] begin scaffolding data access layer --- .gitignore | 428 ++++++++++++++++++ .../DataAccessLayer-Tests.csproj | 23 + DataAccessLayer/BeerPost.cs | 35 ++ DataAccessLayer/BeerPostPhoto.cs | 19 + DataAccessLayer/BeerStyle.cs | 15 + DataAccessLayer/BiergartenContext.cs | 300 ++++++++++++ DataAccessLayer/BreweryPost.cs | 23 + DataAccessLayer/BreweryPostPhoto.cs | 19 + DataAccessLayer/Comment.cs | 15 + DataAccessLayer/DataAccessLayer.csproj | 18 + DataAccessLayer/Photo.cs | 23 + DataAccessLayer/UserAccount.cs | 41 ++ DataAccessLayer/UserAvatar.cs | 17 + DataAccessLayer/UserCredential.cs | 19 + DataAccessLayer/UserFollow.cs | 19 + DataAccessLayer/UserVerification.cs | 15 + biergarten.sln | 31 ++ biergarten.sql => schema.sql | 14 +- 18 files changed, 1071 insertions(+), 3 deletions(-) create mode 100644 .gitignore create mode 100644 DataAccessLayer-Tests/DataAccessLayer-Tests.csproj create mode 100644 DataAccessLayer/BeerPost.cs create mode 100644 DataAccessLayer/BeerPostPhoto.cs create mode 100644 DataAccessLayer/BeerStyle.cs create mode 100644 DataAccessLayer/BiergartenContext.cs create mode 100644 DataAccessLayer/BreweryPost.cs create mode 100644 DataAccessLayer/BreweryPostPhoto.cs create mode 100644 DataAccessLayer/Comment.cs create mode 100644 DataAccessLayer/DataAccessLayer.csproj create mode 100644 DataAccessLayer/Photo.cs create mode 100644 DataAccessLayer/UserAccount.cs create mode 100644 DataAccessLayer/UserAvatar.cs create mode 100644 DataAccessLayer/UserCredential.cs create mode 100644 DataAccessLayer/UserFollow.cs create mode 100644 DataAccessLayer/UserVerification.cs create mode 100644 biergarten.sln rename biergarten.sql => schema.sql (96%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..47a94ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,428 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates +*.env + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ + +[Dd]ebug/x64/ +[Dd]ebugPublic/x64/ +[Rr]elease/x64/ +[Rr]eleases/x64/ +bin/x64/ +obj/x64/ + +[Dd]ebug/x86/ +[Dd]ebugPublic/x86/ +[Rr]elease/x86/ +[Rr]eleases/x86/ +bin/x86/ +obj/x86/ + +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +[Aa][Rr][Mm]64[Ee][Cc]/ +bld/ +[Oo]bj/ +[Oo]ut/ +[Ll]og/ +[Ll]ogs/ + +# Build results on 'Bin' directories +**/[Bb]in/* +# Uncomment if you have tasks that rely on *.refresh files to move binaries +# (https://github.com/github/gitignore/pull/3736) +#!**/[Bb]in/*.refresh + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* +*.trx + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Approval Tests result files +*.received.* + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.idb +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +# but not Directory.Build.rsp, as it configures directory-level build defaults +!Directory.Build.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.tlog +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio 6 workspace and project file (working project files containing files to include in project) +*.dsw +*.dsp + +# Visual Studio 6 technical files +*.ncb +*.aps + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +**/.paket/paket.exe +paket-files/ + +# FAKE - F# Make +**/.fake/ + +# CodeRush personal settings +**/.cr/personal + +# Python Tools for Visual Studio (PTVS) +**/__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +#tools/** +#!tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog +MSBuild_Logs/ + +# AWS SAM Build and Temporary Artifacts folder +.aws-sam + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +**/.mfractor/ + +# Local History for Visual Studio +**/.localhistory/ + +# Visual Studio History (VSHistory) files +.vshistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +**/.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd + +# VS Code files for those working on multiple tools +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +# Windows Installer files from build outputs +*.cab +*.msi +*.msix +*.msm +*.msp diff --git a/DataAccessLayer-Tests/DataAccessLayer-Tests.csproj b/DataAccessLayer-Tests/DataAccessLayer-Tests.csproj new file mode 100644 index 0000000..9c5b30a --- /dev/null +++ b/DataAccessLayer-Tests/DataAccessLayer-Tests.csproj @@ -0,0 +1,23 @@ + + + + net8.0 + enable + enable + + false + true + + + + + + + + + + + + + + diff --git a/DataAccessLayer/BeerPost.cs b/DataAccessLayer/BeerPost.cs new file mode 100644 index 0000000..3242b91 --- /dev/null +++ b/DataAccessLayer/BeerPost.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; + +namespace DataAccessLayer; + +public partial class BeerPost +{ + public Guid BeerPostID { get; set; } + + public string Name { get; set; } = null!; + + public string Description { get; set; } = null!; + + public decimal ABV { get; set; } + + public int IBU { get; set; } + + public Guid PostedByID { get; set; } + + public Guid BeerStyleID { get; set; } + + public Guid BrewedByID { get; set; } + + public DateTime CreatedAt { get; set; } + + public DateTime? UpdatedAt { get; set; } + + public virtual ICollection BeerPostPhotos { get; set; } = new List(); + + public virtual BeerStyle BeerStyle { get; set; } = null!; + + public virtual BreweryPost BrewedBy { get; set; } = null!; + + public virtual UserAccount PostedBy { get; set; } = null!; +} diff --git a/DataAccessLayer/BeerPostPhoto.cs b/DataAccessLayer/BeerPostPhoto.cs new file mode 100644 index 0000000..cdb8963 --- /dev/null +++ b/DataAccessLayer/BeerPostPhoto.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; + +namespace DataAccessLayer; + +public partial class BeerPostPhoto +{ + public Guid BeerPostPhotoID { get; set; } + + public Guid BeerPostID { get; set; } + + public Guid PhotoID { get; set; } + + public DateTime LinkedAt { get; set; } + + public virtual BeerPost BeerPost { get; set; } = null!; + + public virtual Photo Photo { get; set; } = null!; +} diff --git a/DataAccessLayer/BeerStyle.cs b/DataAccessLayer/BeerStyle.cs new file mode 100644 index 0000000..4af1a81 --- /dev/null +++ b/DataAccessLayer/BeerStyle.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; + +namespace DataAccessLayer; + +public partial class BeerStyle +{ + public Guid BeerStyleID { get; set; } + + public string StyleName { get; set; } = null!; + + public string? Description { get; set; } + + public virtual ICollection BeerPosts { get; set; } = new List(); +} diff --git a/DataAccessLayer/BiergartenContext.cs b/DataAccessLayer/BiergartenContext.cs new file mode 100644 index 0000000..883a87d --- /dev/null +++ b/DataAccessLayer/BiergartenContext.cs @@ -0,0 +1,300 @@ +using System; +using System.Collections.Generic; +using Microsoft.EntityFrameworkCore; + +namespace DataAccessLayer; + +public partial class BiergartenContext : DbContext +{ + public BiergartenContext() + { + } + + public BiergartenContext(DbContextOptions options) + : base(options) + { + } + + public virtual DbSet BeerPosts { get; set; } + + public virtual DbSet BeerPostPhotos { get; set; } + + public virtual DbSet BeerStyles { get; set; } + + public virtual DbSet BreweryPosts { get; set; } + + public virtual DbSet BreweryPostPhotos { get; set; } + + public virtual DbSet Comments { get; set; } + + public virtual DbSet Photos { get; set; } + + public virtual DbSet UserAccounts { get; set; } + + public virtual DbSet UserAvatars { get; set; } + + public virtual DbSet UserCredentials { get; set; } + + public virtual DbSet UserFollows { get; set; } + + public virtual DbSet UserVerifications { get; set; } + + protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) +#warning To protect potentially sensitive information in your connection string, you should move it out of source code. You can avoid scaffolding the connection string by using the Name= syntax to read it from configuration - see https://go.microsoft.com/fwlink/?linkid=2131148. For more guidance on storing connection strings, see https://go.microsoft.com/fwlink/?LinkId=723263. + => optionsBuilder.UseSqlServer("Server=(localdb)\\ProjectModels;Database=Biergarten;Trusted_Connection=True;"); + + protected override void OnModelCreating(ModelBuilder modelBuilder) + { + modelBuilder.Entity(entity => + { + entity.ToTable("BeerPost"); + + entity.HasIndex(e => e.BeerStyleID, "IX_BeerPost_BeerStyle"); + + entity.HasIndex(e => e.BrewedByID, "IX_BeerPost_BrewedBy"); + + entity.HasIndex(e => e.PostedByID, "IX_BeerPost_PostedBy"); + + entity.Property(e => e.BeerPostID).HasDefaultValueSql("(newid())"); + entity.Property(e => e.ABV).HasColumnType("decimal(4, 2)"); + entity.Property(e => e.CreatedAt) + .HasDefaultValueSql("(getdate())") + .HasColumnType("datetime"); + entity.Property(e => e.Name).HasMaxLength(100); + entity.Property(e => e.UpdatedAt).HasColumnType("datetime"); + + entity.HasOne(d => d.BeerStyle).WithMany(p => p.BeerPosts) + .HasForeignKey(d => d.BeerStyleID) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("FK_BeerPost_BeerStyle"); + + entity.HasOne(d => d.BrewedBy).WithMany(p => p.BeerPosts) + .HasForeignKey(d => d.BrewedByID) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("FK_BeerPost_Brewery"); + + entity.HasOne(d => d.PostedBy).WithMany(p => p.BeerPosts) + .HasForeignKey(d => d.PostedByID) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("FK_BeerPost_PostedBy"); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("BeerPostPhoto"); + + entity.HasIndex(e => new { e.BeerPostID, e.PhotoID }, "IX_BeerPostPhoto_BeerPost_Photo"); + + entity.HasIndex(e => new { e.PhotoID, e.BeerPostID }, "IX_BeerPostPhoto_Photo_BeerPost"); + + entity.Property(e => e.BeerPostPhotoID).HasDefaultValueSql("(newid())"); + entity.Property(e => e.LinkedAt) + .HasDefaultValueSql("(getdate())") + .HasColumnType("datetime"); + + entity.HasOne(d => d.BeerPost).WithMany(p => p.BeerPostPhotos) + .HasForeignKey(d => d.BeerPostID) + .HasConstraintName("FK_BeerPostPhoto_BeerPost"); + + entity.HasOne(d => d.Photo).WithMany(p => p.BeerPostPhotos) + .HasForeignKey(d => d.PhotoID) + .HasConstraintName("FK_BeerPostPhoto_Photo"); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("BeerStyle"); + + entity.HasIndex(e => e.StyleName, "AK_BeerStyle_StyleName").IsUnique(); + + entity.Property(e => e.BeerStyleID).HasDefaultValueSql("(newid())"); + entity.Property(e => e.StyleName).HasMaxLength(100); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("BreweryPost"); + + entity.HasIndex(e => e.PostedByID, "IX_BreweryPost_PostedByID"); + + entity.Property(e => e.BreweryPostID).HasDefaultValueSql("(newid())"); + entity.Property(e => e.CreatedAt) + .HasDefaultValueSql("(getdate())") + .HasColumnType("datetime"); + entity.Property(e => e.Description).HasMaxLength(512); + entity.Property(e => e.UpdatedAt).HasColumnType("datetime"); + + entity.HasOne(d => d.PostedBy).WithMany(p => p.BreweryPosts) + .HasForeignKey(d => d.PostedByID) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("FK_BreweryPost_UserAccount"); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("BreweryPostPhoto"); + + entity.HasIndex(e => new { e.BreweryPostID, e.PhotoID }, "IX_BreweryPostPhoto_BreweryPost_Photo"); + + entity.HasIndex(e => new { e.PhotoID, e.BreweryPostID }, "IX_BreweryPostPhoto_Photo_BreweryPost"); + + entity.Property(e => e.BreweryPostPhotoID).HasDefaultValueSql("(newid())"); + entity.Property(e => e.LinkedAt) + .HasDefaultValueSql("(getdate())") + .HasColumnType("datetime"); + + entity.HasOne(d => d.BreweryPost).WithMany(p => p.BreweryPostPhotos) + .HasForeignKey(d => d.BreweryPostID) + .HasConstraintName("FK_BreweryPostPhoto_BreweryPost"); + + entity.HasOne(d => d.Photo).WithMany(p => p.BreweryPostPhotos) + .HasForeignKey(d => d.PhotoID) + .HasConstraintName("FK_BreweryPostPhoto_Photo"); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.CommentID).HasName("PK_CommentID"); + + entity.ToTable("Comment"); + + entity.HasIndex(e => e.PostedByID, "IX_Comment_PostedByID"); + + entity.Property(e => e.CommentID).HasDefaultValueSql("(newid())"); + entity.Property(e => e.CommentText).HasMaxLength(512); + + entity.HasOne(d => d.PostedBy).WithMany(p => p.Comments) + .HasForeignKey(d => d.PostedByID) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("FK_PostedByID"); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("Photo"); + + entity.HasIndex(e => e.UploadedByID, "IX_Photo_UploadedByID"); + + entity.Property(e => e.PhotoID).HasDefaultValueSql("(newid())"); + entity.Property(e => e.Hyperlink).HasMaxLength(256); + entity.Property(e => e.UploadedAt) + .HasDefaultValueSql("(getdate())") + .HasColumnType("datetime"); + + entity.HasOne(d => d.UploadedBy).WithMany(p => p.Photos) + .HasForeignKey(d => d.UploadedByID) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("FK_Photo_UploadedBy"); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("UserAccount"); + + entity.HasIndex(e => e.Email, "AK_Email").IsUnique(); + + entity.HasIndex(e => e.Username, "AK_Username").IsUnique(); + + entity.Property(e => e.UserAccountID).HasDefaultValueSql("(newid())"); + entity.Property(e => e.CreatedAt).HasColumnType("datetime"); + entity.Property(e => e.DateOfBirth).HasColumnType("datetime"); + entity.Property(e => e.Email) + .HasMaxLength(128) + .IsUnicode(false); + entity.Property(e => e.FirstName).HasMaxLength(128); + entity.Property(e => e.LastName).HasMaxLength(128); + entity.Property(e => e.UpdatedAt).HasColumnType("datetime"); + entity.Property(e => e.Username) + .HasMaxLength(64) + .IsUnicode(false); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("UserAvatar"); + + entity.HasIndex(e => e.UserAccountID, "AK_UserAvatar_UserAccountID").IsUnique(); + + entity.HasIndex(e => e.UserAccountID, "IX_UserAvatar_UserAccount"); + + entity.Property(e => e.UserAvatarID).HasDefaultValueSql("(newid())"); + + entity.HasOne(d => d.Photo).WithMany(p => p.UserAvatars) + .HasForeignKey(d => d.PhotoID) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("FK_UserAvatar_PhotoID"); + + entity.HasOne(d => d.UserAccount).WithOne(p => p.UserAvatar) + .HasForeignKey(d => d.UserAccountID) + .HasConstraintName("FK_UserAvatar_UserAccount"); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("UserCredential"); + + entity.HasIndex(e => e.UserAccountID, "AK_UserCredential_UserAccountID").IsUnique(); + + entity.HasIndex(e => e.UserAccountID, "IX_UserCredential_UserAccount"); + + entity.Property(e => e.UserCredentialID).HasDefaultValueSql("(newid())"); + entity.Property(e => e.CreatedAt) + .HasDefaultValueSql("(getdate())") + .HasColumnType("datetime"); + entity.Property(e => e.Expiry) + .HasDefaultValueSql("(dateadd(day,(90),getdate()))") + .HasColumnType("datetime"); + entity.Property(e => e.Hash).HasMaxLength(100); + + entity.HasOne(d => d.UserAccount).WithOne(p => p.UserCredential) + .HasForeignKey(d => d.UserAccountID) + .HasConstraintName("FK_UserCredential_UserAccount"); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("UserFollow"); + + entity.HasIndex(e => new { e.FollowingID, e.UserAccountID }, "IX_UserFollow_FollowingID_UserAccount"); + + entity.HasIndex(e => new { e.UserAccountID, e.FollowingID }, "IX_UserFollow_UserAccount_FollowingID"); + + entity.Property(e => e.UserFollowID).HasDefaultValueSql("(newid())"); + entity.Property(e => e.CreatedAt) + .HasDefaultValueSql("(getdate())") + .HasColumnType("datetime"); + + entity.HasOne(d => d.Following).WithMany(p => p.UserFollowFollowings) + .HasForeignKey(d => d.FollowingID) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("FK_UserFollow_UserAccountFollowing"); + + entity.HasOne(d => d.UserAccount).WithMany(p => p.UserFollowUserAccounts) + .HasForeignKey(d => d.UserAccountID) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("FK_UserFollow_UserAccount"); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("UserVerification"); + + entity.HasIndex(e => e.UserAccountID, "AK_UserVerification_UserAccountID").IsUnique(); + + entity.HasIndex(e => e.UserAccountID, "IX_UserVerification_UserAccount"); + + entity.Property(e => e.UserVerificationID).HasDefaultValueSql("(newid())"); + entity.Property(e => e.VerificationDateTime) + .HasDefaultValueSql("(getdate())") + .HasColumnType("datetime"); + + entity.HasOne(d => d.UserAccount).WithOne(p => p.UserVerification) + .HasForeignKey(d => d.UserAccountID) + .HasConstraintName("FK_UserVerification_UserAccount"); + }); + + OnModelCreatingPartial(modelBuilder); + } + + partial void OnModelCreatingPartial(ModelBuilder modelBuilder); +} diff --git a/DataAccessLayer/BreweryPost.cs b/DataAccessLayer/BreweryPost.cs new file mode 100644 index 0000000..c706b98 --- /dev/null +++ b/DataAccessLayer/BreweryPost.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; + +namespace DataAccessLayer; + +public partial class BreweryPost +{ + public Guid BreweryPostID { get; set; } + + public Guid PostedByID { get; set; } + + public string Description { get; set; } = null!; + + public DateTime CreatedAt { get; set; } + + public DateTime? UpdatedAt { get; set; } + + public virtual ICollection BeerPosts { get; set; } = new List(); + + public virtual ICollection BreweryPostPhotos { get; set; } = new List(); + + public virtual UserAccount PostedBy { get; set; } = null!; +} diff --git a/DataAccessLayer/BreweryPostPhoto.cs b/DataAccessLayer/BreweryPostPhoto.cs new file mode 100644 index 0000000..1191ae6 --- /dev/null +++ b/DataAccessLayer/BreweryPostPhoto.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; + +namespace DataAccessLayer; + +public partial class BreweryPostPhoto +{ + public Guid BreweryPostPhotoID { get; set; } + + public Guid BreweryPostID { get; set; } + + public Guid PhotoID { get; set; } + + public DateTime LinkedAt { get; set; } + + public virtual BreweryPost BreweryPost { get; set; } = null!; + + public virtual Photo Photo { get; set; } = null!; +} diff --git a/DataAccessLayer/Comment.cs b/DataAccessLayer/Comment.cs new file mode 100644 index 0000000..4eb0a84 --- /dev/null +++ b/DataAccessLayer/Comment.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; + +namespace DataAccessLayer; + +public partial class Comment +{ + public Guid CommentID { get; set; } + + public string? CommentText { get; set; } + + public Guid PostedByID { get; set; } + + public virtual UserAccount PostedBy { get; set; } = null!; +} diff --git a/DataAccessLayer/DataAccessLayer.csproj b/DataAccessLayer/DataAccessLayer.csproj new file mode 100644 index 0000000..bb3f681 --- /dev/null +++ b/DataAccessLayer/DataAccessLayer.csproj @@ -0,0 +1,18 @@ + + + + net8.0 + DataAccessLayer + enable + enable + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + diff --git a/DataAccessLayer/Photo.cs b/DataAccessLayer/Photo.cs new file mode 100644 index 0000000..ba2b881 --- /dev/null +++ b/DataAccessLayer/Photo.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; + +namespace DataAccessLayer; + +public partial class Photo +{ + public Guid PhotoID { get; set; } + + public string? Hyperlink { get; set; } + + public Guid UploadedByID { get; set; } + + public DateTime UploadedAt { get; set; } + + public virtual ICollection BeerPostPhotos { get; set; } = new List(); + + public virtual ICollection BreweryPostPhotos { get; set; } = new List(); + + public virtual UserAccount UploadedBy { get; set; } = null!; + + public virtual ICollection UserAvatars { get; set; } = new List(); +} diff --git a/DataAccessLayer/UserAccount.cs b/DataAccessLayer/UserAccount.cs new file mode 100644 index 0000000..a09ed2c --- /dev/null +++ b/DataAccessLayer/UserAccount.cs @@ -0,0 +1,41 @@ +using System; +using System.Collections.Generic; + +namespace DataAccessLayer; + +public partial class UserAccount +{ + public Guid UserAccountID { get; set; } + + public string Username { get; set; } = null!; + + public string FirstName { get; set; } = null!; + + public string LastName { get; set; } = null!; + + public string Email { get; set; } = null!; + + public DateTime CreatedAt { get; set; } + + public DateTime? UpdatedAt { get; set; } + + public DateTime DateOfBirth { get; set; } + + public virtual ICollection BeerPosts { get; set; } = new List(); + + public virtual ICollection BreweryPosts { get; set; } = new List(); + + public virtual ICollection Comments { get; set; } = new List(); + + public virtual ICollection Photos { get; set; } = new List(); + + public virtual UserAvatar? UserAvatar { get; set; } + + public virtual UserCredential? UserCredential { get; set; } + + public virtual ICollection UserFollowFollowings { get; set; } = new List(); + + public virtual ICollection UserFollowUserAccounts { get; set; } = new List(); + + public virtual UserVerification? UserVerification { get; set; } +} diff --git a/DataAccessLayer/UserAvatar.cs b/DataAccessLayer/UserAvatar.cs new file mode 100644 index 0000000..d9b9aba --- /dev/null +++ b/DataAccessLayer/UserAvatar.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; + +namespace DataAccessLayer; + +public partial class UserAvatar +{ + public Guid UserAvatarID { get; set; } + + public Guid UserAccountID { get; set; } + + public Guid PhotoID { get; set; } + + public virtual Photo Photo { get; set; } = null!; + + public virtual UserAccount UserAccount { get; set; } = null!; +} diff --git a/DataAccessLayer/UserCredential.cs b/DataAccessLayer/UserCredential.cs new file mode 100644 index 0000000..039861c --- /dev/null +++ b/DataAccessLayer/UserCredential.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; + +namespace DataAccessLayer; + +public partial class UserCredential +{ + public Guid UserCredentialID { get; set; } + + public Guid UserAccountID { get; set; } + + public DateTime CreatedAt { get; set; } + + public DateTime Expiry { get; set; } + + public string Hash { get; set; } = null!; + + public virtual UserAccount UserAccount { get; set; } = null!; +} diff --git a/DataAccessLayer/UserFollow.cs b/DataAccessLayer/UserFollow.cs new file mode 100644 index 0000000..975672f --- /dev/null +++ b/DataAccessLayer/UserFollow.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; + +namespace DataAccessLayer; + +public partial class UserFollow +{ + public Guid UserFollowID { get; set; } + + public Guid UserAccountID { get; set; } + + public Guid FollowingID { get; set; } + + public DateTime CreatedAt { get; set; } + + public virtual UserAccount Following { get; set; } = null!; + + public virtual UserAccount UserAccount { get; set; } = null!; +} diff --git a/DataAccessLayer/UserVerification.cs b/DataAccessLayer/UserVerification.cs new file mode 100644 index 0000000..c4d7105 --- /dev/null +++ b/DataAccessLayer/UserVerification.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; + +namespace DataAccessLayer; + +public partial class UserVerification +{ + public Guid UserVerificationID { get; set; } + + public Guid UserAccountID { get; set; } + + public DateTime VerificationDateTime { get; set; } + + public virtual UserAccount UserAccount { get; set; } = null!; +} diff --git a/biergarten.sln b/biergarten.sln new file mode 100644 index 0000000..869e9ba --- /dev/null +++ b/biergarten.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.36603.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataAccessLayer", "DataAccessLayer\DataAccessLayer.csproj", "{A9FCCEB3-DD88-F8C0-89A3-FD31A7C54F23}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataAccessLayer-Tests", "DataAccessLayer-Tests\DataAccessLayer-Tests.csproj", "{3638DC4E-D4C8-4DBE-CF3B-EF2C805509CE}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A9FCCEB3-DD88-F8C0-89A3-FD31A7C54F23}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A9FCCEB3-DD88-F8C0-89A3-FD31A7C54F23}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A9FCCEB3-DD88-F8C0-89A3-FD31A7C54F23}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A9FCCEB3-DD88-F8C0-89A3-FD31A7C54F23}.Release|Any CPU.Build.0 = Release|Any CPU + {3638DC4E-D4C8-4DBE-CF3B-EF2C805509CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3638DC4E-D4C8-4DBE-CF3B-EF2C805509CE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3638DC4E-D4C8-4DBE-CF3B-EF2C805509CE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3638DC4E-D4C8-4DBE-CF3B-EF2C805509CE}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {9AF13035-54A8-46EA-8BED-866F683D9AED} + EndGlobalSection +EndGlobal diff --git a/biergarten.sql b/schema.sql similarity index 96% rename from biergarten.sql rename to schema.sql index 1297b47..eab8f62 100644 --- a/biergarten.sql +++ b/schema.sql @@ -321,12 +321,12 @@ CREATE TABLE BeerPost Name NVARCHAR(100) NOT NULL, - Description NVARCHAR(MAX), + Description NVARCHAR(MAX) NOT NULL, - ABV DECIMAL(4,2), + ABV DECIMAL(4,2) NOT NULL, -- Alcohol By Volume (typically 0-67%) - IBU INT, + IBU INT NOT NULL, -- International Bitterness Units (typically 0-100) PostedByID UNIQUEIDENTIFIER NOT NULL, @@ -408,3 +408,11 @@ ON BeerPostPhoto(BeerPostID, PhotoID); ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- + +/* + +Install-Package Microsoft.EntityFrameworkCore.SqlServer +Install-Package Microsoft.EntityFrameworkCore.Tools + +Scaffold-DbContext "Server=(localdb)\ProjectModels;Database=Biergarten;Trusted_Connection=True;" Microsoft.EntityFrameworkCore.SqlServer -Context BiergartenContext -UseDatabaseNames -Force +*/ From 8975044034233331a073fb0b1ac6a8625132c162 Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Tue, 28 Oct 2025 18:30:48 -0400 Subject: [PATCH 03/25] add test data --- test-data.sql | 690 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 690 insertions(+) create mode 100644 test-data.sql diff --git a/test-data.sql b/test-data.sql new file mode 100644 index 0000000..1942bde --- /dev/null +++ b/test-data.sql @@ -0,0 +1,690 @@ + +USE Biergarten; + +-- User Account Variables (30 users) +DECLARE +@user1 UNIQUEIDENTIFIER = NEWID(), +@user2 UNIQUEIDENTIFIER = NEWID(), +@user3 UNIQUEIDENTIFIER = NEWID(), +@user4 UNIQUEIDENTIFIER = NEWID(), +@user5 UNIQUEIDENTIFIER = NEWID(), +@user6 UNIQUEIDENTIFIER = NEWID(), +@user7 UNIQUEIDENTIFIER = NEWID(), +@user8 UNIQUEIDENTIFIER = NEWID(), +@user9 UNIQUEIDENTIFIER = NEWID(), +@user10 UNIQUEIDENTIFIER = NEWID(), +@user11 UNIQUEIDENTIFIER = NEWID(), +@user12 UNIQUEIDENTIFIER = NEWID(), +@user13 UNIQUEIDENTIFIER = NEWID(), +@user14 UNIQUEIDENTIFIER = NEWID(), +@user15 UNIQUEIDENTIFIER = NEWID(), +@user16 UNIQUEIDENTIFIER = NEWID(), +@user17 UNIQUEIDENTIFIER = NEWID(), +@user18 UNIQUEIDENTIFIER = NEWID(), +@user19 UNIQUEIDENTIFIER = NEWID(), +@user20 UNIQUEIDENTIFIER = NEWID(), +@user21 UNIQUEIDENTIFIER = NEWID(), +@user22 UNIQUEIDENTIFIER = NEWID(), +@user23 UNIQUEIDENTIFIER = NEWID(), +@user24 UNIQUEIDENTIFIER = NEWID(), +@user25 UNIQUEIDENTIFIER = NEWID(), +@user26 UNIQUEIDENTIFIER = NEWID(), +@user27 UNIQUEIDENTIFIER = NEWID(), +@user28 UNIQUEIDENTIFIER = NEWID(), +@user29 UNIQUEIDENTIFIER = NEWID(), +@user30 UNIQUEIDENTIFIER = NEWID(), + +-- BeerStyle Variables (13 styles) +@ipa UNIQUEIDENTIFIER = NEWID(), +@stout UNIQUEIDENTIFIER = NEWID(), +@lager UNIQUEIDENTIFIER = NEWID(), +@ale UNIQUEIDENTIFIER = NEWID(), +@pilsner UNIQUEIDENTIFIER = NEWID(), +@wheat UNIQUEIDENTIFIER = NEWID(), +@porter UNIQUEIDENTIFIER = NEWID(), +@sour UNIQUEIDENTIFIER = NEWID(), +@belgian UNIQUEIDENTIFIER = NEWID(), +@amber UNIQUEIDENTIFIER = NEWID(), +@saison UNIQUEIDENTIFIER = NEWID(), +@brown UNIQUEIDENTIFIER = NEWID(), +@barleywine UNIQUEIDENTIFIER = NEWID(), + +-- Photo Variables (40 photos) +@photo1 UNIQUEIDENTIFIER = NEWID(), +@photo2 UNIQUEIDENTIFIER = NEWID(), +@photo3 UNIQUEIDENTIFIER = NEWID(), +@photo4 UNIQUEIDENTIFIER = NEWID(), +@photo5 UNIQUEIDENTIFIER = NEWID(), +@photo6 UNIQUEIDENTIFIER = NEWID(), +@photo7 UNIQUEIDENTIFIER = NEWID(), +@photo8 UNIQUEIDENTIFIER = NEWID(), +@photo9 UNIQUEIDENTIFIER = NEWID(), +@photo10 UNIQUEIDENTIFIER = NEWID(), +@photo11 UNIQUEIDENTIFIER = NEWID(), +@photo12 UNIQUEIDENTIFIER = NEWID(), +@photo13 UNIQUEIDENTIFIER = NEWID(), +@photo14 UNIQUEIDENTIFIER = NEWID(), +@photo15 UNIQUEIDENTIFIER = NEWID(), +@photo16 UNIQUEIDENTIFIER = NEWID(), +@photo17 UNIQUEIDENTIFIER = NEWID(), +@photo18 UNIQUEIDENTIFIER = NEWID(), +@photo19 UNIQUEIDENTIFIER = NEWID(), +@photo20 UNIQUEIDENTIFIER = NEWID(), +@photo21 UNIQUEIDENTIFIER = NEWID(), +@photo22 UNIQUEIDENTIFIER = NEWID(), +@photo23 UNIQUEIDENTIFIER = NEWID(), +@photo24 UNIQUEIDENTIFIER = NEWID(), +@photo25 UNIQUEIDENTIFIER = NEWID(), +@photo26 UNIQUEIDENTIFIER = NEWID(), +@photo27 UNIQUEIDENTIFIER = NEWID(), +@photo28 UNIQUEIDENTIFIER = NEWID(), +@photo29 UNIQUEIDENTIFIER = NEWID(), +@photo30 UNIQUEIDENTIFIER = NEWID(), +@photo31 UNIQUEIDENTIFIER = NEWID(), +@photo32 UNIQUEIDENTIFIER = NEWID(), +@photo33 UNIQUEIDENTIFIER = NEWID(), +@photo34 UNIQUEIDENTIFIER = NEWID(), +@photo35 UNIQUEIDENTIFIER = NEWID(), +@photo36 UNIQUEIDENTIFIER = NEWID(), +@photo37 UNIQUEIDENTIFIER = NEWID(), +@photo38 UNIQUEIDENTIFIER = NEWID(), +@photo39 UNIQUEIDENTIFIER = NEWID(), +@photo40 UNIQUEIDENTIFIER = NEWID(), + +-- BreweryPost Variables (15 breweries) +@brewery1 UNIQUEIDENTIFIER = NEWID(), +@brewery2 UNIQUEIDENTIFIER = NEWID(), +@brewery3 UNIQUEIDENTIFIER = NEWID(), +@brewery4 UNIQUEIDENTIFIER = NEWID(), +@brewery5 UNIQUEIDENTIFIER = NEWID(), +@brewery6 UNIQUEIDENTIFIER = NEWID(), +@brewery7 UNIQUEIDENTIFIER = NEWID(), +@brewery8 UNIQUEIDENTIFIER = NEWID(), +@brewery9 UNIQUEIDENTIFIER = NEWID(), +@brewery10 UNIQUEIDENTIFIER = NEWID(), +@brewery11 UNIQUEIDENTIFIER = NEWID(), +@brewery12 UNIQUEIDENTIFIER = NEWID(), +@brewery13 UNIQUEIDENTIFIER = NEWID(), +@brewery14 UNIQUEIDENTIFIER = NEWID(), +@brewery15 UNIQUEIDENTIFIER = NEWID(), + +-- BeerPost Variables (28 beers) +@beer1 UNIQUEIDENTIFIER = NEWID(), +@beer2 UNIQUEIDENTIFIER = NEWID(), +@beer3 UNIQUEIDENTIFIER = NEWID(), +@beer4 UNIQUEIDENTIFIER = NEWID(), +@beer5 UNIQUEIDENTIFIER = NEWID(), +@beer6 UNIQUEIDENTIFIER = NEWID(), +@beer7 UNIQUEIDENTIFIER = NEWID(), +@beer8 UNIQUEIDENTIFIER = NEWID(), +@beer9 UNIQUEIDENTIFIER = NEWID(), +@beer10 UNIQUEIDENTIFIER = NEWID(), +@beer11 UNIQUEIDENTIFIER = NEWID(), +@beer12 UNIQUEIDENTIFIER = NEWID(), +@beer13 UNIQUEIDENTIFIER = NEWID(), +@beer14 UNIQUEIDENTIFIER = NEWID(), +@beer15 UNIQUEIDENTIFIER = NEWID(), +@beer16 UNIQUEIDENTIFIER = NEWID(), +@beer17 UNIQUEIDENTIFIER = NEWID(), +@beer18 UNIQUEIDENTIFIER = NEWID(), +@beer19 UNIQUEIDENTIFIER = NEWID(), +@beer20 UNIQUEIDENTIFIER = NEWID(), +@beer21 UNIQUEIDENTIFIER = NEWID(), +@beer22 UNIQUEIDENTIFIER = NEWID(), +@beer23 UNIQUEIDENTIFIER = NEWID(), +@beer24 UNIQUEIDENTIFIER = NEWID(), +@beer25 UNIQUEIDENTIFIER = NEWID(), +@beer26 UNIQUEIDENTIFIER = NEWID(), +@beer27 UNIQUEIDENTIFIER = NEWID(), +@beer28 UNIQUEIDENTIFIER = NEWID(), + +-- Rating Variables (50 ratings) +@rating1 UNIQUEIDENTIFIER = NEWID(), +@rating2 UNIQUEIDENTIFIER = NEWID(), +@rating3 UNIQUEIDENTIFIER = NEWID(), +@rating4 UNIQUEIDENTIFIER = NEWID(), +@rating5 UNIQUEIDENTIFIER = NEWID(), +@rating6 UNIQUEIDENTIFIER = NEWID(), +@rating7 UNIQUEIDENTIFIER = NEWID(), +@rating8 UNIQUEIDENTIFIER = NEWID(), +@rating9 UNIQUEIDENTIFIER = NEWID(), +@rating10 UNIQUEIDENTIFIER = NEWID(), +@rating11 UNIQUEIDENTIFIER = NEWID(), +@rating12 UNIQUEIDENTIFIER = NEWID(), +@rating13 UNIQUEIDENTIFIER = NEWID(), +@rating14 UNIQUEIDENTIFIER = NEWID(), +@rating15 UNIQUEIDENTIFIER = NEWID(), +@rating16 UNIQUEIDENTIFIER = NEWID(), +@rating17 UNIQUEIDENTIFIER = NEWID(), +@rating18 UNIQUEIDENTIFIER = NEWID(), +@rating19 UNIQUEIDENTIFIER = NEWID(), +@rating20 UNIQUEIDENTIFIER = NEWID(), +@rating21 UNIQUEIDENTIFIER = NEWID(), +@rating22 UNIQUEIDENTIFIER = NEWID(), +@rating23 UNIQUEIDENTIFIER = NEWID(), +@rating24 UNIQUEIDENTIFIER = NEWID(), +@rating25 UNIQUEIDENTIFIER = NEWID(), +@rating26 UNIQUEIDENTIFIER = NEWID(), +@rating27 UNIQUEIDENTIFIER = NEWID(), +@rating28 UNIQUEIDENTIFIER = NEWID(), +@rating29 UNIQUEIDENTIFIER = NEWID(), +@rating30 UNIQUEIDENTIFIER = NEWID(), +@rating31 UNIQUEIDENTIFIER = NEWID(), +@rating32 UNIQUEIDENTIFIER = NEWID(), +@rating33 UNIQUEIDENTIFIER = NEWID(), +@rating34 UNIQUEIDENTIFIER = NEWID(), +@rating35 UNIQUEIDENTIFIER = NEWID(), +@rating36 UNIQUEIDENTIFIER = NEWID(), +@rating37 UNIQUEIDENTIFIER = NEWID(), +@rating38 UNIQUEIDENTIFIER = NEWID(), +@rating39 UNIQUEIDENTIFIER = NEWID(), +@rating40 UNIQUEIDENTIFIER = NEWID(), +@rating41 UNIQUEIDENTIFIER = NEWID(), +@rating42 UNIQUEIDENTIFIER = NEWID(), +@rating43 UNIQUEIDENTIFIER = NEWID(), +@rating44 UNIQUEIDENTIFIER = NEWID(), +@rating45 UNIQUEIDENTIFIER = NEWID(), +@rating46 UNIQUEIDENTIFIER = NEWID(), +@rating47 UNIQUEIDENTIFIER = NEWID(), +@rating48 UNIQUEIDENTIFIER = NEWID(), +@rating49 UNIQUEIDENTIFIER = NEWID(), +@rating50 UNIQUEIDENTIFIER = NEWID(); + +---------------------------------------------------------------------------- +-- UserAccount (30 users) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.UserAccount + (UserAccountID, Username, FirstName, LastName, Email, CreatedAt, DateOfBirth) +VALUES + (@user1, 'john_smith', 'John', 'Smith', 'john.smith@email.com', '2023-01-15', '1990-05-12'), + (@user2, 'sarah_jones', 'Sarah', 'Jones', 'sarah.jones@email.com', '2023-02-20', '1988-08-23'), + (@user3, 'mike_brown', 'Mike', 'Brown', 'mike.brown@email.com', '2023-03-10', '1992-11-30'), + (@user4, 'emily_davis', 'Emily', 'Davis', 'emily.davis@email.com', '2023-04-05', '1995-03-17'), + (@user5, 'james_wilson', 'James', 'Wilson', 'james.wilson@email.com', '2023-05-12', '1987-07-22'), + (@user6, 'lisa_moore', 'Lisa', 'Moore', 'lisa.moore@email.com', '2023-06-18', '1991-12-08'), + (@user7, 'david_taylor', 'David', 'Taylor', 'david.taylor@email.com', '2023-07-22', '1989-04-15'), + (@user8, 'jessica_anderson', 'Jessica', 'Anderson', 'jessica.anderson@email.com', '2023-08-14', '1993-09-25'), + (@user9, 'chris_thomas', 'Chris', 'Thomas', 'chris.thomas@email.com', '2023-09-03', '1990-02-18'), + (@user10, 'amanda_jackson', 'Amanda', 'Jackson', 'amanda.jackson@email.com', '2023-10-11', '1994-06-30'), + (@user11, 'robert_white', 'Robert', 'White', 'robert.white@email.com', '2023-11-19', '1986-10-12'), + (@user12, 'jennifer_harris', 'Jennifer', 'Harris', 'jennifer.harris@email.com', '2023-12-07', '1992-01-28'), + (@user13, 'matthew_martin', 'Matthew', 'Martin', 'matthew.martin@email.com', '2024-01-14', '1991-05-09'), + (@user14, 'ashley_thompson', 'Ashley', 'Thompson', 'ashley.thompson@email.com', '2024-02-21', '1988-11-14'), + (@user15, 'daniel_garcia', 'Daniel', 'Garcia', 'daniel.garcia@email.com', '2024-03-16', '1993-08-03'), + (@user16, 'nicole_martinez', 'Nicole', 'Martinez', 'nicole.martinez@email.com', '2024-04-08', '1995-12-21'), + (@user17, 'kevin_robinson', 'Kevin', 'Robinson', 'kevin.robinson@email.com', '2024-05-25', '1989-03-27'), + (@user18, 'lauren_clark', 'Lauren', 'Clark', 'lauren.clark@email.com', '2024-06-13', '1992-07-19'), + (@user19, 'brian_rodriguez', 'Brian', 'Rodriguez', 'brian.rodriguez@email.com', '2024-07-30', '1990-09-05'), + (@user20, 'megan_lewis', 'Megan', 'Lewis', 'megan.lewis@email.com', '2024-08-17', '1994-02-11'), + (@user21, 'steven_lee', 'Steven', 'Lee', 'steven.lee@email.com', '2024-09-09', '1987-06-16'), + (@user22, 'rachel_walker', 'Rachel', 'Walker', 'rachel.walker@email.com', '2024-10-02', '1991-10-24'), + (@user23, 'justin_hall', 'Justin', 'Hall', 'justin.hall@email.com', '2024-11-11', '1993-04-07'), + (@user24, 'heather_allen', 'Heather', 'Allen', 'heather.allen@email.com', '2024-12-20', '1988-12-30'), + (@user25, 'tyler_young', 'Tyler', 'Young', 'tyler.young@email.com', '2025-01-05', '1996-01-15'), + (@user26, 'rebecca_king', 'Rebecca', 'King', 'rebecca.king@email.com', '2025-02-14', '1990-08-08'), + (@user27, 'jason_wright', 'Jason', 'Wright', 'jason.wright@email.com', '2025-03-22', '1992-03-29'), + (@user28, 'michelle_lopez', 'Michelle', 'Lopez', 'michelle.lopez@email.com', '2025-04-18', '1989-11-11'), + (@user29, 'brandon_hill', 'Brandon', 'Hill', 'brandon.hill@email.com', '2025-05-27', '1994-05-05'), + (@user30, 'stephanie_green', 'Stephanie', 'Green', 'stephanie.green@email.com', '2025-06-30', '1991-09-18'); +COMMIT TRANSACTION; + + +---------------------------------------------------------------------------- +-- BeerStyle (13 styles) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.BeerStyle + (BeerStyleID, StyleName, Description) +VALUES + (@ipa, 'India Pale Ale', 'A hoppy beer style within the broader category of pale ale, known for its strong hop flavor and higher alcohol content.'), + (@stout, 'Stout', 'A dark beer made using roasted malt or roasted barley, hops, water and yeast. Stouts have a rich, creamy texture.'), + (@lager, 'Lager', 'A type of beer conditioned at low temperature. Lagers are crisp, clean, and refreshing.'), + (@ale, 'Pale Ale', 'A golden to amber colored beer style brewed with pale malt. The highest proportion of pale malts results in its light color.'), + (@pilsner, 'Pilsner', 'A type of pale lager that is characterized by its light color, clarity, and refreshing taste with a notable hop character.'), + (@wheat, 'Wheat Beer', 'A top-fermented beer which is brewed with a large proportion of wheat relative to the amount of malted barley.'), + (@porter, 'Porter', 'A dark style of beer developed in London, well-hopped and made from brown malt.'), + (@sour, 'Sour Ale', 'A beer that has an intentionally acidic, tart, or sour taste, achieved through wild yeast and bacteria fermentation.'), + (@belgian, 'Belgian Ale', 'Traditional Belgian-style ales with complex fruity and spicy yeast character.'), + (@amber, 'Amber Ale', 'Medium-bodied ale with caramel malt flavor and moderate hop bitterness.'), + (@saison, 'Saison', 'Farmhouse ale with fruity, spicy, and peppery characteristics.'), + (@brown, 'Brown Ale', 'Malty beer with nutty, chocolate, and caramel notes.'), + (@barleywine, 'Barleywine', 'Strong ale with intense malt flavors and high alcohol content.'); +COMMIT TRANSACTION; + + +---------------------------------------------------------------------------- +-- UserCredential (28 credentials) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.UserCredential + (UserAccountID, Hash, CreatedAt, Expiry) +VALUES + (@user1, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt1$hashedpassword1', '2023-01-15', '2025-12-31'), + (@user2, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt2$hashedpassword2', '2023-02-20', '2025-12-31'), + (@user3, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt3$hashedpassword3', '2023-03-10', '2025-12-31'), + (@user4, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt4$hashedpassword4', '2023-04-05', '2025-12-31'), + (@user5, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt5$hashedpassword5', '2023-05-12', '2025-12-31'), + (@user6, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt6$hashedpassword6', '2023-06-18', '2025-12-31'), + (@user7, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt7$hashedpassword7', '2023-07-22', '2025-12-31'), + (@user8, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt8$hashedpassword8', '2023-08-14', '2025-12-31'), + (@user9, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt9$hashedpassword9', '2023-09-03', '2025-12-31'), + (@user10, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt10$hashedpassword10', '2023-10-11', '2025-12-31'), + (@user11, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt11$hashedpassword11', '2023-11-19', '2025-12-31'), + (@user12, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt12$hashedpassword12', '2023-12-07', '2025-12-31'), + (@user13, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt13$hashedpassword13', '2024-01-14', '2025-12-31'), + (@user14, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt14$hashedpassword14', '2024-02-21', '2025-12-31'), + (@user16, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt16$hashedpassword16', '2024-04-08', '2025-12-31'), + (@user17, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt17$hashedpassword17', '2024-05-25', '2025-12-31'), + (@user18, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt18$hashedpassword18', '2024-06-13', '2025-12-31'), + (@user19, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt19$hashedpassword19', '2024-07-30', '2025-12-31'), + (@user21, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt21$hashedpassword21', '2024-09-09', '2025-12-31'), + (@user22, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt22$hashedpassword22', '2024-10-02', '2025-12-31'), + (@user23, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt23$hashedpassword23', '2024-11-11', '2025-12-31'), + (@user24, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt24$hashedpassword24', '2024-12-20', '2025-12-31'), + (@user25, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt25$hashedpassword25', '2025-01-05', '2025-12-31'), + (@user26, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt26$hashedpassword26', '2025-02-14', '2025-12-31'), + (@user27, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt27$hashedpassword27', '2025-03-22', '2025-12-31'), + (@user28, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt28$hashedpassword28', '2025-04-18', '2025-12-31'), + (@user29, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt29$hashedpassword29', '2025-05-27', '2025-12-31'), + (@user30, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt30$hashedpassword30', '2025-06-30', '2025-12-31'); +COMMIT TRANSACTION; + + +---------------------------------------------------------------------------- +-- UserVerification (20 verified users) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.UserVerification + (UserAccountID, VerificationDateTime) +VALUES + (@user1, '2023-01-16'), + (@user2, '2023-02-21'), + (@user3, '2023-03-11'), + (@user4, '2023-04-06'), + (@user5, '2023-05-13'), + (@user6, '2023-06-19'), + (@user7, '2023-07-23'), + (@user8, '2023-08-15'), + (@user9, '2023-09-04'), + (@user10, '2023-10-12'), + (@user11, '2023-11-20'), + (@user12, '2023-12-08'), + (@user13, '2024-01-15'), + (@user15, '2024-03-17'), + (@user16, '2024-04-09'), + (@user17, '2024-05-26'), + (@user18, '2024-06-14'), + (@user20, '2024-08-18'), + (@user22, '2024-10-03'), + (@user25, '2025-01-06'); +COMMIT TRANSACTION; + + +---------------------------------------------------------------------------- +-- UserFollow (40 follow relationships) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.UserFollow + (UserAccountID, FollowingID, CreatedAt) +VALUES + (@user1, @user2, '2023-02-01'), + (@user1, @user3, '2023-02-05'), + (@user1, @user5, '2023-05-20'), + (@user1, @user10, '2024-01-01'), + (@user2, @user1, '2023-02-15'), + (@user2, @user4, '2023-04-10'), + (@user2, @user12, '2024-02-01'), + (@user3, @user1, '2023-03-20'), + (@user3, @user6, '2023-06-25'), + (@user3, @user14, '2024-03-01'), + (@user4, @user2, '2023-04-15'), + (@user5, @user1, '2023-05-25'), + (@user5, @user7, '2023-07-30'), + (@user6, @user3, '2023-07-01'), + (@user7, @user5, '2023-08-05'), + (@user8, @user1, '2023-08-20'), + (@user9, @user2, '2023-09-10'), + (@user10, @user5, '2023-10-20'), + (@user10, @user8, '2023-11-01'), + (@user11, @user2, '2023-11-25'), + (@user12, @user3, '2023-12-15'), + (@user13, @user5, '2024-01-20'), + (@user14, @user1, '2024-03-01'), + (@user14, @user7, '2024-03-05'), + (@user15, @user2, '2024-03-20'), + (@user16, @user4, '2024-04-15'), + (@user17, @user6, '2024-05-30'), + (@user18, @user8, '2024-06-20'), + (@user19, @user10, '2024-08-01'), + (@user20, @user12, '2024-08-25'), + (@user21, @user14, '2024-09-15'), + (@user22, @user1, '2024-10-05'), + (@user23, @user11, '2024-11-15'), + (@user24, @user13, '2024-12-25'), + (@user25, @user15, '2025-01-10'), + (@user26, @user17, '2025-02-20'), + (@user27, @user19, '2025-03-25'), + (@user28, @user21, '2025-04-22'), + (@user29, @user23, '2025-05-30'), + (@user30, @user25, '2025-07-05'); +COMMIT TRANSACTION; + +---------------------------------------------------------------------------- +-- Photo (40 photos) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.Photo + (PhotoID, Hyperlink, UploadedByID, UploadedAt) +VALUES + (@photo1, 'https://storage.biergarten.com/photos/avatar1.jpg', @user1, '2023-01-15'), + (@photo2, 'https://storage.biergarten.com/photos/avatar2.jpg', @user2, '2023-02-20'), + (@photo3, 'https://storage.biergarten.com/photos/brewery1.jpg', @user1, '2023-03-01'), + (@photo4, 'https://storage.biergarten.com/photos/brewery2.jpg', @user2, '2023-03-05'), + (@photo5, 'https://storage.biergarten.com/photos/beer1.jpg', @user3, '2023-04-10'), + (@photo6, 'https://storage.biergarten.com/photos/beer2.jpg', @user4, '2023-04-15'), + (@photo7, 'https://storage.biergarten.com/photos/beer3.jpg', @user5, '2023-05-20'), + (@photo8, 'https://storage.biergarten.com/photos/brewery3.jpg', @user6, '2023-06-01'), + (@photo9, 'https://storage.biergarten.com/photos/avatar3.jpg', @user3, '2023-06-05'), + (@photo10, 'https://storage.biergarten.com/photos/beer4.jpg', @user7, '2023-07-10'), + (@photo11, 'https://storage.biergarten.com/photos/beer5.jpg', @user8, '2023-08-15'), + (@photo12, 'https://storage.biergarten.com/photos/brewery4.jpg', @user9, '2023-09-01'), + (@photo13, 'https://storage.biergarten.com/photos/beer6.jpg', @user10, '2023-10-05'), + (@photo14, 'https://storage.biergarten.com/photos/avatar4.jpg', @user5, '2024-01-10'), + (@photo15, 'https://storage.biergarten.com/photos/brewery5.jpg', @user11, '2024-02-15'), + (@photo16, 'https://storage.biergarten.com/photos/beer7.jpg', @user12, '2024-03-20'), + (@photo17, 'https://storage.biergarten.com/photos/beer8.jpg', @user13, '2024-04-25'), + (@photo18, 'https://storage.biergarten.com/photos/brewery6.jpg', @user14, '2024-05-30'), + (@photo19, 'https://storage.biergarten.com/photos/beer9.jpg', @user15, '2024-06-15'), + (@photo20, 'https://storage.biergarten.com/photos/avatar5.jpg', @user7, '2024-07-20'), + (@photo21, 'https://storage.biergarten.com/photos/beer10.jpg', @user16, '2024-08-05'), + (@photo22, 'https://storage.biergarten.com/photos/beer11.jpg', @user17, '2024-08-20'), + (@photo23, 'https://storage.biergarten.com/photos/brewery7.jpg', @user18, '2024-09-01'), + (@photo24, 'https://storage.biergarten.com/photos/beer12.jpg', @user19, '2024-09-15'), + (@photo25, 'https://storage.biergarten.com/photos/avatar6.jpg', @user10, '2024-10-01'), + (@photo26, 'https://storage.biergarten.com/photos/beer13.jpg', @user20, '2024-10-10'), + (@photo27, 'https://storage.biergarten.com/photos/brewery8.jpg', @user21, '2024-10-20'), + (@photo28, 'https://storage.biergarten.com/photos/beer14.jpg', @user22, '2024-11-01'), + (@photo29, 'https://storage.biergarten.com/photos/beer15.jpg', @user23, '2024-11-15'), + (@photo30, 'https://storage.biergarten.com/photos/avatar7.jpg', @user15, '2024-12-01'), + (@photo31, 'https://storage.biergarten.com/photos/brewery9.jpg', @user24, '2024-12-25'), + (@photo32, 'https://storage.biergarten.com/photos/beer16.jpg', @user25, '2025-01-15'), + (@photo33, 'https://storage.biergarten.com/photos/beer17.jpg', @user26, '2025-02-20'), + (@photo34, 'https://storage.biergarten.com/photos/brewery10.jpg', @user27, '2025-03-30'), + (@photo35, 'https://storage.biergarten.com/photos/beer18.jpg', @user28, '2025-04-25'), + (@photo36, 'https://storage.biergarten.com/photos/beer19.jpg', @user29, '2025-06-01'), + (@photo37, 'https://storage.biergarten.com/photos/avatar8.jpg', @user20, '2025-06-15'), + (@photo38, 'https://storage.biergarten.com/photos/beer20.jpg', @user30, '2025-07-10'), + (@photo39, 'https://storage.biergarten.com/photos/brewery11.jpg', @user4, '2025-08-01'), + (@photo40, 'https://storage.biergarten.com/photos/avatar9.jpg', @user25, '2025-09-01'); +COMMIT TRANSACTION; + + +---------------------------------------------------------------------------- +-- UserAvatar (9 avatars) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.UserAvatar + (UserAccountID, PhotoID) +VALUES + (@user1, @photo1), + (@user2, @photo2), + (@user3, @photo9), + (@user5, @photo14), + (@user7, @photo20), + (@user10, @photo25), + (@user15, @photo30), + (@user20, @photo37), + (@user25, @photo40); +COMMIT TRANSACTION; + + +---------------------------------------------------------------------------- +-- BreweryPost (15 breweries) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.BreweryPost + (BreweryPostID, PostedByID, Description, CreatedAt) +VALUES + (@brewery1, @user1, 'Hoppy Trails Brewery - Crafting exceptional IPAs since 2020. Located in the heart of Portland.', '2023-02-01'), + (@brewery2, @user2, 'Dark Horse Brewing Co. - Specializing in rich stouts and porters. Family owned and operated.', '2023-03-01'), + (@brewery3, @user3, 'Golden Gate Lager House - Traditional German-style lagers brewed with precision.', '2023-04-01'), + (@brewery4, @user5, 'Mountain View Ales - High-altitude brewing for unique flavor profiles.', '2023-05-15'), + (@brewery5, @user6, 'Coastal Wheat Works - Refreshing wheat beers perfect for any season.', '2023-06-20'), + (@brewery6, @user9, 'Riverside Porter Factory - Classic porters with a modern twist.', '2023-08-10'), + (@brewery7, @user11, 'Sunset Sour Cellars - Experimental sour ales aged in oak barrels.', '2024-01-20'), + (@brewery8, @user14, 'Urban Craft Collective - Community-focused brewery with rotating seasonal offerings.', '2024-05-10'), + (@brewery9, @user4, 'Belgian House - Authentic Belgian brewing traditions in the heart of the city.', '2024-06-01'), + (@brewery10, @user18, 'Amber Fields Brewery - Celebrating the richness of amber ales and maltier styles.', '2024-08-15'), + (@brewery11, @user20, 'Farmhouse Funk - Specializing in saisons and wild fermented ales.', '2024-09-20'), + (@brewery12, @user24, 'Brown Bear Brewing - Cozy taproom featuring award-winning brown ales.', '2025-01-10'), + (@brewery13, @user27, 'Vintage Vats - Small-batch barleywines and aged strong ales.', '2025-02-25'), + (@brewery14, @user12, 'Hop Haven - Experimental IPAs and cutting-edge hop varieties.', '2024-10-05'), + (@brewery15, @user8, 'Barrel & Grain - Farm-to-glass brewery using locally sourced ingredients.', '2024-04-20'); +COMMIT TRANSACTION; + + +---------------------------------------------------------------------------- +-- BreweryPostPhoto (11 brewery photos) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.BreweryPostPhoto + (BreweryPostID, PhotoID, LinkedAt) +VALUES + (@brewery1, @photo3, '2023-03-01'), + (@brewery2, @photo4, '2023-03-05'), + (@brewery3, @photo8, '2023-06-01'), + (@brewery4, @photo12, '2023-09-01'), + (@brewery5, @photo15, '2024-02-15'), + (@brewery6, @photo18, '2024-05-30'), + (@brewery7, @photo23, '2024-09-01'), + (@brewery8, @photo27, '2024-10-20'), + (@brewery9, @photo39, '2025-08-01'), + (@brewery10, @photo31, '2024-12-25'), + (@brewery11, @photo34, '2025-03-30'); +COMMIT TRANSACTION; + + +---------------------------------------------------------------------------- +-- BeerPost (28 beers) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.BeerPost + (BeerPostID, Name, Description, ABV, IBU, PostedByID, BeerStyleID, BrewedByID, CreatedAt) +VALUES + (@beer1, 'Trail Blazer IPA', 'A bold and hoppy IPA with citrus notes and a crisp finish.', 6.8, 65, @user1, @ipa, @brewery1, '2023-04-01'), + (@beer2, 'Midnight Stout', 'Rich and creamy stout with notes of chocolate and coffee.', 7.2, 35, @user2, @stout, @brewery2, '2023-04-15'), + (@beer3, 'Golden Bay Lager', 'Classic German-style lager, clean and refreshing.', 4.8, 22, @user3, @lager, @brewery3, '2023-05-01'), + (@beer4, 'Summit Pale Ale', 'Balanced pale ale with floral hop aromas.', 5.5, 40, @user5, @ale, @brewery4, '2023-06-10'), + (@beer5, 'Ocean Wheat', 'Smooth wheat beer with hints of orange peel.', 4.5, 15, @user6, @wheat, @brewery5, '2023-07-01'), + (@beer6, 'Dark Waters Porter', 'Traditional porter with roasted malt character.', 5.8, 30, @user9, @porter, @brewery6, '2023-09-15'), + (@beer7, 'Sunset Sour', 'Tart and refreshing sour ale with cherry notes.', 5.2, 10, @user11, @sour, @brewery7, '2024-03-01'), + (@beer8, 'Urban Pilsner', 'Crisp pilsner with noble hop character.', 5.0, 35, @user14, @pilsner, @brewery8, '2024-06-15'), + (@beer9, 'Double IPA Extreme', 'Intensely hoppy double IPA for hop lovers.', 8.5, 90, @user1, @ipa, @brewery1, '2024-07-01'), + (@beer10, 'Vanilla Porter', 'Smooth porter infused with vanilla beans.', 6.2, 28, @user9, @porter, @brewery6, '2024-08-10'), + (@beer11, 'Hefeweizen Classic', 'Traditional Bavarian wheat beer with banana and clove notes.', 5.4, 12, @user6, @wheat, @brewery5, '2024-09-05'), + (@beer12, 'Imperial Stout', 'Full-bodied imperial stout aged in bourbon barrels.', 10.5, 50, @user2, @stout, @brewery2, '2024-10-01'), + (@beer13, 'Belgian Bliss', 'Rich Belgian ale with notes of dark fruit and subtle spice.', 7.5, 25, @user4, @belgian, @brewery9, '2024-07-10'), + (@beer14, 'Copper Crown', 'Smooth amber ale with caramel sweetness and hop balance.', 5.6, 38, @user18, @amber, @brewery10, '2024-09-05'), + (@beer15, 'Rustic Revival', 'Farmhouse saison with peppery yeast character.', 6.2, 28, @user20, @saison, @brewery11, '2024-10-15'), + (@beer16, 'Nutty Brown', 'Classic brown ale with chocolate and hazelnut notes.', 5.3, 22, @user24, @brown, @brewery12, '2025-02-01'), + (@beer17, 'Old Guardian', 'Aged barleywine with complex malt layers.', 11.2, 60, @user27, @barleywine, @brewery13, '2025-03-15'), + (@beer18, 'Citrus Bomb IPA', 'Juicy IPA bursting with tropical fruit flavors.', 7.0, 75, @user12, @ipa, @brewery14, '2024-11-01'), + (@beer19, 'Mosaic Dream', 'Single-hop IPA showcasing Mosaic hops.', 6.5, 68, @user12, @ipa, @brewery14, '2024-11-20'), + (@beer20, 'Farm Fresh Lager', 'Crisp lager made with local grains.', 4.6, 20, @user8, @lager, @brewery15, '2024-05-15'), + (@beer21, 'Midnight Express', 'Extra robust stout with espresso notes.', 8.5, 45, @user2, @stout, @brewery2, '2025-01-20'), + (@beer22, 'Harvest Wheat', 'Seasonal wheat beer with honey and coriander.', 4.9, 18, @user6, @wheat, @brewery5, '2024-10-30'), + (@beer23, 'Cherry Sunset Sour', 'Kettle sour with fresh cherry puree.', 5.8, 8, @user11, @sour, @brewery7, '2025-04-10'), + (@beer24, 'Pacific Pale Ale', 'West Coast style pale ale with pine and citrus.', 5.8, 48, @user5, @ale, @brewery4, '2024-12-05'), + (@beer25, 'Bohemian Pilsner', 'Traditional Czech pilsner with Saaz hops.', 5.2, 40, @user14, @pilsner, @brewery8, '2025-05-20'), + (@beer26, 'Coffee Porter', 'Rich porter infused with cold brew coffee.', 6.0, 32, @user9, @porter, @brewery6, '2025-06-15'), + (@beer27, 'Wild Ferment Ale', 'Brett-fermented Belgian ale with funky character.', 7.8, 20, @user4, @belgian, @brewery9, '2025-07-01'), + (@beer28, 'Session IPA', 'Light and refreshing session IPA for all-day drinking.', 4.2, 45, @user1, @ipa, @brewery1, '2025-08-20'); +COMMIT TRANSACTION; + + +---------------------------------------------------------------------------- +-- BeerPostPhoto (20 beer photos) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.BeerPostPhoto + (BeerPostID, PhotoID, LinkedAt) +VALUES + (@beer1, @photo5, '2023-04-10'), + (@beer2, @photo6, '2023-04-15'), + (@beer3, @photo7, '2023-05-20'), + (@beer4, @photo10, '2023-07-10'), + (@beer5, @photo11, '2023-08-15'), + (@beer6, @photo13, '2023-10-05'), + (@beer7, @photo16, '2024-03-20'), + (@beer8, @photo17, '2024-06-25'), + (@beer9, @photo19, '2024-07-15'), + (@beer10, @photo21, '2024-08-10'), + (@beer11, @photo22, '2024-09-05'), + (@beer12, @photo24, '2024-10-01'), + (@beer13, @photo26, '2024-10-10'), + (@beer14, @photo28, '2024-11-01'), + (@beer15, @photo29, '2024-11-15'), + (@beer16, @photo32, '2025-02-01'), + (@beer17, @photo33, '2025-03-15'), + (@beer18, @photo35, '2025-04-25'), + (@beer19, @photo36, '2025-06-01'), + (@beer20, @photo38, '2025-07-10'); +COMMIT TRANSACTION; + + +---------------------------------------------------------------------------- +-- Rating (50 ratings) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.Rating + (RatingID, Score, RatedByID) +VALUES + (@rating1, 5, @user2), + (@rating2, 4, @user3), + (@rating3, 5, @user4), + (@rating4, 3, @user5), + (@rating5, 4, @user6), + (@rating6, 5, @user7), + (@rating7, 4, @user8), + (@rating8, 5, @user9), + (@rating9, 3, @user10), + (@rating10, 4, @user11), + (@rating11, 5, @user12), + (@rating12, 4, @user13), + (@rating13, 5, @user14), + (@rating14, 3, @user15), + (@rating15, 4, @user16), + (@rating16, 5, @user17), + (@rating17, 4, @user18), + (@rating18, 5, @user19), + (@rating19, 3, @user20), + (@rating20, 4, @user21), + (@rating21, 5, @user22), + (@rating22, 4, @user23), + (@rating23, 5, @user24), + (@rating24, 3, @user25), + (@rating25, 4, @user26), + (@rating26, 5, @user27), + (@rating27, 4, @user28), + (@rating28, 5, @user29), + (@rating29, 3, @user30), + (@rating30, 4, @user1), + (@rating31, 5, @user3), + (@rating32, 4, @user4), + (@rating33, 5, @user6), + (@rating34, 3, @user8), + (@rating35, 4, @user9), + (@rating36, 5, @user10), + (@rating37, 4, @user11), + (@rating38, 5, @user13), + (@rating39, 3, @user14), + (@rating40, 4, @user15), + (@rating41, 5, @user16), + (@rating42, 4, @user17), + (@rating43, 5, @user18), + (@rating44, 3, @user19), + (@rating45, 4, @user20), + (@rating46, 5, @user21), + (@rating47, 4, @user22), + (@rating48, 5, @user23), + (@rating49, 3, @user24), + (@rating50, 4, @user25); +COMMIT TRANSACTION; + + +---------------------------------------------------------------------------- +-- BeerPostComment (30 beer comments) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.BeerPostComment + (CommentText, PostedByID, RatingID) +VALUES + ('This IPA is absolutely fantastic! Perfect balance of hops and malt.', @user2, @rating1), + ('Love the citrus notes in this beer. Will definitely buy again!', @user3, @rating2), + ('Rich and smooth stout. The chocolate flavor is amazing.', @user4, @rating3), + ('Good lager, very refreshing on a hot day.', @user5, @rating4), + ('Nice pale ale, but could use a bit more hop character.', @user6, @rating5), + ('Best wheat beer I''ve had in a while!', @user7, @rating6), + ('Solid porter with great roasted malt flavor.', @user8, @rating7), + ('This sour ale is perfectly tart and refreshing.', @user9, @rating8), + ('Decent pilsner, nothing special but drinkable.', @user10, @rating9), + ('The double IPA lives up to its name - super hoppy!', @user11, @rating10), + ('Vanilla porter is a unique and delicious combination.', @user12, @rating11), + ('Classic hefeweizen with authentic Bavarian character.', @user13, @rating12), + ('Belgian Bliss is truly blissful! Amazing complexity.', @user22, @rating21), + ('Copper Crown has the perfect amber color and taste.', @user23, @rating22), + ('This saison is incredibly refreshing and unique.', @user24, @rating23), + ('Barleywine is a bit too strong for my taste.', @user25, @rating24), + ('Love the citrus bomb! Perfect for IPA lovers.', @user26, @rating25), + ('Mosaic Dream lives up to its name - dreamy!', @user27, @rating26), + ('Farm fresh lager is exactly that - fresh and clean.', @user28, @rating27), + ('Midnight Express gives me the perfect coffee kick.', @user29, @rating28), + ('Harvest wheat is okay, but I prefer traditional wheats.', @user30, @rating29), + ('Cherry sunset sour is perfectly balanced.', @user1, @rating30), + ('Pacific Pale Ale brings back West Coast memories.', @user3, @rating31), + ('Bohemian Pilsner is as authentic as it gets.', @user4, @rating32), + ('Coffee porter is my new favorite breakfast beer!', @user6, @rating33), + ('Wild ferment is interesting but not for everyone.', @user8, @rating34), + ('Session IPA is perfect for summer afternoons.', @user9, @rating35), + ('Nutty brown ale has incredible depth of flavor.', @user10, @rating36), + ('Old Guardian is a masterpiece of brewing.', @user11, @rating37), + ('Imperial Stout deserves all the awards.', @user13, @rating38); +COMMIT TRANSACTION; + + +---------------------------------------------------------------------------- +-- BreweryPostComment (20 brewery comments) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.BreweryPostComment + (CommentText, PostedByID, RatingID) +VALUES + ('Amazing brewery! The taproom has a great atmosphere.', @user14, @rating13), + ('Love supporting local breweries like this one.', @user15, @rating14), + ('Good selection of beers, but service could be better.', @user16, @rating15), + ('Best brewery in the area, hands down!', @user17, @rating16), + ('Nice facility and friendly staff. Will visit again.', @user18, @rating17), + ('Great variety of beer styles. Something for everyone.', @user19, @rating18), + ('Decent brewery but a bit pricey.', @user20, @rating19), + ('Fantastic sour beer selection! Worth the trip.', @user21, @rating20), + ('Belgian House has the most authentic Belgian beers outside Belgium!', @user14, @rating39), + ('Amber Fields creates consistently excellent amber ales.', @user15, @rating40), + ('Farmhouse Funk is a must-visit for sour beer enthusiasts.', @user16, @rating41), + ('Brown Bear Brewing has a cozy atmosphere and great beer.', @user17, @rating42), + ('Vintage Vats ages their beers to perfection.', @user18, @rating43), + ('Hop Haven is always pushing boundaries with new hops.', @user19, @rating44), + ('Barrel & Grain sources locally and it shows in quality.', @user20, @rating45), + ('Hoppy Trails never disappoints with their IPAs.', @user21, @rating46), + ('Dark Horse makes the best stouts in the region.', @user22, @rating47), + ('Golden Gate Lager House is my -to for crisp lagers.', @user23, @rating48), + ('Mountain View Ales has incredible views and incredible beer.', @user24, @rating49), + ('Coastal Wheat Works perfects the art of wheat beer.', @user25, @rating50); +COMMIT TRANSACTION; + + +---------------------------------------------------------------------------- +-- END OF TEST DATA +---------------------------------------------------------------------------- +-- print user with most followers + From 33db1368ecac16b00fc5ae3e2c6e8595237e9140 Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Tue, 11 Nov 2025 03:45:01 -0500 Subject: [PATCH 04/25] Refactor schema and test data; remove DAL code Removed all DataAccessLayer C# code and related test project files. Updated schema.sql to add Country, StateProvince, and City tables, refactored brewery and beer post tables to include location and concurrency columns, and replaced the old comment/rating system with BeerPostComment. Updated test-data.sql to seed new location tables and refactored brewery data to use city and coordinates. --- .config/dotnet-tools.json | 13 + .../DataAccessLayer-Tests.csproj | 23 -- DataAccessLayer/BeerPost.cs | 35 -- DataAccessLayer/BeerPostPhoto.cs | 19 -- DataAccessLayer/BeerStyle.cs | 15 - DataAccessLayer/BiergartenContext.cs | 300 ----------------- DataAccessLayer/BreweryPost.cs | 23 -- DataAccessLayer/BreweryPostPhoto.cs | 19 -- DataAccessLayer/Comment.cs | 15 - DataAccessLayer/DataAccessLayer.csproj | 18 - DataAccessLayer/Photo.cs | 23 -- DataAccessLayer/UserAccount.cs | 41 --- DataAccessLayer/UserAvatar.cs | 17 - DataAccessLayer/UserCredential.cs | 19 -- DataAccessLayer/UserFollow.cs | 19 -- DataAccessLayer/UserVerification.cs | 15 - biergarten.sln | 6 + schema.sql | 144 ++++++-- test-data.sql | 310 ++++++------------ 19 files changed, 246 insertions(+), 828 deletions(-) create mode 100644 .config/dotnet-tools.json delete mode 100644 DataAccessLayer-Tests/DataAccessLayer-Tests.csproj delete mode 100644 DataAccessLayer/BeerPost.cs delete mode 100644 DataAccessLayer/BeerPostPhoto.cs delete mode 100644 DataAccessLayer/BeerStyle.cs delete mode 100644 DataAccessLayer/BiergartenContext.cs delete mode 100644 DataAccessLayer/BreweryPost.cs delete mode 100644 DataAccessLayer/BreweryPostPhoto.cs delete mode 100644 DataAccessLayer/Comment.cs delete mode 100644 DataAccessLayer/DataAccessLayer.csproj delete mode 100644 DataAccessLayer/Photo.cs delete mode 100644 DataAccessLayer/UserAccount.cs delete mode 100644 DataAccessLayer/UserAvatar.cs delete mode 100644 DataAccessLayer/UserCredential.cs delete mode 100644 DataAccessLayer/UserFollow.cs delete mode 100644 DataAccessLayer/UserVerification.cs diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json new file mode 100644 index 0000000..321b5d6 --- /dev/null +++ b/.config/dotnet-tools.json @@ -0,0 +1,13 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "csharpier": { + "version": "1.1.2", + "commands": [ + "csharpier" + ], + "rollForward": false + } + } +} \ No newline at end of file diff --git a/DataAccessLayer-Tests/DataAccessLayer-Tests.csproj b/DataAccessLayer-Tests/DataAccessLayer-Tests.csproj deleted file mode 100644 index 9c5b30a..0000000 --- a/DataAccessLayer-Tests/DataAccessLayer-Tests.csproj +++ /dev/null @@ -1,23 +0,0 @@ - - - - net8.0 - enable - enable - - false - true - - - - - - - - - - - - - - diff --git a/DataAccessLayer/BeerPost.cs b/DataAccessLayer/BeerPost.cs deleted file mode 100644 index 3242b91..0000000 --- a/DataAccessLayer/BeerPost.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace DataAccessLayer; - -public partial class BeerPost -{ - public Guid BeerPostID { get; set; } - - public string Name { get; set; } = null!; - - public string Description { get; set; } = null!; - - public decimal ABV { get; set; } - - public int IBU { get; set; } - - public Guid PostedByID { get; set; } - - public Guid BeerStyleID { get; set; } - - public Guid BrewedByID { get; set; } - - public DateTime CreatedAt { get; set; } - - public DateTime? UpdatedAt { get; set; } - - public virtual ICollection BeerPostPhotos { get; set; } = new List(); - - public virtual BeerStyle BeerStyle { get; set; } = null!; - - public virtual BreweryPost BrewedBy { get; set; } = null!; - - public virtual UserAccount PostedBy { get; set; } = null!; -} diff --git a/DataAccessLayer/BeerPostPhoto.cs b/DataAccessLayer/BeerPostPhoto.cs deleted file mode 100644 index cdb8963..0000000 --- a/DataAccessLayer/BeerPostPhoto.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace DataAccessLayer; - -public partial class BeerPostPhoto -{ - public Guid BeerPostPhotoID { get; set; } - - public Guid BeerPostID { get; set; } - - public Guid PhotoID { get; set; } - - public DateTime LinkedAt { get; set; } - - public virtual BeerPost BeerPost { get; set; } = null!; - - public virtual Photo Photo { get; set; } = null!; -} diff --git a/DataAccessLayer/BeerStyle.cs b/DataAccessLayer/BeerStyle.cs deleted file mode 100644 index 4af1a81..0000000 --- a/DataAccessLayer/BeerStyle.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace DataAccessLayer; - -public partial class BeerStyle -{ - public Guid BeerStyleID { get; set; } - - public string StyleName { get; set; } = null!; - - public string? Description { get; set; } - - public virtual ICollection BeerPosts { get; set; } = new List(); -} diff --git a/DataAccessLayer/BiergartenContext.cs b/DataAccessLayer/BiergartenContext.cs deleted file mode 100644 index 883a87d..0000000 --- a/DataAccessLayer/BiergartenContext.cs +++ /dev/null @@ -1,300 +0,0 @@ -using System; -using System.Collections.Generic; -using Microsoft.EntityFrameworkCore; - -namespace DataAccessLayer; - -public partial class BiergartenContext : DbContext -{ - public BiergartenContext() - { - } - - public BiergartenContext(DbContextOptions options) - : base(options) - { - } - - public virtual DbSet BeerPosts { get; set; } - - public virtual DbSet BeerPostPhotos { get; set; } - - public virtual DbSet BeerStyles { get; set; } - - public virtual DbSet BreweryPosts { get; set; } - - public virtual DbSet BreweryPostPhotos { get; set; } - - public virtual DbSet Comments { get; set; } - - public virtual DbSet Photos { get; set; } - - public virtual DbSet UserAccounts { get; set; } - - public virtual DbSet UserAvatars { get; set; } - - public virtual DbSet UserCredentials { get; set; } - - public virtual DbSet UserFollows { get; set; } - - public virtual DbSet UserVerifications { get; set; } - - protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) -#warning To protect potentially sensitive information in your connection string, you should move it out of source code. You can avoid scaffolding the connection string by using the Name= syntax to read it from configuration - see https://go.microsoft.com/fwlink/?linkid=2131148. For more guidance on storing connection strings, see https://go.microsoft.com/fwlink/?LinkId=723263. - => optionsBuilder.UseSqlServer("Server=(localdb)\\ProjectModels;Database=Biergarten;Trusted_Connection=True;"); - - protected override void OnModelCreating(ModelBuilder modelBuilder) - { - modelBuilder.Entity(entity => - { - entity.ToTable("BeerPost"); - - entity.HasIndex(e => e.BeerStyleID, "IX_BeerPost_BeerStyle"); - - entity.HasIndex(e => e.BrewedByID, "IX_BeerPost_BrewedBy"); - - entity.HasIndex(e => e.PostedByID, "IX_BeerPost_PostedBy"); - - entity.Property(e => e.BeerPostID).HasDefaultValueSql("(newid())"); - entity.Property(e => e.ABV).HasColumnType("decimal(4, 2)"); - entity.Property(e => e.CreatedAt) - .HasDefaultValueSql("(getdate())") - .HasColumnType("datetime"); - entity.Property(e => e.Name).HasMaxLength(100); - entity.Property(e => e.UpdatedAt).HasColumnType("datetime"); - - entity.HasOne(d => d.BeerStyle).WithMany(p => p.BeerPosts) - .HasForeignKey(d => d.BeerStyleID) - .OnDelete(DeleteBehavior.ClientSetNull) - .HasConstraintName("FK_BeerPost_BeerStyle"); - - entity.HasOne(d => d.BrewedBy).WithMany(p => p.BeerPosts) - .HasForeignKey(d => d.BrewedByID) - .OnDelete(DeleteBehavior.ClientSetNull) - .HasConstraintName("FK_BeerPost_Brewery"); - - entity.HasOne(d => d.PostedBy).WithMany(p => p.BeerPosts) - .HasForeignKey(d => d.PostedByID) - .OnDelete(DeleteBehavior.ClientSetNull) - .HasConstraintName("FK_BeerPost_PostedBy"); - }); - - modelBuilder.Entity(entity => - { - entity.ToTable("BeerPostPhoto"); - - entity.HasIndex(e => new { e.BeerPostID, e.PhotoID }, "IX_BeerPostPhoto_BeerPost_Photo"); - - entity.HasIndex(e => new { e.PhotoID, e.BeerPostID }, "IX_BeerPostPhoto_Photo_BeerPost"); - - entity.Property(e => e.BeerPostPhotoID).HasDefaultValueSql("(newid())"); - entity.Property(e => e.LinkedAt) - .HasDefaultValueSql("(getdate())") - .HasColumnType("datetime"); - - entity.HasOne(d => d.BeerPost).WithMany(p => p.BeerPostPhotos) - .HasForeignKey(d => d.BeerPostID) - .HasConstraintName("FK_BeerPostPhoto_BeerPost"); - - entity.HasOne(d => d.Photo).WithMany(p => p.BeerPostPhotos) - .HasForeignKey(d => d.PhotoID) - .HasConstraintName("FK_BeerPostPhoto_Photo"); - }); - - modelBuilder.Entity(entity => - { - entity.ToTable("BeerStyle"); - - entity.HasIndex(e => e.StyleName, "AK_BeerStyle_StyleName").IsUnique(); - - entity.Property(e => e.BeerStyleID).HasDefaultValueSql("(newid())"); - entity.Property(e => e.StyleName).HasMaxLength(100); - }); - - modelBuilder.Entity(entity => - { - entity.ToTable("BreweryPost"); - - entity.HasIndex(e => e.PostedByID, "IX_BreweryPost_PostedByID"); - - entity.Property(e => e.BreweryPostID).HasDefaultValueSql("(newid())"); - entity.Property(e => e.CreatedAt) - .HasDefaultValueSql("(getdate())") - .HasColumnType("datetime"); - entity.Property(e => e.Description).HasMaxLength(512); - entity.Property(e => e.UpdatedAt).HasColumnType("datetime"); - - entity.HasOne(d => d.PostedBy).WithMany(p => p.BreweryPosts) - .HasForeignKey(d => d.PostedByID) - .OnDelete(DeleteBehavior.ClientSetNull) - .HasConstraintName("FK_BreweryPost_UserAccount"); - }); - - modelBuilder.Entity(entity => - { - entity.ToTable("BreweryPostPhoto"); - - entity.HasIndex(e => new { e.BreweryPostID, e.PhotoID }, "IX_BreweryPostPhoto_BreweryPost_Photo"); - - entity.HasIndex(e => new { e.PhotoID, e.BreweryPostID }, "IX_BreweryPostPhoto_Photo_BreweryPost"); - - entity.Property(e => e.BreweryPostPhotoID).HasDefaultValueSql("(newid())"); - entity.Property(e => e.LinkedAt) - .HasDefaultValueSql("(getdate())") - .HasColumnType("datetime"); - - entity.HasOne(d => d.BreweryPost).WithMany(p => p.BreweryPostPhotos) - .HasForeignKey(d => d.BreweryPostID) - .HasConstraintName("FK_BreweryPostPhoto_BreweryPost"); - - entity.HasOne(d => d.Photo).WithMany(p => p.BreweryPostPhotos) - .HasForeignKey(d => d.PhotoID) - .HasConstraintName("FK_BreweryPostPhoto_Photo"); - }); - - modelBuilder.Entity(entity => - { - entity.HasKey(e => e.CommentID).HasName("PK_CommentID"); - - entity.ToTable("Comment"); - - entity.HasIndex(e => e.PostedByID, "IX_Comment_PostedByID"); - - entity.Property(e => e.CommentID).HasDefaultValueSql("(newid())"); - entity.Property(e => e.CommentText).HasMaxLength(512); - - entity.HasOne(d => d.PostedBy).WithMany(p => p.Comments) - .HasForeignKey(d => d.PostedByID) - .OnDelete(DeleteBehavior.ClientSetNull) - .HasConstraintName("FK_PostedByID"); - }); - - modelBuilder.Entity(entity => - { - entity.ToTable("Photo"); - - entity.HasIndex(e => e.UploadedByID, "IX_Photo_UploadedByID"); - - entity.Property(e => e.PhotoID).HasDefaultValueSql("(newid())"); - entity.Property(e => e.Hyperlink).HasMaxLength(256); - entity.Property(e => e.UploadedAt) - .HasDefaultValueSql("(getdate())") - .HasColumnType("datetime"); - - entity.HasOne(d => d.UploadedBy).WithMany(p => p.Photos) - .HasForeignKey(d => d.UploadedByID) - .OnDelete(DeleteBehavior.ClientSetNull) - .HasConstraintName("FK_Photo_UploadedBy"); - }); - - modelBuilder.Entity(entity => - { - entity.ToTable("UserAccount"); - - entity.HasIndex(e => e.Email, "AK_Email").IsUnique(); - - entity.HasIndex(e => e.Username, "AK_Username").IsUnique(); - - entity.Property(e => e.UserAccountID).HasDefaultValueSql("(newid())"); - entity.Property(e => e.CreatedAt).HasColumnType("datetime"); - entity.Property(e => e.DateOfBirth).HasColumnType("datetime"); - entity.Property(e => e.Email) - .HasMaxLength(128) - .IsUnicode(false); - entity.Property(e => e.FirstName).HasMaxLength(128); - entity.Property(e => e.LastName).HasMaxLength(128); - entity.Property(e => e.UpdatedAt).HasColumnType("datetime"); - entity.Property(e => e.Username) - .HasMaxLength(64) - .IsUnicode(false); - }); - - modelBuilder.Entity(entity => - { - entity.ToTable("UserAvatar"); - - entity.HasIndex(e => e.UserAccountID, "AK_UserAvatar_UserAccountID").IsUnique(); - - entity.HasIndex(e => e.UserAccountID, "IX_UserAvatar_UserAccount"); - - entity.Property(e => e.UserAvatarID).HasDefaultValueSql("(newid())"); - - entity.HasOne(d => d.Photo).WithMany(p => p.UserAvatars) - .HasForeignKey(d => d.PhotoID) - .OnDelete(DeleteBehavior.ClientSetNull) - .HasConstraintName("FK_UserAvatar_PhotoID"); - - entity.HasOne(d => d.UserAccount).WithOne(p => p.UserAvatar) - .HasForeignKey(d => d.UserAccountID) - .HasConstraintName("FK_UserAvatar_UserAccount"); - }); - - modelBuilder.Entity(entity => - { - entity.ToTable("UserCredential"); - - entity.HasIndex(e => e.UserAccountID, "AK_UserCredential_UserAccountID").IsUnique(); - - entity.HasIndex(e => e.UserAccountID, "IX_UserCredential_UserAccount"); - - entity.Property(e => e.UserCredentialID).HasDefaultValueSql("(newid())"); - entity.Property(e => e.CreatedAt) - .HasDefaultValueSql("(getdate())") - .HasColumnType("datetime"); - entity.Property(e => e.Expiry) - .HasDefaultValueSql("(dateadd(day,(90),getdate()))") - .HasColumnType("datetime"); - entity.Property(e => e.Hash).HasMaxLength(100); - - entity.HasOne(d => d.UserAccount).WithOne(p => p.UserCredential) - .HasForeignKey(d => d.UserAccountID) - .HasConstraintName("FK_UserCredential_UserAccount"); - }); - - modelBuilder.Entity(entity => - { - entity.ToTable("UserFollow"); - - entity.HasIndex(e => new { e.FollowingID, e.UserAccountID }, "IX_UserFollow_FollowingID_UserAccount"); - - entity.HasIndex(e => new { e.UserAccountID, e.FollowingID }, "IX_UserFollow_UserAccount_FollowingID"); - - entity.Property(e => e.UserFollowID).HasDefaultValueSql("(newid())"); - entity.Property(e => e.CreatedAt) - .HasDefaultValueSql("(getdate())") - .HasColumnType("datetime"); - - entity.HasOne(d => d.Following).WithMany(p => p.UserFollowFollowings) - .HasForeignKey(d => d.FollowingID) - .OnDelete(DeleteBehavior.ClientSetNull) - .HasConstraintName("FK_UserFollow_UserAccountFollowing"); - - entity.HasOne(d => d.UserAccount).WithMany(p => p.UserFollowUserAccounts) - .HasForeignKey(d => d.UserAccountID) - .OnDelete(DeleteBehavior.ClientSetNull) - .HasConstraintName("FK_UserFollow_UserAccount"); - }); - - modelBuilder.Entity(entity => - { - entity.ToTable("UserVerification"); - - entity.HasIndex(e => e.UserAccountID, "AK_UserVerification_UserAccountID").IsUnique(); - - entity.HasIndex(e => e.UserAccountID, "IX_UserVerification_UserAccount"); - - entity.Property(e => e.UserVerificationID).HasDefaultValueSql("(newid())"); - entity.Property(e => e.VerificationDateTime) - .HasDefaultValueSql("(getdate())") - .HasColumnType("datetime"); - - entity.HasOne(d => d.UserAccount).WithOne(p => p.UserVerification) - .HasForeignKey(d => d.UserAccountID) - .HasConstraintName("FK_UserVerification_UserAccount"); - }); - - OnModelCreatingPartial(modelBuilder); - } - - partial void OnModelCreatingPartial(ModelBuilder modelBuilder); -} diff --git a/DataAccessLayer/BreweryPost.cs b/DataAccessLayer/BreweryPost.cs deleted file mode 100644 index c706b98..0000000 --- a/DataAccessLayer/BreweryPost.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace DataAccessLayer; - -public partial class BreweryPost -{ - public Guid BreweryPostID { get; set; } - - public Guid PostedByID { get; set; } - - public string Description { get; set; } = null!; - - public DateTime CreatedAt { get; set; } - - public DateTime? UpdatedAt { get; set; } - - public virtual ICollection BeerPosts { get; set; } = new List(); - - public virtual ICollection BreweryPostPhotos { get; set; } = new List(); - - public virtual UserAccount PostedBy { get; set; } = null!; -} diff --git a/DataAccessLayer/BreweryPostPhoto.cs b/DataAccessLayer/BreweryPostPhoto.cs deleted file mode 100644 index 1191ae6..0000000 --- a/DataAccessLayer/BreweryPostPhoto.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace DataAccessLayer; - -public partial class BreweryPostPhoto -{ - public Guid BreweryPostPhotoID { get; set; } - - public Guid BreweryPostID { get; set; } - - public Guid PhotoID { get; set; } - - public DateTime LinkedAt { get; set; } - - public virtual BreweryPost BreweryPost { get; set; } = null!; - - public virtual Photo Photo { get; set; } = null!; -} diff --git a/DataAccessLayer/Comment.cs b/DataAccessLayer/Comment.cs deleted file mode 100644 index 4eb0a84..0000000 --- a/DataAccessLayer/Comment.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace DataAccessLayer; - -public partial class Comment -{ - public Guid CommentID { get; set; } - - public string? CommentText { get; set; } - - public Guid PostedByID { get; set; } - - public virtual UserAccount PostedBy { get; set; } = null!; -} diff --git a/DataAccessLayer/DataAccessLayer.csproj b/DataAccessLayer/DataAccessLayer.csproj deleted file mode 100644 index bb3f681..0000000 --- a/DataAccessLayer/DataAccessLayer.csproj +++ /dev/null @@ -1,18 +0,0 @@ - - - - net8.0 - DataAccessLayer - enable - enable - - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - diff --git a/DataAccessLayer/Photo.cs b/DataAccessLayer/Photo.cs deleted file mode 100644 index ba2b881..0000000 --- a/DataAccessLayer/Photo.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace DataAccessLayer; - -public partial class Photo -{ - public Guid PhotoID { get; set; } - - public string? Hyperlink { get; set; } - - public Guid UploadedByID { get; set; } - - public DateTime UploadedAt { get; set; } - - public virtual ICollection BeerPostPhotos { get; set; } = new List(); - - public virtual ICollection BreweryPostPhotos { get; set; } = new List(); - - public virtual UserAccount UploadedBy { get; set; } = null!; - - public virtual ICollection UserAvatars { get; set; } = new List(); -} diff --git a/DataAccessLayer/UserAccount.cs b/DataAccessLayer/UserAccount.cs deleted file mode 100644 index a09ed2c..0000000 --- a/DataAccessLayer/UserAccount.cs +++ /dev/null @@ -1,41 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace DataAccessLayer; - -public partial class UserAccount -{ - public Guid UserAccountID { get; set; } - - public string Username { get; set; } = null!; - - public string FirstName { get; set; } = null!; - - public string LastName { get; set; } = null!; - - public string Email { get; set; } = null!; - - public DateTime CreatedAt { get; set; } - - public DateTime? UpdatedAt { get; set; } - - public DateTime DateOfBirth { get; set; } - - public virtual ICollection BeerPosts { get; set; } = new List(); - - public virtual ICollection BreweryPosts { get; set; } = new List(); - - public virtual ICollection Comments { get; set; } = new List(); - - public virtual ICollection Photos { get; set; } = new List(); - - public virtual UserAvatar? UserAvatar { get; set; } - - public virtual UserCredential? UserCredential { get; set; } - - public virtual ICollection UserFollowFollowings { get; set; } = new List(); - - public virtual ICollection UserFollowUserAccounts { get; set; } = new List(); - - public virtual UserVerification? UserVerification { get; set; } -} diff --git a/DataAccessLayer/UserAvatar.cs b/DataAccessLayer/UserAvatar.cs deleted file mode 100644 index d9b9aba..0000000 --- a/DataAccessLayer/UserAvatar.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace DataAccessLayer; - -public partial class UserAvatar -{ - public Guid UserAvatarID { get; set; } - - public Guid UserAccountID { get; set; } - - public Guid PhotoID { get; set; } - - public virtual Photo Photo { get; set; } = null!; - - public virtual UserAccount UserAccount { get; set; } = null!; -} diff --git a/DataAccessLayer/UserCredential.cs b/DataAccessLayer/UserCredential.cs deleted file mode 100644 index 039861c..0000000 --- a/DataAccessLayer/UserCredential.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace DataAccessLayer; - -public partial class UserCredential -{ - public Guid UserCredentialID { get; set; } - - public Guid UserAccountID { get; set; } - - public DateTime CreatedAt { get; set; } - - public DateTime Expiry { get; set; } - - public string Hash { get; set; } = null!; - - public virtual UserAccount UserAccount { get; set; } = null!; -} diff --git a/DataAccessLayer/UserFollow.cs b/DataAccessLayer/UserFollow.cs deleted file mode 100644 index 975672f..0000000 --- a/DataAccessLayer/UserFollow.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace DataAccessLayer; - -public partial class UserFollow -{ - public Guid UserFollowID { get; set; } - - public Guid UserAccountID { get; set; } - - public Guid FollowingID { get; set; } - - public DateTime CreatedAt { get; set; } - - public virtual UserAccount Following { get; set; } = null!; - - public virtual UserAccount UserAccount { get; set; } = null!; -} diff --git a/DataAccessLayer/UserVerification.cs b/DataAccessLayer/UserVerification.cs deleted file mode 100644 index c4d7105..0000000 --- a/DataAccessLayer/UserVerification.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace DataAccessLayer; - -public partial class UserVerification -{ - public Guid UserVerificationID { get; set; } - - public Guid UserAccountID { get; set; } - - public DateTime VerificationDateTime { get; set; } - - public virtual UserAccount UserAccount { get; set; } = null!; -} diff --git a/biergarten.sln b/biergarten.sln index 869e9ba..6cb0770 100644 --- a/biergarten.sln +++ b/biergarten.sln @@ -7,6 +7,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataAccessLayer", "DataAcce EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataAccessLayer-Tests", "DataAccessLayer-Tests\DataAccessLayer-Tests.csproj", "{3638DC4E-D4C8-4DBE-CF3B-EF2C805509CE}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8EC462FD-D22E-90A8-E5CE-7E832BA40C5D}" + ProjectSection(SolutionItems) = preProject + schema.sql = schema.sql + test-data.sql = test-data.sql + EndProjectSection +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU diff --git a/schema.sql b/schema.sql index eab8f62..64a35fc 100644 --- a/schema.sql +++ b/schema.sql @@ -41,6 +41,8 @@ CREATE TABLE UserAccount DateOfBirth DATETIME NOT NULL, + Timer ROWVERSION, + CONSTRAINT PK_UserAccount PRIMARY KEY (UserAccountID), @@ -51,27 +53,6 @@ CREATE TABLE UserAccount UNIQUE (Email), ); ----------------------------------------------------------------------------- ----------------------------------------------------------------------------- -CREATE TABLE Comment -( - CommentID UNIQUEIDENTIFIER - CONSTRAINT DF_CommentID DEFAULT NEWID(), - - CommentText NVARCHAR(512), - - PostedByID UNIQUEIDENTIFIER NOT NULL, - - CONSTRAINT PK_CommentID - PRIMARY KEY (CommentID), - - CONSTRAINT FK_PostedByID - FOREIGN KEY (PostedByID) REFERENCES UserAccount(UserAccountID), -) - -CREATE NONCLUSTERED INDEX IX_Comment_PostedByID -ON Comment(PostedByID); - ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- @@ -88,6 +69,8 @@ CREATE TABLE Photo -- All photos must be linked to a user account, you cannot de UploadedAt DATETIME NOT NULL CONSTRAINT DF_Photo_UploadedAt DEFAULT GETDATE(), + Timer ROWVERSION, + CONSTRAINT PK_Photo PRIMARY KEY (PhotoID), @@ -112,6 +95,8 @@ CREATE TABLE UserAvatar -- delete avatar photo when user account is deleted PhotoID UNIQUEIDENTIFIER NOT NULL, + Timer ROWVERSION, + CONSTRAINT PK_UserAvatar PRIMARY KEY (UserAvatarID), CONSTRAINT FK_UserAvatar_UserAccount @@ -144,6 +129,8 @@ CREATE TABLE UserVerification -- delete verification data when user account is d CONSTRAINT DF_VerificationDateTime DEFAULT GETDATE(), + Timer ROWVERSION, + CONSTRAINT PK_UserVerification PRIMARY KEY (UserVerificationID), @@ -178,6 +165,8 @@ CREATE TABLE UserCredential -- delete credentials when user account is deleted Hash NVARCHAR(100) NOT NULL, -- uses argon2 + Timer ROWVERSION, + CONSTRAINT PK_UserCredential PRIMARY KEY (UserCredentialID), @@ -208,6 +197,8 @@ CREATE TABLE UserFollow CreatedAt DATETIME CONSTRAINT DF_UserFollow_CreatedAt DEFAULT GETDATE() NOT NULL, + Timer ROWVERSION, + CONSTRAINT PK_UserFollow PRIMARY KEY (UserFollowID), @@ -229,6 +220,67 @@ CREATE NONCLUSTERED INDEX IX_UserFollow_UserAccount_FollowingID CREATE NONCLUSTERED INDEX IX_UserFollow_FollowingID_UserAccount ON UserFollow(FollowingID, UserAccountID); + +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- + +CREATE TABLE Country +( + CountryID UNIQUEIDENTIFIER + CONSTRAINT DF_CountryID DEFAULT NEWID(), + + CountryName NVARCHAR(100) NOT NULL, + + CountryCode CHAR(3) NOT NULL, + + Timer ROWVERSION, + + CONSTRAINT PK_Country + PRIMARY KEY (CountryID), +); + +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- + +CREATE TABLE StateProvince +( + StateProvinceID UNIQUEIDENTIFIER + CONSTRAINT DF_StateProvinceID DEFAULT NEWID(), + + StateProvinceName NVARCHAR(100) NOT NULL, + + CountryID UNIQUEIDENTIFIER NOT NULL, + + Timer ROWVERSION, + + CONSTRAINT PK_StateProvince + PRIMARY KEY (StateProvinceID), + + CONSTRAINT FK_StateProvince_Country + FOREIGN KEY (CountryID) + REFERENCES Country(CountryID) +); + + +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- + +CREATE TABLE City +( + CityID UNIQUEIDENTIFIER + CONSTRAINT DF_CityID DEFAULT NEWID(), + + CityName NVARCHAR(100) NOT NULL, + + StateProvinceID UNIQUEIDENTIFIER NOT NULL, + + Timer ROWVERSION, + + CONSTRAINT PK_City + PRIMARY KEY (CityID), +); + + ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- @@ -246,6 +298,12 @@ CREATE TABLE BreweryPost -- A user cannot be deleted if they have a post UpdatedAt DATETIME NULL, + Timer ROWVERSION, + + CityID UNIQUEIDENTIFIER NOT NULL, + + Coordinates GEOGRAPHY NOT NULL, + CONSTRAINT PK_BreweryPost PRIMARY KEY (BreweryPostID), @@ -258,9 +316,9 @@ CREATE TABLE BreweryPost -- A user cannot be deleted if they have a post CREATE NONCLUSTERED INDEX IX_BreweryPost_PostedByID ON BreweryPost(PostedByID); ----------------------------------------------------------------------------- ----------------------------------------------------------------------------- +--------------------------------------------------------------------------- +---------------------------------------------------------------------------- CREATE TABLE BreweryPostPhoto -- All photos linked to a post are deleted if the post is deleted ( BreweryPostPhotoID UNIQUEIDENTIFIER @@ -273,6 +331,8 @@ CREATE TABLE BreweryPostPhoto -- All photos linked to a post are deleted if the LinkedAt DATETIME NOT NULL CONSTRAINT DF_BreweryPostPhoto_LinkedAt DEFAULT GETDATE(), + Timer ROWVERSION, + CONSTRAINT PK_BreweryPostPhoto PRIMARY KEY (BreweryPostPhotoID), @@ -304,6 +364,8 @@ CREATE TABLE BeerStyle Description NVARCHAR(MAX), + Timer ROWVERSION, + CONSTRAINT PK_BeerStyle PRIMARY KEY (BeerStyleID), @@ -340,6 +402,8 @@ CREATE TABLE BeerPost UpdatedAt DATETIME, + Timer ROWVERSION, + CONSTRAINT PK_BeerPost PRIMARY KEY (BeerPostID), @@ -386,6 +450,8 @@ CREATE TABLE BeerPostPhoto -- All photos linked to a beer post are deleted if th LinkedAt DATETIME NOT NULL CONSTRAINT DF_BeerPostPhoto_LinkedAt DEFAULT GETDATE(), + Timer ROWVERSION, + CONSTRAINT PK_BeerPostPhoto PRIMARY KEY (BeerPostPhotoID), @@ -409,10 +475,36 @@ ON BeerPostPhoto(BeerPostID, PhotoID); ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- +CREATE TABLE BeerPostComment +( + BeerPostCommentID UNIQUEIDENTIFIER + CONSTRAINT DF_BeerPostComment DEFAULT NEWID(), + + Comment NVARCHAR(250) NOT NULL, + + BeerPostID UNIQUEIDENTIFIER NOT NULL, + + Rating INT NOT NULL, + + Timer ROWVERSION, + + CONSTRAINT PK_BeerPostComment + PRIMARY KEY (BeerPostCommentID), + + CONSTRAINT FK_BeerPostComment_BeerPost + FOREIGN KEY (BeerPostID) REFERENCES BeerPost(BeerPostID) +) + +CREATE NONCLUSTERED INDEX IX_BeerPostComment_BeerPost + ON BeerPostComment(BeerPostID) + +----------------------------------------------------------------------------- +----------------------------------------------------------------------------- + /* -Install-Package Microsoft.EntityFrameworkCore.SqlServer -Install-Package Microsoft.EntityFrameworkCore.Tools +dotnet add package Microsoft.EntityFrameworkCore.SqlServer +dotnet add package Microsoft.EntityFrameworkCore.Tools -Scaffold-DbContext "Server=(localdb)\ProjectModels;Database=Biergarten;Trusted_Connection=True;" Microsoft.EntityFrameworkCore.SqlServer -Context BiergartenContext -UseDatabaseNames -Force +Scaffold-DbContext "Data Source=AARONPC\INFO5052;Integrated Security=True;Persist Security Info=False;Pooling=False;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=True;Database=Biergarten" Microsoft.EntityFrameworkCore.SqlServer -Context BiergartenContext -ContextDir "." -OutputDir "Entities" -UseDatabaseNames -Force */ diff --git a/test-data.sql b/test-data.sql index 1942bde..bbaa1ea 100644 --- a/test-data.sql +++ b/test-data.sql @@ -1,7 +1,6 @@ USE Biergarten; --- User Account Variables (30 users) DECLARE @user1 UNIQUEIDENTIFIER = NEWID(), @user2 UNIQUEIDENTIFIER = NEWID(), @@ -34,7 +33,6 @@ DECLARE @user29 UNIQUEIDENTIFIER = NEWID(), @user30 UNIQUEIDENTIFIER = NEWID(), --- BeerStyle Variables (13 styles) @ipa UNIQUEIDENTIFIER = NEWID(), @stout UNIQUEIDENTIFIER = NEWID(), @lager UNIQUEIDENTIFIER = NEWID(), @@ -49,7 +47,6 @@ DECLARE @brown UNIQUEIDENTIFIER = NEWID(), @barleywine UNIQUEIDENTIFIER = NEWID(), --- Photo Variables (40 photos) @photo1 UNIQUEIDENTIFIER = NEWID(), @photo2 UNIQUEIDENTIFIER = NEWID(), @photo3 UNIQUEIDENTIFIER = NEWID(), @@ -91,7 +88,6 @@ DECLARE @photo39 UNIQUEIDENTIFIER = NEWID(), @photo40 UNIQUEIDENTIFIER = NEWID(), --- BreweryPost Variables (15 breweries) @brewery1 UNIQUEIDENTIFIER = NEWID(), @brewery2 UNIQUEIDENTIFIER = NEWID(), @brewery3 UNIQUEIDENTIFIER = NEWID(), @@ -108,7 +104,6 @@ DECLARE @brewery14 UNIQUEIDENTIFIER = NEWID(), @brewery15 UNIQUEIDENTIFIER = NEWID(), --- BeerPost Variables (28 beers) @beer1 UNIQUEIDENTIFIER = NEWID(), @beer2 UNIQUEIDENTIFIER = NEWID(), @beer3 UNIQUEIDENTIFIER = NEWID(), @@ -138,57 +133,39 @@ DECLARE @beer27 UNIQUEIDENTIFIER = NEWID(), @beer28 UNIQUEIDENTIFIER = NEWID(), --- Rating Variables (50 ratings) -@rating1 UNIQUEIDENTIFIER = NEWID(), -@rating2 UNIQUEIDENTIFIER = NEWID(), -@rating3 UNIQUEIDENTIFIER = NEWID(), -@rating4 UNIQUEIDENTIFIER = NEWID(), -@rating5 UNIQUEIDENTIFIER = NEWID(), -@rating6 UNIQUEIDENTIFIER = NEWID(), -@rating7 UNIQUEIDENTIFIER = NEWID(), -@rating8 UNIQUEIDENTIFIER = NEWID(), -@rating9 UNIQUEIDENTIFIER = NEWID(), -@rating10 UNIQUEIDENTIFIER = NEWID(), -@rating11 UNIQUEIDENTIFIER = NEWID(), -@rating12 UNIQUEIDENTIFIER = NEWID(), -@rating13 UNIQUEIDENTIFIER = NEWID(), -@rating14 UNIQUEIDENTIFIER = NEWID(), -@rating15 UNIQUEIDENTIFIER = NEWID(), -@rating16 UNIQUEIDENTIFIER = NEWID(), -@rating17 UNIQUEIDENTIFIER = NEWID(), -@rating18 UNIQUEIDENTIFIER = NEWID(), -@rating19 UNIQUEIDENTIFIER = NEWID(), -@rating20 UNIQUEIDENTIFIER = NEWID(), -@rating21 UNIQUEIDENTIFIER = NEWID(), -@rating22 UNIQUEIDENTIFIER = NEWID(), -@rating23 UNIQUEIDENTIFIER = NEWID(), -@rating24 UNIQUEIDENTIFIER = NEWID(), -@rating25 UNIQUEIDENTIFIER = NEWID(), -@rating26 UNIQUEIDENTIFIER = NEWID(), -@rating27 UNIQUEIDENTIFIER = NEWID(), -@rating28 UNIQUEIDENTIFIER = NEWID(), -@rating29 UNIQUEIDENTIFIER = NEWID(), -@rating30 UNIQUEIDENTIFIER = NEWID(), -@rating31 UNIQUEIDENTIFIER = NEWID(), -@rating32 UNIQUEIDENTIFIER = NEWID(), -@rating33 UNIQUEIDENTIFIER = NEWID(), -@rating34 UNIQUEIDENTIFIER = NEWID(), -@rating35 UNIQUEIDENTIFIER = NEWID(), -@rating36 UNIQUEIDENTIFIER = NEWID(), -@rating37 UNIQUEIDENTIFIER = NEWID(), -@rating38 UNIQUEIDENTIFIER = NEWID(), -@rating39 UNIQUEIDENTIFIER = NEWID(), -@rating40 UNIQUEIDENTIFIER = NEWID(), -@rating41 UNIQUEIDENTIFIER = NEWID(), -@rating42 UNIQUEIDENTIFIER = NEWID(), -@rating43 UNIQUEIDENTIFIER = NEWID(), -@rating44 UNIQUEIDENTIFIER = NEWID(), -@rating45 UNIQUEIDENTIFIER = NEWID(), -@rating46 UNIQUEIDENTIFIER = NEWID(), -@rating47 UNIQUEIDENTIFIER = NEWID(), -@rating48 UNIQUEIDENTIFIER = NEWID(), -@rating49 UNIQUEIDENTIFIER = NEWID(), -@rating50 UNIQUEIDENTIFIER = NEWID(); +@countryUSA UNIQUEIDENTIFIER = NEWID(), + +@stateOregon UNIQUEIDENTIFIER = NEWID(), +@stateMichigan UNIQUEIDENTIFIER = NEWID(), +@stateCalifornia UNIQUEIDENTIFIER = NEWID(), +@stateColorado UNIQUEIDENTIFIER = NEWID(), +@stateWashington UNIQUEIDENTIFIER = NEWID(), +@stateIllinois UNIQUEIDENTIFIER = NEWID(), +@stateNewYork UNIQUEIDENTIFIER = NEWID(), +@stateTexas UNIQUEIDENTIFIER = NEWID(), +@stateMassachusetts UNIQUEIDENTIFIER = NEWID(), +@statePennsylvania UNIQUEIDENTIFIER = NEWID(), +@stateNorthCarolina UNIQUEIDENTIFIER = NEWID(), +@stateGeorgia UNIQUEIDENTIFIER = NEWID(), +@stateOhio UNIQUEIDENTIFIER = NEWID(), +@stateMissouri UNIQUEIDENTIFIER = NEWID(), +@stateVirginia UNIQUEIDENTIFIER = NEWID(), + +@cityPortland UNIQUEIDENTIFIER = NEWID(), +@cityGrandRapids UNIQUEIDENTIFIER = NEWID(), +@citySanFrancisco UNIQUEIDENTIFIER = NEWID(), +@cityDenver UNIQUEIDENTIFIER = NEWID(), +@citySeattle UNIQUEIDENTIFIER = NEWID(), +@cityChicago UNIQUEIDENTIFIER = NEWID(), +@cityBrooklyn UNIQUEIDENTIFIER = NEWID(), +@cityAustin UNIQUEIDENTIFIER = NEWID(), +@cityBoston UNIQUEIDENTIFIER = NEWID(), +@cityPhiladelphia UNIQUEIDENTIFIER = NEWID(), +@cityAsheville UNIQUEIDENTIFIER = NEWID(), +@cityAtlanta UNIQUEIDENTIFIER = NEWID(), +@cityColumbus UNIQUEIDENTIFIER = NEWID(), +@cityKansasCity UNIQUEIDENTIFIER = NEWID(), +@cityRichmond UNIQUEIDENTIFIER = NEWID(); ---------------------------------------------------------------------------- -- UserAccount (30 users) @@ -252,7 +229,6 @@ VALUES (@barleywine, 'Barleywine', 'Strong ale with intense malt flavors and high alcohol content.'); COMMIT TRANSACTION; - ---------------------------------------------------------------------------- -- UserCredential (28 credentials) ---------------------------------------------------------------------------- @@ -439,28 +415,88 @@ VALUES COMMIT TRANSACTION; +-- Country (1 country) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.Country + (CountryID, CountryName, CountryCode) +VALUES + (@countryUSA, 'United States', 'USA'); +COMMIT TRANSACTION; + + +---------------------------------------------------------------------------- +-- StateProvince (15 states/provinces) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.StateProvince + (StateProvinceID, StateProvinceName, CountryID) +VALUES + (@stateOregon, 'Oregon', @countryUSA), + (@stateMichigan, 'Michigan', @countryUSA), + (@stateCalifornia, 'California', @countryUSA), + (@stateColorado, 'Colorado', @countryUSA), + (@stateWashington, 'Washington', @countryUSA), + (@stateIllinois, 'Illinois', @countryUSA), + (@stateNewYork, 'New York', @countryUSA), + (@stateTexas, 'Texas', @countryUSA), + (@stateMassachusetts, 'Massachusetts', @countryUSA), + (@statePennsylvania, 'Pennsylvania', @countryUSA), + (@stateNorthCarolina, 'North Carolina', @countryUSA), + (@stateGeorgia, 'Georgia', @countryUSA), + (@stateOhio, 'Ohio', @countryUSA), + (@stateMissouri, 'Missouri', @countryUSA), + (@stateVirginia, 'Virginia', @countryUSA); +COMMIT TRANSACTION; + + +---------------------------------------------------------------------------- +-- City (15 cities) +---------------------------------------------------------------------------- +BEGIN TRANSACTION; +INSERT INTO dbo.City + (CityID, CityName, StateProvinceID) +VALUES + (@cityPortland, 'Portland', @stateOregon), + (@cityGrandRapids, 'Grand Rapids', @stateMichigan), + (@citySanFrancisco, 'San Francisco', @stateCalifornia), + (@cityDenver, 'Denver', @stateColorado), + (@citySeattle, 'Seattle', @stateWashington), + (@cityChicago, 'Chicago', @stateIllinois), + (@cityBrooklyn, 'Brooklyn', @stateNewYork), + (@cityAustin, 'Austin', @stateTexas), + (@cityBoston, 'Boston', @stateMassachusetts), + (@cityPhiladelphia, 'Philadelphia', @statePennsylvania), + (@cityAsheville, 'Asheville', @stateNorthCarolina), + (@cityAtlanta, 'Atlanta', @stateGeorgia), + (@cityColumbus, 'Columbus', @stateOhio), + (@cityKansasCity, 'Kansas City', @stateMissouri), + (@cityRichmond, 'Richmond', @stateVirginia); +COMMIT TRANSACTION; + + ---------------------------------------------------------------------------- -- BreweryPost (15 breweries) ---------------------------------------------------------------------------- BEGIN TRANSACTION; INSERT INTO dbo.BreweryPost - (BreweryPostID, PostedByID, Description, CreatedAt) + (BreweryPostID, PostedByID, Description, CreatedAt, UpdatedAt, CityID, Coordinates) VALUES - (@brewery1, @user1, 'Hoppy Trails Brewery - Crafting exceptional IPAs since 2020. Located in the heart of Portland.', '2023-02-01'), - (@brewery2, @user2, 'Dark Horse Brewing Co. - Specializing in rich stouts and porters. Family owned and operated.', '2023-03-01'), - (@brewery3, @user3, 'Golden Gate Lager House - Traditional German-style lagers brewed with precision.', '2023-04-01'), - (@brewery4, @user5, 'Mountain View Ales - High-altitude brewing for unique flavor profiles.', '2023-05-15'), - (@brewery5, @user6, 'Coastal Wheat Works - Refreshing wheat beers perfect for any season.', '2023-06-20'), - (@brewery6, @user9, 'Riverside Porter Factory - Classic porters with a modern twist.', '2023-08-10'), - (@brewery7, @user11, 'Sunset Sour Cellars - Experimental sour ales aged in oak barrels.', '2024-01-20'), - (@brewery8, @user14, 'Urban Craft Collective - Community-focused brewery with rotating seasonal offerings.', '2024-05-10'), - (@brewery9, @user4, 'Belgian House - Authentic Belgian brewing traditions in the heart of the city.', '2024-06-01'), - (@brewery10, @user18, 'Amber Fields Brewery - Celebrating the richness of amber ales and maltier styles.', '2024-08-15'), - (@brewery11, @user20, 'Farmhouse Funk - Specializing in saisons and wild fermented ales.', '2024-09-20'), - (@brewery12, @user24, 'Brown Bear Brewing - Cozy taproom featuring award-winning brown ales.', '2025-01-10'), - (@brewery13, @user27, 'Vintage Vats - Small-batch barleywines and aged strong ales.', '2025-02-25'), - (@brewery14, @user12, 'Hop Haven - Experimental IPAs and cutting-edge hop varieties.', '2024-10-05'), - (@brewery15, @user8, 'Barrel & Grain - Farm-to-glass brewery using locally sourced ingredients.', '2024-04-20'); + (@brewery1, @user1, 'Hoppy Trails Brewery - Crafting exceptional IPAs since 2020. Located in the heart of Portland.', '2023-02-01', NULL, @cityPortland, GEOGRAPHY::Point(45.5152, -122.6784, 4326)), + (@brewery2, @user2, 'Dark Horse Brewing Co. - Specializing in rich stouts and porters. Family owned and operated.', '2023-03-01', NULL, @cityGrandRapids, GEOGRAPHY::Point(42.9634, -85.6681, 4326)), + (@brewery3, @user3, 'Golden Gate Lager House - Traditional German-style lagers brewed with precision.', '2023-04-01', NULL, @citySanFrancisco, GEOGRAPHY::Point(37.7749, -122.4194, 4326)), + (@brewery4, @user5, 'Mountain View Ales - High-altitude brewing for unique flavor profiles.', '2023-05-15', NULL, @cityDenver, GEOGRAPHY::Point(39.7392, -104.9903, 4326)), + (@brewery5, @user6, 'Coastal Wheat Works - Refreshing wheat beers perfect for any season.', '2023-06-20', NULL, @citySeattle, GEOGRAPHY::Point(47.6062, -122.3321, 4326)), + (@brewery6, @user9, 'Riverside Porter Factory - Classic porters with a modern twist.', '2023-08-10', NULL, @cityChicago, GEOGRAPHY::Point(41.8781, -87.6298, 4326)), + (@brewery7, @user11, 'Sunset Sour Cellars - Experimental sour ales aged in oak barrels.', '2024-01-20', '2024-08-12', @cityBrooklyn, GEOGRAPHY::Point(40.6782, -73.9442, 4326)), + (@brewery8, @user14, 'Urban Craft Collective - Community-focused brewery with rotating seasonal offerings.', '2024-05-10', NULL, @cityAustin, GEOGRAPHY::Point(30.2672, -97.7431, 4326)), + (@brewery9, @user4, 'Belgian House - Authentic Belgian brewing traditions in the heart of the city.', '2024-06-01', NULL, @cityBoston, GEOGRAPHY::Point(42.3601, -71.0589, 4326)), + (@brewery10, @user18, 'Amber Fields Brewery - Celebrating the richness of amber ales and maltier styles.', '2024-08-15', NULL, @cityPhiladelphia, GEOGRAPHY::Point(39.9526, -75.1652, 4326)), + (@brewery11, @user20, 'Farmhouse Funk - Specializing in saisons and wild fermented ales.', '2024-09-20', NULL, @cityAsheville, GEOGRAPHY::Point(35.5951, -82.5515, 4326)), + (@brewery12, @user24, 'Brown Bear Brewing - Cozy taproom featuring award-winning brown ales.', '2025-01-10', NULL, @cityAtlanta, GEOGRAPHY::Point(33.7490, -84.3880, 4326)), + (@brewery13, @user27, 'Vintage Vats - Small-batch barleywines and aged strong ales.', '2025-02-25', NULL, @cityColumbus, GEOGRAPHY::Point(39.9612, -82.9988, 4326)), + (@brewery14, @user12, 'Hop Haven - Experimental IPAs and cutting-edge hop varieties.', '2024-10-05', NULL, @cityKansasCity, GEOGRAPHY::Point(39.0997, -94.5786, 4326)), + (@brewery15, @user8, 'Barrel & Grain - Farm-to-glass brewery using locally sourced ingredients.', '2024-04-20', NULL, @cityRichmond, GEOGRAPHY::Point(37.5407, -77.4360, 4326)); COMMIT TRANSACTION; @@ -553,134 +589,6 @@ VALUES COMMIT TRANSACTION; ----------------------------------------------------------------------------- --- Rating (50 ratings) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.Rating - (RatingID, Score, RatedByID) -VALUES - (@rating1, 5, @user2), - (@rating2, 4, @user3), - (@rating3, 5, @user4), - (@rating4, 3, @user5), - (@rating5, 4, @user6), - (@rating6, 5, @user7), - (@rating7, 4, @user8), - (@rating8, 5, @user9), - (@rating9, 3, @user10), - (@rating10, 4, @user11), - (@rating11, 5, @user12), - (@rating12, 4, @user13), - (@rating13, 5, @user14), - (@rating14, 3, @user15), - (@rating15, 4, @user16), - (@rating16, 5, @user17), - (@rating17, 4, @user18), - (@rating18, 5, @user19), - (@rating19, 3, @user20), - (@rating20, 4, @user21), - (@rating21, 5, @user22), - (@rating22, 4, @user23), - (@rating23, 5, @user24), - (@rating24, 3, @user25), - (@rating25, 4, @user26), - (@rating26, 5, @user27), - (@rating27, 4, @user28), - (@rating28, 5, @user29), - (@rating29, 3, @user30), - (@rating30, 4, @user1), - (@rating31, 5, @user3), - (@rating32, 4, @user4), - (@rating33, 5, @user6), - (@rating34, 3, @user8), - (@rating35, 4, @user9), - (@rating36, 5, @user10), - (@rating37, 4, @user11), - (@rating38, 5, @user13), - (@rating39, 3, @user14), - (@rating40, 4, @user15), - (@rating41, 5, @user16), - (@rating42, 4, @user17), - (@rating43, 5, @user18), - (@rating44, 3, @user19), - (@rating45, 4, @user20), - (@rating46, 5, @user21), - (@rating47, 4, @user22), - (@rating48, 5, @user23), - (@rating49, 3, @user24), - (@rating50, 4, @user25); -COMMIT TRANSACTION; - - ----------------------------------------------------------------------------- --- BeerPostComment (30 beer comments) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.BeerPostComment - (CommentText, PostedByID, RatingID) -VALUES - ('This IPA is absolutely fantastic! Perfect balance of hops and malt.', @user2, @rating1), - ('Love the citrus notes in this beer. Will definitely buy again!', @user3, @rating2), - ('Rich and smooth stout. The chocolate flavor is amazing.', @user4, @rating3), - ('Good lager, very refreshing on a hot day.', @user5, @rating4), - ('Nice pale ale, but could use a bit more hop character.', @user6, @rating5), - ('Best wheat beer I''ve had in a while!', @user7, @rating6), - ('Solid porter with great roasted malt flavor.', @user8, @rating7), - ('This sour ale is perfectly tart and refreshing.', @user9, @rating8), - ('Decent pilsner, nothing special but drinkable.', @user10, @rating9), - ('The double IPA lives up to its name - super hoppy!', @user11, @rating10), - ('Vanilla porter is a unique and delicious combination.', @user12, @rating11), - ('Classic hefeweizen with authentic Bavarian character.', @user13, @rating12), - ('Belgian Bliss is truly blissful! Amazing complexity.', @user22, @rating21), - ('Copper Crown has the perfect amber color and taste.', @user23, @rating22), - ('This saison is incredibly refreshing and unique.', @user24, @rating23), - ('Barleywine is a bit too strong for my taste.', @user25, @rating24), - ('Love the citrus bomb! Perfect for IPA lovers.', @user26, @rating25), - ('Mosaic Dream lives up to its name - dreamy!', @user27, @rating26), - ('Farm fresh lager is exactly that - fresh and clean.', @user28, @rating27), - ('Midnight Express gives me the perfect coffee kick.', @user29, @rating28), - ('Harvest wheat is okay, but I prefer traditional wheats.', @user30, @rating29), - ('Cherry sunset sour is perfectly balanced.', @user1, @rating30), - ('Pacific Pale Ale brings back West Coast memories.', @user3, @rating31), - ('Bohemian Pilsner is as authentic as it gets.', @user4, @rating32), - ('Coffee porter is my new favorite breakfast beer!', @user6, @rating33), - ('Wild ferment is interesting but not for everyone.', @user8, @rating34), - ('Session IPA is perfect for summer afternoons.', @user9, @rating35), - ('Nutty brown ale has incredible depth of flavor.', @user10, @rating36), - ('Old Guardian is a masterpiece of brewing.', @user11, @rating37), - ('Imperial Stout deserves all the awards.', @user13, @rating38); -COMMIT TRANSACTION; - - ----------------------------------------------------------------------------- --- BreweryPostComment (20 brewery comments) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.BreweryPostComment - (CommentText, PostedByID, RatingID) -VALUES - ('Amazing brewery! The taproom has a great atmosphere.', @user14, @rating13), - ('Love supporting local breweries like this one.', @user15, @rating14), - ('Good selection of beers, but service could be better.', @user16, @rating15), - ('Best brewery in the area, hands down!', @user17, @rating16), - ('Nice facility and friendly staff. Will visit again.', @user18, @rating17), - ('Great variety of beer styles. Something for everyone.', @user19, @rating18), - ('Decent brewery but a bit pricey.', @user20, @rating19), - ('Fantastic sour beer selection! Worth the trip.', @user21, @rating20), - ('Belgian House has the most authentic Belgian beers outside Belgium!', @user14, @rating39), - ('Amber Fields creates consistently excellent amber ales.', @user15, @rating40), - ('Farmhouse Funk is a must-visit for sour beer enthusiasts.', @user16, @rating41), - ('Brown Bear Brewing has a cozy atmosphere and great beer.', @user17, @rating42), - ('Vintage Vats ages their beers to perfection.', @user18, @rating43), - ('Hop Haven is always pushing boundaries with new hops.', @user19, @rating44), - ('Barrel & Grain sources locally and it shows in quality.', @user20, @rating45), - ('Hoppy Trails never disappoints with their IPAs.', @user21, @rating46), - ('Dark Horse makes the best stouts in the region.', @user22, @rating47), - ('Golden Gate Lager House is my -to for crisp lagers.', @user23, @rating48), - ('Mountain View Ales has incredible views and incredible beer.', @user24, @rating49), - ('Coastal Wheat Works perfects the art of wheat beer.', @user25, @rating50); -COMMIT TRANSACTION; ---------------------------------------------------------------------------- From f0c9cff8bec8391b2a1350e86f0218e9223e790c Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Tue, 11 Nov 2025 06:02:45 -0500 Subject: [PATCH 05/25] update data testing --- data/users.csv | 31 ++ schema.sql | 4 +- test-data.sql | 776 +++++++++++++------------------------------------ 3 files changed, 228 insertions(+), 583 deletions(-) create mode 100644 data/users.csv diff --git a/data/users.csv b/data/users.csv new file mode 100644 index 0000000..9e3eaa2 --- /dev/null +++ b/data/users.csv @@ -0,0 +1,31 @@ +UserAccountID,Username,FirstName,LastName,Email,CreatedAt,UpdatedAt,DateOfBirth +b8624cea-1a90-4b2d-a12e-a71a86eb1f10,lambrosch0,Lissy,Ambrosch,lambrosch0@upenn.edu,2022-09-18,2018-12-14,1987-02-19 +3954ed02-4f51-4682-99d4-703dfcfed61a,keslinger1,Knox,Eslinger,keslinger1@smugmug.com,2025-05-21,2021-04-22,1958-01-18 +95c1d06f-dc6d-4dfa-a4e3-4e29b412b043,mtrobey2,Manuel,Trobey,mtrobey2@wp.com,2016-09-25,2011-01-05,1993-01-06 +7ceb8774-9cbe-4da3-b697-98ea14b3a86d,kgadsden3,Kerianne,Gadsden,kgadsden3@tinypic.com,2018-12-16,2011-12-11,1950-05-01 +04957847-0564-4b8b-8b4a-cdce1c387914,mvane4,Mord,Vane,mvane4@booking.com,2014-08-31,2025-05-07,1928-08-28 +1b53e41e-60e4-4c81-b162-473d036fd40e,iklimowski5,Ileana,Klimowski,iklimowski5@mtv.com,2024-11-28,2014-05-17,1933-07-20 +cba032ba-ba35-415d-aff0-14936d73b23a,mvickars6,Mischa,Vickars,mvickars6@census.gov,2012-08-06,2014-04-03,1991-03-06 +5a05b977-f6d8-4e9f-b700-ef74e0d4cd79,cbarrus7,Charin,Barrus,cbarrus7@digg.com,2019-08-01,2017-02-26,1984-10-19 +c36f23b6-1af0-4525-9078-03f7285f11fd,gbroady8,Gerri,Broady,gbroady8@cafepress.com,2015-03-23,2021-12-15,1986-09-22 +9eee230d-8e88-4ab7-ad3a-08909f0f179f,jwoolf9,Justis,Woolf,jwoolf9@oakley.com,2020-10-29,2018-07-03,1984-04-13 +4db300d3-8dae-4efb-8be6-2ee31e10489b,agrigsa,Annabell,Grigs,agrigsa@behance.net,2014-09-08,2020-07-17,1932-06-23 +0bdce4af-77e9-495c-b96e-447d6020e851,lmilkinb,Lucia,Milkin,lmilkinb@yahoo.com,2019-07-02,2016-06-04,1975-09-07 +7a815e7c-baa8-4eef-aab8-0e2c394191b0,ahumbatchc,Alvira,Humbatch,ahumbatchc@hc360.com,2015-06-18,2012-04-04,2004-05-13 +50454152-ece0-489f-a1c1-1db8d03b3ce6,ttackd,Teodoro,Tack,ttackd@ucsd.edu,2012-04-25,2022-05-20,1975-05-13 +cf775ced-ecd9-4291-9bc4-ab0cd3ea2ccf,rscholarde,Rip,Scholard,rscholarde@paginegialle.it,2011-09-15,2014-01-13,1975-11-18 +8157d559-2e7c-448f-a845-c649302b8f36,pwarlandf,Phaedra,Warland,pwarlandf@gravatar.com,2024-03-21,2016-09-07,1929-05-29 +c3b257e1-9d79-4494-982e-2fb44a28a7f9,sshallog,Selia,Shallo,sshallog@google.ca,2014-07-19,2021-07-23,1935-06-20 +8dc3f85f-a3bb-46b2-83d5-475c0d33f533,carensonh,Consolata,Arenson,carensonh@jalbum.net,2023-08-26,2024-06-06,1940-03-13 +f39db8d5-d2a7-4726-bcee-aeb1c88a6340,fsushamsi,Falito,Sushams,fsushamsi@indiatimes.com,2022-11-07,2024-09-05,1989-02-06 +97460048-226d-4124-b545-730d0a45fcbf,cschutzej,Creighton,Schutze,cschutzej@seattletimes.com,2010-05-28,2019-05-01,1945-01-12 +183d0825-b6b4-4184-8128-6b1b3ee9c34e,pivanuschkak,Park,Ivanuschka,pivanuschkak@unblog.fr,2017-04-04,2018-02-02,1961-08-10 +75b72f28-7f12-435e-9347-e7026724255d,sgodardl,Stanfield,Godard,sgodardl@statcounter.com,2014-08-02,2020-06-01,1978-03-03 +82b57935-4d01-4eee-a95c-5f7660bc1308,sdeversm,Shaylah,Devers,sdeversm@sbwire.com,2017-07-21,2015-08-20,1963-06-21 +5a76558c-77d2-4698-9aa2-91adf09c3e40,nakessn,Noellyn,Akess,nakessn@sakura.ne.jp,2012-07-28,2023-01-08,1947-02-26 +b2dc17ab-31cc-40c5-9a7c-d95e790fecea,jdumbello,Jobie,Dumbell,jdumbello@google.de,2015-02-01,2013-08-27,1941-04-22 +0c35296a-4833-499f-9c27-2469ba2d41e6,dbiggsp,Dacia,Biggs,dbiggsp@paginegialle.it,2020-07-06,2025-05-25,1921-10-26 +9a0c0852-2db8-4824-8395-97485edf3fc3,ctraiteq,Chan,Traite,ctraiteq@ibm.com,2021-12-02,2018-05-21,1952-03-05 +3d7005b0-7ad0-45a8-a958-184686430af2,lcowlinr,Lorant,Cowlin,lcowlinr@soup.io,2012-01-10,2015-05-22,1947-04-25 +9ab507dd-a0af-4ccd-99b9-ab9077aabf96,csmewings,Corissa,Smewing,csmewings@friendfeed.com,2016-11-15,2020-05-13,1989-12-20 +f0a6c3da-465e-4ff3-9069-4383dcb0e0f6,renderbyt,Rancell,Enderby,renderbyt@quantcast.com,2013-06-07,2023-07-26,1970-05-13 diff --git a/schema.sql b/schema.sql index 64a35fc..fad6629 100644 --- a/schema.sql +++ b/schema.sql @@ -35,7 +35,8 @@ CREATE TABLE UserAccount Email VARCHAR(128) NOT NULL, - CreatedAt DATETIME NOT NULL, + CreatedAt DATETIME NOT NULL + CONSTRAINT DF_UserAccount_CreatedAt DEFAULT GETDATE(), UpdatedAt DATETIME, @@ -53,6 +54,7 @@ CREATE TABLE UserAccount UNIQUE (Email), ); + ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- diff --git a/test-data.sql b/test-data.sql index bbaa1ea..3e05a2f 100644 --- a/test-data.sql +++ b/test-data.sql @@ -1,598 +1,210 @@ -USE Biergarten; +USE biergarten; +GO -DECLARE -@user1 UNIQUEIDENTIFIER = NEWID(), -@user2 UNIQUEIDENTIFIER = NEWID(), -@user3 UNIQUEIDENTIFIER = NEWID(), -@user4 UNIQUEIDENTIFIER = NEWID(), -@user5 UNIQUEIDENTIFIER = NEWID(), -@user6 UNIQUEIDENTIFIER = NEWID(), -@user7 UNIQUEIDENTIFIER = NEWID(), -@user8 UNIQUEIDENTIFIER = NEWID(), -@user9 UNIQUEIDENTIFIER = NEWID(), -@user10 UNIQUEIDENTIFIER = NEWID(), -@user11 UNIQUEIDENTIFIER = NEWID(), -@user12 UNIQUEIDENTIFIER = NEWID(), -@user13 UNIQUEIDENTIFIER = NEWID(), -@user14 UNIQUEIDENTIFIER = NEWID(), -@user15 UNIQUEIDENTIFIER = NEWID(), -@user16 UNIQUEIDENTIFIER = NEWID(), -@user17 UNIQUEIDENTIFIER = NEWID(), -@user18 UNIQUEIDENTIFIER = NEWID(), -@user19 UNIQUEIDENTIFIER = NEWID(), -@user20 UNIQUEIDENTIFIER = NEWID(), -@user21 UNIQUEIDENTIFIER = NEWID(), -@user22 UNIQUEIDENTIFIER = NEWID(), -@user23 UNIQUEIDENTIFIER = NEWID(), -@user24 UNIQUEIDENTIFIER = NEWID(), -@user25 UNIQUEIDENTIFIER = NEWID(), -@user26 UNIQUEIDENTIFIER = NEWID(), -@user27 UNIQUEIDENTIFIER = NEWID(), -@user28 UNIQUEIDENTIFIER = NEWID(), -@user29 UNIQUEIDENTIFIER = NEWID(), -@user30 UNIQUEIDENTIFIER = NEWID(), +CREATE OR ALTER PROCEDURE dbo.USP_AddTestUsers +AS +BEGIN + SET NOCOUNT ON; + SET XACT_ABORT ON; -@ipa UNIQUEIDENTIFIER = NEWID(), -@stout UNIQUEIDENTIFIER = NEWID(), -@lager UNIQUEIDENTIFIER = NEWID(), -@ale UNIQUEIDENTIFIER = NEWID(), -@pilsner UNIQUEIDENTIFIER = NEWID(), -@wheat UNIQUEIDENTIFIER = NEWID(), -@porter UNIQUEIDENTIFIER = NEWID(), -@sour UNIQUEIDENTIFIER = NEWID(), -@belgian UNIQUEIDENTIFIER = NEWID(), -@amber UNIQUEIDENTIFIER = NEWID(), -@saison UNIQUEIDENTIFIER = NEWID(), -@brown UNIQUEIDENTIFIER = NEWID(), -@barleywine UNIQUEIDENTIFIER = NEWID(), + BEGIN TRANSACTION; -@photo1 UNIQUEIDENTIFIER = NEWID(), -@photo2 UNIQUEIDENTIFIER = NEWID(), -@photo3 UNIQUEIDENTIFIER = NEWID(), -@photo4 UNIQUEIDENTIFIER = NEWID(), -@photo5 UNIQUEIDENTIFIER = NEWID(), -@photo6 UNIQUEIDENTIFIER = NEWID(), -@photo7 UNIQUEIDENTIFIER = NEWID(), -@photo8 UNIQUEIDENTIFIER = NEWID(), -@photo9 UNIQUEIDENTIFIER = NEWID(), -@photo10 UNIQUEIDENTIFIER = NEWID(), -@photo11 UNIQUEIDENTIFIER = NEWID(), -@photo12 UNIQUEIDENTIFIER = NEWID(), -@photo13 UNIQUEIDENTIFIER = NEWID(), -@photo14 UNIQUEIDENTIFIER = NEWID(), -@photo15 UNIQUEIDENTIFIER = NEWID(), -@photo16 UNIQUEIDENTIFIER = NEWID(), -@photo17 UNIQUEIDENTIFIER = NEWID(), -@photo18 UNIQUEIDENTIFIER = NEWID(), -@photo19 UNIQUEIDENTIFIER = NEWID(), -@photo20 UNIQUEIDENTIFIER = NEWID(), -@photo21 UNIQUEIDENTIFIER = NEWID(), -@photo22 UNIQUEIDENTIFIER = NEWID(), -@photo23 UNIQUEIDENTIFIER = NEWID(), -@photo24 UNIQUEIDENTIFIER = NEWID(), -@photo25 UNIQUEIDENTIFIER = NEWID(), -@photo26 UNIQUEIDENTIFIER = NEWID(), -@photo27 UNIQUEIDENTIFIER = NEWID(), -@photo28 UNIQUEIDENTIFIER = NEWID(), -@photo29 UNIQUEIDENTIFIER = NEWID(), -@photo30 UNIQUEIDENTIFIER = NEWID(), -@photo31 UNIQUEIDENTIFIER = NEWID(), -@photo32 UNIQUEIDENTIFIER = NEWID(), -@photo33 UNIQUEIDENTIFIER = NEWID(), -@photo34 UNIQUEIDENTIFIER = NEWID(), -@photo35 UNIQUEIDENTIFIER = NEWID(), -@photo36 UNIQUEIDENTIFIER = NEWID(), -@photo37 UNIQUEIDENTIFIER = NEWID(), -@photo38 UNIQUEIDENTIFIER = NEWID(), -@photo39 UNIQUEIDENTIFIER = NEWID(), -@photo40 UNIQUEIDENTIFIER = NEWID(), + DECLARE @FullNames TABLE + (FirstName NVARCHAR(128), + LastName NVARCHAR(128)); -@brewery1 UNIQUEIDENTIFIER = NEWID(), -@brewery2 UNIQUEIDENTIFIER = NEWID(), -@brewery3 UNIQUEIDENTIFIER = NEWID(), -@brewery4 UNIQUEIDENTIFIER = NEWID(), -@brewery5 UNIQUEIDENTIFIER = NEWID(), -@brewery6 UNIQUEIDENTIFIER = NEWID(), -@brewery7 UNIQUEIDENTIFIER = NEWID(), -@brewery8 UNIQUEIDENTIFIER = NEWID(), -@brewery9 UNIQUEIDENTIFIER = NEWID(), -@brewery10 UNIQUEIDENTIFIER = NEWID(), -@brewery11 UNIQUEIDENTIFIER = NEWID(), -@brewery12 UNIQUEIDENTIFIER = NEWID(), -@brewery13 UNIQUEIDENTIFIER = NEWID(), -@brewery14 UNIQUEIDENTIFIER = NEWID(), -@brewery15 UNIQUEIDENTIFIER = NEWID(), - -@beer1 UNIQUEIDENTIFIER = NEWID(), -@beer2 UNIQUEIDENTIFIER = NEWID(), -@beer3 UNIQUEIDENTIFIER = NEWID(), -@beer4 UNIQUEIDENTIFIER = NEWID(), -@beer5 UNIQUEIDENTIFIER = NEWID(), -@beer6 UNIQUEIDENTIFIER = NEWID(), -@beer7 UNIQUEIDENTIFIER = NEWID(), -@beer8 UNIQUEIDENTIFIER = NEWID(), -@beer9 UNIQUEIDENTIFIER = NEWID(), -@beer10 UNIQUEIDENTIFIER = NEWID(), -@beer11 UNIQUEIDENTIFIER = NEWID(), -@beer12 UNIQUEIDENTIFIER = NEWID(), -@beer13 UNIQUEIDENTIFIER = NEWID(), -@beer14 UNIQUEIDENTIFIER = NEWID(), -@beer15 UNIQUEIDENTIFIER = NEWID(), -@beer16 UNIQUEIDENTIFIER = NEWID(), -@beer17 UNIQUEIDENTIFIER = NEWID(), -@beer18 UNIQUEIDENTIFIER = NEWID(), -@beer19 UNIQUEIDENTIFIER = NEWID(), -@beer20 UNIQUEIDENTIFIER = NEWID(), -@beer21 UNIQUEIDENTIFIER = NEWID(), -@beer22 UNIQUEIDENTIFIER = NEWID(), -@beer23 UNIQUEIDENTIFIER = NEWID(), -@beer24 UNIQUEIDENTIFIER = NEWID(), -@beer25 UNIQUEIDENTIFIER = NEWID(), -@beer26 UNIQUEIDENTIFIER = NEWID(), -@beer27 UNIQUEIDENTIFIER = NEWID(), -@beer28 UNIQUEIDENTIFIER = NEWID(), - -@countryUSA UNIQUEIDENTIFIER = NEWID(), - -@stateOregon UNIQUEIDENTIFIER = NEWID(), -@stateMichigan UNIQUEIDENTIFIER = NEWID(), -@stateCalifornia UNIQUEIDENTIFIER = NEWID(), -@stateColorado UNIQUEIDENTIFIER = NEWID(), -@stateWashington UNIQUEIDENTIFIER = NEWID(), -@stateIllinois UNIQUEIDENTIFIER = NEWID(), -@stateNewYork UNIQUEIDENTIFIER = NEWID(), -@stateTexas UNIQUEIDENTIFIER = NEWID(), -@stateMassachusetts UNIQUEIDENTIFIER = NEWID(), -@statePennsylvania UNIQUEIDENTIFIER = NEWID(), -@stateNorthCarolina UNIQUEIDENTIFIER = NEWID(), -@stateGeorgia UNIQUEIDENTIFIER = NEWID(), -@stateOhio UNIQUEIDENTIFIER = NEWID(), -@stateMissouri UNIQUEIDENTIFIER = NEWID(), -@stateVirginia UNIQUEIDENTIFIER = NEWID(), - -@cityPortland UNIQUEIDENTIFIER = NEWID(), -@cityGrandRapids UNIQUEIDENTIFIER = NEWID(), -@citySanFrancisco UNIQUEIDENTIFIER = NEWID(), -@cityDenver UNIQUEIDENTIFIER = NEWID(), -@citySeattle UNIQUEIDENTIFIER = NEWID(), -@cityChicago UNIQUEIDENTIFIER = NEWID(), -@cityBrooklyn UNIQUEIDENTIFIER = NEWID(), -@cityAustin UNIQUEIDENTIFIER = NEWID(), -@cityBoston UNIQUEIDENTIFIER = NEWID(), -@cityPhiladelphia UNIQUEIDENTIFIER = NEWID(), -@cityAsheville UNIQUEIDENTIFIER = NEWID(), -@cityAtlanta UNIQUEIDENTIFIER = NEWID(), -@cityColumbus UNIQUEIDENTIFIER = NEWID(), -@cityKansasCity UNIQUEIDENTIFIER = NEWID(), -@cityRichmond UNIQUEIDENTIFIER = NEWID(); - ----------------------------------------------------------------------------- --- UserAccount (30 users) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.UserAccount - (UserAccountID, Username, FirstName, LastName, Email, CreatedAt, DateOfBirth) -VALUES - (@user1, 'john_smith', 'John', 'Smith', 'john.smith@email.com', '2023-01-15', '1990-05-12'), - (@user2, 'sarah_jones', 'Sarah', 'Jones', 'sarah.jones@email.com', '2023-02-20', '1988-08-23'), - (@user3, 'mike_brown', 'Mike', 'Brown', 'mike.brown@email.com', '2023-03-10', '1992-11-30'), - (@user4, 'emily_davis', 'Emily', 'Davis', 'emily.davis@email.com', '2023-04-05', '1995-03-17'), - (@user5, 'james_wilson', 'James', 'Wilson', 'james.wilson@email.com', '2023-05-12', '1987-07-22'), - (@user6, 'lisa_moore', 'Lisa', 'Moore', 'lisa.moore@email.com', '2023-06-18', '1991-12-08'), - (@user7, 'david_taylor', 'David', 'Taylor', 'david.taylor@email.com', '2023-07-22', '1989-04-15'), - (@user8, 'jessica_anderson', 'Jessica', 'Anderson', 'jessica.anderson@email.com', '2023-08-14', '1993-09-25'), - (@user9, 'chris_thomas', 'Chris', 'Thomas', 'chris.thomas@email.com', '2023-09-03', '1990-02-18'), - (@user10, 'amanda_jackson', 'Amanda', 'Jackson', 'amanda.jackson@email.com', '2023-10-11', '1994-06-30'), - (@user11, 'robert_white', 'Robert', 'White', 'robert.white@email.com', '2023-11-19', '1986-10-12'), - (@user12, 'jennifer_harris', 'Jennifer', 'Harris', 'jennifer.harris@email.com', '2023-12-07', '1992-01-28'), - (@user13, 'matthew_martin', 'Matthew', 'Martin', 'matthew.martin@email.com', '2024-01-14', '1991-05-09'), - (@user14, 'ashley_thompson', 'Ashley', 'Thompson', 'ashley.thompson@email.com', '2024-02-21', '1988-11-14'), - (@user15, 'daniel_garcia', 'Daniel', 'Garcia', 'daniel.garcia@email.com', '2024-03-16', '1993-08-03'), - (@user16, 'nicole_martinez', 'Nicole', 'Martinez', 'nicole.martinez@email.com', '2024-04-08', '1995-12-21'), - (@user17, 'kevin_robinson', 'Kevin', 'Robinson', 'kevin.robinson@email.com', '2024-05-25', '1989-03-27'), - (@user18, 'lauren_clark', 'Lauren', 'Clark', 'lauren.clark@email.com', '2024-06-13', '1992-07-19'), - (@user19, 'brian_rodriguez', 'Brian', 'Rodriguez', 'brian.rodriguez@email.com', '2024-07-30', '1990-09-05'), - (@user20, 'megan_lewis', 'Megan', 'Lewis', 'megan.lewis@email.com', '2024-08-17', '1994-02-11'), - (@user21, 'steven_lee', 'Steven', 'Lee', 'steven.lee@email.com', '2024-09-09', '1987-06-16'), - (@user22, 'rachel_walker', 'Rachel', 'Walker', 'rachel.walker@email.com', '2024-10-02', '1991-10-24'), - (@user23, 'justin_hall', 'Justin', 'Hall', 'justin.hall@email.com', '2024-11-11', '1993-04-07'), - (@user24, 'heather_allen', 'Heather', 'Allen', 'heather.allen@email.com', '2024-12-20', '1988-12-30'), - (@user25, 'tyler_young', 'Tyler', 'Young', 'tyler.young@email.com', '2025-01-05', '1996-01-15'), - (@user26, 'rebecca_king', 'Rebecca', 'King', 'rebecca.king@email.com', '2025-02-14', '1990-08-08'), - (@user27, 'jason_wright', 'Jason', 'Wright', 'jason.wright@email.com', '2025-03-22', '1992-03-29'), - (@user28, 'michelle_lopez', 'Michelle', 'Lopez', 'michelle.lopez@email.com', '2025-04-18', '1989-11-11'), - (@user29, 'brandon_hill', 'Brandon', 'Hill', 'brandon.hill@email.com', '2025-05-27', '1994-05-05'), - (@user30, 'stephanie_green', 'Stephanie', 'Green', 'stephanie.green@email.com', '2025-06-30', '1991-09-18'); -COMMIT TRANSACTION; + INSERT INTO @FullNames + (FirstName, LastName) + VALUES + ('Aarya', 'Mathews'), + ('Aiden', 'Wells'), + ('Aleena', 'Gonzalez'), + ('Alessandra', 'Nelson'), + ('Amari', 'Tucker'), + ('Ameer', 'Huff'), + ('Amirah', 'Hicks'), + ('Analia', 'Dominguez'), + ('Anne', 'Jenkins'), + ('Apollo', 'Davis'), + ('Arianna', 'White'), + ('Aubree', 'Moore'), + ('Aubrielle', 'Raymond'), + ('Aydin', 'Odom'), + ('Bowen', 'Casey'), + ('Brock', 'Huber'), + ('Caiden', 'Strong'), + ('Cecilia', 'Rosales'), + ('Celeste', 'Barber'), + ('Chance', 'Small'), + ('Clara', 'Roberts'), + ('Collins', 'Brandt'), + ('Damir', 'Wallace'), + ('Declan', 'Crawford'), + ('Dennis', 'Decker'), + ('Dylan', 'Lang'), + ('Eliza', 'Kane'), + ('Elle', 'Poole'), + ('Elliott', 'Miles'), + ('Emelia', 'Lucas'), + ('Emilia', 'Simpson'), + ('Emmett', 'Lugo'), + ('Ethan', 'Stephens'), + ('Etta', 'Woods'), + ('Gael', 'Moran'), + ('Grant', 'Benson'), + ('Gwen', 'James'), + ('Huxley', 'Chen'), + ('Isabella', 'Fisher'), + ('Ivan', 'Mathis'), + ('Jamir', 'McMillan'), + ('Jaxson', 'Shields'), + ('Jimmy', 'Richmond'), + ('Josiah', 'Flores'), + ('Kaden', 'Enriquez'), + ('Kai', 'Lawson'), + ('Karsyn', 'Adkins'), + ('Karsyn', 'Proctor'), + ('Kayden', 'Henson'), + ('Kaylie', 'Spears'), + ('Kinslee', 'Jones'), + ('Kora', 'Guerra'), + ('Lane', 'Skinner'), + ('Laylani', 'Christian'), + ('Ledger', 'Carroll'), + ('Leilany', 'Small'), + ('Leland', 'McCall'), + ('Leonard', 'Calhoun'), + ('Levi', 'Ochoa'), + ('Lillie', 'Vang'), + ('Lola', 'Sheppard'), + ('Luciana', 'Poole'), + ('Maddox', 'Hughes'), + ('Mara', 'Blackwell'), + ('Marcellus', 'Bartlett'), + ('Margo', 'Koch'), + ('Maurice', 'Gibson'), + ('Maxton', 'Dodson'), + ('Mia', 'Parrish'), + ('Millie', 'Fuentes'), + ('Nellie', 'Villanueva'), + ('Nicolas', 'Mata'), + ('Nicolas', 'Miller'), + ('Oakleigh', 'Foster'), + ('Octavia', 'Pierce'), + ('Paisley', 'Allison'), + ('Quincy', 'Andersen'), + ('Quincy', 'Frazier'), + ('Raiden', 'Roberts'), + ('Raquel', 'Lara'), + ('Rudy', 'McIntosh'), + ('Salvador', 'Stein'), + ('Samantha', 'Dickson'), + ('Solomon', 'Richards'), + ('Sylvia', 'Hanna'), + ('Talia', 'Trujillo'), + ('Thalia', 'Farrell'), + ('Trent', 'Mayo'), + ('Trinity', 'Cummings'), + ('Ty', 'Perry'), + ('Tyler', 'Romero'), + ('Valeria', 'Pierce'), + ('Vance', 'Neal'), + ('Whitney', 'Bell'), + ('Wilder', 'Graves'), + ('William', 'Logan'), + ('Zara', 'Wilkinson'), + ('Zaria', 'Gibson'), + ('Zion', 'Watkins'), + ('Zoie', 'Armstrong'); ----------------------------------------------------------------------------- --- BeerStyle (13 styles) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.BeerStyle - (BeerStyleID, StyleName, Description) -VALUES - (@ipa, 'India Pale Ale', 'A hoppy beer style within the broader category of pale ale, known for its strong hop flavor and higher alcohol content.'), - (@stout, 'Stout', 'A dark beer made using roasted malt or roasted barley, hops, water and yeast. Stouts have a rich, creamy texture.'), - (@lager, 'Lager', 'A type of beer conditioned at low temperature. Lagers are crisp, clean, and refreshing.'), - (@ale, 'Pale Ale', 'A golden to amber colored beer style brewed with pale malt. The highest proportion of pale malts results in its light color.'), - (@pilsner, 'Pilsner', 'A type of pale lager that is characterized by its light color, clarity, and refreshing taste with a notable hop character.'), - (@wheat, 'Wheat Beer', 'A top-fermented beer which is brewed with a large proportion of wheat relative to the amount of malted barley.'), - (@porter, 'Porter', 'A dark style of beer developed in London, well-hopped and made from brown malt.'), - (@sour, 'Sour Ale', 'A beer that has an intentionally acidic, tart, or sour taste, achieved through wild yeast and bacteria fermentation.'), - (@belgian, 'Belgian Ale', 'Traditional Belgian-style ales with complex fruity and spicy yeast character.'), - (@amber, 'Amber Ale', 'Medium-bodied ale with caramel malt flavor and moderate hop bitterness.'), - (@saison, 'Saison', 'Farmhouse ale with fruity, spicy, and peppery characteristics.'), - (@brown, 'Brown Ale', 'Malty beer with nutty, chocolate, and caramel notes.'), - (@barleywine, 'Barleywine', 'Strong ale with intense malt flavors and high alcohol content.'); -COMMIT TRANSACTION; + INSERT INTO dbo.UserAccount + (Username, FirstName, LastName, Email, DateOfBirth) + SELECT + LEFT(LOWER(CONCAT(fn.FirstName, '.', fn.LastName)), 64) AS Username, + fn.FirstName, + fn.LastName, + LEFT(LOWER(CONCAT(fn.FirstName, '.', fn.LastName, '@example.com')), 128) AS Email, ----------------------------------------------------------------------------- --- UserCredential (28 credentials) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.UserCredential - (UserAccountID, Hash, CreatedAt, Expiry) -VALUES - (@user1, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt1$hashedpassword1', '2023-01-15', '2025-12-31'), - (@user2, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt2$hashedpassword2', '2023-02-20', '2025-12-31'), - (@user3, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt3$hashedpassword3', '2023-03-10', '2025-12-31'), - (@user4, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt4$hashedpassword4', '2023-04-05', '2025-12-31'), - (@user5, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt5$hashedpassword5', '2023-05-12', '2025-12-31'), - (@user6, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt6$hashedpassword6', '2023-06-18', '2025-12-31'), - (@user7, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt7$hashedpassword7', '2023-07-22', '2025-12-31'), - (@user8, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt8$hashedpassword8', '2023-08-14', '2025-12-31'), - (@user9, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt9$hashedpassword9', '2023-09-03', '2025-12-31'), - (@user10, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt10$hashedpassword10', '2023-10-11', '2025-12-31'), - (@user11, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt11$hashedpassword11', '2023-11-19', '2025-12-31'), - (@user12, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt12$hashedpassword12', '2023-12-07', '2025-12-31'), - (@user13, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt13$hashedpassword13', '2024-01-14', '2025-12-31'), - (@user14, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt14$hashedpassword14', '2024-02-21', '2025-12-31'), - (@user16, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt16$hashedpassword16', '2024-04-08', '2025-12-31'), - (@user17, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt17$hashedpassword17', '2024-05-25', '2025-12-31'), - (@user18, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt18$hashedpassword18', '2024-06-13', '2025-12-31'), - (@user19, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt19$hashedpassword19', '2024-07-30', '2025-12-31'), - (@user21, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt21$hashedpassword21', '2024-09-09', '2025-12-31'), - (@user22, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt22$hashedpassword22', '2024-10-02', '2025-12-31'), - (@user23, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt23$hashedpassword23', '2024-11-11', '2025-12-31'), - (@user24, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt24$hashedpassword24', '2024-12-20', '2025-12-31'), - (@user25, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt25$hashedpassword25', '2025-01-05', '2025-12-31'), - (@user26, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt26$hashedpassword26', '2025-02-14', '2025-12-31'), - (@user27, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt27$hashedpassword27', '2025-03-22', '2025-12-31'), - (@user28, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt28$hashedpassword28', '2025-04-18', '2025-12-31'), - (@user29, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt29$hashedpassword29', '2025-05-27', '2025-12-31'), - (@user30, '$argon2id$v=19$m=65536,t=3,p=4$randomsalt30$hashedpassword30', '2025-06-30', '2025-12-31'); -COMMIT TRANSACTION; + -- date of birth: pick age between 18 and 47 (18 + 0..29) + DATEADD(YEAR, -(19 + ABS(CHECKSUM(NEWID())) % 30), CAST(GETDATE() AS DATE)) + FROM @FullNames AS fn; ----------------------------------------------------------------------------- --- UserVerification (20 verified users) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.UserVerification - (UserAccountID, VerificationDateTime) -VALUES - (@user1, '2023-01-16'), - (@user2, '2023-02-21'), - (@user3, '2023-03-11'), - (@user4, '2023-04-06'), - (@user5, '2023-05-13'), - (@user6, '2023-06-19'), - (@user7, '2023-07-23'), - (@user8, '2023-08-15'), - (@user9, '2023-09-04'), - (@user10, '2023-10-12'), - (@user11, '2023-11-20'), - (@user12, '2023-12-08'), - (@user13, '2024-01-15'), - (@user15, '2024-03-17'), - (@user16, '2024-04-09'), - (@user17, '2024-05-26'), - (@user18, '2024-06-14'), - (@user20, '2024-08-18'), - (@user22, '2024-10-03'), - (@user25, '2025-01-06'); -COMMIT TRANSACTION; + COMMIT TRANSACTION; +END; +GO + +-- -- Stored procedure to insert Argon2 hashes +-- CREATE OR ALTER PROCEDURE dbo.USP_AddUserCredentials +-- ( +-- @Hash dbo.TblUserHashes READONLY +-- ) +-- AS +-- BEGIN +-- SET NOCOUNT ON; +-- SET XACT_ABORT ON; + +-- BEGIN TRANSACTION; + +-- INSERT INTO dbo.UserCredential +-- (UserAccountId, Hash) +-- SELECT +-- uah.UserAccountId, +-- uah.Hash +-- FROM @Hash AS uah; + +-- COMMIT TRANSACTION; +-- END; +-- GO + +CREATE OR ALTER PROCEDURE dbo.USP_CreateUserVerification +AS +BEGIN + SET NOCOUNT ON; + SET XACT_ABORT ON; + + BEGIN TRANSACTION; + + INSERT INTO dbo.UserVerification + (UserAccountId) + SELECT + ua.UserAccountID + FROM dbo.UserAccount AS ua + WHERE NOT EXISTS + (SELECT 1 + FROM dbo.UserVerification AS uv + WHERE uv.UserAccountId = ua.UserAccountID); ----------------------------------------------------------------------------- --- UserFollow (40 follow relationships) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.UserFollow - (UserAccountID, FollowingID, CreatedAt) -VALUES - (@user1, @user2, '2023-02-01'), - (@user1, @user3, '2023-02-05'), - (@user1, @user5, '2023-05-20'), - (@user1, @user10, '2024-01-01'), - (@user2, @user1, '2023-02-15'), - (@user2, @user4, '2023-04-10'), - (@user2, @user12, '2024-02-01'), - (@user3, @user1, '2023-03-20'), - (@user3, @user6, '2023-06-25'), - (@user3, @user14, '2024-03-01'), - (@user4, @user2, '2023-04-15'), - (@user5, @user1, '2023-05-25'), - (@user5, @user7, '2023-07-30'), - (@user6, @user3, '2023-07-01'), - (@user7, @user5, '2023-08-05'), - (@user8, @user1, '2023-08-20'), - (@user9, @user2, '2023-09-10'), - (@user10, @user5, '2023-10-20'), - (@user10, @user8, '2023-11-01'), - (@user11, @user2, '2023-11-25'), - (@user12, @user3, '2023-12-15'), - (@user13, @user5, '2024-01-20'), - (@user14, @user1, '2024-03-01'), - (@user14, @user7, '2024-03-05'), - (@user15, @user2, '2024-03-20'), - (@user16, @user4, '2024-04-15'), - (@user17, @user6, '2024-05-30'), - (@user18, @user8, '2024-06-20'), - (@user19, @user10, '2024-08-01'), - (@user20, @user12, '2024-08-25'), - (@user21, @user14, '2024-09-15'), - (@user22, @user1, '2024-10-05'), - (@user23, @user11, '2024-11-15'), - (@user24, @user13, '2024-12-25'), - (@user25, @user15, '2025-01-10'), - (@user26, @user17, '2025-02-20'), - (@user27, @user19, '2025-03-25'), - (@user28, @user21, '2025-04-22'), - (@user29, @user23, '2025-05-30'), - (@user30, @user25, '2025-07-05'); -COMMIT TRANSACTION; + IF (SELECT COUNT(*) FROM dbo.UserVerification) != (SELECT COUNT(*) FROM dbo.UserAccount) + BEGIN + RAISERROR('UserVerification count does not match UserAccount count after insertion.', 16, 1); + ROLLBACK TRANSACTION; + RETURN; + END ----------------------------------------------------------------------------- --- Photo (40 photos) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.Photo - (PhotoID, Hyperlink, UploadedByID, UploadedAt) -VALUES - (@photo1, 'https://storage.biergarten.com/photos/avatar1.jpg', @user1, '2023-01-15'), - (@photo2, 'https://storage.biergarten.com/photos/avatar2.jpg', @user2, '2023-02-20'), - (@photo3, 'https://storage.biergarten.com/photos/brewery1.jpg', @user1, '2023-03-01'), - (@photo4, 'https://storage.biergarten.com/photos/brewery2.jpg', @user2, '2023-03-05'), - (@photo5, 'https://storage.biergarten.com/photos/beer1.jpg', @user3, '2023-04-10'), - (@photo6, 'https://storage.biergarten.com/photos/beer2.jpg', @user4, '2023-04-15'), - (@photo7, 'https://storage.biergarten.com/photos/beer3.jpg', @user5, '2023-05-20'), - (@photo8, 'https://storage.biergarten.com/photos/brewery3.jpg', @user6, '2023-06-01'), - (@photo9, 'https://storage.biergarten.com/photos/avatar3.jpg', @user3, '2023-06-05'), - (@photo10, 'https://storage.biergarten.com/photos/beer4.jpg', @user7, '2023-07-10'), - (@photo11, 'https://storage.biergarten.com/photos/beer5.jpg', @user8, '2023-08-15'), - (@photo12, 'https://storage.biergarten.com/photos/brewery4.jpg', @user9, '2023-09-01'), - (@photo13, 'https://storage.biergarten.com/photos/beer6.jpg', @user10, '2023-10-05'), - (@photo14, 'https://storage.biergarten.com/photos/avatar4.jpg', @user5, '2024-01-10'), - (@photo15, 'https://storage.biergarten.com/photos/brewery5.jpg', @user11, '2024-02-15'), - (@photo16, 'https://storage.biergarten.com/photos/beer7.jpg', @user12, '2024-03-20'), - (@photo17, 'https://storage.biergarten.com/photos/beer8.jpg', @user13, '2024-04-25'), - (@photo18, 'https://storage.biergarten.com/photos/brewery6.jpg', @user14, '2024-05-30'), - (@photo19, 'https://storage.biergarten.com/photos/beer9.jpg', @user15, '2024-06-15'), - (@photo20, 'https://storage.biergarten.com/photos/avatar5.jpg', @user7, '2024-07-20'), - (@photo21, 'https://storage.biergarten.com/photos/beer10.jpg', @user16, '2024-08-05'), - (@photo22, 'https://storage.biergarten.com/photos/beer11.jpg', @user17, '2024-08-20'), - (@photo23, 'https://storage.biergarten.com/photos/brewery7.jpg', @user18, '2024-09-01'), - (@photo24, 'https://storage.biergarten.com/photos/beer12.jpg', @user19, '2024-09-15'), - (@photo25, 'https://storage.biergarten.com/photos/avatar6.jpg', @user10, '2024-10-01'), - (@photo26, 'https://storage.biergarten.com/photos/beer13.jpg', @user20, '2024-10-10'), - (@photo27, 'https://storage.biergarten.com/photos/brewery8.jpg', @user21, '2024-10-20'), - (@photo28, 'https://storage.biergarten.com/photos/beer14.jpg', @user22, '2024-11-01'), - (@photo29, 'https://storage.biergarten.com/photos/beer15.jpg', @user23, '2024-11-15'), - (@photo30, 'https://storage.biergarten.com/photos/avatar7.jpg', @user15, '2024-12-01'), - (@photo31, 'https://storage.biergarten.com/photos/brewery9.jpg', @user24, '2024-12-25'), - (@photo32, 'https://storage.biergarten.com/photos/beer16.jpg', @user25, '2025-01-15'), - (@photo33, 'https://storage.biergarten.com/photos/beer17.jpg', @user26, '2025-02-20'), - (@photo34, 'https://storage.biergarten.com/photos/brewery10.jpg', @user27, '2025-03-30'), - (@photo35, 'https://storage.biergarten.com/photos/beer18.jpg', @user28, '2025-04-25'), - (@photo36, 'https://storage.biergarten.com/photos/beer19.jpg', @user29, '2025-06-01'), - (@photo37, 'https://storage.biergarten.com/photos/avatar8.jpg', @user20, '2025-06-15'), - (@photo38, 'https://storage.biergarten.com/photos/beer20.jpg', @user30, '2025-07-10'), - (@photo39, 'https://storage.biergarten.com/photos/brewery11.jpg', @user4, '2025-08-01'), - (@photo40, 'https://storage.biergarten.com/photos/avatar9.jpg', @user25, '2025-09-01'); -COMMIT TRANSACTION; + COMMIT TRANSACTION; +END +GO + +BEGIN TRY + EXEC dbo.USP_AddTestUsers; + PRINT 'AddTestUsers completed.'; + + EXEC dbo.USP_CreateUserVerification; + PRINT 'CreateUserVerification completed.'; +END TRY +BEGIN CATCH + PRINT ERROR_MESSAGE(); +END CATCH +GO ----------------------------------------------------------------------------- --- UserAvatar (9 avatars) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.UserAvatar - (UserAccountID, PhotoID) -VALUES - (@user1, @photo1), - (@user2, @photo2), - (@user3, @photo9), - (@user5, @photo14), - (@user7, @photo20), - (@user10, @photo25), - (@user15, @photo30), - (@user20, @photo37), - (@user25, @photo40); -COMMIT TRANSACTION; - - --- Country (1 country) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.Country - (CountryID, CountryName, CountryCode) -VALUES - (@countryUSA, 'United States', 'USA'); -COMMIT TRANSACTION; - - ----------------------------------------------------------------------------- --- StateProvince (15 states/provinces) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.StateProvince - (StateProvinceID, StateProvinceName, CountryID) -VALUES - (@stateOregon, 'Oregon', @countryUSA), - (@stateMichigan, 'Michigan', @countryUSA), - (@stateCalifornia, 'California', @countryUSA), - (@stateColorado, 'Colorado', @countryUSA), - (@stateWashington, 'Washington', @countryUSA), - (@stateIllinois, 'Illinois', @countryUSA), - (@stateNewYork, 'New York', @countryUSA), - (@stateTexas, 'Texas', @countryUSA), - (@stateMassachusetts, 'Massachusetts', @countryUSA), - (@statePennsylvania, 'Pennsylvania', @countryUSA), - (@stateNorthCarolina, 'North Carolina', @countryUSA), - (@stateGeorgia, 'Georgia', @countryUSA), - (@stateOhio, 'Ohio', @countryUSA), - (@stateMissouri, 'Missouri', @countryUSA), - (@stateVirginia, 'Virginia', @countryUSA); -COMMIT TRANSACTION; - - ----------------------------------------------------------------------------- --- City (15 cities) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.City - (CityID, CityName, StateProvinceID) -VALUES - (@cityPortland, 'Portland', @stateOregon), - (@cityGrandRapids, 'Grand Rapids', @stateMichigan), - (@citySanFrancisco, 'San Francisco', @stateCalifornia), - (@cityDenver, 'Denver', @stateColorado), - (@citySeattle, 'Seattle', @stateWashington), - (@cityChicago, 'Chicago', @stateIllinois), - (@cityBrooklyn, 'Brooklyn', @stateNewYork), - (@cityAustin, 'Austin', @stateTexas), - (@cityBoston, 'Boston', @stateMassachusetts), - (@cityPhiladelphia, 'Philadelphia', @statePennsylvania), - (@cityAsheville, 'Asheville', @stateNorthCarolina), - (@cityAtlanta, 'Atlanta', @stateGeorgia), - (@cityColumbus, 'Columbus', @stateOhio), - (@cityKansasCity, 'Kansas City', @stateMissouri), - (@cityRichmond, 'Richmond', @stateVirginia); -COMMIT TRANSACTION; - - ----------------------------------------------------------------------------- --- BreweryPost (15 breweries) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.BreweryPost - (BreweryPostID, PostedByID, Description, CreatedAt, UpdatedAt, CityID, Coordinates) -VALUES - (@brewery1, @user1, 'Hoppy Trails Brewery - Crafting exceptional IPAs since 2020. Located in the heart of Portland.', '2023-02-01', NULL, @cityPortland, GEOGRAPHY::Point(45.5152, -122.6784, 4326)), - (@brewery2, @user2, 'Dark Horse Brewing Co. - Specializing in rich stouts and porters. Family owned and operated.', '2023-03-01', NULL, @cityGrandRapids, GEOGRAPHY::Point(42.9634, -85.6681, 4326)), - (@brewery3, @user3, 'Golden Gate Lager House - Traditional German-style lagers brewed with precision.', '2023-04-01', NULL, @citySanFrancisco, GEOGRAPHY::Point(37.7749, -122.4194, 4326)), - (@brewery4, @user5, 'Mountain View Ales - High-altitude brewing for unique flavor profiles.', '2023-05-15', NULL, @cityDenver, GEOGRAPHY::Point(39.7392, -104.9903, 4326)), - (@brewery5, @user6, 'Coastal Wheat Works - Refreshing wheat beers perfect for any season.', '2023-06-20', NULL, @citySeattle, GEOGRAPHY::Point(47.6062, -122.3321, 4326)), - (@brewery6, @user9, 'Riverside Porter Factory - Classic porters with a modern twist.', '2023-08-10', NULL, @cityChicago, GEOGRAPHY::Point(41.8781, -87.6298, 4326)), - (@brewery7, @user11, 'Sunset Sour Cellars - Experimental sour ales aged in oak barrels.', '2024-01-20', '2024-08-12', @cityBrooklyn, GEOGRAPHY::Point(40.6782, -73.9442, 4326)), - (@brewery8, @user14, 'Urban Craft Collective - Community-focused brewery with rotating seasonal offerings.', '2024-05-10', NULL, @cityAustin, GEOGRAPHY::Point(30.2672, -97.7431, 4326)), - (@brewery9, @user4, 'Belgian House - Authentic Belgian brewing traditions in the heart of the city.', '2024-06-01', NULL, @cityBoston, GEOGRAPHY::Point(42.3601, -71.0589, 4326)), - (@brewery10, @user18, 'Amber Fields Brewery - Celebrating the richness of amber ales and maltier styles.', '2024-08-15', NULL, @cityPhiladelphia, GEOGRAPHY::Point(39.9526, -75.1652, 4326)), - (@brewery11, @user20, 'Farmhouse Funk - Specializing in saisons and wild fermented ales.', '2024-09-20', NULL, @cityAsheville, GEOGRAPHY::Point(35.5951, -82.5515, 4326)), - (@brewery12, @user24, 'Brown Bear Brewing - Cozy taproom featuring award-winning brown ales.', '2025-01-10', NULL, @cityAtlanta, GEOGRAPHY::Point(33.7490, -84.3880, 4326)), - (@brewery13, @user27, 'Vintage Vats - Small-batch barleywines and aged strong ales.', '2025-02-25', NULL, @cityColumbus, GEOGRAPHY::Point(39.9612, -82.9988, 4326)), - (@brewery14, @user12, 'Hop Haven - Experimental IPAs and cutting-edge hop varieties.', '2024-10-05', NULL, @cityKansasCity, GEOGRAPHY::Point(39.0997, -94.5786, 4326)), - (@brewery15, @user8, 'Barrel & Grain - Farm-to-glass brewery using locally sourced ingredients.', '2024-04-20', NULL, @cityRichmond, GEOGRAPHY::Point(37.5407, -77.4360, 4326)); -COMMIT TRANSACTION; - - ----------------------------------------------------------------------------- --- BreweryPostPhoto (11 brewery photos) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.BreweryPostPhoto - (BreweryPostID, PhotoID, LinkedAt) -VALUES - (@brewery1, @photo3, '2023-03-01'), - (@brewery2, @photo4, '2023-03-05'), - (@brewery3, @photo8, '2023-06-01'), - (@brewery4, @photo12, '2023-09-01'), - (@brewery5, @photo15, '2024-02-15'), - (@brewery6, @photo18, '2024-05-30'), - (@brewery7, @photo23, '2024-09-01'), - (@brewery8, @photo27, '2024-10-20'), - (@brewery9, @photo39, '2025-08-01'), - (@brewery10, @photo31, '2024-12-25'), - (@brewery11, @photo34, '2025-03-30'); -COMMIT TRANSACTION; - - ----------------------------------------------------------------------------- --- BeerPost (28 beers) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.BeerPost - (BeerPostID, Name, Description, ABV, IBU, PostedByID, BeerStyleID, BrewedByID, CreatedAt) -VALUES - (@beer1, 'Trail Blazer IPA', 'A bold and hoppy IPA with citrus notes and a crisp finish.', 6.8, 65, @user1, @ipa, @brewery1, '2023-04-01'), - (@beer2, 'Midnight Stout', 'Rich and creamy stout with notes of chocolate and coffee.', 7.2, 35, @user2, @stout, @brewery2, '2023-04-15'), - (@beer3, 'Golden Bay Lager', 'Classic German-style lager, clean and refreshing.', 4.8, 22, @user3, @lager, @brewery3, '2023-05-01'), - (@beer4, 'Summit Pale Ale', 'Balanced pale ale with floral hop aromas.', 5.5, 40, @user5, @ale, @brewery4, '2023-06-10'), - (@beer5, 'Ocean Wheat', 'Smooth wheat beer with hints of orange peel.', 4.5, 15, @user6, @wheat, @brewery5, '2023-07-01'), - (@beer6, 'Dark Waters Porter', 'Traditional porter with roasted malt character.', 5.8, 30, @user9, @porter, @brewery6, '2023-09-15'), - (@beer7, 'Sunset Sour', 'Tart and refreshing sour ale with cherry notes.', 5.2, 10, @user11, @sour, @brewery7, '2024-03-01'), - (@beer8, 'Urban Pilsner', 'Crisp pilsner with noble hop character.', 5.0, 35, @user14, @pilsner, @brewery8, '2024-06-15'), - (@beer9, 'Double IPA Extreme', 'Intensely hoppy double IPA for hop lovers.', 8.5, 90, @user1, @ipa, @brewery1, '2024-07-01'), - (@beer10, 'Vanilla Porter', 'Smooth porter infused with vanilla beans.', 6.2, 28, @user9, @porter, @brewery6, '2024-08-10'), - (@beer11, 'Hefeweizen Classic', 'Traditional Bavarian wheat beer with banana and clove notes.', 5.4, 12, @user6, @wheat, @brewery5, '2024-09-05'), - (@beer12, 'Imperial Stout', 'Full-bodied imperial stout aged in bourbon barrels.', 10.5, 50, @user2, @stout, @brewery2, '2024-10-01'), - (@beer13, 'Belgian Bliss', 'Rich Belgian ale with notes of dark fruit and subtle spice.', 7.5, 25, @user4, @belgian, @brewery9, '2024-07-10'), - (@beer14, 'Copper Crown', 'Smooth amber ale with caramel sweetness and hop balance.', 5.6, 38, @user18, @amber, @brewery10, '2024-09-05'), - (@beer15, 'Rustic Revival', 'Farmhouse saison with peppery yeast character.', 6.2, 28, @user20, @saison, @brewery11, '2024-10-15'), - (@beer16, 'Nutty Brown', 'Classic brown ale with chocolate and hazelnut notes.', 5.3, 22, @user24, @brown, @brewery12, '2025-02-01'), - (@beer17, 'Old Guardian', 'Aged barleywine with complex malt layers.', 11.2, 60, @user27, @barleywine, @brewery13, '2025-03-15'), - (@beer18, 'Citrus Bomb IPA', 'Juicy IPA bursting with tropical fruit flavors.', 7.0, 75, @user12, @ipa, @brewery14, '2024-11-01'), - (@beer19, 'Mosaic Dream', 'Single-hop IPA showcasing Mosaic hops.', 6.5, 68, @user12, @ipa, @brewery14, '2024-11-20'), - (@beer20, 'Farm Fresh Lager', 'Crisp lager made with local grains.', 4.6, 20, @user8, @lager, @brewery15, '2024-05-15'), - (@beer21, 'Midnight Express', 'Extra robust stout with espresso notes.', 8.5, 45, @user2, @stout, @brewery2, '2025-01-20'), - (@beer22, 'Harvest Wheat', 'Seasonal wheat beer with honey and coriander.', 4.9, 18, @user6, @wheat, @brewery5, '2024-10-30'), - (@beer23, 'Cherry Sunset Sour', 'Kettle sour with fresh cherry puree.', 5.8, 8, @user11, @sour, @brewery7, '2025-04-10'), - (@beer24, 'Pacific Pale Ale', 'West Coast style pale ale with pine and citrus.', 5.8, 48, @user5, @ale, @brewery4, '2024-12-05'), - (@beer25, 'Bohemian Pilsner', 'Traditional Czech pilsner with Saaz hops.', 5.2, 40, @user14, @pilsner, @brewery8, '2025-05-20'), - (@beer26, 'Coffee Porter', 'Rich porter infused with cold brew coffee.', 6.0, 32, @user9, @porter, @brewery6, '2025-06-15'), - (@beer27, 'Wild Ferment Ale', 'Brett-fermented Belgian ale with funky character.', 7.8, 20, @user4, @belgian, @brewery9, '2025-07-01'), - (@beer28, 'Session IPA', 'Light and refreshing session IPA for all-day drinking.', 4.2, 45, @user1, @ipa, @brewery1, '2025-08-20'); -COMMIT TRANSACTION; - - ----------------------------------------------------------------------------- --- BeerPostPhoto (20 beer photos) ----------------------------------------------------------------------------- -BEGIN TRANSACTION; -INSERT INTO dbo.BeerPostPhoto - (BeerPostID, PhotoID, LinkedAt) -VALUES - (@beer1, @photo5, '2023-04-10'), - (@beer2, @photo6, '2023-04-15'), - (@beer3, @photo7, '2023-05-20'), - (@beer4, @photo10, '2023-07-10'), - (@beer5, @photo11, '2023-08-15'), - (@beer6, @photo13, '2023-10-05'), - (@beer7, @photo16, '2024-03-20'), - (@beer8, @photo17, '2024-06-25'), - (@beer9, @photo19, '2024-07-15'), - (@beer10, @photo21, '2024-08-10'), - (@beer11, @photo22, '2024-09-05'), - (@beer12, @photo24, '2024-10-01'), - (@beer13, @photo26, '2024-10-10'), - (@beer14, @photo28, '2024-11-01'), - (@beer15, @photo29, '2024-11-15'), - (@beer16, @photo32, '2025-02-01'), - (@beer17, @photo33, '2025-03-15'), - (@beer18, @photo35, '2025-04-25'), - (@beer19, @photo36, '2025-06-01'), - (@beer20, @photo38, '2025-07-10'); -COMMIT TRANSACTION; - - - - ----------------------------------------------------------------------------- --- END OF TEST DATA ----------------------------------------------------------------------------- --- print user with most followers +SELECT * +FROM dbo.UserAccount; +SELECT * +FROM dbo.UserVerification; +GO \ No newline at end of file From b7f22fcc6628d5d212288fa6afd5ff9fb01f6587 Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Wed, 12 Nov 2025 00:41:27 -0500 Subject: [PATCH 06/25] Add seed db c# project --- .config/dotnet-tools.json | 13 -- .csharpierrc.json | 10 + .vscode/settings.json | 3 + SeedDB/Program.cs | 218 ++++++++++++++++++++ SeedDB/SeedDB.csproj | 15 ++ test-data.sql => SeedDB/SeedStoredProcs.sql | 75 +++---- schema.sql => SeedDB/schema.sql | 16 +- biergarten.sln | 34 +-- data/users.csv | 31 --- 9 files changed, 303 insertions(+), 112 deletions(-) delete mode 100644 .config/dotnet-tools.json create mode 100644 .csharpierrc.json create mode 100644 .vscode/settings.json create mode 100644 SeedDB/Program.cs create mode 100644 SeedDB/SeedDB.csproj rename test-data.sql => SeedDB/SeedStoredProcs.sql (82%) rename schema.sql => SeedDB/schema.sql (96%) delete mode 100644 data/users.csv diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json deleted file mode 100644 index 321b5d6..0000000 --- a/.config/dotnet-tools.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "version": 1, - "isRoot": true, - "tools": { - "csharpier": { - "version": "1.1.2", - "commands": [ - "csharpier" - ], - "rollForward": false - } - } -} \ No newline at end of file diff --git a/.csharpierrc.json b/.csharpierrc.json new file mode 100644 index 0000000..1073d01 --- /dev/null +++ b/.csharpierrc.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://raw.githubusercontent.com/belav/csharpier/main/src/CSharpier.Cli/schema.json", + "printWidth": 80, + "useTabs": false, + "tabWidth": 4, + "endOfLine": "auto", + "indentStyle": "space", + "lineEndings": "auto", + "wrapLineLength": 80 +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6a8e057 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "dotnet.defaultSolution": "SeedDB.sln" +} diff --git a/SeedDB/Program.cs b/SeedDB/Program.cs new file mode 100644 index 0000000..d13b16c --- /dev/null +++ b/SeedDB/Program.cs @@ -0,0 +1,218 @@ +using System.Data; +using System.Security.Cryptography; +using System.Text; +using Konscious.Security.Cryptography; +using Microsoft.Data.SqlClient; + +// @todo store this securely using environment variables or a secret manager +const string connectionString = + @"Data Source=AARONPC\INFO5052;Integrated Security=True; + Persist Security Info=False;Pooling=False; + MultipleActiveResultSets=False;Encrypt=True; + TrustServerCertificate=True;Connection Timeout=30;"; + +static async Task BuildSchema(SqlConnection connection) +{ + string sql = await File.ReadAllTextAsync(GetScriptPath("schema.sql")); + await ExecuteScriptAsync(connection, sql); + Console.WriteLine("Database schema created or updated successfully."); +} + +static async Task AddStoredProcs(SqlConnection connection) +{ + string sql = await File.ReadAllTextAsync( + GetScriptPath("SeedStoredProcs.sql") + ); + await ExecuteScriptAsync(connection, sql); + Console.WriteLine("Stored procedures added or updated successfully."); +} + +static async Task RunSeedAsync(SqlConnection connection) +{ + await ExecuteStoredProcedureAsync(connection, "dbo.USP_AddTestUsers"); + Console.WriteLine("Inserted or refreshed test users."); + + DataTable credentialRows = await BuildCredentialTableAsync(connection); + if (credentialRows.Rows.Count > 0) + { + await ExecuteCredentialProcedureAsync(connection, credentialRows); + Console.WriteLine( + $"Generated {credentialRows.Rows.Count} credential hashes." + ); + } + else + { + Console.WriteLine("No new credentials required."); + } + + await ExecuteStoredProcedureAsync( + connection, + "dbo.USP_CreateUserVerification" + ); + Console.WriteLine("Ensured verification rows exist for all users."); +} + +static async Task ExecuteStoredProcedureAsync( + SqlConnection connection, + string storedProcedureName +) +{ + await using SqlCommand command = new SqlCommand( + storedProcedureName, + connection + ); + command.CommandType = CommandType.StoredProcedure; + await command.ExecuteNonQueryAsync(); +} + +static async Task ExecuteCredentialProcedureAsync( + SqlConnection connection, + DataTable credentialTable +) +{ + await using SqlCommand command = new SqlCommand( + "dbo.USP_AddUserCredentials", + connection + ); + command.CommandType = CommandType.StoredProcedure; + + SqlParameter tvpParameter = command.Parameters.Add( + "@Hash", + SqlDbType.Structured + ); + tvpParameter.TypeName = "dbo.TblUserHashes"; + tvpParameter.Value = credentialTable; + + await command.ExecuteNonQueryAsync(); +} + +static async Task BuildCredentialTableAsync(SqlConnection connection) +{ + const string sql = """ +SELECT ua.UserAccountID, + ua.Username +FROM dbo.UserAccount AS ua +WHERE NOT EXISTS ( + SELECT 1 + FROM dbo.UserCredential AS uc + WHERE uc.UserAccountID = ua.UserAccountID); +"""; + + await using SqlCommand command = new(sql, connection); + await using SqlDataReader reader = await command.ExecuteReaderAsync(); + + DataTable table = new(); + table.Columns.Add("UserAccountId", typeof(Guid)); + table.Columns.Add("Hash", typeof(string)); + + while (await reader.ReadAsync()) + { + Guid userId = reader.GetGuid(0); + string username = reader.GetString(1); + + string password = CreatePlainTextPassword(username); + string hash = GeneratePasswordHash(password); + + DataRow row = table.NewRow(); + row["UserAccountId"] = userId; + row["Hash"] = hash; + table.Rows.Add(row); + } + + return table; +} + +static string CreatePlainTextPassword(string username) => $"{username}#2025!"; + +static string GeneratePasswordHash(string password) +{ + byte[] salt = RandomNumberGenerator.GetBytes(16); + + var argon2 = new Argon2id(Encoding.UTF8.GetBytes(password)) + { + Salt = salt, + DegreeOfParallelism = Math.Max(Environment.ProcessorCount, 1), + MemorySize = 65536, + Iterations = 4, + }; + + byte[] hash = argon2.GetBytes(32); + string saltBase64 = Convert.ToBase64String(salt); + string hashBase64 = Convert.ToBase64String(hash); + + // Store salt and hash together so verification can rebuild the key material. + return $"{saltBase64}:{hashBase64}"; +} + +static async Task ExecuteScriptAsync(SqlConnection connection, string sql) +{ + foreach (string batch in SplitSqlBatches(sql)) + { + if (string.IsNullOrWhiteSpace(batch)) + { + continue; + } + + await using SqlCommand command = new(batch, connection); + await command.ExecuteNonQueryAsync(); + } +} + +static IEnumerable SplitSqlBatches(string sql) +{ + using StringReader reader = new(sql); + StringBuilder buffer = new(); + + string? line; + while ((line = reader.ReadLine()) is not null) + { + if (line.Trim().Equals("GO", StringComparison.OrdinalIgnoreCase)) + { + yield return buffer.ToString(); + buffer.Clear(); + continue; + } + + buffer.AppendLine(line); + } + + if (buffer.Length > 0) + { + yield return buffer.ToString(); + } +} + +static string GetScriptPath(string fileName) +{ + string projectRoot = Path.GetFullPath( + Path.Combine(AppContext.BaseDirectory, "..", "..", "..") + ); + string candidate = Path.Combine(projectRoot, fileName); + + if (File.Exists(candidate)) + { + return candidate; + } + + throw new FileNotFoundException( + $"SQL script '{fileName}' was not found.", + candidate + ); +} + +try +{ + await using SqlConnection connection = new(connectionString); + await connection.OpenAsync(); + Console.WriteLine("Connection to database established successfully."); + + await BuildSchema(connection); + await AddStoredProcs(connection); + await RunSeedAsync(connection); + Console.WriteLine("Seeding complete."); +} +catch (Exception ex) +{ + Console.Error.WriteLine($"Seeding failed: {ex.Message}"); + Environment.ExitCode = 1; +} diff --git a/SeedDB/SeedDB.csproj b/SeedDB/SeedDB.csproj new file mode 100644 index 0000000..f32938c --- /dev/null +++ b/SeedDB/SeedDB.csproj @@ -0,0 +1,15 @@ + + + Exe + net9.0 + enable + enable + + + + + + diff --git a/test-data.sql b/SeedDB/SeedStoredProcs.sql similarity index 82% rename from test-data.sql rename to SeedDB/SeedStoredProcs.sql index 3e05a2f..795ff73 100644 --- a/test-data.sql +++ b/SeedDB/SeedStoredProcs.sql @@ -136,31 +136,38 @@ BEGIN END; GO --- -- Stored procedure to insert Argon2 hashes --- CREATE OR ALTER PROCEDURE dbo.USP_AddUserCredentials --- ( --- @Hash dbo.TblUserHashes READONLY --- ) --- AS --- BEGIN --- SET NOCOUNT ON; --- SET XACT_ABORT ON; +CREATE TYPE TblUserHashes AS TABLE +( + UserAccountId UNIQUEIDENTIFIER NOT NULL, + Hash NVARCHAR(MAX) NOT NULL +); +GO --- BEGIN TRANSACTION; +-- Stored procedure to insert Argon2 hashes +CREATE OR ALTER PROCEDURE dbo.USP_AddUserCredentials + ( + @Hash dbo.TblUserHashes READONLY +) +AS +BEGIN + SET NOCOUNT ON; + SET XACT_ABORT ON; --- INSERT INTO dbo.UserCredential --- (UserAccountId, Hash) --- SELECT --- uah.UserAccountId, --- uah.Hash --- FROM @Hash AS uah; + BEGIN TRANSACTION; --- COMMIT TRANSACTION; --- END; --- GO + INSERT INTO dbo.UserCredential + (UserAccountId, Hash) + SELECT + uah.UserAccountId, + uah.Hash + FROM @Hash AS uah; + + COMMIT TRANSACTION; +END; +GO CREATE OR ALTER PROCEDURE dbo.USP_CreateUserVerification -AS +AS BEGIN SET NOCOUNT ON; SET XACT_ABORT ON; @@ -174,11 +181,13 @@ BEGIN FROM dbo.UserAccount AS ua WHERE NOT EXISTS (SELECT 1 - FROM dbo.UserVerification AS uv - WHERE uv.UserAccountId = ua.UserAccountID); + FROM dbo.UserVerification AS uv + WHERE uv.UserAccountId = ua.UserAccountID); - IF (SELECT COUNT(*) FROM dbo.UserVerification) != (SELECT COUNT(*) FROM dbo.UserAccount) + IF (SELECT COUNT(*) + FROM dbo.UserVerification) != (SELECT COUNT(*) + FROM dbo.UserAccount) BEGIN RAISERROR('UserVerification count does not match UserAccount count after insertion.', 16, 1); ROLLBACK TRANSACTION; @@ -188,23 +197,3 @@ BEGIN COMMIT TRANSACTION; END GO - -BEGIN TRY - EXEC dbo.USP_AddTestUsers; - PRINT 'AddTestUsers completed.'; - - EXEC dbo.USP_CreateUserVerification; - PRINT 'CreateUserVerification completed.'; -END TRY -BEGIN CATCH - PRINT ERROR_MESSAGE(); -END CATCH -GO - - -SELECT * -FROM dbo.UserAccount; - -SELECT * -FROM dbo.UserVerification; -GO \ No newline at end of file diff --git a/schema.sql b/SeedDB/schema.sql similarity index 96% rename from schema.sql rename to SeedDB/schema.sql index fad6629..cbf9406 100644 --- a/schema.sql +++ b/SeedDB/schema.sql @@ -164,7 +164,7 @@ CREATE TABLE UserCredential -- delete credentials when user account is deleted Expiry DATETIME CONSTRAINT DF_UserCredential_Expiry DEFAULT DATEADD(DAY, 90, GETDATE()) NOT NULL, - Hash NVARCHAR(100) NOT NULL, + Hash NVARCHAR(MAX) NOT NULL, -- uses argon2 Timer ROWVERSION, @@ -503,10 +503,10 @@ CREATE NONCLUSTERED INDEX IX_BeerPostComment_BeerPost ----------------------------------------------------------------------------- ----------------------------------------------------------------------------- -/* - -dotnet add package Microsoft.EntityFrameworkCore.SqlServer -dotnet add package Microsoft.EntityFrameworkCore.Tools - -Scaffold-DbContext "Data Source=AARONPC\INFO5052;Integrated Security=True;Persist Security Info=False;Pooling=False;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=True;Database=Biergarten" Microsoft.EntityFrameworkCore.SqlServer -Context BiergartenContext -ContextDir "." -OutputDir "Entities" -UseDatabaseNames -Force -*/ +USE Biergarten; +SELECT * +FROM UserAccount; +SELECT * +FROM UserCredential; +SELECT * +FROM UserVerification; \ No newline at end of file diff --git a/biergarten.sln b/biergarten.sln index 6cb0770..1038e2e 100644 --- a/biergarten.sln +++ b/biergarten.sln @@ -3,30 +3,30 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.14.36603.0 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataAccessLayer", "DataAccessLayer\DataAccessLayer.csproj", "{A9FCCEB3-DD88-F8C0-89A3-FD31A7C54F23}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataAccessLayer-Tests", "DataAccessLayer-Tests\DataAccessLayer-Tests.csproj", "{3638DC4E-D4C8-4DBE-CF3B-EF2C805509CE}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8EC462FD-D22E-90A8-E5CE-7E832BA40C5D}" - ProjectSection(SolutionItems) = preProject - schema.sql = schema.sql - test-data.sql = test-data.sql - EndProjectSection +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SeedDB", "SeedDB\SeedDB.csproj", "{45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A9FCCEB3-DD88-F8C0-89A3-FD31A7C54F23}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A9FCCEB3-DD88-F8C0-89A3-FD31A7C54F23}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A9FCCEB3-DD88-F8C0-89A3-FD31A7C54F23}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A9FCCEB3-DD88-F8C0-89A3-FD31A7C54F23}.Release|Any CPU.Build.0 = Release|Any CPU - {3638DC4E-D4C8-4DBE-CF3B-EF2C805509CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3638DC4E-D4C8-4DBE-CF3B-EF2C805509CE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3638DC4E-D4C8-4DBE-CF3B-EF2C805509CE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {3638DC4E-D4C8-4DBE-CF3B-EF2C805509CE}.Release|Any CPU.Build.0 = Release|Any CPU + {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Debug|x64.ActiveCfg = Debug|Any CPU + {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Debug|x64.Build.0 = Debug|Any CPU + {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Debug|x86.ActiveCfg = Debug|Any CPU + {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Debug|x86.Build.0 = Debug|Any CPU + {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Release|Any CPU.Build.0 = Release|Any CPU + {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Release|x64.ActiveCfg = Release|Any CPU + {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Release|x64.Build.0 = Release|Any CPU + {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Release|x86.ActiveCfg = Release|Any CPU + {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/data/users.csv b/data/users.csv deleted file mode 100644 index 9e3eaa2..0000000 --- a/data/users.csv +++ /dev/null @@ -1,31 +0,0 @@ -UserAccountID,Username,FirstName,LastName,Email,CreatedAt,UpdatedAt,DateOfBirth -b8624cea-1a90-4b2d-a12e-a71a86eb1f10,lambrosch0,Lissy,Ambrosch,lambrosch0@upenn.edu,2022-09-18,2018-12-14,1987-02-19 -3954ed02-4f51-4682-99d4-703dfcfed61a,keslinger1,Knox,Eslinger,keslinger1@smugmug.com,2025-05-21,2021-04-22,1958-01-18 -95c1d06f-dc6d-4dfa-a4e3-4e29b412b043,mtrobey2,Manuel,Trobey,mtrobey2@wp.com,2016-09-25,2011-01-05,1993-01-06 -7ceb8774-9cbe-4da3-b697-98ea14b3a86d,kgadsden3,Kerianne,Gadsden,kgadsden3@tinypic.com,2018-12-16,2011-12-11,1950-05-01 -04957847-0564-4b8b-8b4a-cdce1c387914,mvane4,Mord,Vane,mvane4@booking.com,2014-08-31,2025-05-07,1928-08-28 -1b53e41e-60e4-4c81-b162-473d036fd40e,iklimowski5,Ileana,Klimowski,iklimowski5@mtv.com,2024-11-28,2014-05-17,1933-07-20 -cba032ba-ba35-415d-aff0-14936d73b23a,mvickars6,Mischa,Vickars,mvickars6@census.gov,2012-08-06,2014-04-03,1991-03-06 -5a05b977-f6d8-4e9f-b700-ef74e0d4cd79,cbarrus7,Charin,Barrus,cbarrus7@digg.com,2019-08-01,2017-02-26,1984-10-19 -c36f23b6-1af0-4525-9078-03f7285f11fd,gbroady8,Gerri,Broady,gbroady8@cafepress.com,2015-03-23,2021-12-15,1986-09-22 -9eee230d-8e88-4ab7-ad3a-08909f0f179f,jwoolf9,Justis,Woolf,jwoolf9@oakley.com,2020-10-29,2018-07-03,1984-04-13 -4db300d3-8dae-4efb-8be6-2ee31e10489b,agrigsa,Annabell,Grigs,agrigsa@behance.net,2014-09-08,2020-07-17,1932-06-23 -0bdce4af-77e9-495c-b96e-447d6020e851,lmilkinb,Lucia,Milkin,lmilkinb@yahoo.com,2019-07-02,2016-06-04,1975-09-07 -7a815e7c-baa8-4eef-aab8-0e2c394191b0,ahumbatchc,Alvira,Humbatch,ahumbatchc@hc360.com,2015-06-18,2012-04-04,2004-05-13 -50454152-ece0-489f-a1c1-1db8d03b3ce6,ttackd,Teodoro,Tack,ttackd@ucsd.edu,2012-04-25,2022-05-20,1975-05-13 -cf775ced-ecd9-4291-9bc4-ab0cd3ea2ccf,rscholarde,Rip,Scholard,rscholarde@paginegialle.it,2011-09-15,2014-01-13,1975-11-18 -8157d559-2e7c-448f-a845-c649302b8f36,pwarlandf,Phaedra,Warland,pwarlandf@gravatar.com,2024-03-21,2016-09-07,1929-05-29 -c3b257e1-9d79-4494-982e-2fb44a28a7f9,sshallog,Selia,Shallo,sshallog@google.ca,2014-07-19,2021-07-23,1935-06-20 -8dc3f85f-a3bb-46b2-83d5-475c0d33f533,carensonh,Consolata,Arenson,carensonh@jalbum.net,2023-08-26,2024-06-06,1940-03-13 -f39db8d5-d2a7-4726-bcee-aeb1c88a6340,fsushamsi,Falito,Sushams,fsushamsi@indiatimes.com,2022-11-07,2024-09-05,1989-02-06 -97460048-226d-4124-b545-730d0a45fcbf,cschutzej,Creighton,Schutze,cschutzej@seattletimes.com,2010-05-28,2019-05-01,1945-01-12 -183d0825-b6b4-4184-8128-6b1b3ee9c34e,pivanuschkak,Park,Ivanuschka,pivanuschkak@unblog.fr,2017-04-04,2018-02-02,1961-08-10 -75b72f28-7f12-435e-9347-e7026724255d,sgodardl,Stanfield,Godard,sgodardl@statcounter.com,2014-08-02,2020-06-01,1978-03-03 -82b57935-4d01-4eee-a95c-5f7660bc1308,sdeversm,Shaylah,Devers,sdeversm@sbwire.com,2017-07-21,2015-08-20,1963-06-21 -5a76558c-77d2-4698-9aa2-91adf09c3e40,nakessn,Noellyn,Akess,nakessn@sakura.ne.jp,2012-07-28,2023-01-08,1947-02-26 -b2dc17ab-31cc-40c5-9a7c-d95e790fecea,jdumbello,Jobie,Dumbell,jdumbello@google.de,2015-02-01,2013-08-27,1941-04-22 -0c35296a-4833-499f-9c27-2469ba2d41e6,dbiggsp,Dacia,Biggs,dbiggsp@paginegialle.it,2020-07-06,2025-05-25,1921-10-26 -9a0c0852-2db8-4824-8395-97485edf3fc3,ctraiteq,Chan,Traite,ctraiteq@ibm.com,2021-12-02,2018-05-21,1952-03-05 -3d7005b0-7ad0-45a8-a958-184686430af2,lcowlinr,Lorant,Cowlin,lcowlinr@soup.io,2012-01-10,2015-05-22,1947-04-25 -9ab507dd-a0af-4ccd-99b9-ab9077aabf96,csmewings,Corissa,Smewing,csmewings@friendfeed.com,2016-11-15,2020-05-13,1989-12-20 -f0a6c3da-465e-4ff3-9069-4383dcb0e0f6,renderbyt,Rancell,Enderby,renderbyt@quantcast.com,2013-06-07,2023-07-26,1970-05-13 From 4e2c9836c953a37eaec2741c7ed9914e49eb6d3c Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Wed, 12 Nov 2025 01:38:34 -0500 Subject: [PATCH 07/25] update docker compose --- SeedDB/Program.cs | 10 +++------- docker-compose.yml | 34 +++++++++++++++++++++++++++++++++- 2 files changed, 36 insertions(+), 8 deletions(-) diff --git a/SeedDB/Program.cs b/SeedDB/Program.cs index d13b16c..3283211 100644 --- a/SeedDB/Program.cs +++ b/SeedDB/Program.cs @@ -4,12 +4,8 @@ using System.Text; using Konscious.Security.Cryptography; using Microsoft.Data.SqlClient; -// @todo store this securely using environment variables or a secret manager -const string connectionString = - @"Data Source=AARONPC\INFO5052;Integrated Security=True; - Persist Security Info=False;Pooling=False; - MultipleActiveResultSets=False;Encrypt=True; - TrustServerCertificate=True;Connection Timeout=30;"; + +string ConnectionString = Environment.GetEnvironmentVariable("SEEDDB_CONNECTION_STRING")!; static async Task BuildSchema(SqlConnection connection) { @@ -202,7 +198,7 @@ static string GetScriptPath(string fileName) try { - await using SqlConnection connection = new(connectionString); + await using SqlConnection connection = new(ConnectionString); await connection.OpenAsync(); Console.WriteLine("Connection to database established successfully."); diff --git a/docker-compose.yml b/docker-compose.yml index d551229..a456e01 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,7 @@ services: sqlserver: image: mcr.microsoft.com/mssql/server:2022-latest + platform: linux/amd64 container_name: sqlserver environment: ACCEPT_EULA: "Y" @@ -9,6 +10,37 @@ services: - "1433:1433" volumes: - sqlserverdata:/var/opt/mssql + healthcheck: + test: [ "CMD", "/opt/mssql-tools18/bin/sqlcmd", "-C", "-S", "localhost", "-U", "sa", "-P", "YourStrong!Passw0rd", "-Q", "SELECT 1" ] + interval: 10s + timeout: 5s + retries: 12 + networks: + - devnet + + dotnet: + image: mcr.microsoft.com/dotnet/sdk:9.0 + container_name: dotnet-sdk + tty: true + stdin_open: true + volumes: + - ./:/home/dev/projects # bind mount your repo for live code edits + - nuget-cache:/home/dev/.nuget/packages + - ~/.gitconfig:/home/dev/.gitconfig:ro + working_dir: /home/dev/projects + environment: + DOTNET_CLI_TELEMETRY_OPTOUT: "1" + HOME: /home/dev + USER: dev + SEEDDB_CONNECTION_STRING: "Server=sqlserver,1433;User Id=sa;Password=YourStrong!Passw0rd;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;" + user: root + networks: + - devnet volumes: - sqlserverdata: \ No newline at end of file + sqlserverdata: + nuget-cache: + +networks: + devnet: + driver: bridge From a2001646092423421cabe7bc65553d5631a45a0e Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Wed, 12 Nov 2025 18:36:51 -0500 Subject: [PATCH 08/25] Initialize solution structure and add WebAPI project --- BusinessLayer/BusinessLayer.csproj | 9 +++ DataAccessLayer/Class1.cs | 6 ++ DataAccessLayer/DataAccessLayer.csproj | 9 +++ DataAccessLayer/entities/UserAccount.cs | 0 DataAccessLayer/entities/UserCredential.cs | 0 DataAccessLayer/entities/UserVerification.cs | 0 .../DataLayer.csproj | 0 SeedDB/Program.cs => DataLayer/SeedDB.cs | 3 +- {SeedDB => DataLayer}/SeedStoredProcs.sql | 0 {SeedDB => DataLayer}/schema.sql | 0 WebAPI/Program.cs | 42 ++++++++++++ WebAPI/Properties/launchSettings.json | 23 +++++++ WebAPI/WebAPI.csproj | 13 ++++ WebAPI/WebAPI.http | 6 ++ WebAPI/appsettings.Development.json | 8 +++ WebAPI/appsettings.json | 9 +++ biergarten.sln | 68 +++++++++++++++---- 17 files changed, 181 insertions(+), 15 deletions(-) create mode 100644 BusinessLayer/BusinessLayer.csproj create mode 100644 DataAccessLayer/Class1.cs create mode 100644 DataAccessLayer/DataAccessLayer.csproj create mode 100644 DataAccessLayer/entities/UserAccount.cs create mode 100644 DataAccessLayer/entities/UserCredential.cs create mode 100644 DataAccessLayer/entities/UserVerification.cs rename SeedDB/SeedDB.csproj => DataLayer/DataLayer.csproj (100%) rename SeedDB/Program.cs => DataLayer/SeedDB.cs (98%) rename {SeedDB => DataLayer}/SeedStoredProcs.sql (100%) rename {SeedDB => DataLayer}/schema.sql (100%) create mode 100644 WebAPI/Program.cs create mode 100644 WebAPI/Properties/launchSettings.json create mode 100644 WebAPI/WebAPI.csproj create mode 100644 WebAPI/WebAPI.http create mode 100644 WebAPI/appsettings.Development.json create mode 100644 WebAPI/appsettings.json diff --git a/BusinessLayer/BusinessLayer.csproj b/BusinessLayer/BusinessLayer.csproj new file mode 100644 index 0000000..125f4c9 --- /dev/null +++ b/BusinessLayer/BusinessLayer.csproj @@ -0,0 +1,9 @@ + + + + net9.0 + enable + enable + + + diff --git a/DataAccessLayer/Class1.cs b/DataAccessLayer/Class1.cs new file mode 100644 index 0000000..b3a3edf --- /dev/null +++ b/DataAccessLayer/Class1.cs @@ -0,0 +1,6 @@ +namespace DataAccessLayer; + +public class Class1 +{ + +} diff --git a/DataAccessLayer/DataAccessLayer.csproj b/DataAccessLayer/DataAccessLayer.csproj new file mode 100644 index 0000000..125f4c9 --- /dev/null +++ b/DataAccessLayer/DataAccessLayer.csproj @@ -0,0 +1,9 @@ + + + + net9.0 + enable + enable + + + diff --git a/DataAccessLayer/entities/UserAccount.cs b/DataAccessLayer/entities/UserAccount.cs new file mode 100644 index 0000000..e69de29 diff --git a/DataAccessLayer/entities/UserCredential.cs b/DataAccessLayer/entities/UserCredential.cs new file mode 100644 index 0000000..e69de29 diff --git a/DataAccessLayer/entities/UserVerification.cs b/DataAccessLayer/entities/UserVerification.cs new file mode 100644 index 0000000..e69de29 diff --git a/SeedDB/SeedDB.csproj b/DataLayer/DataLayer.csproj similarity index 100% rename from SeedDB/SeedDB.csproj rename to DataLayer/DataLayer.csproj diff --git a/SeedDB/Program.cs b/DataLayer/SeedDB.cs similarity index 98% rename from SeedDB/Program.cs rename to DataLayer/SeedDB.cs index 3283211..c384b0a 100644 --- a/SeedDB/Program.cs +++ b/DataLayer/SeedDB.cs @@ -4,8 +4,7 @@ using System.Text; using Konscious.Security.Cryptography; using Microsoft.Data.SqlClient; - -string ConnectionString = Environment.GetEnvironmentVariable("SEEDDB_CONNECTION_STRING")!; +string ConnectionString = Environment.GetEnvironmentVariable("SEEDDB_CONNECTION_STRING")!; static async Task BuildSchema(SqlConnection connection) { diff --git a/SeedDB/SeedStoredProcs.sql b/DataLayer/SeedStoredProcs.sql similarity index 100% rename from SeedDB/SeedStoredProcs.sql rename to DataLayer/SeedStoredProcs.sql diff --git a/SeedDB/schema.sql b/DataLayer/schema.sql similarity index 100% rename from SeedDB/schema.sql rename to DataLayer/schema.sql diff --git a/WebAPI/Program.cs b/WebAPI/Program.cs new file mode 100644 index 0000000..7ffecff --- /dev/null +++ b/WebAPI/Program.cs @@ -0,0 +1,42 @@ +var builder = WebApplication.CreateBuilder(args); + +// Add services to the container. +// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi +builder.Services.AddOpenApi(); + +var app = builder.Build(); + +// Configure the HTTP request pipeline. +if (app.Environment.IsDevelopment()) +{ + app.MapOpenApi(); +} + +app.UseHttpsRedirection(); + +var summaries = new[] +{ + "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" +}; + +app.MapGet("/weatherforecast", () => +{ + var forecast = Enumerable.Range(1, 5).Select(index => + new WeatherForecast + ( + DateOnly.FromDateTime(DateTime.Now.AddDays(index)), + Random.Shared.Next(-20, 55), + summaries[Random.Shared.Next(summaries.Length)] + )) + .ToArray(); + return forecast; +}) +.WithName("GetWeatherForecast"); + +app.UseStaticFiles(); +app.Run(); + +record WeatherForecast(DateOnly Date, int TemperatureC, string? Summary) +{ + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); +} diff --git a/WebAPI/Properties/launchSettings.json b/WebAPI/Properties/launchSettings.json new file mode 100644 index 0000000..5941a5e --- /dev/null +++ b/WebAPI/Properties/launchSettings.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "http://localhost:5069", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "https://localhost:7002;http://localhost:5069", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/WebAPI/WebAPI.csproj b/WebAPI/WebAPI.csproj new file mode 100644 index 0000000..7383e60 --- /dev/null +++ b/WebAPI/WebAPI.csproj @@ -0,0 +1,13 @@ + + + + net9.0 + enable + enable + + + + + + + diff --git a/WebAPI/WebAPI.http b/WebAPI/WebAPI.http new file mode 100644 index 0000000..f3c8e91 --- /dev/null +++ b/WebAPI/WebAPI.http @@ -0,0 +1,6 @@ +@WebAPI_HostAddress = http://localhost:5069 + +GET {{WebAPI_HostAddress}}/weatherforecast/ +Accept: application/json + +### diff --git a/WebAPI/appsettings.Development.json b/WebAPI/appsettings.Development.json new file mode 100644 index 0000000..ff66ba6 --- /dev/null +++ b/WebAPI/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/WebAPI/appsettings.json b/WebAPI/appsettings.json new file mode 100644 index 0000000..4d56694 --- /dev/null +++ b/WebAPI/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/biergarten.sln b/biergarten.sln index 1038e2e..971b0c9 100644 --- a/biergarten.sln +++ b/biergarten.sln @@ -3,7 +3,13 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.14.36603.0 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SeedDB", "SeedDB\SeedDB.csproj", "{45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataLayer", "DataLayer\DataLayer.csproj", "{F8223224-F3B7-4D9D-A701-9F0ADDA20792}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataAccessLayer", "DataAccessLayer\DataAccessLayer.csproj", "{5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebAPI", "WebAPI\WebAPI.csproj", "{D6B25565-723E-4F79-AA83-A48A3C3DD6C2}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BusinessLayer", "BusinessLayer\BusinessLayer.csproj", "{EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -15,18 +21,54 @@ Global Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Debug|x64.ActiveCfg = Debug|Any CPU - {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Debug|x64.Build.0 = Debug|Any CPU - {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Debug|x86.ActiveCfg = Debug|Any CPU - {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Debug|x86.Build.0 = Debug|Any CPU - {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Release|Any CPU.Build.0 = Release|Any CPU - {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Release|x64.ActiveCfg = Release|Any CPU - {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Release|x64.Build.0 = Release|Any CPU - {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Release|x86.ActiveCfg = Release|Any CPU - {45F7F75E-FD8D-4862-9BDB-6E59F6941DFB}.Release|x86.Build.0 = Release|Any CPU + {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Debug|x64.ActiveCfg = Debug|Any CPU + {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Debug|x64.Build.0 = Debug|Any CPU + {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Debug|x86.ActiveCfg = Debug|Any CPU + {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Debug|x86.Build.0 = Debug|Any CPU + {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Release|Any CPU.Build.0 = Release|Any CPU + {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Release|x64.ActiveCfg = Release|Any CPU + {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Release|x64.Build.0 = Release|Any CPU + {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Release|x86.ActiveCfg = Release|Any CPU + {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Release|x86.Build.0 = Release|Any CPU + {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Debug|x64.ActiveCfg = Debug|Any CPU + {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Debug|x64.Build.0 = Debug|Any CPU + {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Debug|x86.ActiveCfg = Debug|Any CPU + {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Debug|x86.Build.0 = Debug|Any CPU + {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Release|Any CPU.Build.0 = Release|Any CPU + {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Release|x64.ActiveCfg = Release|Any CPU + {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Release|x64.Build.0 = Release|Any CPU + {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Release|x86.ActiveCfg = Release|Any CPU + {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Release|x86.Build.0 = Release|Any CPU + {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Debug|x64.ActiveCfg = Debug|Any CPU + {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Debug|x64.Build.0 = Debug|Any CPU + {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Debug|x86.ActiveCfg = Debug|Any CPU + {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Debug|x86.Build.0 = Debug|Any CPU + {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Release|Any CPU.Build.0 = Release|Any CPU + {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Release|x64.ActiveCfg = Release|Any CPU + {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Release|x64.Build.0 = Release|Any CPU + {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Release|x86.ActiveCfg = Release|Any CPU + {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Release|x86.Build.0 = Release|Any CPU + {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Debug|x64.ActiveCfg = Debug|Any CPU + {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Debug|x64.Build.0 = Debug|Any CPU + {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Debug|x86.ActiveCfg = Debug|Any CPU + {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Debug|x86.Build.0 = Debug|Any CPU + {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Release|Any CPU.Build.0 = Release|Any CPU + {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Release|x64.ActiveCfg = Release|Any CPU + {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Release|x64.Build.0 = Release|Any CPU + {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Release|x86.ActiveCfg = Release|Any CPU + {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE From b86607e37a836a6ef9125705a7a8f0fc8b5b8e8f Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Thu, 13 Nov 2025 10:18:03 +0000 Subject: [PATCH 09/25] Update stored procs/udf and update docker config --- .config/dotnet-tools.json | 13 + .vscode/settings.json | 3 - BusinessLayer/BusinessLayer.csproj | 2 - DataAccessLayer/Class1.cs | 5 +- DataAccessLayer/DataAccessLayer.csproj | 2 - DataLayer/schema.sql | 520 ++++++++++-------- DataLayer/{ => seed}/SeedDB.cs | 64 ++- .../seed/functions/UDF_GetCountryIdByCode.sql | 19 + .../UDF_GetStateProvinceIdByCode.sql | 17 + .../seed/procedures/USP_AddLocations.sql | 504 +++++++++++++++++ .../procedures/USP_AddTestUsers.sql} | 65 +-- .../procedures/USP_AddUserCredentials.sql | 33 ++ .../procedures/USP_CreateUserVerification.sql | 35 ++ WebAPI/Program.cs | 40 +- WebAPI/WebAPI.csproj | 2 - docker-compose.yml | 4 +- 16 files changed, 991 insertions(+), 337 deletions(-) create mode 100644 .config/dotnet-tools.json delete mode 100644 .vscode/settings.json rename DataLayer/{ => seed}/SeedDB.cs (73%) create mode 100644 DataLayer/seed/functions/UDF_GetCountryIdByCode.sql create mode 100644 DataLayer/seed/functions/UDF_GetStateProvinceIdByCode.sql create mode 100644 DataLayer/seed/procedures/USP_AddLocations.sql rename DataLayer/{SeedStoredProcs.sql => seed/procedures/USP_AddTestUsers.sql} (75%) create mode 100644 DataLayer/seed/procedures/USP_AddUserCredentials.sql create mode 100644 DataLayer/seed/procedures/USP_CreateUserVerification.sql diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json new file mode 100644 index 0000000..03df232 --- /dev/null +++ b/.config/dotnet-tools.json @@ -0,0 +1,13 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "csharpier": { + "version": "1.2.1", + "commands": [ + "csharpier" + ], + "rollForward": false + } + } +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 6a8e057..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "dotnet.defaultSolution": "SeedDB.sln" -} diff --git a/BusinessLayer/BusinessLayer.csproj b/BusinessLayer/BusinessLayer.csproj index 125f4c9..bf9d3be 100644 --- a/BusinessLayer/BusinessLayer.csproj +++ b/BusinessLayer/BusinessLayer.csproj @@ -1,9 +1,7 @@  - net9.0 enable enable - diff --git a/DataAccessLayer/Class1.cs b/DataAccessLayer/Class1.cs index b3a3edf..338ee50 100644 --- a/DataAccessLayer/Class1.cs +++ b/DataAccessLayer/Class1.cs @@ -1,6 +1,3 @@ namespace DataAccessLayer; -public class Class1 -{ - -} +public class Class1 { } diff --git a/DataAccessLayer/DataAccessLayer.csproj b/DataAccessLayer/DataAccessLayer.csproj index 125f4c9..bf9d3be 100644 --- a/DataAccessLayer/DataAccessLayer.csproj +++ b/DataAccessLayer/DataAccessLayer.csproj @@ -1,9 +1,7 @@  - net9.0 enable enable - diff --git a/DataLayer/schema.sql b/DataLayer/schema.sql index cbf9406..c204ba7 100644 --- a/DataLayer/schema.sql +++ b/DataLayer/schema.sql @@ -7,7 +7,7 @@ IF EXISTS (SELECT name FROM sys.databases WHERE name = N'Biergarten') BEGIN - ALTER DATABASE Biergarten SET SINGLE_USER WITH ROLLBACK IMMEDIATE; + ALTER DATABASE Biergarten SET SINGLE_USER WITH ROLLBACK IMMEDIATE; END GO @@ -24,34 +24,34 @@ USE Biergarten; CREATE TABLE UserAccount ( - UserAccountID UNIQUEIDENTIFIER - CONSTRAINT DF_UserAccountID DEFAULT NEWID(), + UserAccountID UNIQUEIDENTIFIER + CONSTRAINT DF_UserAccountID DEFAULT NEWID(), - Username VARCHAR(64) NOT NULL, + Username VARCHAR(64) NOT NULL, - FirstName NVARCHAR(128) NOT NULL, + FirstName NVARCHAR(128) NOT NULL, - LastName NVARCHAR(128) NOT NULL, + LastName NVARCHAR(128) NOT NULL, - Email VARCHAR(128) NOT NULL, + Email VARCHAR(128) NOT NULL, - CreatedAt DATETIME NOT NULL - CONSTRAINT DF_UserAccount_CreatedAt DEFAULT GETDATE(), + CreatedAt DATETIME NOT NULL + CONSTRAINT DF_UserAccount_CreatedAt DEFAULT GETDATE(), - UpdatedAt DATETIME, + UpdatedAt DATETIME, - DateOfBirth DATETIME NOT NULL, + DateOfBirth DATETIME NOT NULL, - Timer ROWVERSION, + Timer ROWVERSION, - CONSTRAINT PK_UserAccount - PRIMARY KEY (UserAccountID), + CONSTRAINT PK_UserAccount + PRIMARY KEY (UserAccountID), - CONSTRAINT AK_Username - UNIQUE (Username), + CONSTRAINT AK_Username + UNIQUE (Username), - CONSTRAINT AK_Email - UNIQUE (Email), + CONSTRAINT AK_Email + UNIQUE (Email) ); @@ -60,167 +60,167 @@ CREATE TABLE UserAccount CREATE TABLE Photo -- All photos must be linked to a user account, you cannot delete a user account if they have uploaded photos ( - PhotoID UNIQUEIDENTIFIER - CONSTRAINT DF_PhotoID DEFAULT NEWID(), + PhotoID UNIQUEIDENTIFIER + CONSTRAINT DF_PhotoID DEFAULT NEWID(), - Hyperlink NVARCHAR(256), - -- storage is handled via filesystem or cloud service + Hyperlink NVARCHAR(256), + -- storage is handled via filesystem or cloud service - UploadedByID UNIQUEIDENTIFIER NOT NULL, + UploadedByID UNIQUEIDENTIFIER NOT NULL, - UploadedAt DATETIME NOT NULL - CONSTRAINT DF_Photo_UploadedAt DEFAULT GETDATE(), + UploadedAt DATETIME NOT NULL + CONSTRAINT DF_Photo_UploadedAt DEFAULT GETDATE(), - Timer ROWVERSION, + Timer ROWVERSION, - CONSTRAINT PK_Photo - PRIMARY KEY (PhotoID), + CONSTRAINT PK_Photo + PRIMARY KEY (PhotoID), - CONSTRAINT FK_Photo_UploadedBy - FOREIGN KEY (UploadedByID) - REFERENCES UserAccount(UserAccountID) - ON DELETE NO ACTION + CONSTRAINT FK_Photo_UploadedBy + FOREIGN KEY (UploadedByID) + REFERENCES UserAccount(UserAccountID) + ON DELETE NO ACTION ); CREATE NONCLUSTERED INDEX IX_Photo_UploadedByID - ON Photo(UploadedByID); + ON Photo(UploadedByID); ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- CREATE TABLE UserAvatar -- delete avatar photo when user account is deleted ( - UserAvatarID UNIQUEIDENTIFIER - CONSTRAINT DF_UserAvatarID DEFAULT NEWID(), + UserAvatarID UNIQUEIDENTIFIER + CONSTRAINT DF_UserAvatarID DEFAULT NEWID(), - UserAccountID UNIQUEIDENTIFIER NOT NULL, + UserAccountID UNIQUEIDENTIFIER NOT NULL, - PhotoID UNIQUEIDENTIFIER NOT NULL, + PhotoID UNIQUEIDENTIFIER NOT NULL, - Timer ROWVERSION, + Timer ROWVERSION, - CONSTRAINT PK_UserAvatar PRIMARY KEY (UserAvatarID), + CONSTRAINT PK_UserAvatar PRIMARY KEY (UserAvatarID), - CONSTRAINT FK_UserAvatar_UserAccount - FOREIGN KEY (UserAccountID) - REFERENCES UserAccount(UserAccountID) - ON DELETE CASCADE, + CONSTRAINT FK_UserAvatar_UserAccount + FOREIGN KEY (UserAccountID) + REFERENCES UserAccount(UserAccountID) + ON DELETE CASCADE, - CONSTRAINT FK_UserAvatar_PhotoID - FOREIGN KEY (PhotoID) - REFERENCES Photo(PhotoID), + CONSTRAINT FK_UserAvatar_PhotoID + FOREIGN KEY (PhotoID) + REFERENCES Photo(PhotoID), - CONSTRAINT AK_UserAvatar_UserAccountID - UNIQUE (UserAccountID) + CONSTRAINT AK_UserAvatar_UserAccountID + UNIQUE (UserAccountID) ) CREATE NONCLUSTERED INDEX IX_UserAvatar_UserAccount - ON UserAvatar(UserAccountID); + ON UserAvatar(UserAccountID); ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- CREATE TABLE UserVerification -- delete verification data when user account is deleted ( - UserVerificationID UNIQUEIDENTIFIER - CONSTRAINT DF_UserVerificationID DEFAULT NEWID(), + UserVerificationID UNIQUEIDENTIFIER + CONSTRAINT DF_UserVerificationID DEFAULT NEWID(), - UserAccountID UNIQUEIDENTIFIER NOT NULL, + UserAccountID UNIQUEIDENTIFIER NOT NULL, - VerificationDateTime DATETIME NOT NULL - CONSTRAINT DF_VerificationDateTime - DEFAULT GETDATE(), + VerificationDateTime DATETIME NOT NULL + CONSTRAINT DF_VerificationDateTime + DEFAULT GETDATE(), - Timer ROWVERSION, + Timer ROWVERSION, - CONSTRAINT PK_UserVerification - PRIMARY KEY (UserVerificationID), + CONSTRAINT PK_UserVerification + PRIMARY KEY (UserVerificationID), - CONSTRAINT FK_UserVerification_UserAccount - FOREIGN KEY (UserAccountID) - REFERENCES UserAccount(UserAccountID) - ON DELETE CASCADE, + CONSTRAINT FK_UserVerification_UserAccount + FOREIGN KEY (UserAccountID) + REFERENCES UserAccount(UserAccountID) + ON DELETE CASCADE, - CONSTRAINT AK_UserVerification_UserAccountID - UNIQUE (UserAccountID) + CONSTRAINT AK_UserVerification_UserAccountID + UNIQUE (UserAccountID) ); CREATE NONCLUSTERED INDEX IX_UserVerification_UserAccount - ON UserVerification(UserAccountID); + ON UserVerification(UserAccountID); ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- CREATE TABLE UserCredential -- delete credentials when user account is deleted ( - UserCredentialID UNIQUEIDENTIFIER - CONSTRAINT DF_UserCredentialID DEFAULT NEWID(), + UserCredentialID UNIQUEIDENTIFIER + CONSTRAINT DF_UserCredentialID DEFAULT NEWID(), - UserAccountID UNIQUEIDENTIFIER NOT NULL, + UserAccountID UNIQUEIDENTIFIER NOT NULL, - CreatedAt DATETIME - CONSTRAINT DF_UserCredential_CreatedAt DEFAULT GETDATE() NOT NULL, + CreatedAt DATETIME + CONSTRAINT DF_UserCredential_CreatedAt DEFAULT GETDATE() NOT NULL, - Expiry DATETIME - CONSTRAINT DF_UserCredential_Expiry DEFAULT DATEADD(DAY, 90, GETDATE()) NOT NULL, + Expiry DATETIME + CONSTRAINT DF_UserCredential_Expiry DEFAULT DATEADD(DAY, 90, GETDATE()) NOT NULL, - Hash NVARCHAR(MAX) NOT NULL, - -- uses argon2 + Hash NVARCHAR(MAX) NOT NULL, + -- uses argon2 - Timer ROWVERSION, + Timer ROWVERSION, - CONSTRAINT PK_UserCredential - PRIMARY KEY (UserCredentialID), + CONSTRAINT PK_UserCredential + PRIMARY KEY (UserCredentialID), - CONSTRAINT FK_UserCredential_UserAccount - FOREIGN KEY (UserAccountID) - REFERENCES UserAccount(UserAccountID) - ON DELETE CASCADE, + CONSTRAINT FK_UserCredential_UserAccount + FOREIGN KEY (UserAccountID) + REFERENCES UserAccount(UserAccountID) + ON DELETE CASCADE, - CONSTRAINT AK_UserCredential_UserAccountID - UNIQUE (UserAccountID) + CONSTRAINT AK_UserCredential_UserAccountID + UNIQUE (UserAccountID) ); CREATE NONCLUSTERED INDEX IX_UserCredential_UserAccount - ON UserCredential(UserAccountID); + ON UserCredential(UserAccountID); ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- CREATE TABLE UserFollow ( - UserFollowID UNIQUEIDENTIFIER - CONSTRAINT DF_UserFollowID DEFAULT NEWID(), + UserFollowID UNIQUEIDENTIFIER + CONSTRAINT DF_UserFollowID DEFAULT NEWID(), - UserAccountID UNIQUEIDENTIFIER NOT NULL, + UserAccountID UNIQUEIDENTIFIER NOT NULL, - FollowingID UNIQUEIDENTIFIER NOT NULL, + FollowingID UNIQUEIDENTIFIER NOT NULL, - CreatedAt DATETIME - CONSTRAINT DF_UserFollow_CreatedAt DEFAULT GETDATE() NOT NULL, + CreatedAt DATETIME + CONSTRAINT DF_UserFollow_CreatedAt DEFAULT GETDATE() NOT NULL, - Timer ROWVERSION, + Timer ROWVERSION, - CONSTRAINT PK_UserFollow - PRIMARY KEY (UserFollowID), + CONSTRAINT PK_UserFollow + PRIMARY KEY (UserFollowID), - CONSTRAINT FK_UserFollow_UserAccount - FOREIGN KEY (UserAccountID) - REFERENCES UserAccount(UserAccountID), + CONSTRAINT FK_UserFollow_UserAccount + FOREIGN KEY (UserAccountID) + REFERENCES UserAccount(UserAccountID), - CONSTRAINT FK_UserFollow_UserAccountFollowing - FOREIGN KEY (FollowingID) - REFERENCES UserAccount(UserAccountID), + CONSTRAINT FK_UserFollow_UserAccountFollowing + FOREIGN KEY (FollowingID) + REFERENCES UserAccount(UserAccountID), - CONSTRAINT CK_CannotFollowOwnAccount - CHECK (UserAccountID != FollowingID) + CONSTRAINT CK_CannotFollowOwnAccount + CHECK (UserAccountID != FollowingID) ); CREATE NONCLUSTERED INDEX IX_UserFollow_UserAccount_FollowingID - ON UserFollow(UserAccountID, FollowingID); + ON UserFollow(UserAccountID, FollowingID); CREATE NONCLUSTERED INDEX IX_UserFollow_FollowingID_UserAccount - ON UserFollow(FollowingID, UserAccountID); + ON UserFollow(FollowingID, UserAccountID); ---------------------------------------------------------------------------- @@ -228,17 +228,20 @@ CREATE NONCLUSTERED INDEX IX_UserFollow_FollowingID_UserAccount CREATE TABLE Country ( - CountryID UNIQUEIDENTIFIER - CONSTRAINT DF_CountryID DEFAULT NEWID(), + CountryID UNIQUEIDENTIFIER + CONSTRAINT DF_CountryID DEFAULT NEWID(), - CountryName NVARCHAR(100) NOT NULL, + CountryName NVARCHAR(100) NOT NULL, - CountryCode CHAR(3) NOT NULL, + ISO3616_1 CHAR(2) NOT NULL, - Timer ROWVERSION, + Timer ROWVERSION, - CONSTRAINT PK_Country - PRIMARY KEY (CountryID), + CONSTRAINT PK_Country + PRIMARY KEY (CountryID), + + CONSTRAINT AK_Country_ISO3616_1 + UNIQUE (ISO3616_1) ); ---------------------------------------------------------------------------- @@ -246,107 +249,157 @@ CREATE TABLE Country CREATE TABLE StateProvince ( - StateProvinceID UNIQUEIDENTIFIER - CONSTRAINT DF_StateProvinceID DEFAULT NEWID(), + StateProvinceID UNIQUEIDENTIFIER + CONSTRAINT DF_StateProvinceID DEFAULT NEWID(), - StateProvinceName NVARCHAR(100) NOT NULL, + StateProvinceName NVARCHAR(100) NOT NULL, - CountryID UNIQUEIDENTIFIER NOT NULL, + ISO3616_2 CHAR(6) NOT NULL, + -- eg 'US-CA' for California, 'CA-ON' for Ontario - Timer ROWVERSION, + CountryID UNIQUEIDENTIFIER NOT NULL, - CONSTRAINT PK_StateProvince - PRIMARY KEY (StateProvinceID), + Timer ROWVERSION, - CONSTRAINT FK_StateProvince_Country - FOREIGN KEY (CountryID) - REFERENCES Country(CountryID) + CONSTRAINT PK_StateProvince + PRIMARY KEY (StateProvinceID), + + CONSTRAINT AK_StateProvince_ISO3616_2 + UNIQUE (ISO3616_2), + + CONSTRAINT FK_StateProvince_Country + FOREIGN KEY (CountryID) + REFERENCES Country(CountryID) ); +CREATE NONCLUSTERED INDEX IX_StateProvince_Country + ON StateProvince(CountryID); ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- CREATE TABLE City ( - CityID UNIQUEIDENTIFIER - CONSTRAINT DF_CityID DEFAULT NEWID(), + CityID UNIQUEIDENTIFIER + CONSTRAINT DF_CityID DEFAULT NEWID(), - CityName NVARCHAR(100) NOT NULL, + CityName NVARCHAR(100) NOT NULL, - StateProvinceID UNIQUEIDENTIFIER NOT NULL, + StateProvinceID UNIQUEIDENTIFIER NOT NULL, - Timer ROWVERSION, + Timer ROWVERSION, - CONSTRAINT PK_City - PRIMARY KEY (CityID), + CONSTRAINT PK_City + PRIMARY KEY (CityID), + + CONSTRAINT FK_City_StateProvince + FOREIGN KEY (StateProvinceID) + REFERENCES StateProvince(StateProvinceID) ); +CREATE NONCLUSTERED INDEX IX_City_StateProvince + ON City(StateProvinceID); + ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- CREATE TABLE BreweryPost -- A user cannot be deleted if they have a post ( - BreweryPostID UNIQUEIDENTIFIER - CONSTRAINT DF_BreweryPostID DEFAULT NEWID(), + BreweryPostID UNIQUEIDENTIFIER + CONSTRAINT DF_BreweryPostID DEFAULT NEWID(), - PostedByID UNIQUEIDENTIFIER NOT NULL, + PostedByID UNIQUEIDENTIFIER NOT NULL, - Description NVARCHAR(512) NOT NULL, + Description NVARCHAR(512) NOT NULL, - CreatedAt DATETIME NOT NULL - CONSTRAINT DF_BreweryPost_CreatedAt DEFAULT GETDATE(), + CreatedAt DATETIME NOT NULL + CONSTRAINT DF_BreweryPost_CreatedAt DEFAULT GETDATE(), - UpdatedAt DATETIME NULL, + UpdatedAt DATETIME NULL, - Timer ROWVERSION, + Timer ROWVERSION, - CityID UNIQUEIDENTIFIER NOT NULL, + CONSTRAINT PK_BreweryPost + PRIMARY KEY (BreweryPostID), - Coordinates GEOGRAPHY NOT NULL, + CONSTRAINT FK_BreweryPost_UserAccount + FOREIGN KEY (PostedByID) + REFERENCES UserAccount(UserAccountID) + ON DELETE NO ACTION, - CONSTRAINT PK_BreweryPost - PRIMARY KEY (BreweryPostID), - - CONSTRAINT FK_BreweryPost_UserAccount - FOREIGN KEY (PostedByID) - REFERENCES UserAccount(UserAccountID) - ON DELETE NO ACTION ) CREATE NONCLUSTERED INDEX IX_BreweryPost_PostedByID - ON BreweryPost(PostedByID); + ON BreweryPost(PostedByID); - ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- +---------------------------------------------------------------------------- +CREATE TABLE BreweryPostLocation ( + BreweryPostLocationID UNIQUEIDENTIFIER + CONSTRAINT DF_BreweryPostLocationID DEFAULT NEWID(), + + BreweryPostID UNIQUEIDENTIFIER NOT NULL, + + AddressLine1 NVARCHAR(256) NOT NULL, + + AddressLine2 NVARCHAR(256), + + PostalCode NVARCHAR(20) NOT NULL, + + CityID UNIQUEIDENTIFIER NOT NULL, + + Coordinates GEOGRAPHY NOT NULL, + + Timer ROWVERSION, + + CONSTRAINT PK_BreweryPostLocation + PRIMARY KEY (BreweryPostLocationID), + + CONSTRAINT AK_BreweryPostLocation_BreweryPostID + UNIQUE (BreweryPostID), + + CONSTRAINT FK_BreweryPostLocation_BreweryPost + FOREIGN KEY (BreweryPostID) + REFERENCES BreweryPost(BreweryPostID) + ON DELETE CASCADE +); + +CREATE NONCLUSTERED INDEX IX_BreweryPostLocation_BreweryPost + ON BreweryPostLocation(BreweryPostID); + +CREATE NONCLUSTERED INDEX IX_BreweryPostLocation_City + ON BreweryPostLocation(CityID); + +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- + CREATE TABLE BreweryPostPhoto -- All photos linked to a post are deleted if the post is deleted ( - BreweryPostPhotoID UNIQUEIDENTIFIER - CONSTRAINT DF_BreweryPostPhotoID DEFAULT NEWID(), + BreweryPostPhotoID UNIQUEIDENTIFIER + CONSTRAINT DF_BreweryPostPhotoID DEFAULT NEWID(), - BreweryPostID UNIQUEIDENTIFIER NOT NULL, + BreweryPostID UNIQUEIDENTIFIER NOT NULL, - PhotoID UNIQUEIDENTIFIER NOT NULL, + PhotoID UNIQUEIDENTIFIER NOT NULL, - LinkedAt DATETIME NOT NULL - CONSTRAINT DF_BreweryPostPhoto_LinkedAt DEFAULT GETDATE(), + LinkedAt DATETIME NOT NULL + CONSTRAINT DF_BreweryPostPhoto_LinkedAt DEFAULT GETDATE(), - Timer ROWVERSION, + Timer ROWVERSION, - CONSTRAINT PK_BreweryPostPhoto - PRIMARY KEY (BreweryPostPhotoID), + CONSTRAINT PK_BreweryPostPhoto + PRIMARY KEY (BreweryPostPhotoID), - CONSTRAINT FK_BreweryPostPhoto_BreweryPost - FOREIGN KEY (BreweryPostID) - REFERENCES BreweryPost(BreweryPostID) - ON DELETE CASCADE, + CONSTRAINT FK_BreweryPostPhoto_BreweryPost + FOREIGN KEY (BreweryPostID) + REFERENCES BreweryPost(BreweryPostID) + ON DELETE CASCADE, - CONSTRAINT FK_BreweryPostPhoto_Photo - FOREIGN KEY (PhotoID) - REFERENCES Photo(PhotoID) - ON DELETE CASCADE + CONSTRAINT FK_BreweryPostPhoto_Photo + FOREIGN KEY (PhotoID) + REFERENCES Photo(PhotoID) + ON DELETE CASCADE ); CREATE NONCLUSTERED INDEX IX_BreweryPostPhoto_Photo_BreweryPost @@ -359,20 +412,20 @@ ON BreweryPostPhoto(BreweryPostID, PhotoID); ---------------------------------------------------------------------------- CREATE TABLE BeerStyle ( - BeerStyleID UNIQUEIDENTIFIER - CONSTRAINT DF_BeerStyleID DEFAULT NEWID(), + BeerStyleID UNIQUEIDENTIFIER + CONSTRAINT DF_BeerStyleID DEFAULT NEWID(), - StyleName NVARCHAR(100) NOT NULL, + StyleName NVARCHAR(100) NOT NULL, - Description NVARCHAR(MAX), + Description NVARCHAR(MAX), - Timer ROWVERSION, + Timer ROWVERSION, - CONSTRAINT PK_BeerStyle - PRIMARY KEY (BeerStyleID), + CONSTRAINT PK_BeerStyle + PRIMARY KEY (BeerStyleID), - CONSTRAINT AK_BeerStyle_StyleName - UNIQUE (StyleName) + CONSTRAINT AK_BeerStyle_StyleName + UNIQUE (StyleName) ); ---------------------------------------------------------------------------- @@ -380,51 +433,51 @@ CREATE TABLE BeerStyle CREATE TABLE BeerPost ( - BeerPostID UNIQUEIDENTIFIER - CONSTRAINT DF_BeerPostID DEFAULT NEWID(), + BeerPostID UNIQUEIDENTIFIER + CONSTRAINT DF_BeerPostID DEFAULT NEWID(), - Name NVARCHAR(100) NOT NULL, + Name NVARCHAR(100) NOT NULL, - Description NVARCHAR(MAX) NOT NULL, + Description NVARCHAR(MAX) NOT NULL, - ABV DECIMAL(4,2) NOT NULL, - -- Alcohol By Volume (typically 0-67%) + ABV DECIMAL(4,2) NOT NULL, + -- Alcohol By Volume (typically 0-67%) - IBU INT NOT NULL, - -- International Bitterness Units (typically 0-100) + IBU INT NOT NULL, + -- International Bitterness Units (typically 0-100) - PostedByID UNIQUEIDENTIFIER NOT NULL, + PostedByID UNIQUEIDENTIFIER NOT NULL, - BeerStyleID UNIQUEIDENTIFIER NOT NULL, + BeerStyleID UNIQUEIDENTIFIER NOT NULL, - BrewedByID UNIQUEIDENTIFIER NOT NULL, + BrewedByID UNIQUEIDENTIFIER NOT NULL, - CreatedAt DATETIME NOT NULL - CONSTRAINT DF_BeerPost_CreatedAt DEFAULT GETDATE(), + CreatedAt DATETIME NOT NULL + CONSTRAINT DF_BeerPost_CreatedAt DEFAULT GETDATE(), - UpdatedAt DATETIME, + UpdatedAt DATETIME, - Timer ROWVERSION, + Timer ROWVERSION, - CONSTRAINT PK_BeerPost + CONSTRAINT PK_BeerPost PRIMARY KEY (BeerPostID), - CONSTRAINT FK_BeerPost_PostedBy + CONSTRAINT FK_BeerPost_PostedBy FOREIGN KEY (PostedByID) REFERENCES UserAccount(UserAccountID), - CONSTRAINT FK_BeerPost_BeerStyle - FOREIGN KEY (BeerStyleID) - REFERENCES BeerStyle(BeerStyleID), + CONSTRAINT FK_BeerPost_BeerStyle + FOREIGN KEY (BeerStyleID) + REFERENCES BeerStyle(BeerStyleID), - CONSTRAINT FK_BeerPost_Brewery - FOREIGN KEY (BrewedByID) - REFERENCES BreweryPost(BreweryPostID), + CONSTRAINT FK_BeerPost_Brewery + FOREIGN KEY (BrewedByID) + REFERENCES BreweryPost(BreweryPostID), - CONSTRAINT CHK_BeerPost_ABV + CONSTRAINT CHK_BeerPost_ABV CHECK (ABV >= 0 AND ABV <= 67), - CONSTRAINT CHK_BeerPost_IBU + CONSTRAINT CHK_BeerPost_IBU CHECK (IBU >= 0 AND IBU <= 120) ); @@ -432,40 +485,40 @@ CREATE NONCLUSTERED INDEX IX_BeerPost_PostedBy ON BeerPost(PostedByID); CREATE NONCLUSTERED INDEX IX_BeerPost_BeerStyle - ON BeerPost(BeerStyleID); + ON BeerPost(BeerStyleID); CREATE NONCLUSTERED INDEX IX_BeerPost_BrewedBy - ON BeerPost(BrewedByID); + ON BeerPost(BrewedByID); ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- CREATE TABLE BeerPostPhoto -- All photos linked to a beer post are deleted if the post is deleted ( - BeerPostPhotoID UNIQUEIDENTIFIER - CONSTRAINT DF_BeerPostPhotoID DEFAULT NEWID(), + BeerPostPhotoID UNIQUEIDENTIFIER + CONSTRAINT DF_BeerPostPhotoID DEFAULT NEWID(), - BeerPostID UNIQUEIDENTIFIER NOT NULL, + BeerPostID UNIQUEIDENTIFIER NOT NULL, - PhotoID UNIQUEIDENTIFIER NOT NULL, + PhotoID UNIQUEIDENTIFIER NOT NULL, - LinkedAt DATETIME NOT NULL - CONSTRAINT DF_BeerPostPhoto_LinkedAt DEFAULT GETDATE(), + LinkedAt DATETIME NOT NULL + CONSTRAINT DF_BeerPostPhoto_LinkedAt DEFAULT GETDATE(), - Timer ROWVERSION, + Timer ROWVERSION, - CONSTRAINT PK_BeerPostPhoto - PRIMARY KEY (BeerPostPhotoID), + CONSTRAINT PK_BeerPostPhoto + PRIMARY KEY (BeerPostPhotoID), - CONSTRAINT FK_BeerPostPhoto_BeerPost - FOREIGN KEY (BeerPostID) - REFERENCES BeerPost(BeerPostID) - ON DELETE CASCADE, + CONSTRAINT FK_BeerPostPhoto_BeerPost + FOREIGN KEY (BeerPostID) + REFERENCES BeerPost(BeerPostID) + ON DELETE CASCADE, - CONSTRAINT FK_BeerPostPhoto_Photo - FOREIGN KEY (PhotoID) - REFERENCES Photo(PhotoID) - ON DELETE CASCADE + CONSTRAINT FK_BeerPostPhoto_Photo + FOREIGN KEY (PhotoID) + REFERENCES Photo(PhotoID) + ON DELETE CASCADE ); CREATE NONCLUSTERED INDEX IX_BeerPostPhoto_Photo_BeerPost @@ -479,34 +532,27 @@ ON BeerPostPhoto(BeerPostID, PhotoID); CREATE TABLE BeerPostComment ( - BeerPostCommentID UNIQUEIDENTIFIER - CONSTRAINT DF_BeerPostComment DEFAULT NEWID(), + BeerPostCommentID UNIQUEIDENTIFIER + CONSTRAINT DF_BeerPostComment DEFAULT NEWID(), - Comment NVARCHAR(250) NOT NULL, + Comment NVARCHAR(250) NOT NULL, - BeerPostID UNIQUEIDENTIFIER NOT NULL, + BeerPostID UNIQUEIDENTIFIER NOT NULL, - Rating INT NOT NULL, + Rating INT NOT NULL, - Timer ROWVERSION, + Timer ROWVERSION, - CONSTRAINT PK_BeerPostComment + CONSTRAINT PK_BeerPostComment PRIMARY KEY (BeerPostCommentID), - CONSTRAINT FK_BeerPostComment_BeerPost - FOREIGN KEY (BeerPostID) REFERENCES BeerPost(BeerPostID) + CONSTRAINT FK_BeerPostComment_BeerPost + FOREIGN KEY (BeerPostID) REFERENCES BeerPost(BeerPostID) ) CREATE NONCLUSTERED INDEX IX_BeerPostComment_BeerPost - ON BeerPostComment(BeerPostID) + ON BeerPostComment(BeerPostID) ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ - -USE Biergarten; -SELECT * -FROM UserAccount; -SELECT * -FROM UserCredential; -SELECT * -FROM UserVerification; \ No newline at end of file +---------------------------------------------------------------------------- +---------------------------------------------------------------------------- +-- EOF \ No newline at end of file diff --git a/DataLayer/SeedDB.cs b/DataLayer/seed/SeedDB.cs similarity index 73% rename from DataLayer/SeedDB.cs rename to DataLayer/seed/SeedDB.cs index c384b0a..a1af300 100644 --- a/DataLayer/SeedDB.cs +++ b/DataLayer/seed/SeedDB.cs @@ -4,7 +4,9 @@ using System.Text; using Konscious.Security.Cryptography; using Microsoft.Data.SqlClient; -string ConnectionString = Environment.GetEnvironmentVariable("SEEDDB_CONNECTION_STRING")!; +string ConnectionString = Environment.GetEnvironmentVariable( + "DB_CONNECTION_STRING" +)!; static async Task BuildSchema(SqlConnection connection) { @@ -13,13 +15,61 @@ static async Task BuildSchema(SqlConnection connection) Console.WriteLine("Database schema created or updated successfully."); } -static async Task AddStoredProcs(SqlConnection connection) +static async Task AddStoredProcsAndFunctions(SqlConnection connection) { - string sql = await File.ReadAllTextAsync( - GetScriptPath("SeedStoredProcs.sql") + // New approach: load functions first, then procedures, from dedicated folders. + // Fallback to legacy combined file if folders are missing. + string projectRoot = Path.GetFullPath( + Path.Combine(AppContext.BaseDirectory, "..", "..", "..") ); - await ExecuteScriptAsync(connection, sql); - Console.WriteLine("Stored procedures added or updated successfully."); + + string functionsDir = Path.Combine(projectRoot, "seed", "functions"); + string proceduresDir = Path.Combine(projectRoot, "seed", "procedures"); + + if (Directory.Exists(functionsDir)) + { + foreach ( + string file in Directory + .EnumerateFiles( + functionsDir, + "*.sql", + SearchOption.TopDirectoryOnly + ) + .OrderBy(f => f, StringComparer.OrdinalIgnoreCase) + ) + { + string sql = await File.ReadAllTextAsync(file); + await ExecuteScriptAsync(connection, sql); + Console.WriteLine( + $"Executed function script: {Path.GetFileName(file)}" + ); + } + } + + if (Directory.Exists(proceduresDir)) + { + foreach ( + string file in Directory + .EnumerateFiles( + proceduresDir, + "*.sql", + SearchOption.TopDirectoryOnly + ) + .OrderBy(f => f, StringComparer.OrdinalIgnoreCase) + ) + { + string sql = await File.ReadAllTextAsync(file); + await ExecuteScriptAsync(connection, sql); + Console.WriteLine( + $"Executed procedure script: {Path.GetFileName(file)}" + ); + } + } + + Console.WriteLine( + "Functions and stored procedures added or updated successfully." + ); + return; } static async Task RunSeedAsync(SqlConnection connection) @@ -202,7 +252,7 @@ try Console.WriteLine("Connection to database established successfully."); await BuildSchema(connection); - await AddStoredProcs(connection); + await AddStoredProcsAndFunctions(connection); await RunSeedAsync(connection); Console.WriteLine("Seeding complete."); } diff --git a/DataLayer/seed/functions/UDF_GetCountryIdByCode.sql b/DataLayer/seed/functions/UDF_GetCountryIdByCode.sql new file mode 100644 index 0000000..9d9896b --- /dev/null +++ b/DataLayer/seed/functions/UDF_GetCountryIdByCode.sql @@ -0,0 +1,19 @@ +USE Biergarten; +GO + +CREATE OR ALTER FUNCTION dbo.UDF_GetCountryIdByCode +( + @CountryCode NVARCHAR(2) +) +RETURNS UNIQUEIDENTIFIER +AS +BEGIN + DECLARE @CountryId UNIQUEIDENTIFIER; + + SELECT @CountryId = CountryID + FROM dbo.Country + WHERE ISO3616_1 = @CountryCode; + + RETURN @CountryId; +END; +GO diff --git a/DataLayer/seed/functions/UDF_GetStateProvinceIdByCode.sql b/DataLayer/seed/functions/UDF_GetStateProvinceIdByCode.sql new file mode 100644 index 0000000..cd9e64d --- /dev/null +++ b/DataLayer/seed/functions/UDF_GetStateProvinceIdByCode.sql @@ -0,0 +1,17 @@ +USE Biergarten; +GO + +CREATE OR ALTER FUNCTION dbo.UDF_GetStateProvinceIdByCode +( + @StateProvinceCode NVARCHAR(6) +) +RETURNS UNIQUEIDENTIFIER +AS +BEGIN + DECLARE @StateProvinceId UNIQUEIDENTIFIER; + SELECT @StateProvinceId = StateProvinceID + FROM dbo.StateProvince + WHERE ISO3616_2 = @StateProvinceCode; + RETURN @StateProvinceId; +END; +GO diff --git a/DataLayer/seed/procedures/USP_AddLocations.sql b/DataLayer/seed/procedures/USP_AddLocations.sql new file mode 100644 index 0000000..fe3bc3a --- /dev/null +++ b/DataLayer/seed/procedures/USP_AddLocations.sql @@ -0,0 +1,504 @@ +USE Biergarten; +GO + +CREATE OR ALTER PROCEDURE dbo.USP_AddLocations +AS +BEGIN + SET NOCOUNT ON; + SET XACT_ABORT ON; + + BEGIN TRANSACTION; + -- Countries (alpha-2) + WITH + Countries(CountryName, Alpha2) + AS + ( + SELECT 'Canada', 'CA' + UNION ALL + SELECT 'Mexico', 'MX' + UNION ALL + SELECT 'United States', 'US' + ) + INSERT INTO dbo.Country + (CountryName, ISO3616_1) + SELECT c.CountryName, c.Alpha2 + FROM Countries AS c + WHERE NOT EXISTS (SELECT 1 + FROM dbo.Country AS x + WHERE x.ISO3616_1 = c.Alpha2 + ); + + WITH + Regions(StateProvinceName, ISO2, CountryAlpha2) + AS + ( + -- United States (50 + DC + territories) + SELECT 'Alabama', 'US-AL', 'US' + UNION ALL + SELECT 'Alaska', 'US-AK', 'US' + UNION ALL + SELECT 'Arizona', 'US-AZ', 'US' + UNION ALL + SELECT 'Arkansas', 'US-AR', 'US' + UNION ALL + SELECT 'California', 'US-CA', 'US' + UNION ALL + SELECT 'Colorado', 'US-CO', 'US' + UNION ALL + SELECT 'Connecticut', 'US-CT', 'US' + UNION ALL + SELECT 'Delaware', 'US-DE', 'US' + UNION ALL + SELECT 'Florida', 'US-FL', 'US' + UNION ALL + SELECT 'Georgia', 'US-GA', 'US' + UNION ALL + SELECT 'Hawaii', 'US-HI', 'US' + UNION ALL + SELECT 'Idaho', 'US-ID', 'US' + UNION ALL + SELECT 'Illinois', 'US-IL', 'US' + UNION ALL + SELECT 'Indiana', 'US-IN', 'US' + UNION ALL + SELECT 'Iowa', 'US-IA', 'US' + UNION ALL + SELECT 'Kansas', 'US-KS', 'US' + UNION ALL + SELECT 'Kentucky', 'US-KY', 'US' + UNION ALL + SELECT 'Louisiana', 'US-LA', 'US' + UNION ALL + SELECT 'Maine', 'US-ME', 'US' + UNION ALL + SELECT 'Maryland', 'US-MD', 'US' + UNION ALL + SELECT 'Massachusetts', 'US-MA', 'US' + UNION ALL + SELECT 'Michigan', 'US-MI', 'US' + UNION ALL + SELECT 'Minnesota', 'US-MN', 'US' + UNION ALL + SELECT 'Mississippi', 'US-MS', 'US' + UNION ALL + SELECT 'Missouri', 'US-MO', 'US' + UNION ALL + SELECT 'Montana', 'US-MT', 'US' + UNION ALL + SELECT 'Nebraska', 'US-NE', 'US' + UNION ALL + SELECT 'Nevada', 'US-NV', 'US' + UNION ALL + SELECT 'New Hampshire', 'US-NH', 'US' + UNION ALL + SELECT 'New Jersey', 'US-NJ', 'US' + UNION ALL + SELECT 'New Mexico', 'US-NM', 'US' + UNION ALL + SELECT 'New York', 'US-NY', 'US' + UNION ALL + SELECT 'North Carolina', 'US-NC', 'US' + UNION ALL + SELECT 'North Dakota', 'US-ND', 'US' + UNION ALL + SELECT 'Ohio', 'US-OH', 'US' + UNION ALL + SELECT 'Oklahoma', 'US-OK', 'US' + UNION ALL + SELECT 'Oregon', 'US-OR', 'US' + UNION ALL + SELECT 'Pennsylvania', 'US-PA', 'US' + UNION ALL + SELECT 'Rhode Island', 'US-RI', 'US' + UNION ALL + SELECT 'South Carolina', 'US-SC', 'US' + UNION ALL + SELECT 'South Dakota', 'US-SD', 'US' + UNION ALL + SELECT 'Tennessee', 'US-TN', 'US' + UNION ALL + SELECT 'Texas', 'US-TX', 'US' + UNION ALL + SELECT 'Utah', 'US-UT', 'US' + UNION ALL + SELECT 'Vermont', 'US-VT', 'US' + UNION ALL + SELECT 'Virginia', 'US-VA', 'US' + UNION ALL + SELECT 'Washington', 'US-WA', 'US' + UNION ALL + SELECT 'West Virginia', 'US-WV', 'US' + UNION ALL + SELECT 'Wisconsin', 'US-WI', 'US' + UNION ALL + SELECT 'Wyoming', 'US-WY', 'US' + UNION ALL + SELECT 'District of Columbia', 'US-DC', 'US' + UNION ALL + SELECT 'Puerto Rico', 'US-PR', 'US' + UNION ALL + SELECT 'U.S. Virgin Islands', 'US-VI', 'US' + UNION ALL + SELECT 'Guam', 'US-GU', 'US' + UNION ALL + SELECT 'Northern Mariana Islands', 'US-MP', 'US' + UNION ALL + SELECT 'American Samoa', 'US-AS', 'US' + + -- Canada (10 provinces + 3 territories) + UNION ALL + SELECT 'Ontario', 'CA-ON', 'CA' + UNION ALL + SELECT N'Québec', 'CA-QC', 'CA' + UNION ALL + SELECT 'Nova Scotia', 'CA-NS', 'CA' + UNION ALL + SELECT 'New Brunswick', 'CA-NB', 'CA' + UNION ALL + SELECT 'Manitoba', 'CA-MB', 'CA' + UNION ALL + SELECT 'British Columbia', 'CA-BC', 'CA' + UNION ALL + SELECT 'Prince Edward Island', 'CA-PE', 'CA' + UNION ALL + SELECT 'Saskatchewan', 'CA-SK', 'CA' + UNION ALL + SELECT 'Alberta', 'CA-AB', 'CA' + UNION ALL + SELECT 'Newfoundland and Labrador', 'CA-NL', 'CA' + UNION ALL + SELECT 'Northwest Territories', 'CA-NT', 'CA' + UNION ALL + SELECT 'Yukon', 'CA-YT', 'CA' + UNION ALL + SELECT 'Nunavut', 'CA-NU', 'CA' + + -- Mexico (32 states incl. CDMX) + UNION ALL + SELECT 'Aguascalientes', 'MX-AGU', 'MX' + UNION ALL + SELECT 'Baja California', 'MX-BCN', 'MX' + UNION ALL + SELECT 'Baja California Sur', 'MX-BCS', 'MX' + UNION ALL + SELECT 'Campeche', 'MX-CAM', 'MX' + UNION ALL + SELECT 'Chiapas', 'MX-CHP', 'MX' + UNION ALL + SELECT 'Chihuahua', 'MX-CHH', 'MX' + UNION ALL + SELECT 'Coahuila de Zaragoza', 'MX-COA', 'MX' + UNION ALL + SELECT 'Colima', 'MX-COL', 'MX' + UNION ALL + SELECT 'Durango', 'MX-DUR', 'MX' + UNION ALL + SELECT 'Guanajuato', 'MX-GUA', 'MX' + UNION ALL + SELECT 'Guerrero', 'MX-GRO', 'MX' + UNION ALL + SELECT 'Hidalgo', 'MX-HID', 'MX' + UNION ALL + SELECT 'Jalisco', 'MX-JAL', 'MX' + UNION ALL + SELECT N'México State', 'MX-MEX', 'MX' + UNION ALL + SELECT N'Michoacán de Ocampo', 'MX-MIC', 'MX' + UNION ALL + SELECT 'Morelos', 'MX-MOR', 'MX' + UNION ALL + SELECT 'Nayarit', 'MX-NAY', 'MX' + UNION ALL + SELECT N'Nuevo León', 'MX-NLE', 'MX' + UNION ALL + SELECT 'Oaxaca', 'MX-OAX', 'MX' + UNION ALL + SELECT 'Puebla', 'MX-PUE', 'MX' + UNION ALL + SELECT N'Querétaro', 'MX-QUE', 'MX' + UNION ALL + SELECT 'Quintana Roo', 'MX-ROO', 'MX' + UNION ALL + SELECT N'San Luis Potosí', 'MX-SLP', 'MX' + UNION ALL + SELECT 'Sinaloa', 'MX-SIN', 'MX' + UNION ALL + SELECT 'Sonora', 'MX-SON', 'MX' + UNION ALL + SELECT 'Tabasco', 'MX-TAB', 'MX' + UNION ALL + SELECT 'Tamaulipas', 'MX-TAM', 'MX' + UNION ALL + SELECT 'Tlaxcala', 'MX-TLA', 'MX' + UNION ALL + SELECT 'Veracruz de Ignacio de la Llave', 'MX-VER', 'MX' + UNION ALL + SELECT N'Yucatán', 'MX-YUC', 'MX' + UNION ALL + SELECT 'Zacatecas', 'MX-ZAC', 'MX' + UNION ALL + SELECT N'Ciudad de México', 'MX-CMX', 'MX' + ) + INSERT INTO dbo.StateProvince + (StateProvinceName, ISO3616_2, CountryID) + SELECT + r.StateProvinceName, + r.ISO2, + dbo.UDF_GetCountryIdByCode(r.CountryAlpha2) + FROM Regions AS r + WHERE NOT EXISTS ( + SELECT 1 + FROM dbo.StateProvince AS sp + WHERE sp.ISO3616_2 = r.ISO2 + ); + + WITH + Cities(StateProvinceISO2, CityName) + AS + ( + -- USA + SELECT 'US-CA', 'Los Angeles' + UNION ALL + SELECT 'US-CA', 'San Diego' + UNION ALL + SELECT 'US-CA', 'San Francisco' + UNION ALL + SELECT 'US-CA', 'Sacramento' + UNION ALL + SELECT 'US-TX', 'Houston' + UNION ALL + SELECT 'US-TX', 'Dallas' + UNION ALL + SELECT 'US-TX', 'Austin' + UNION ALL + SELECT 'US-TX', 'San Antonio' + UNION ALL + SELECT 'US-FL', 'Miami' + UNION ALL + SELECT 'US-FL', 'Orlando' + UNION ALL + SELECT 'US-FL', 'Tampa' + UNION ALL + SELECT 'US-NY', 'New York' + UNION ALL + SELECT 'US-NY', 'Buffalo' + UNION ALL + SELECT 'US-NY', 'Rochester' + UNION ALL + SELECT 'US-IL', 'Chicago' + UNION ALL + SELECT 'US-IL', 'Springfield' + UNION ALL + SELECT 'US-PA', 'Philadelphia' + UNION ALL + SELECT 'US-PA', 'Pittsburgh' + UNION ALL + SELECT 'US-AZ', 'Phoenix' + UNION ALL + SELECT 'US-AZ', 'Tucson' + UNION ALL + SELECT 'US-CO', 'Denver' + UNION ALL + SELECT 'US-CO', 'Colorado Springs' + UNION ALL + SELECT 'US-MA', 'Boston' + UNION ALL + SELECT 'US-MA', 'Worcester' + UNION ALL + SELECT 'US-WA', 'Seattle' + UNION ALL + SELECT 'US-WA', 'Spokane' + UNION ALL + SELECT 'US-GA', 'Atlanta' + UNION ALL + SELECT 'US-GA', 'Savannah' + UNION ALL + SELECT 'US-NV', 'Las Vegas' + UNION ALL + SELECT 'US-NV', 'Reno' + UNION ALL + SELECT 'US-MI', 'Detroit' + UNION ALL + SELECT 'US-MI', 'Grand Rapids' + UNION ALL + SELECT 'US-MN', 'Minneapolis' + UNION ALL + SELECT 'US-MN', 'Saint Paul' + UNION ALL + SELECT 'US-OH', 'Columbus' + UNION ALL + SELECT 'US-OH', 'Cleveland' + UNION ALL + SELECT 'US-OR', 'Portland' + UNION ALL + SELECT 'US-OR', 'Salem' + UNION ALL + SELECT 'US-TN', 'Nashville' + UNION ALL + SELECT 'US-TN', 'Memphis' + UNION ALL + SELECT 'US-VA', 'Richmond' + UNION ALL + SELECT 'US-VA', 'Virginia Beach' + UNION ALL + SELECT 'US-MD', 'Baltimore' + UNION ALL + SELECT 'US-MD', 'Frederick' + UNION ALL + SELECT 'US-DC', 'Washington' + UNION ALL + SELECT 'US-UT', 'Salt Lake City' + UNION ALL + SELECT 'US-UT', 'Provo' + UNION ALL + SELECT 'US-LA', 'New Orleans' + UNION ALL + SELECT 'US-LA', 'Baton Rouge' + UNION ALL + SELECT 'US-KY', 'Louisville' + UNION ALL + SELECT 'US-KY', 'Lexington' + UNION ALL + SELECT 'US-IA', 'Des Moines' + UNION ALL + SELECT 'US-IA', 'Cedar Rapids' + UNION ALL + SELECT 'US-OK', 'Oklahoma City' + UNION ALL + SELECT 'US-OK', 'Tulsa' + UNION ALL + SELECT 'US-NE', 'Omaha' + UNION ALL + SELECT 'US-NE', 'Lincoln' + UNION ALL + SELECT 'US-MO', 'Kansas City' + UNION ALL + SELECT 'US-MO', 'St. Louis' + UNION ALL + SELECT 'US-NC', 'Charlotte' + UNION ALL + SELECT 'US-NC', 'Raleigh' + UNION ALL + SELECT 'US-SC', 'Columbia' + UNION ALL + SELECT 'US-SC', 'Charleston' + UNION ALL + SELECT 'US-WI', 'Milwaukee' + UNION ALL + SELECT 'US-WI', 'Madison' + UNION ALL + SELECT 'US-MN', 'Duluth' + UNION ALL + SELECT 'US-AK', 'Anchorage' + UNION ALL + SELECT 'US-HI', 'Honolulu' + -- Canada + UNION ALL + SELECT 'CA-ON', 'Toronto' + UNION ALL + SELECT 'CA-ON', 'Ottawa' + UNION ALL + SELECT 'CA-QC', N'Montréal' + UNION ALL + SELECT 'CA-QC', N'Québec City' + UNION ALL + SELECT 'CA-BC', 'Vancouver' + UNION ALL + SELECT 'CA-BC', 'Victoria' + UNION ALL + SELECT 'CA-AB', 'Calgary' + UNION ALL + SELECT 'CA-AB', 'Edmonton' + UNION ALL + SELECT 'CA-MB', 'Winnipeg' + UNION ALL + SELECT 'CA-NS', 'Halifax' + UNION ALL + SELECT 'CA-SK', 'Saskatoon' + UNION ALL + SELECT 'CA-SK', 'Regina' + UNION ALL + SELECT 'CA-NB', 'Moncton' + UNION ALL + SELECT 'CA-NB', 'Saint John' + UNION ALL + SELECT 'CA-PE', 'Charlottetown' + UNION ALL + SELECT 'CA-NL', N'St. John''s' + UNION ALL + SELECT 'CA-ON', 'Hamilton' + UNION ALL + SELECT 'CA-ON', 'London' + UNION ALL + SELECT 'CA-QC', 'Gatineau' + UNION ALL + SELECT 'CA-QC', 'Laval' + UNION ALL + SELECT 'CA-BC', 'Kelowna' + UNION ALL + SELECT 'CA-AB', 'Red Deer' + UNION ALL + SELECT 'CA-MB', 'Brandon' + -- MEXICO + UNION ALL + SELECT 'MX-CMX', N'Ciudad de México' + UNION ALL + SELECT 'MX-JAL', 'Guadalajara' + UNION ALL + SELECT 'MX-NLE', 'Monterrey' + UNION ALL + SELECT 'MX-PUE', 'Puebla' + UNION ALL + SELECT 'MX-ROO', N'Cancún' + UNION ALL + SELECT 'MX-GUA', 'Guanajuato' + UNION ALL + SELECT 'MX-MIC', 'Morelia' + UNION ALL + SELECT 'MX-BCN', 'Tijuana' + UNION ALL + SELECT 'MX-JAL', 'Zapopan' + UNION ALL + SELECT 'MX-NLE', N'San Nicolás' + UNION ALL + SELECT 'MX-CAM', 'Campeche' + UNION ALL + SELECT 'MX-TAB', 'Villahermosa' + UNION ALL + SELECT 'MX-VER', 'Veracruz' + UNION ALL + SELECT 'MX-OAX', 'Oaxaca' + UNION ALL + SELECT 'MX-SLP', N'San Luis Potosí' + UNION ALL + SELECT 'MX-CHH', 'Chihuahua' + UNION ALL + SELECT 'MX-AGU', 'Aguascalientes' + UNION ALL + SELECT 'MX-MEX', 'Toluca' + UNION ALL + SELECT 'MX-COA', 'Saltillo' + UNION ALL + SELECT 'MX-BCS', 'La Paz' + UNION ALL + SELECT 'MX-NAY', 'Tepic' + UNION ALL + SELECT 'MX-ZAC', 'Zacatecas' + ) + INSERT INTO dbo.City + (StateProvinceID, CityName) + SELECT + dbo.UDF_GetStateProvinceIdByCode(c.StateProvinceISO2), + c.CityName + FROM Cities AS c + WHERE NOT EXISTS ( + SELECT 1 + FROM dbo.City AS ci + WHERE ci.CityName = c.CityName + AND ci.StateProvinceID = dbo.UDF_GetStateProvinceIdByCode(c.StateProvinceISO2) + ); + + + COMMIT TRANSACTION; +END; +GO diff --git a/DataLayer/SeedStoredProcs.sql b/DataLayer/seed/procedures/USP_AddTestUsers.sql similarity index 75% rename from DataLayer/SeedStoredProcs.sql rename to DataLayer/seed/procedures/USP_AddTestUsers.sql index 795ff73..ba92ec0 100644 --- a/DataLayer/SeedStoredProcs.sql +++ b/DataLayer/seed/procedures/USP_AddTestUsers.sql @@ -1,5 +1,4 @@ - -USE biergarten; +USE Biergarten; GO CREATE OR ALTER PROCEDURE dbo.USP_AddTestUsers @@ -135,65 +134,3 @@ BEGIN COMMIT TRANSACTION; END; GO - -CREATE TYPE TblUserHashes AS TABLE -( - UserAccountId UNIQUEIDENTIFIER NOT NULL, - Hash NVARCHAR(MAX) NOT NULL -); -GO - --- Stored procedure to insert Argon2 hashes -CREATE OR ALTER PROCEDURE dbo.USP_AddUserCredentials - ( - @Hash dbo.TblUserHashes READONLY -) -AS -BEGIN - SET NOCOUNT ON; - SET XACT_ABORT ON; - - BEGIN TRANSACTION; - - INSERT INTO dbo.UserCredential - (UserAccountId, Hash) - SELECT - uah.UserAccountId, - uah.Hash - FROM @Hash AS uah; - - COMMIT TRANSACTION; -END; -GO - -CREATE OR ALTER PROCEDURE dbo.USP_CreateUserVerification -AS -BEGIN - SET NOCOUNT ON; - SET XACT_ABORT ON; - - BEGIN TRANSACTION; - - INSERT INTO dbo.UserVerification - (UserAccountId) - SELECT - ua.UserAccountID - FROM dbo.UserAccount AS ua - WHERE NOT EXISTS - (SELECT 1 - FROM dbo.UserVerification AS uv - WHERE uv.UserAccountId = ua.UserAccountID); - - - IF (SELECT COUNT(*) - FROM dbo.UserVerification) != (SELECT COUNT(*) - FROM dbo.UserAccount) - BEGIN - RAISERROR('UserVerification count does not match UserAccount count after insertion.', 16, 1); - ROLLBACK TRANSACTION; - RETURN; - END - - COMMIT TRANSACTION; -END -GO diff --git a/DataLayer/seed/procedures/USP_AddUserCredentials.sql b/DataLayer/seed/procedures/USP_AddUserCredentials.sql new file mode 100644 index 0000000..9f00164 --- /dev/null +++ b/DataLayer/seed/procedures/USP_AddUserCredentials.sql @@ -0,0 +1,33 @@ +USE Biergarten; +GO + +IF TYPE_ID(N'dbo.TblUserHashes') IS NULL + EXEC('CREATE TYPE dbo.TblUserHashes AS TABLE + ( + UserAccountId UNIQUEIDENTIFIER NOT NULL, + Hash NVARCHAR(MAX) NOT NULL + );'); +GO + +-- Stored procedure to insert Argon2 hashes +CREATE OR ALTER PROCEDURE dbo.USP_AddUserCredentials + ( + @Hash dbo.TblUserHashes READONLY +) +AS +BEGIN + SET NOCOUNT ON; + SET XACT_ABORT ON; + + BEGIN TRANSACTION; + + INSERT INTO dbo.UserCredential + (UserAccountId, Hash) + SELECT + uah.UserAccountId, + uah.Hash + FROM @Hash AS uah; + + COMMIT TRANSACTION; +END; +GO diff --git a/DataLayer/seed/procedures/USP_CreateUserVerification.sql b/DataLayer/seed/procedures/USP_CreateUserVerification.sql new file mode 100644 index 0000000..7898e1d --- /dev/null +++ b/DataLayer/seed/procedures/USP_CreateUserVerification.sql @@ -0,0 +1,35 @@ +USE Biergarten; +GO + +CREATE OR ALTER PROCEDURE dbo.USP_CreateUserVerification +AS +BEGIN + SET NOCOUNT ON; + SET XACT_ABORT ON; + + BEGIN TRANSACTION; + + INSERT INTO dbo.UserVerification + (UserAccountId) + SELECT + ua.UserAccountID + FROM dbo.UserAccount AS ua + WHERE NOT EXISTS + (SELECT 1 + FROM dbo.UserVerification AS uv + WHERE uv.UserAccountId = ua.UserAccountID); + + + IF (SELECT COUNT(*) + FROM dbo.UserVerification) + != (SELECT COUNT(*) + FROM dbo.UserAccount) + BEGIN + RAISERROR('UserVerification count does not match UserAccount count after insertion.', 16, 1); + ROLLBACK TRANSACTION; + RETURN; + END + + COMMIT TRANSACTION; +END +GO diff --git a/WebAPI/Program.cs b/WebAPI/Program.cs index 7ffecff..6758956 100644 --- a/WebAPI/Program.cs +++ b/WebAPI/Program.cs @@ -16,22 +16,34 @@ app.UseHttpsRedirection(); var summaries = new[] { - "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" + "Freezing", + "Bracing", + "Chilly", + "Cool", + "Mild", + "Warm", + "Balmy", + "Hot", + "Sweltering", + "Scorching", }; -app.MapGet("/weatherforecast", () => -{ - var forecast = Enumerable.Range(1, 5).Select(index => - new WeatherForecast - ( - DateOnly.FromDateTime(DateTime.Now.AddDays(index)), - Random.Shared.Next(-20, 55), - summaries[Random.Shared.Next(summaries.Length)] - )) - .ToArray(); - return forecast; -}) -.WithName("GetWeatherForecast"); +app.MapGet( + "/weatherforecast", + () => + { + var forecast = Enumerable + .Range(1, 5) + .Select(index => new WeatherForecast( + DateOnly.FromDateTime(DateTime.Now.AddDays(index)), + Random.Shared.Next(-20, 55), + summaries[Random.Shared.Next(summaries.Length)] + )) + .ToArray(); + return forecast; + } + ) + .WithName("GetWeatherForecast"); app.UseStaticFiles(); app.Run(); diff --git a/WebAPI/WebAPI.csproj b/WebAPI/WebAPI.csproj index 7383e60..dad0e7c 100644 --- a/WebAPI/WebAPI.csproj +++ b/WebAPI/WebAPI.csproj @@ -1,5 +1,4 @@ - net9.0 enable @@ -9,5 +8,4 @@ - diff --git a/docker-compose.yml b/docker-compose.yml index a456e01..b48866d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -24,7 +24,7 @@ services: tty: true stdin_open: true volumes: - - ./:/home/dev/projects # bind mount your repo for live code edits + - ./:/home/dev/projects - nuget-cache:/home/dev/.nuget/packages - ~/.gitconfig:/home/dev/.gitconfig:ro working_dir: /home/dev/projects @@ -32,7 +32,7 @@ services: DOTNET_CLI_TELEMETRY_OPTOUT: "1" HOME: /home/dev USER: dev - SEEDDB_CONNECTION_STRING: "Server=sqlserver,1433;User Id=sa;Password=YourStrong!Passw0rd;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;" + DB_CONNECTION_STRING: "Server=sqlserver,1433;User Id=sa;Password=YourStrong!Passw0rd;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;" user: root networks: - devnet From fc2e8c9b6dcc5a3ce42e26429c4c6bd7737e1c4b Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Mon, 17 Nov 2025 02:39:40 -0500 Subject: [PATCH 10/25] Update data access layer, begin acquiring raw data --- .gitignore | 2 + DALTests/DALTests.csproj | 23 + DALTests/UserAccountRepositoryTests.cs | 154 + DataAccessLayer/Class1.cs | 56 +- DataAccessLayer/DataAccessLayer.csproj | 8 + DataAccessLayer/IRepository.cs | 14 + DataAccessLayer/UserAccountRepository.cs | 257 + DataAccessLayer/entities/UserAccount.cs | 14 + DataAccessLayer/entities/UserCredential.cs | 11 + DataAccessLayer/entities/UserVerification.cs | 9 + DataLayer/data_source/beers.csv | 2411 + DataLayer/data_source/breweries.csv | 559 + DataLayer/data_source/breweries.json | 162686 +++++++++++++++ .../seed/procedures/USP_AddLocations.sql | 10 +- biergarten.sln | 14 + 15 files changed, 166221 insertions(+), 7 deletions(-) create mode 100644 DALTests/DALTests.csproj create mode 100644 DALTests/UserAccountRepositoryTests.cs create mode 100644 DataAccessLayer/IRepository.cs create mode 100644 DataAccessLayer/UserAccountRepository.cs create mode 100644 DataLayer/data_source/beers.csv create mode 100644 DataLayer/data_source/breweries.csv create mode 100644 DataLayer/data_source/breweries.json diff --git a/.gitignore b/.gitignore index 47a94ef..53711ff 100644 --- a/.gitignore +++ b/.gitignore @@ -426,3 +426,5 @@ FodyWeavers.xsd *.msix *.msm *.msp + +.DS_Store \ No newline at end of file diff --git a/DALTests/DALTests.csproj b/DALTests/DALTests.csproj new file mode 100644 index 0000000..a05dcbb --- /dev/null +++ b/DALTests/DALTests.csproj @@ -0,0 +1,23 @@ + + + net9.0 + enable + enable + false + + + + + + + + + + + + + + + + + diff --git a/DALTests/UserAccountRepositoryTests.cs b/DALTests/UserAccountRepositoryTests.cs new file mode 100644 index 0000000..771b948 --- /dev/null +++ b/DALTests/UserAccountRepositoryTests.cs @@ -0,0 +1,154 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using DataAccessLayer; +using DataAccessLayer.Entities; +using Xunit; + +namespace DALTests +{ + public class UserAccountRepositoryTests + { + private readonly UserAccountRepository _repository; + + public UserAccountRepositoryTests() + { + _repository = new UserAccountRepository(); + } + + [Fact] + public void Add_ShouldInsertUserAccount() + { + + // Arrange + var userAccount = new UserAccount + { + UserAccountID = Guid.NewGuid(), + Username = "testuser", + FirstName = "Test", + LastName = "User", + Email = "testuser@example.com", + CreatedAt = DateTime.UtcNow, + DateOfBirth = new DateTime(1990, 1, 1), + }; + + // Act + _repository.Add(userAccount); + var retrievedUser = _repository.GetById(userAccount.UserAccountID); + + // Assert + Assert.NotNull(retrievedUser); + Assert.Equal(userAccount.Username, retrievedUser.Username); + } + + [Fact] + public void GetById_ShouldReturnUserAccount() + { + // Arrange + var userId = Guid.NewGuid(); + var userAccount = new UserAccount + { + UserAccountID = userId, + Username = "existinguser", + FirstName = "Existing", + LastName = "User", + Email = "existinguser@example.com", + CreatedAt = DateTime.UtcNow, + DateOfBirth = new DateTime(1985, 5, 15), + }; + _repository.Add(userAccount); + + // Act + var retrievedUser = _repository.GetById(userId); + + // Assert + Assert.NotNull(retrievedUser); + Assert.Equal(userId, retrievedUser.UserAccountID); + } + + [Fact] + public void Update_ShouldModifyUserAccount() + { + // Arrange + var userAccount = new UserAccount + { + UserAccountID = Guid.NewGuid(), + Username = "updatableuser", + FirstName = "Updatable", + LastName = "User", + Email = "updatableuser@example.com", + CreatedAt = DateTime.UtcNow, + DateOfBirth = new DateTime(1992, 3, 10), + }; + _repository.Add(userAccount); + + // Act + userAccount.FirstName = "Updated"; + _repository.Update(userAccount); + var updatedUser = _repository.GetById(userAccount.UserAccountID); + + // Assert + Assert.NotNull(updatedUser); + Assert.Equal("Updated", updatedUser.FirstName); + } + + [Fact] + public void Delete_ShouldRemoveUserAccount() + { + // Arrange + var userAccount = new UserAccount + { + UserAccountID = Guid.NewGuid(), + Username = "deletableuser", + FirstName = "Deletable", + LastName = "User", + Email = "deletableuser@example.com", + CreatedAt = DateTime.UtcNow, + DateOfBirth = new DateTime(1995, 7, 20), + }; + _repository.Add(userAccount); + + // Act + _repository.Delete(userAccount.UserAccountID); + var deletedUser = _repository.GetById(userAccount.UserAccountID); + + // Assert + Assert.Null(deletedUser); + } + + [Fact] + public void GetAll_ShouldReturnAllUserAccounts() + { + // Arrange + var user1 = new UserAccount + { + UserAccountID = Guid.NewGuid(), + Username = "user1", + FirstName = "User", + LastName = "One", + Email = "user1@example.com", + CreatedAt = DateTime.UtcNow, + DateOfBirth = new DateTime(1990, 1, 1), + }; + var user2 = new UserAccount + { + UserAccountID = Guid.NewGuid(), + Username = "user2", + FirstName = "User", + LastName = "Two", + Email = "user2@example.com", + CreatedAt = DateTime.UtcNow, + DateOfBirth = new DateTime(1992, 2, 2), + }; + _repository.Add(user1); + _repository.Add(user2); + + // Act + var allUsers = _repository.GetAll(); + + // Assert + Assert.NotNull(allUsers); + Assert.True(allUsers.Count() >= 2); + } + } +} diff --git a/DataAccessLayer/Class1.cs b/DataAccessLayer/Class1.cs index 338ee50..7a301f2 100644 --- a/DataAccessLayer/Class1.cs +++ b/DataAccessLayer/Class1.cs @@ -1,3 +1,55 @@ -namespace DataAccessLayer; +using System; +using System.Data; +using Microsoft.Data.SqlClient; -public class Class1 { } +namespace DataAccessLayer +{ + public class DatabaseHelper + { + private readonly string _connectionString; + + public DatabaseHelper(string connectionString) + { + _connectionString = connectionString; + } + + public void ExecuteRawSql(string query) + { + try + { + using ( + SqlConnection connection = new SqlConnection( + _connectionString + ) + ) + { + connection.Open(); + + using ( + SqlCommand command = new SqlCommand(query, connection) + ) + { + command.CommandType = CommandType.Text; + + using (SqlDataReader reader = command.ExecuteReader()) + { + while (reader.Read()) + { + for (int i = 0; i < reader.FieldCount; i++) + { + Console.WriteLine( + $"{reader.GetName(i)}: {reader.GetValue(i)}" + ); + } + } + } + } + } + } + catch (Exception ex) + { + Console.WriteLine($"An error occurred: {ex.Message}"); + } + } + } +} diff --git a/DataAccessLayer/DataAccessLayer.csproj b/DataAccessLayer/DataAccessLayer.csproj index bf9d3be..727ad9b 100644 --- a/DataAccessLayer/DataAccessLayer.csproj +++ b/DataAccessLayer/DataAccessLayer.csproj @@ -4,4 +4,12 @@ enable enable + + + + + diff --git a/DataAccessLayer/IRepository.cs b/DataAccessLayer/IRepository.cs new file mode 100644 index 0000000..2dcd100 --- /dev/null +++ b/DataAccessLayer/IRepository.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; + +namespace DataAccessLayer +{ + public interface IRepository + where T : class + { + void Add(T entity); + T? GetById(Guid id); + void Update(T entity); + void Delete(Guid id); + } +} diff --git a/DataAccessLayer/UserAccountRepository.cs b/DataAccessLayer/UserAccountRepository.cs new file mode 100644 index 0000000..143151d --- /dev/null +++ b/DataAccessLayer/UserAccountRepository.cs @@ -0,0 +1,257 @@ +using System; +using System.Collections.Generic; +using System.Data; +using DataAccessLayer.Entities; +using Microsoft.Data.SqlClient; + +namespace DataAccessLayer +{ + public class UserAccountRepository : IRepository + { + private readonly string _connectionString; + + public UserAccountRepository() + { + // Retrieve the connection string from environment variables + _connectionString = + Environment.GetEnvironmentVariable("DB_CONNECTION_STRING") + ?? throw new InvalidOperationException( + "The connection string is not set in the environment variables." + ); + + + } + + + public void Add(UserAccount userAccount) + { + const string query = + @"INSERT INTO UserAccount (UserAccountID, Username, FirstName, LastName, Email, CreatedAt, UpdatedAt, DateOfBirth, Timer) + VALUES (@UserAccountID, @Username, @FirstName, @LastName, @Email, @CreatedAt, @UpdatedAt, @DateOfBirth, @Timer);"; + + using (var connection = new SqlConnection(_connectionString)) + using (var command = new SqlCommand(query, connection)) + { + _ = command.Parameters.AddWithValue( + "@UserAccountID", + userAccount.UserAccountID + ); + _ = command.Parameters.AddWithValue( + "@Username", + userAccount.Username + ); + _ = command.Parameters.AddWithValue( + "@FirstName", + userAccount.FirstName + ); + _ = command.Parameters.AddWithValue( + "@LastName", + userAccount.LastName + ); + _ = command.Parameters.AddWithValue( + "@Email", + userAccount.Email + ); + _ = command.Parameters.AddWithValue( + "@CreatedAt", + userAccount.CreatedAt + ); + _ = command.Parameters.AddWithValue( + "@UpdatedAt", + userAccount.UpdatedAt ?? (object)DBNull.Value + ); + _ = command.Parameters.AddWithValue( + "@DateOfBirth", + userAccount.DateOfBirth + ); + _ = command.Parameters.AddWithValue( + "@Timer", + userAccount.Timer ?? (object)DBNull.Value + ); + + connection.Open(); + _ = command.ExecuteNonQuery(); + } + } + + public UserAccount? GetById(Guid id) + { + const string query = + "SELECT * FROM UserAccount WHERE UserAccountID = @UserAccountID;"; + + using (var connection = new SqlConnection(_connectionString)) + using (var command = new SqlCommand(query, connection)) + { + _ = command.Parameters.AddWithValue("@UserAccountID", id); + + connection.Open(); + using (var reader = command.ExecuteReader()) + { + if (reader.Read()) + { + return new UserAccount + { + UserAccountID = reader.GetGuid( + reader.GetOrdinal("UserAccountID") + ), + Username = reader.GetString( + reader.GetOrdinal("Username") + ), + FirstName = reader.GetString( + reader.GetOrdinal("FirstName") + ), + LastName = reader.GetString( + reader.GetOrdinal("LastName") + ), + Email = reader.GetString( + reader.GetOrdinal("Email") + ), + CreatedAt = reader.GetDateTime( + reader.GetOrdinal("CreatedAt") + ), + UpdatedAt = reader.IsDBNull( + reader.GetOrdinal("UpdatedAt") + ) + ? null + : reader.GetDateTime( + reader.GetOrdinal("UpdatedAt") + ), + DateOfBirth = reader.GetDateTime( + reader.GetOrdinal("DateOfBirth") + ), + Timer = reader.IsDBNull(reader.GetOrdinal("Timer")) + ? null + : (byte[])reader["Timer"], + }; + } + } + } + + return null; + } + + public void Update(UserAccount userAccount) + { + const string query = + @"UPDATE UserAccount + SET Username = @Username, FirstName = @FirstName, LastName = @LastName, Email = @Email, CreatedAt = @CreatedAt, UpdatedAt = @UpdatedAt, DateOfBirth = @DateOfBirth, Timer = @Timer + WHERE UserAccountID = @UserAccountID;"; + + using (var connection = new SqlConnection(_connectionString)) + using (var command = new SqlCommand(query, connection)) + { + _ = command.Parameters.AddWithValue( + "@UserAccountID", + userAccount.UserAccountID + ); + _ = command.Parameters.AddWithValue( + "@Username", + userAccount.Username + ); + _ = command.Parameters.AddWithValue( + "@FirstName", + userAccount.FirstName + ); + _ = command.Parameters.AddWithValue( + "@LastName", + userAccount.LastName + ); + _ = command.Parameters.AddWithValue( + "@Email", + userAccount.Email + ); + _ = command.Parameters.AddWithValue( + "@CreatedAt", + userAccount.CreatedAt + ); + _ = command.Parameters.AddWithValue( + "@UpdatedAt", + userAccount.UpdatedAt ?? (object)DBNull.Value + ); + _ = command.Parameters.AddWithValue( + "@DateOfBirth", + userAccount.DateOfBirth + ); + _ = command.Parameters.AddWithValue( + "@Timer", + userAccount.Timer ?? (object)DBNull.Value + ); + + connection.Open(); + _ = command.ExecuteNonQuery(); + } + } + + public void Delete(Guid id) + { + const string query = + "DELETE FROM UserAccount WHERE UserAccountID = @UserAccountID;"; + + using (var connection = new SqlConnection(_connectionString)) + using (var command = new SqlCommand(query, connection)) + { + _ = command.Parameters.AddWithValue("@UserAccountID", id); + + connection.Open(); + _ = command.ExecuteNonQuery(); + } + } + + public IEnumerable GetAll() + { + const string query = "SELECT * FROM UserAccount;"; + + var userAccounts = new List(); + + using (var connection = new SqlConnection(_connectionString)) + using (var command = new SqlCommand(query, connection)) + { + connection.Open(); + using (var reader = command.ExecuteReader()) + { + while (reader.Read()) + { + var userAccount = new UserAccount + { + UserAccountID = reader.GetGuid( + reader.GetOrdinal("UserAccountID") + ), + Username = reader.GetString( + reader.GetOrdinal("Username") + ), + FirstName = reader.GetString( + reader.GetOrdinal("FirstName") + ), + LastName = reader.GetString( + reader.GetOrdinal("LastName") + ), + Email = reader.GetString( + reader.GetOrdinal("Email") + ), + CreatedAt = reader.GetDateTime( + reader.GetOrdinal("CreatedAt") + ), + UpdatedAt = reader.IsDBNull( + reader.GetOrdinal("UpdatedAt") + ) + ? null + : reader.GetDateTime( + reader.GetOrdinal("UpdatedAt") + ), + DateOfBirth = reader.GetDateTime( + reader.GetOrdinal("DateOfBirth") + ), + Timer = reader.IsDBNull(reader.GetOrdinal("Timer")) + ? null + : (byte[])reader["Timer"], + }; + + userAccounts.Add(userAccount); + } + } + } + + return userAccounts; + } + } +} diff --git a/DataAccessLayer/entities/UserAccount.cs b/DataAccessLayer/entities/UserAccount.cs index e69de29..2b93986 100644 --- a/DataAccessLayer/entities/UserAccount.cs +++ b/DataAccessLayer/entities/UserAccount.cs @@ -0,0 +1,14 @@ +namespace DataAccessLayer.Entities; + +public class UserAccount +{ + public Guid UserAccountID { get; set; } + public string Username { get; set; } = string.Empty; + public string FirstName { get; set; } = string.Empty; + public string LastName { get; set; } = string.Empty; + public string Email { get; set; } = string.Empty; + public DateTime CreatedAt { get; set; } + public DateTime? UpdatedAt { get; set; } + public DateTime DateOfBirth { get; set; } + public byte[]? Timer { get; set; } +} diff --git a/DataAccessLayer/entities/UserCredential.cs b/DataAccessLayer/entities/UserCredential.cs index e69de29..3f4117a 100644 --- a/DataAccessLayer/entities/UserCredential.cs +++ b/DataAccessLayer/entities/UserCredential.cs @@ -0,0 +1,11 @@ +namespace DataAccessLayer.Entities; + +public class UserCredential +{ + public Guid UserCredentialID { get; set; } + public Guid UserAccountID { get; set; } + public DateTime CreatedAt { get; set; } + public DateTime Expiry { get; set; } + public string Hash { get; set; } = string.Empty; + public byte[]? Timer { get; set; } +} diff --git a/DataAccessLayer/entities/UserVerification.cs b/DataAccessLayer/entities/UserVerification.cs index e69de29..3eb0c13 100644 --- a/DataAccessLayer/entities/UserVerification.cs +++ b/DataAccessLayer/entities/UserVerification.cs @@ -0,0 +1,9 @@ +namespace DataAccessLayer.Entities; + +public class UserVerification +{ + public Guid UserVerificationID { get; set; } + public Guid UserAccountID { get; set; } + public DateTime VerificationDateTime { get; set; } + public byte[]? Timer { get; set; } +} diff --git a/DataLayer/data_source/beers.csv b/DataLayer/data_source/beers.csv new file mode 100644 index 0000000..cffbe68 --- /dev/null +++ b/DataLayer/data_source/beers.csv @@ -0,0 +1,2411 @@ +,abv,ibu,id,name,style,brewery_id,ounces +0,0.05,,1436,Pub Beer,American Pale Lager,408,12.0 +1,0.066,,2265,Devil's Cup,American Pale Ale (APA),177,12.0 +2,0.071,,2264,Rise of the Phoenix,American IPA,177,12.0 +3,0.09,,2263,Sinister,American Double / Imperial IPA,177,12.0 +4,0.075,,2262,Sex and Candy,American IPA,177,12.0 +5,0.077,,2261,Black Exodus,Oatmeal Stout,177,12.0 +6,0.045,,2260,Lake Street Express,American Pale Ale (APA),177,12.0 +7,0.065,,2259,Foreman,American Porter,177,12.0 +8,0.055,,2258,Jade,American Pale Ale (APA),177,12.0 +9,0.086,,2131,Cone Crusher,American Double / Imperial IPA,177,12.0 +10,0.07200000000000001,,2099,Sophomoric Saison,Saison / Farmhouse Ale,177,12.0 +11,0.073,,2098,Regional Ring Of Fire,Saison / Farmhouse Ale,177,12.0 +12,0.069,,2097,Garce Selé,Saison / Farmhouse Ale,177,12.0 +13,0.085,,1980,Troll Destroyer,Belgian IPA,177,12.0 +14,0.061,60.0,1979,Bitter Bitch,American Pale Ale (APA),177,12.0 +15,0.06,,2318,Ginja Ninja,Cider,154,12.0 +16,0.06,,2170,Cherried Away,Cider,154,12.0 +17,0.06,,2169,Rhubarbarian,Cider,154,12.0 +18,0.06,,1502,BrightCider,Cider,154,12.0 +19,0.08199999999999999,,1593,He Said Baltic-Style Porter,Baltic Porter,368,12.0 +20,0.08199999999999999,,1592,He Said Belgian-Style Tripel,Tripel,368,12.0 +21,0.099,92.0,1036,Lower De Boom,American Barleywine,368,8.4 +22,0.079,45.0,1024,Fireside Chat,Winter Warmer,368,12.0 +23,0.079,,976,Marooned On Hog Island,American Stout,368,12.0 +24,0.044000000000000004,42.0,876,Bitter American,American Pale Ale (APA),368,12.0 +25,0.049,17.0,802,Hell or High Watermelon Wheat (2009),Fruit / Vegetable Beer,368,12.0 +26,0.049,17.0,801,Hell or High Watermelon Wheat (2009),Fruit / Vegetable Beer,368,12.0 +27,0.049,17.0,800,21st Amendment Watermelon Wheat Beer (2006),Fruit / Vegetable Beer,368,12.0 +28,0.07,70.0,799,21st Amendment IPA (2006),American IPA,368,12.0 +29,0.07,70.0,797,Brew Free! or Die IPA (2008),American IPA,368,12.0 +30,0.07,70.0,796,Brew Free! or Die IPA (2009),American IPA,368,12.0 +31,0.085,52.0,531,Special Edition: Allies Win The War!,English Strong Ale,368,12.0 +32,0.09699999999999999,94.0,432,Hop Crisis,American Double / Imperial IPA,368,12.0 +33,0.044000000000000004,42.0,353,Bitter American (2011),American Pale Ale (APA),368,12.0 +34,0.079,45.0,321,Fireside Chat (2010),Winter Warmer,368,12.0 +35,0.068,65.0,173,Back in Black,American Black Ale,368,12.0 +36,0.083,35.0,11,Monk's Blood,Belgian Dark Ale,368,12.0 +37,0.07,65.0,10,Brew Free! or Die IPA,American IPA,368,12.0 +38,0.049,17.0,9,Hell or High Watermelon Wheat,Fruit / Vegetable Beer,368,12.0 +39,0.07,82.0,2519,Bimini Twist,American IPA,67,12.0 +40,0.05,,2518,Beach Blonde,American Blonde Ale,67,12.0 +41,0.059000000000000004,,2517,Rod Bender Red,American Amber / Red Ale,67,12.0 +42,0.035,11.0,2545,Passion Fruit Prussia,Berliner Weissbier,60,12.0 +43,0.045,18.0,2544,Send Help,American Blonde Ale,60,12.0 +44,0.055,,2324,Cast Iron Oatmeal Brown,American Brown Ale,60,12.0 +45,0.06,,2288,Reprise Centennial Red,American Amber / Red Ale,60,12.0 +46,0.055,,2287,Alter Ego,American Black Ale,60,12.0 +47,0.065,,2286,Divided Sky,American IPA,60,12.0 +48,0.065,,2285,Resurrected,American IPA,60,12.0 +49,0.05,28.0,1870,Contact High,American Pale Wheat Ale,60,12.0 +50,0.065,,2603,Galaxyfest,American IPA,27,16.0 +51,0.05,45.0,2602,Citrafest,American IPA,27,16.0 +52,0.09,,2220,Barn Yeti,Belgian Strong Dark Ale,27,16.0 +53,0.069,65.0,2219,Scarecrow,American IPA,27,16.0 +54,0.09,50.0,2218,Ironman,English Strong Ale,27,16.0 +55,0.046,15.0,2217,Honey Kolsch,Kölsch,27,16.0 +56,0.052000000000000005,18.0,2216,Copperhead Amber,Belgian Dark Ale,27,16.0 +57,0.059000000000000004,75.0,972,Rude Parrot IPA,American IPA,481,16.0 +58,0.054000000000000006,30.0,866,British Pale Ale (2010),English Pale Ale,481,16.0 +59,0.054000000000000006,30.0,48,British Pale Ale,English Pale Ale,481,16.0 +60,0.084,82.0,47,Ballz Deep Double IPA,American Double / Imperial IPA,481,16.0 +61,0.038,,1583,Wolfman's Berliner,Berliner Weissbier,373,12.0 +62,0.055,26.0,1165,Colorado Native,American Amber / Red Lager,462,12.0 +63,0.055,26.0,431,Colorado Native (2011),American Amber / Red Lager,462,12.0 +64,0.065,52.0,516,Jockamo IPA,American IPA,533,12.0 +65,0.042,13.0,515,Purple Haze,Fruit / Vegetable Beer,533,12.0 +66,0.045,17.0,514,Abita Amber,American Amber / Red Lager,533,12.0 +67,0.08199999999999999,68.0,2540,Citra Ass Down,American IPA,62,16.0 +68,0.05,20.0,2539,The Brown Note,American Brown Ale,62,16.0 +69,0.08,68.0,2686,Citra Ass Down,American Double / Imperial IPA,1,16.0 +70,0.125,80.0,2685,London Balling,English Barleywine,1,16.0 +71,0.077,25.0,2684,35 K,Milk / Sweet Stout,1,16.0 +72,0.042,42.0,2683,A Beer,American Pale Ale (APA),1,16.0 +73,0.05,25.0,2682,Rules are Rules,German Pilsener,1,16.0 +74,0.066,21.0,2681,Flesh Gourd'n,Pumpkin Ale,1,16.0 +75,0.04,13.0,2680,Sho'nuff,Belgian Pale Ale,1,16.0 +76,0.055,17.0,2679,Bloody Show,American Pilsner,1,16.0 +77,0.076,68.0,2678,Rico Sauvin,American Double / Imperial IPA,1,16.0 +78,0.051,38.0,2677,Coq de la Marche,Saison / Farmhouse Ale,1,16.0 +79,0.065,,2676,Kamen Knuddeln,American Wild Ale,1,16.0 +80,0.06,65.0,2675,Pile of Face,American IPA,1,16.0 +81,0.05,20.0,2674,The Brown Note,English Brown Ale,1,16.0 +82,0.053,35.0,1594,Maylani's Coconut Stout,American Stout,367,16.0 +83,0.05,35.0,1162,Oatmeal PSA,American Pale Ale (APA),367,16.0 +84,0.052000000000000005,33.0,1137,Pre Flight Pilsner,American Pilsner,367,16.0 +85,0.04,20.0,2403,P-Town Pilsner,American Pilsner,117,12.0 +86,0.053,36.0,2402,Klickitat Pale Ale,American Pale Ale (APA),117,12.0 +87,0.08199999999999999,103.0,2401,Yellow Wolf Imperial IPA,American Double / Imperial IPA,117,12.0 +88,0.053,40.0,1921,Freeride APA,American Pale Ale (APA),270,12.0 +89,0.053,18.0,1920,Alaskan Amber,Altbier,270,12.0 +90,0.057,,2501,Hopalicious,American Pale Ale (APA),73,12.0 +91,0.043,,1535,Kentucky Kölsch,Kölsch,388,16.0 +92,0.065,,1149,Kentucky IPA,American IPA,388,16.0 +93,0.054000000000000006,,1474,Dusty Trail Pale Ale,American Pale Ale (APA),401,16.0 +94,0.062,,1473,Damnesia,American IPA,401,16.0 +95,0.062,43.0,837,Desolation IPA,American IPA,401,16.0 +96,0.059000000000000004,,2592,Liberty Ale,American IPA,35,12.0 +97,0.065,,2578,IPA,American IPA,35,12.0 +98,0.045,,2577,Summer Wheat,American Pale Wheat Ale,35,12.0 +99,0.049,,2103,California Lager,American Amber / Red Lager,35,12.0 +100,0.055999999999999994,,2102,Brotherhood Steam,California Common / Steam Beer,35,12.0 +101,0.042,,2291,Blood Orange Gose,Gose,171,12.0 +102,0.042,,1818,Keebarlin' Pale Ale,American Pale Ale (APA),171,12.0 +103,0.048,,1738,"the Kimmie, the Yink and the Holy Gose",Gose,171,12.0 +104,0.06,,1563,Fall Hornin',Pumpkin Ale,171,12.0 +105,0.057,13.0,1520,Barney Flats Oatmeal Stout,Oatmeal Stout,171,12.0 +106,0.055999999999999994,4.0,1350,Summer Solstice,Cream Ale,171,12.0 +107,0.07,80.0,1327,Hop Ottin' IPA,American IPA,171,12.0 +108,0.057999999999999996,15.0,1326,Boont Amber Ale,American Amber / Red Ale,171,12.0 +109,0.057,13.0,1221,Barney Flats Oatmeal Stout,Oatmeal Stout,171,12.0 +110,0.055,25.0,1217,El Steinber Dark Lager,Vienna Lager,171,16.0 +111,0.057999999999999996,15.0,811,Boont Amber Ale (2010),American Amber / Red Ale,171,12.0 +112,0.055999999999999994,4.0,753,Summer Solstice Cerveza Crema (2009),Cream Ale,171,12.0 +113,0.057,13.0,572,Barney Flats Oatmeal Stout (2012),Oatmeal Stout,171,12.0 +114,0.069,6.0,523,Winter Solstice,Winter Warmer,171,12.0 +115,0.07,80.0,367,Hop Ottin' IPA (2011),American IPA,171,12.0 +116,0.057999999999999996,15.0,78,Boont Amber Ale (2011),American Amber / Red Ale,171,12.0 +117,0.055999999999999994,4.0,77,Summer Solstice (2011),Cream Ale,171,12.0 +118,0.055,28.0,76,Poleeko Gold Pale Ale (2009),American Pale Ale (APA),171,12.0 +119,0.06,,2337,Charlie's Rye IPA,American IPA,146,16.0 +120,0.054000000000000006,,410,River Pig Pale Ale,American Pale Ale (APA),542,16.0 +121,0.047,,409,Oaky's Oatmeal Stout,Oatmeal Stout,542,16.0 +122,0.05,,1294,Angry Orchard Apple Ginger,Cider,434,16.0 +123,0.05,,1293,Angry Orchard Crisp Apple,Cider,434,16.0 +124,0.05,,1292,Angry Orchard Crisp Apple,Cider,434,12.0 +125,0.068,,2207,Golden One,Belgian Pale Ale,193,12.0 +126,0.06,,2040,Arjuna,Witbier,193,12.0 +127,0.085,,2039,Uroboros,American Stout,193,12.0 +128,0.071,75.0,2511,Long Leaf,American IPA,69,16.0 +129,0.047,19.0,2510,Honey Badger Blonde,American Blonde Ale,69,16.0 +130,0.06,23.0,2509,Porter (a/k/a Black Gold Porter),American Porter,69,16.0 +131,0.06,55.0,413,Sky High Rye,American Pale Ale (APA),541,12.0 +132,0.062,17.0,390,Whitsun,American Pale Wheat Ale,541,12.0 +133,0.052000000000000005,,735,On-On Ale (2008),American Pale Ale (APA),513,12.0 +134,0.092,50.0,1333,Quakertown Stout,American Double / Imperial Stout,426,12.0 +135,0.051,20.0,1332,Greenbelt Farmhouse Ale,Saison / Farmhouse Ale,426,12.0 +136,0.052000000000000005,10.0,1172,Mo's Gose,Gose,461,16.0 +137,0.07,45.0,1322,Green Bullet Organic India Pale Ale,American IPA,429,16.0 +138,0.032,27.0,550,Rocket Girl,Kölsch,528,12.0 +139,0.053,26.0,429,Ninja Porter,American Porter,528,12.0 +140,0.06,69.0,428,Shiva IPA,American IPA,528,12.0 +141,0.048,,1640,Aslan Kölsch,Kölsch,353,16.0 +142,0.077,,1639,Aslan IPA,American IPA,353,16.0 +143,0.077,,1638,Aslan Amber,American Amber / Red Ale,353,16.0 +144,0.055999999999999994,27.0,597,This Season's Blonde,American Blonde Ale,523,12.0 +145,0.07,67.0,596,Independence Pass Ale,American IPA,523,12.0 +146,0.057,40.0,1580,Trolley Stop Stout,American Stout,374,12.0 +147,0.08199999999999999,138.0,980,Bitter Bitch Imperial IPA,American Double / Imperial IPA,374,12.0 +148,0.062,35.0,979,Poop Deck Porter,American Porter,374,12.0 +149,0.06,35.0,978,Old Red Beard Amber Ale,American Amber / Red Ale,374,12.0 +150,0.075,115.0,2503,Hop A-Peel,American Double / Imperial IPA,72,16.0 +151,0.055,12.0,2502,Vanilla Java Porter,American Porter,72,16.0 +152,0.052000000000000005,,2495,Michelada,Fruit / Vegetable Beer,72,16.0 +153,0.045,8.0,534,Dirty Blonde Ale,American Blonde Ale,72,12.0 +154,0.05,62.0,528,Grand Circus IPA,American IPA,72,12.0 +155,0.05,12.0,527,Atwater's Lager,Munich Helles Lager,72,12.0 +156,0.07,,1409,Heavy Machinery IPA Series #1: Heavy Fist,American Black Ale,413,16.0 +157,0.062,,343,Fire Eagle IPA,American IPA,413,12.0 +158,0.051,,342,Peacemaker,American Pale Ale (APA),413,12.0 +159,0.053,,341,Pearl-Snap,German Pilsener,413,12.0 +160,0.052000000000000005,,340,Black Thunder,Schwarzbier,413,12.0 +161,0.08,,2589,Raja,American Double / Imperial IPA,37,12.0 +162,0.064,,2546,Perzik Saison,Saison / Farmhouse Ale,37,12.0 +163,0.047,42.0,146,Avery Joe’s Premium American Pilsner,German Pilsener,37,12.0 +164,0.055999999999999994,10.0,108,White Rascal,Witbier,37,12.0 +165,0.063,69.0,107,Avery India Pale Ale,American IPA,37,12.0 +166,0.055,17.0,106,Ellie’s Brown Ale,American Brown Ale,37,12.0 +167,0.062,17.0,1620,Pumpkin Beast,Pumpkin Ale,360,12.0 +168,0.07200000000000001,22.0,1579,OktoberBeast,Märzen / Oktoberfest,360,12.0 +169,0.048,23.0,1228,Mad Beach,American Pale Wheat Ale,360,12.0 +170,0.067,,705,Hog Wild India Pale Ale,American IPA,360,12.0 +171,0.092,5.0,704,Devils Tramping Ground Tripel,Tripel,360,12.0 +172,0.061,41.0,702,Hot Rod Red,American Amber / Red Ale,360,12.0 +173,0.086,,2058,Palate Mallet,American Double / Imperial IPA,235,12.0 +174,0.06,,1483,Back East Porter,American Porter,235,12.0 +175,0.049,,1426,Back East Golden Ale,American Blonde Ale,235,12.0 +176,0.07,,1132,Misty Mountain IPA,American IPA,235,12.0 +177,0.05,,1131,Back East Ale,American Amber / Red Ale,235,12.0 +178,0.06,,1876,Truck Stop Honey Brown Ale,English Brown Ale,286,12.0 +179,0.06,43.0,1875,Naked Pig Pale Ale,American Pale Ale (APA),286,12.0 +180,0.068,70.0,966,Topcutter India Pale Ale,American IPA,483,12.0 +181,0.044000000000000004,38.0,965,Field 41 Pale Ale,American Pale Ale (APA),483,12.0 +182,0.07,,2593,Grapefruit Sculpin,American IPA,34,12.0 +183,0.038,40.0,2105,Even Keel,American IPA,34,12.0 +184,0.052000000000000005,23.0,1401,Ballast Point Pale Ale,Kölsch,34,12.0 +185,0.07,75.0,1400,Big Eye India Pale Ale,American IPA,34,12.0 +186,0.046,,1019,Longfin Lager,Munich Helles Lager,34,12.0 +187,0.07,70.0,1018,Sculpin IPA,American IPA,34,12.0 +188,0.045,,1776,All Nighter Ale,Extra Special / Strong Bitter (ESB),318,12.0 +189,0.045,20.0,1644,Banner American Rye,Rye Beer,318,12.0 +190,0.035,45.0,1643,Banner American Ale,American Amber / Red Ale,318,12.0 +191,0.07,46.0,2618,Thai.p.a,American IPA,20,16.0 +192,0.06,60.0,2005,Barrio Blanco,American IPA,251,12.0 +193,0.045,,1343,Barrio Tucson Blonde,American Blonde Ale,251,12.0 +194,0.049,22.0,2404,Hop in the ‘Pool Helles,American Pilsner,116,12.0 +195,0.067,60.0,2323,Ultra Gnar Gnar IPA,American IPA,116,12.0 +196,0.068,62.0,2189,In-Tents India Pale Lager,American Pale Lager,116,12.0 +197,0.05,20.0,2188,Lost Meridian Wit,Witbier,116,12.0 +198,0.051,45.0,2187,Celestial Meridian Cascadian Dark Lager,Euro Dark Lager,116,12.0 +199,0.054000000000000006,55.0,1966,Wagon Party,California Common / Steam Beer,258,12.0 +200,0.067,70.0,1965,Sky-Five,American IPA,258,12.0 +201,0.05,28.0,1964,Stargrazer,Schwarzbier,258,12.0 +202,0.054000000000000006,48.0,1963,Wonderstuff,German Pilsener,258,12.0 +203,0.053,,1855,Tarnation California-Style Lager,California Common / Steam Beer,292,12.0 +204,0.07,42.0,1778,On the Count of 3 (2015),Hefeweizen,292,16.0 +205,0.047,,1209,Summer Swelter,American Pale Wheat Ale,292,12.0 +206,0.068,,954,Phantom Punch Winter Stout,Foreign / Export Stout,292,12.0 +207,0.066,,910,Hayride Autumn Ale,Rye Beer,292,12.0 +208,0.047,,707,Celsius Summer Ale (2012),American Pale Wheat Ale,292,12.0 +209,0.055,35.0,533,Amber Road,American Amber / Red Ale,292,12.0 +210,0.049,28.0,183,Pamola Xtra Pale Ale,American Pale Ale (APA),292,12.0 +211,0.069,69.0,182,Stowaway IPA,American IPA,292,12.0 +212,0.08800000000000001,108.0,1806,Hoptopus Double IPA,American Double / Imperial IPA,306,16.0 +213,0.05,10.0,2435,Watermelon Ale,Fruit / Vegetable Beer,103,12.0 +214,0.057999999999999996,45.0,2423,Fenway American Pale Ale,American Pale Ale (APA),103,12.0 +215,0.068,85.0,2420,Back Bay IPA,American IPA,103,12.0 +216,0.048,16.0,2419,Bunker Hill Blueberry Ale ,Other,103,12.0 +217,0.057999999999999996,,2494,Oberon,American Pale Wheat Ale,76,12.0 +218,0.06,,2325,Smitten,Rye Beer,76,16.0 +219,0.05,,2022,Winter White,Witbier,76,16.0 +220,0.057999999999999996,,1989,Oberon,American Pale Wheat Ale,76,16.0 +221,0.07,,1988,Two Hearted,American IPA,76,16.0 +222,0.057999999999999996,,1955,Best Brown,American Brown Ale,76,16.0 +223,0.044000000000000004,44.0,2558,Moar,English India Pale Ale (IPA),53,12.0 +224,0.083,,2557,Uber Lupin Schwarz IPA,American Double / Imperial IPA,53,16.0 +225,0.057,27.0,2556,Nordic Blonde,American Blonde Ale,53,12.0 +226,0.06,,2496,Cold Press,American Black Ale,75,12.0 +227,0.07200000000000001,87.0,2410,Harness the Winter,American IPA,75,12.0 +228,0.055999999999999994,32.0,1902,14° ESB ,Extra Special / Strong Bitter (ESB),75,12.0 +229,0.062,68.0,1901,Bent Hop Golden IPA,American IPA,75,12.0 +230,0.06,34.0,1261,Bent Paddle Black Ale,American Black Ale,75,12.0 +231,0.05,38.0,1253,Venture Pils,German Pilsener,75,12.0 +232,0.055,40.0,1900,Lost Sailor IPA,English India Pale Ale (IPA),278,12.0 +233,0.053,20.0,1317,Steel Rail Extra Pale Ale,American Pale Ale (APA),278,12.0 +234,0.078,,1158,La Frontera Premium IPA,American IPA,463,12.0 +235,0.047,,1157,Tejas Lager,Czech Pilsener,463,12.0 +236,0.064,,1156,Number 22 Porter,American Porter,463,12.0 +237,0.055999999999999994,,1155,Big Bend Hefeweizen,Hefeweizen,463,12.0 +238,0.06,,1154,Terlingua Gold,American Blonde Ale,463,12.0 +239,0.081,17.0,2104,Aprè Shred,American Strong Ale,220,16.0 +240,0.095,104.0,1762,Hemlock Double IPA,American Double / Imperial IPA,220,12.0 +241,0.040999999999999995,,1422,West Portal Colorado Common Summer Ale,California Common / Steam Beer,220,16.0 +242,0.067,85.0,1067,Disconnected Red,American Amber / Red Ale,220,16.0 +243,0.07,,1003,Big Elm IPA,American IPA,477,12.0 +244,0.065,,1002,Gerry Dog Stout,American Stout,477,12.0 +245,0.06,,1001,413 Farmhouse Ale,Saison / Farmhouse Ale,477,12.0 +246,0.08,54.0,2639,Dark Star,American Stout,8,16.0 +247,0.062,,2469,Ryecoe,American IPA,8,16.0 +248,0.06,,2586,Blueberry Blonde,Fruit / Vegetable Beer,40,12.0 +249,0.075,60.0,2585,Galaxy IPA,American IPA,40,16.0 +250,0.05,32.0,643,Big River Pilsner,Czech Pilsener,519,12.0 +251,0.06,55.0,632,House Brand IPA,American IPA,519,12.0 +252,0.062,65.0,1714,Big Sky IPA,American IPA,336,12.0 +253,0.05,40.0,1713,Scape Goat Pale Ale,English Pale Ale,336,12.0 +254,0.05,35.0,1712,Montana Trout Slayer Ale,American Pale Wheat Ale,336,12.0 +255,0.051,26.0,1711,Moose Drool Brown Ale,American Brown Ale,336,12.0 +256,0.07200000000000001,60.0,1456,Powder Hound Winter Ale,English Strong Ale,336,12.0 +257,0.051,26.0,767,Moose Drool Brown Ale (2011),American Brown Ale,336,12.0 +258,0.05,35.0,766,Montana Trout Slayer Ale (2012),American Pale Wheat Ale,336,12.0 +259,0.062,65.0,579,Big Sky IPA (2012),American IPA,336,12.0 +260,0.047,,168,Summer Honey,American Blonde Ale,336,12.0 +261,0.05,40.0,159,Scape Goat Pale Ale (2010),English Pale Ale,336,12.0 +262,0.05,35.0,35,Montana Trout Slayer Ale (2009),American Pale Wheat Ale,336,12.0 +263,0.051,26.0,34,Moose Drool Brown Ale (2009),American Brown Ale,336,12.0 +264,0.069,81.0,2096,Arcus IPA,American IPA,221,12.0 +265,0.057999999999999996,38.0,2095,Wavemaker,American Amber / Red Ale,221,12.0 +266,0.053,43.0,1257,Jack Pine Savage,American Pale Ale (APA),444,16.0 +267,0.099,85.0,1256,Forest Fire Imperial Smoked Rye,Rye Beer,444,16.0 +268,0.098,76.0,1255,Bad Axe Imperial IPA,American Double / Imperial IPA,444,16.0 +269,0.055,35.0,986,Morning Wood,Oatmeal Stout,444,16.0 +270,0.066,50.0,985,Bark Bite IPA,American IPA,444,16.0 +271,0.055,45.0,2508,Jalapeno Pale Ale,American Pale Ale (APA),70,16.0 +272,0.052000000000000005,,1441,Blown Out Brown,American Brown Ale,407,12.0 +273,0.063,,1413,Single Hop Ale,American Pale Ale (APA),407,12.0 +274,0.054000000000000006,,1411,Sawtooth Ale,American Blonde Ale,407,12.0 +275,0.07200000000000001,75.0,2620,Saucy Intruder,Rye Beer,18,16.0 +276,0.045,16.0,2412,Deception,American Blonde Ale,112,12.0 +277,0.075,35.0,1898,Blackmarket Rye IPA,American IPA,112,12.0 +278,0.05,8.0,1897,Black Market Hefeweizen,Hefeweizen,112,12.0 +279,0.057999999999999996,44.0,1896,Aftermath Pale Ale,American Pale Ale (APA),112,12.0 +280,0.071,83.0,1850,American India Red Ale,American Strong Ale,294,12.0 +281,0.071,45.0,1849,American Red Porter,American Porter,294,12.0 +282,0.078,34.0,1848,American Red Saison,Saison / Farmhouse Ale,294,12.0 +283,0.066,44.0,1847,Colorado Red Ale,American Amber / Red Ale,294,12.0 +284,0.048,16.0,2485,Saddle Bronc Brown Ale,American Brown Ale,79,12.0 +285,0.046,20.0,2484,Bomber Mountain Amber Ale,American Amber / Red Ale,79,12.0 +286,0.073,,2449,Flying Sailor,Rye Beer,95,12.0 +287,0.048,47.0,2634,Nordskye ,American IPA,12,12.0 +288,0.06,30.0,2153,North Third Stout,Foreign / Export Stout,12,12.0 +289,0.052000000000000005,,1953,Honey Lav,American Pale Wheat Ale,12,12.0 +290,0.068,,1496,Coconut Brown Ale,American Brown Ale,12,12.0 +291,0.07,51.0,1481,51K IPA,American IPA,12,12.0 +292,0.055,,1480,Grand Rabbits,Cream Ale,12,12.0 +293,0.05,,1564,1800 Big Log Wheat (2012),American Pale Wheat Ale,380,12.0 +294,,,1541,Double Play Pilsner,American Pilsner,380,12.0 +295,0.055,,1321,Brewerhood Brown Ale,American Brown Ale,380,12.0 +296,0.08,,1320,Last Call Imperial Amber Ale,American Amber / Red Ale,380,12.0 +297,0.096,,1319,Pernicious Double IPA,American Double / Imperial IPA,380,12.0 +298,0.052000000000000005,,1303,6-4-3 Double Play Pilsner,German Pilsener,380,12.0 +299,,,1025,N Street Drive-In 50th Anniversary IPA,American Double / Imperial IPA,380,12.0 +300,0.05,,1012,467 Ethan's Stout,American Stout,380,12.0 +301,0.064,,942,1335 Wicked Snout,Saison / Farmhouse Ale,380,12.0 +302,0.045,,937,543 Skull Creek Fresh Hopped Pale Ale,American Pale Ale (APA),380,12.0 +303,0.055999999999999994,37.0,888,1327 Pod's ESB,Extra Special / Strong Bitter (ESB),380,12.0 +304,0.055999999999999994,37.0,886,1327 Pod's ESB,Extra Special / Strong Bitter (ESB),380,12.0 +305,0.055999999999999994,37.0,612,1327 Pod's ESB,Extra Special / Strong Bitter (ESB),380,12.0 +306,0.046,35.0,611,834 Happy As Ale,American Pale Ale (APA),380,12.0 +307,0.059000000000000004,,1372,Yellow Collar,Mead,422,12.0 +308,0.059000000000000004,,1371,Green Collar,Mead,422,12.0 +309,0.08,80.0,1812,Quarter Mile Double IPA,American Double / Imperial IPA,304,12.0 +310,0.059000000000000004,60.0,1547,Full Nelson Pale Ale,American Pale Ale (APA),382,12.0 +311,0.065,30.0,1546,Steel Wheels ESB,Extra Special / Strong Bitter (ESB),382,12.0 +312,0.053,22.0,1545,Blue Mountain Classic Lager,Euro Pale Lager,382,12.0 +313,0.059000000000000004,60.0,119,Full Nelson Pale Ale (2010),American Pale Ale (APA),382,12.0 +314,0.049,16.0,1408,Kölsch 151,Kölsch,414,12.0 +315,,,2490,Professor Black,American Stout,77,12.0 +316,,,2489,Little Boss,American Pale Wheat Ale,77,12.0 +317,,,2488,Van Dayum!,American Amber / Red Ale,77,12.0 +318,,,2487,Spirit Animal,American Pale Ale (APA),77,12.0 +319,0.07,,939,Toxic Sludge,American Black Ale,489,16.0 +320,0.06,40.0,692,Blue Point White IPA,American White IPA,489,12.0 +321,0.044000000000000004,16.0,667,Blue Point Summer Ale,American Blonde Ale,489,12.0 +322,0.055,28.0,665,Toasted Lager,Vienna Lager,489,12.0 +323,0.06,,1607,Bohemian Export Lager,Dortmunder / Export Lager,364,12.0 +324,0.053,,1597,Altus Bohemes Altbier,Altbier,364,12.0 +325,0.04,,344,Cherny Bock,Schwarzbier,364,12.0 +326,0.05,,89,Czech Pilsner,Czech Pilsener,364,12.0 +327,0.05,,88,Viennese Lager,Vienna Lager,364,12.0 +328,0.065,,1569,Mad Manatee IPA,American IPA,378,12.0 +329,0.055,,1568,Killer Whale Cream Ale,Cream Ale,378,12.0 +330,0.06,,1188,Duke's Cold Nose Brown Ale,American Brown Ale,378,12.0 +331,0.042,30.0,1891,Longhop IPA,American IPA,281,16.0 +332,0.04,34.0,1890,Lucky Buck,Irish Dry Stout,281,16.0 +333,0.051,,577,Bomb Lager (New Recipe),Munich Helles Lager,525,12.0 +334,0.045,27.0,513,Bomb Lager (Old Recipe),Munich Helles Lager,525,12.0 +335,0.066,72.0,2422,Firestarter India Pale Ale,American IPA,107,12.0 +336,0.075,22.0,1727,Kilt Dropper Scotch Ale,Scotch Ale / Wee Heavy,107,16.0 +337,0.048,30.0,1614,Wood Splitter Pilsner,Czech Pilsener,107,16.0 +338,0.055999999999999994,26.0,1613,Gyptoberfest,Märzen / Oktoberfest,107,12.0 +339,0.07,94.0,1549,Farmer Wirtz India Pale Ale,English India Pale Ale (IPA),107,16.0 +340,0.047,,1548,Slow & Steady Golden Ale,American Blonde Ale,107,12.0 +341,0.068,,1517,Pink-I Raspberry IPA,American IPA,107,16.0 +342,0.047,,1500,Moe's Original Bar B Que 'Bama Brew Golden Ale,American Blonde Ale,107,12.0 +343,0.047,,1421,Live Local Golden Ale,American Blonde Ale,107,12.0 +344,0.048,38.0,1360,Screaming Eagle Special Ale ESB,Extra Special / Strong Bitter (ESB),107,12.0 +345,0.049,,1184,Dirtbag Dunkel,Munich Dunkel Lager,107,16.0 +346,0.053,45.0,1183,Kindler Pale Ale,American Pale Ale (APA),107,12.0 +347,0.064,,1023,Mistress Winter Wheat,Winter Warmer,107,12.0 +348,0.061,,998,Tent Pole Vanilla Porter,American Porter,107,16.0 +349,0.057999999999999996,,997,Awry Rye Pale Ale,American Pale Ale (APA),107,12.0 +350,0.057999999999999996,,996,Demshitz Brown Ale,American Brown Ale,107,12.0 +351,0.048,,931,Wood Splitter Pilsner (2012),Czech Pilsener,107,12.0 +352,0.048,,798,Brush Creek Blonde,American Blonde Ale,107,16.0 +353,0.066,72.0,633,Firestarter India Pale Ale,American IPA,107,16.0 +354,0.071,16.0,2062,Noche Dulce,American Porter,231,16.0 +355,0.045,8.0,1830,Porch Rocker,Radler,300,12.0 +356,0.065,45.0,1629,Rebel IPA,American IPA,300,16.0 +357,0.055,,1601,Cold Snap,Witbier,300,12.0 +358,0.055999999999999994,,1427,Samuel Adams Winter Lager,Bock,300,12.0 +359,0.049,30.0,1349,Boston Lager,Vienna Lager,300,16.0 +360,0.049,30.0,1310,Boston Lager,Vienna Lager,300,12.0 +361,0.053,15.0,1281,Samuel Adams Octoberfest,Märzen / Oktoberfest,300,12.0 +362,0.053,7.0,1144,Samuel Adams Summer Ale,American Pale Wheat Ale,300,12.0 +363,0.049,30.0,1143,Boston Lager,Vienna Lager,300,12.0 +364,0.049,35.0,1395,Hazed & Infused,American Pale Ale (APA),417,12.0 +365,0.057,35.0,808,Hoopla Pale Ale,American Pale Ale (APA),417,12.0 +366,0.049,35.0,81,Hazed & Infused (2010),American Pale Ale (APA),417,12.0 +367,0.062,80.0,2596,Heavy Lifting,American IPA,31,12.0 +368,0.065,,2300,1492,American Pale Ale (APA),167,12.0 +369,0.057999999999999996,,2299,Mango Ginger,American IPA,167,12.0 +370,0.047,,2298,Passenger,English Dark Mild Ale,167,12.0 +371,0.06,52.0,2107,Plum St. Porter,American Porter,219,12.0 +372,0.057,52.0,1573,Plum St. Porter,American Porter,219,12.0 +373,0.07,80.0,1289,Bozone HopZone IPA,American IPA,219,12.0 +374,0.06,25.0,1288,Bozone Hefe Weizen,Hefeweizen,219,12.0 +375,0.055,,470,Bozone Select Amber Ale,American Amber / Red Ale,219,12.0 +376,0.052000000000000005,40.0,2167,Evil Owl,American Amber / Red Ale,207,12.0 +377,0.05,,2204,Post Time Kölsch,Kölsch,195,16.0 +378,0.042,9.0,1522,Agave Wheat,American Pale Wheat Ale,391,12.0 +379,0.045,15.0,397,SummerBright Ale,American Pale Wheat Ale,391,12.0 +380,0.062,68.0,193,Lucky U IPA,American IPA,391,12.0 +381,0.054000000000000006,19.0,83,Avalanche Ale,American Amber / Red Ale,391,12.0 +382,0.05,,1802,"You're My Boy, Blue",Fruit / Vegetable Beer,308,12.0 +383,0.07200000000000001,60.0,1801,Last Stop IPA,American IPA,308,12.0 +384,0.05,21.0,1800,Rollin Dirty Red Ale,Irish Red Ale,308,12.0 +385,0.055,28.0,1799,Are Wheat There Yet?,American Pale Wheat Ale,308,12.0 +386,0.057999999999999996,,2619,Insert Hop Reference,American Pale Ale (APA),19,16.0 +387,0.053,,2468,Manitou Amber,American Amber / Red Ale,85,16.0 +388,0.067,,2637,Belfort,Saison / Farmhouse Ale,10,16.0 +389,0.06,,2636,Star Runner,Belgian Pale Ale,10,16.0 +390,0.098,,2598,Tart Side of the Barrel,American Double / Imperial Stout,10,16.0 +391,0.06,,2597,Linnaeus Mango IPA,American IPA,10,16.0 +392,0.07,,2548,Beasts A'Burnin',Rauchbier,10,16.0 +393,0.077,,2542,Verdun,Bière de Garde,10,16.0 +394,0.065,,2541,Barrel Aged Triomphe,Belgian IPA,10,16.0 +395,0.065,,2504,Cherry Doppelbock,Doppelbock,10,16.0 +396,0.065,,2500,Tropical Saison,Saison / Farmhouse Ale,10,16.0 +397,0.065,,2499,Beach Patrol,Witbier,10,16.0 +398,0.05,,2498,Nuit Serpent,Belgian IPA,10,16.0 +399,0.09,,2481,Paris,Saison / Farmhouse Ale,10,16.0 +400,0.055,,2476,The Grand Army,Belgian IPA,10,16.0 +401,0.059000000000000004,,2467,Acidulated Trip,Saison / Farmhouse Ale,10,16.0 +402,0.066,,2466,Root Stock,Rye Beer,10,16.0 +403,0.040999999999999995,,2465,Mind Games,Dunkelweizen,10,16.0 +404,0.08199999999999999,,2433,Sous Chef,Belgian Strong Pale Ale,10,16.0 +405,0.065,,2418,Dubbelicious,Dubbel,10,16.0 +406,0.062,,2416,Psychopomp,Belgian Dark Ale,10,16.0 +407,,,2382,Fat Paczki,Belgian Dark Ale,10,16.0 +408,,,2381,Earth-Like Planets,Belgian Pale Ale,10,16.0 +409,0.061,,2290,Ski Patrol,Witbier,10,16.0 +410,0.063,,2241,Viking Ice Hole,Oatmeal Stout,10,16.0 +411,0.055999999999999994,,2240,Rye Porter,American Porter,10,16.0 +412,0.099,,2137,Wizard Burial Ground,Quadrupel (Quad),10,16.0 +413,0.051,,2101,Smoky Wheat,Rauchbier,10,16.0 +414,0.062,,2092,BRIPA,Belgian IPA,10,16.0 +415,0.062,,2091,Mela,Belgian Dark Ale,10,16.0 +416,0.053,,2086,W.I.P.A Snappa,Belgian IPA,10,16.0 +417,0.063,,2023,Pepper in the Rye,Rye Beer,10,16.0 +418,0.064,,2006,Moe Lasses',American Stout,10,16.0 +419,0.07,,1997,Pumpkin Tart,Fruit / Vegetable Beer,10,16.0 +420,0.067,,1977,Undertaker,Belgian Dark Ale,10,16.0 +421,0.067,,1976,Undertaker (2014),Belgian Dark Ale,10,16.0 +422,0.05,,1974,Coq D'Or,Belgian Pale Ale,10,16.0 +423,0.06,,1973,North French,Bière de Garde,10,16.0 +424,0.065,,1959,Agent a Deux,Belgian Dark Ale,10,16.0 +425,0.045,,1958,Belgian Wit,Witbier,10,16.0 +426,0.063,,1949,Pothole Stout,American Stout,10,16.0 +427,0.09300000000000001,,1947,Tree Bucket,Belgian IPA,10,16.0 +428,0.073,,1785,Le Flaneur Ale,American Wild Ale,10,16.0 +429,0.055999999999999994,,1651,Maize & Blueberry,Fruit / Vegetable Beer,10,16.0 +430,0.09300000000000001,,1443,Trebuchet Double IPA,American Double / Imperial IPA,10,16.0 +431,0.065,,1352,Contemplation,Bière de Garde,10,16.0 +432,0.05,,1267,Black Rabbit,American Black Ale,10,16.0 +433,0.09,,1266,Zaison,Saison / Farmhouse Ale,10,16.0 +434,0.08199999999999999,,1178,Vivant Tripel,Tripel,10,16.0 +435,0.098,,1136,Tart Side of the Moon,Belgian Dark Ale,10,16.0 +436,0.06,,1044,Big Red Coq,American Amber / Red Ale,10,16.0 +437,0.099,,1033,Hubris Quadrupel Anniversary Ale,Quadrupel (Quad),10,16.0 +438,0.095,,1031,Plow Horse Belgian Style Imperial Stout,American Double / Imperial Stout,10,16.0 +439,0.092,,909,Escoffier Bretta Ale,American Wild Ale,10,16.0 +440,0.065,,873,Contemplation (2012),Bière de Garde,10,16.0 +441,0.099,,860,Vivant Belgian Style Imperial Stout (2012),Russian Imperial Stout,10,16.0 +442,0.062,,677,Big Red Coq (2012),American Amber / Red Ale,10,16.0 +443,0.09,,671,Zaison (2012),Saison / Farmhouse Ale,10,16.0 +444,0.092,,670,Vivant Tripel (2012),Tripel,10,16.0 +445,0.09699999999999999,,669,Trebuchet Double IPA (2012),Belgian IPA,10,16.0 +446,0.085,,627,Kludde,Belgian Strong Dark Ale,10,16.0 +447,0.055,,387,Farm Hand,Saison / Farmhouse Ale,10,16.0 +448,0.06,,385,Solitude,Belgian Pale Ale,10,16.0 +449,0.065,,384,Triomphe,Belgian IPA,10,16.0 +450,,,1096,Tampa Pale Ale,American Pale Ale (APA),467,12.0 +451,,,1095,Orange Grove Wheat Ale,American Pale Wheat Ale,467,12.0 +452,0.061,,2456,Broad Brook Ale,American Amber / Red Ale,89,16.0 +453,0.05,15.0,921,Northern Lights Amber Ale,American Amber / Red Ale,493,12.0 +454,0.052000000000000005,17.0,920,Polar Pale Ale,American Pale Ale (APA),493,12.0 +455,0.048,,919,Chugach Session Ale,Cream Ale,493,12.0 +456,0.061,64.0,648,Fairweather IPA,American IPA,493,12.0 +457,0.068,47.0,1279,East India Pale Ale,English India Pale Ale (IPA),437,16.0 +458,0.045,,756,Brooklyn Summer Ale,English Pale Mild Ale,437,12.0 +459,0.068,47.0,566,East India Pale Ale,English India Pale Ale (IPA),437,12.0 +460,0.045,,328,Brooklyn Summer Ale (2011),English Pale Mild Ale,437,12.0 +461,0.052000000000000005,,66,Brooklyn Lager (16 oz.),American Amber / Red Lager,437,16.0 +462,0.052000000000000005,,65,Brooklyn Lager (12 oz.),American Amber / Red Lager,437,12.0 +463,0.08,,538,Tour de Nez Belgian IPA (Current),Belgian IPA,530,16.0 +464,,,504,Roler Bock (Current),Maibock / Helles Bock,530,16.0 +465,0.073,85.0,383,Black Adder IBA (Current),American Black Ale,530,16.0 +466,0.099,,29,Very Noddy Lager (Current),Schwarzbier,530,16.0 +467,0.062,42.0,28,Tule Duck Red Ale (Current),American Amber / Red Ale,530,16.0 +468,0.057999999999999996,35.0,27,Original Orange Blossom Ale (Current),Herbed / Spiced Beer,530,16.0 +469,0.052000000000000005,40.0,26,Black Noddy Lager (Current),Schwarzbier,530,16.0 +470,0.053,,1627,Cleveland Beer Week 2013,Munich Helles Lager,357,16.0 +471,0.045,,2552,Painted Turtle,American Pale Ale (APA),56,12.0 +472,0.06,40.0,2125,1836,American Blonde Ale,214,12.0 +473,0.06,20.0,2124,Summer's Wit,Witbier,214,12.0 +474,0.09,118.0,2123,More Cowbell,American Double / Imperial IPA,214,16.0 +475,0.065,,2608,Wrath of Pele,American Brown Ale,24,16.0 +476,0.068,,2607,Black Beer'd,American Black Ale,24,16.0 +477,0.078,,2606,Mr. Tea,Fruit / Vegetable Beer,24,24.0 +478,0.055,40.0,2478,Pale Alement,American Pale Ale (APA),24,12.0 +479,0.099,115.0,2471,Hopkick Dropkick,American Double / Imperial IPA,24,12.0 +480,0.06,,2470,Kreamed Corn,Cream Ale,24,12.0 +481,0.065,,2464,Coconoats,American Pale Wheat Ale,24,16.0 +482,0.068,16.0,2160,Joey Wheat,American Pale Wheat Ale,24,16.0 +483,0.07200000000000001,86.0,2158,3:33 Black IPA,American IPA,24,16.0 +484,0.068,,2072,MCA,American IPA,24,16.0 +485,0.055,40.0,2054,Pale Alement,American Pale Ale (APA),24,16.0 +486,0.05,14.0,2196,Couch Select Lager,American Pale Lager,197,12.0 +487,0.055999999999999994,36.0,668,Mucho Aloha Hawaiian Pale Ale,American Pale Ale (APA),517,12.0 +488,0.049,,52,Heinnieweisse Weissebier,Hefeweizen,556,12.0 +489,0.068,,51,Snapperhead IPA,American IPA,556,12.0 +490,0.049,,50,Moo Thunder Stout,Milk / Sweet Stout,556,12.0 +491,0.043,,49,Porkslap Pale Ale,American Pale Ale (APA),556,12.0 +492,0.09300000000000001,,2657,Blackbeard,American Double / Imperial Stout,5,12.0 +493,0.062,,2656,Rye Knot,American Brown Ale,5,12.0 +494,0.06,,2655,Dead Arm,American Pale Ale (APA),5,12.0 +495,0.048,,2654,32°/50° Kölsch ,Kölsch,5,16.0 +496,0.077,,2653,HopArt,American IPA,5,16.0 +497,0.09699999999999999,,2652,Boy King,American Double / Imperial IPA,5,16.0 +498,0.052000000000000005,,2252,Gran Sport,American Porter,182,16.0 +499,0.053,25.0,2214,Horny Toad Cerveza,American Blonde Ale,182,16.0 +500,0.063,35.0,2213,Native Amber,American Amber / Red Ale,182,16.0 +501,0.068,100.0,1442,F5 IPA,American IPA,182,16.0 +502,0.063,35.0,170,Native Amber (2013),American Amber / Red Ale,182,16.0 +503,0.053,25.0,169,Horny Toad Cerveza (2013),American Blonde Ale,182,16.0 +504,0.068,100.0,2315,Hopportunity Knocks IPA,American IPA,155,12.0 +505,0.06,,1808,Pilot Rock Porter,American Porter,155,12.0 +506,0.055999999999999994,55.0,1419,Caldera Pale Ale,American Pale Ale (APA),155,12.0 +507,0.039,16.0,878,Lawnmower Lager,American Adjunct Lager,155,12.0 +508,0.054000000000000006,24.0,794,Ashland Amber Ale (2009),American Amber / Red Ale,155,12.0 +509,0.061,94.0,793,Caldera IPA (2009),American IPA,155,12.0 +510,0.061,94.0,792,Caldera IPA (2007),American IPA,155,12.0 +511,0.055999999999999994,55.0,791,Caldera Pale Ale (2010),American Pale Ale (APA),155,12.0 +512,0.055999999999999994,55.0,790,Caldera Pale Ale (2009),American Pale Ale (APA),155,12.0 +513,0.055999999999999994,55.0,789,Caldera Pale Ale (2005),American Pale Ale (APA),155,12.0 +514,0.055999999999999994,55.0,788,Caldera Pale Ale (2007),American Pale Ale (APA),155,12.0 +515,0.055999999999999994,55.0,38,Caldera Pale Ale (2011),American Pale Ale (APA),155,12.0 +516,0.054000000000000006,24.0,37,Ashland Amber Ale,American Amber / Red Ale,155,12.0 +517,0.061,94.0,36,Caldera IPA,American IPA,155,12.0 +518,0.05,,2257,Remain in Light,American Pilsner,178,12.0 +519,0.065,,2256,Flower Child (2014),American IPA,178,12.0 +520,,,870,THP White (2006),Witbier,497,12.0 +521,,,869,THP Amber (2006),American Amber / Red Ale,497,12.0 +522,,,868,THP Light (2006),American Blonde Ale,497,12.0 +523,,,867,THP Dark (2006),English Dark Mild Ale,497,12.0 +524,0.099,43.0,2068,Imperial Pumpkin Stout,Pumpkin Ale,230,16.0 +525,0.09,130.0,2067,Dead-Eye DIPA,American Double / Imperial IPA,230,16.0 +526,0.055,64.0,2066,Fisherman's IPA,American IPA,230,12.0 +527,0.054000000000000006,35.0,2065,Fisherman's Pils,German Pilsener,230,12.0 +528,0.055,30.0,2064,Fisherman's Brew,American Amber / Red Ale,230,12.0 +529,0.055,35.0,1928,Cape Cod Red,American Amber / Red Ale,267,16.0 +530,0.049,10.0,1927,Beach Blonde,American Blonde Ale,267,16.0 +531,0.065,80.0,2227,Dark Voyage Black IPA (2013),American Black Ale,192,12.0 +532,0.052000000000000005,28.0,2226,Wisconsin Amber,Vienna Lager,192,12.0 +533,0.046,18.0,2225,Lake House,Munich Helles Lager,192,12.0 +534,0.055999999999999994,55.0,1954,Ghost Ship White IPA,American IPA,192,12.0 +535,0.046,18.0,1910,Lake House,Munich Helles Lager,192,16.0 +536,0.062,70.0,1177,Mutiny IPA,American IPA,192,12.0 +537,0.052000000000000005,,840,Wisconsin Amber (1998),Vienna Lager,192,12.0 +538,0.042,,180,Island Wheat,American Pale Wheat Ale,192,12.0 +539,0.052000000000000005,,63,Wisconsin Amber (2013),Vienna Lager,192,12.0 +540,0.05,,62,U.S. Pale Ale,American Pale Ale (APA),192,12.0 +541,,,61,Supper Club Lager,American Pale Lager,192,12.0 +542,0.04,,784,Carolina Lighthouse (2007),American Blonde Ale,504,12.0 +543,0.05,,783,Carolina Blonde (2006),American Blonde Ale,504,12.0 +544,0.035,,782,Carolina Blonde Light (2005),American Blonde Ale,504,12.0 +545,0.059000000000000004,22.0,2255,Santa's Secret,Winter Warmer,179,16.0 +546,0.057,,530,Flagship IPA,English India Pale Ale (IPA),179,12.0 +547,0.051,,427,Sky Blue Golden Ale,Kölsch,179,12.0 +548,0.099,100.0,2094,Epitome,American Black Ale,222,16.0 +549,0.039,9.0,1941,Monkey Chased the Weasel,Berliner Weissbier,222,16.0 +550,0.078,80.0,1940,077XX,American Double / Imperial IPA,222,16.0 +551,0.042,35.0,1439,Boat Beer,American IPA,222,12.0 +552,0.069,,1465,Granny Smith Hard Apple Cider,Cider,404,16.0 +553,0.069,,1464,Dry Hard Apple Cider,Cider,404,16.0 +554,0.055999999999999994,,1744,Farmer Ted's Cream Ale,Cream Ale,331,12.0 +555,0.052000000000000005,,1743,Firewater India Pale Ale,American IPA,331,12.0 +556,0.047,,1742,White Zombie Ale,Witbier,331,12.0 +557,0.07,,1719,King Winterbolt Winter Ale,Winter Warmer,331,12.0 +558,0.047,,638,White Zombie Ale,Witbier,331,12.0 +559,0.052000000000000005,,507,Firewater India Pale Ale,American IPA,331,12.0 +560,0.055999999999999994,,480,Farmer Ted's Farmhouse Cream Ale,Cream Ale,331,12.0 +561,0.048,16.0,1882,Whitecap Wit,Witbier,285,16.0 +562,0.078,16.0,1881,Seiche Scottish Ale,Scottish Ale,285,16.0 +563,0.057999999999999996,,2446,Peanut Butter Jelly Time,American Brown Ale,96,12.0 +564,0.054000000000000006,,2106,King Coconut,American Porter,96,12.0 +565,0.085,90.0,2600,Gone A-Rye,American Double / Imperial IPA,29,16.0 +566,,,2210,Special Release,,29,16.0 +567,0.068,70.0,2052,Dankosaurus,American IPA,29,16.0 +568,0.051,35.0,1584,Scruffy's Smoked Alt,Smoked Beer,29,16.0 +569,0.051,36.0,1182,Elliott's Phoned Home Pale Ale,American Pale Ale (APA),29,16.0 +570,0.05,18.0,1050,The Lawn Ranger,Cream Ale,29,16.0 +571,0.05,,1219,All American Blonde Ale,American Blonde Ale,452,12.0 +572,0.05,,1218,All American Red Ale,American Amber / Red Ale,452,12.0 +573,0.05,40.0,2377,Main St. Virginia Ale,Altbier,122,12.0 +574,0.045,24.0,1839,Chin Music Amber Lager,American Amber / Red Lager,122,12.0 +575,0.05,40.0,1248,Main St. Virginia Ale,Altbier,122,12.0 +576,0.052000000000000005,42.0,1247,Ray Ray’s Pale Ale,American Pale Ale (APA),122,12.0 +577,0.051,15.0,1649,Chai Ale,Herbed / Spiced Beer,350,16.0 +578,0.07200000000000001,85.0,1648,Lucky Day IPA,American IPA,350,16.0 +579,0.095,99.0,1647,Terrace Hill Double IPA,American Double / Imperial IPA,350,16.0 +580,0.075,77.0,1646,Catch 23,American Black Ale,350,16.0 +581,0.07,,2057,Stickin' In My Rye,Rye Beer,236,24.0 +582,0.06,45.0,2056,Black Me Stout,American Stout,236,12.0 +583,0.05,22.0,2055,Killer Kolsch,Kölsch,236,12.0 +584,0.07,65.0,1933,Missile IPA,American IPA,236,12.0 +585,0.045,,2019,Enlighten,Kölsch,250,16.0 +586,0.065,8.0,2018,Ale Cider,Fruit / Vegetable Beer,250,16.0 +587,0.055,30.0,2017,Pail Ale,American Pale Ale (APA),250,16.0 +588,0.045,,2016,Englishman,English Brown Ale,250,16.0 +589,0.08,69.0,2080,8 Barrel,American Strong Ale,226,16.0 +590,0.055,40.0,2079,Oktoberfest,Märzen / Oktoberfest,226,16.0 +591,0.057,58.0,2380,IPA #11,American IPA,121,16.0 +592,0.057,10.0,2379,Blood Orange Honey,Fruit / Vegetable Beer,121,16.0 +593,0.052000000000000005,,2354,Lighthouse Amber,Altbier,121,16.0 +594,0.08900000000000001,126.0,2440,Bay of Bengal Double IPA (2014),American Double / Imperial IPA,99,12.0 +595,0.049,29.0,567,Churchkey Pilsner Style Beer,American Pilsner,526,12.0 +596,0.05,,1342,First Press,Cider,425,12.0 +597,0.05,,1341,Magic Apple,Cider,425,12.0 +598,0.055,25.0,2349,Cubano Espresso,Bock,141,12.0 +599,0.062,65.0,2014,Operation Homefront,American IPA,141,12.0 +600,0.08199999999999999,65.0,2013,Wandering Pelican,American Black Ale,141,12.0 +601,0.055,,2012,Sugar Plum,American Brown Ale,141,12.0 +602,0.055,,2011,Oktoberfest,Märzen / Oktoberfest,141,12.0 +603,0.06,,2010,Puppy's Breath Porter,American Porter,141,12.0 +604,0.045,,2009,Happening Now,American IPA,141,12.0 +605,0.07,60.0,1726,Hopped on the High Seas (Hop #529),American IPA,141,12.0 +606,0.07,60.0,1725,Hopped on the High Seas (Calypso),American IPA,141,12.0 +607,0.063,,1695,Wiregrass Post-Prohibition Ale,American Pale Ale (APA),141,12.0 +608,0.07,60.0,1694,Dry-Hopped On The High Seas Caribbean-Style IPA,American IPA,141,12.0 +609,0.07,60.0,1693,Hopped on the High Seas (Citra),American IPA,141,12.0 +610,0.07,60.0,1692,Hopped on the High Seas (Ahtanum),American IPA,141,12.0 +611,0.055,,1369,Gwar Beer,American Pale Ale (APA),141,12.0 +612,0.052000000000000005,,1243,Tropical Heatwave,American Pale Wheat Ale,141,16.0 +613,0.075,70.0,1142,Humidor Series India Pale Ale,American IPA,141,12.0 +614,0.075,70.0,1141,Jai Alai IPA Aged on White Oak,American IPA,141,12.0 +615,0.08,65.0,1140,José Martí American Porter,American Porter,141,12.0 +616,0.05,,1139,Invasion Pale Ale,American Pale Ale (APA),141,12.0 +617,0.055,25.0,1138,Maduro Brown Ale,English Brown Ale,141,12.0 +618,0.055,25.0,571,Maduro Brown Ale,American Brown Ale,141,12.0 +619,0.05,,570,Hotter Than Helles Lager,Munich Helles Lager,141,12.0 +620,0.07200000000000001,75.0,569,Tocobaga Red Ale,American Amber / Red Ale,141,12.0 +621,0.075,70.0,546,Jai Alai IPA,American IPA,141,12.0 +622,0.05,18.0,545,Florida Cracker Belgian Wit,Witbier,141,12.0 +623,0.048,,2338,Shark Tracker Light lager,Light Lager,145,12.0 +624,0.06,,1365,Pumple Drumkin,Pumpkin Ale,145,12.0 +625,0.045,,1094,Grey Lady,Witbier,145,12.0 +626,0.062,,657,Summer of Lager,Munich Helles Lager,145,12.0 +627,0.065,,656,Indie Pale Ale,American IPA,145,12.0 +628,0.038,,359,Sankaty Light Lager,Light Lager,145,12.0 +629,0.055999999999999994,,56,Whale's Tale Pale Ale,English Pale Ale,145,12.0 +630,0.067,60.0,1772,Jacaranada Rye IPA,American IPA,320,16.0 +631,0.06,75.0,1393,Cascadian Dark Ale,American Black Ale,418,12.0 +632,0.044000000000000004,13.0,893,Wheat the People,American Pale Wheat Ale,418,16.0 +633,0.047,17.0,1407,Tybee Island Blonde,American Blonde Ale,415,12.0 +634,0.062,55.0,1406,Savannah Brown Ale,American Brown Ale,415,12.0 +635,0.046,11.0,2438,Rhode Island Blueberry,Kölsch,101,12.0 +636,0.065,75.0,2437,Newport Storm IPA,American IPA,101,12.0 +637,0.052000000000000005,24.0,751,Hurricane Amber Ale (2004),American Amber / Red Ale,101,12.0 +638,0.052000000000000005,24.0,120,Hurricane Amber Ale,American Amber / Red Ale,101,12.0 +639,0.057999999999999996,,2061,Big Blue Van,Fruit / Vegetable Beer,232,16.0 +640,0.068,75.0,970,Des Moines IPA,American IPA,482,16.0 +641,0.048,22.0,969,Capital Gold Golden Lager,German Pilsener,482,16.0 +642,0.055999999999999994,21.0,968,Farmer John's Multi-Grain Ale,American Blonde Ale,482,16.0 +643,0.05,,2351,Behemoth,American Pilsner,139,12.0 +644,0.052000000000000005,,1650,Arkansas Red,American Amber / Red Ale,139,12.0 +645,0.057,,1337,Core Oatmeal Stout,Oatmeal Stout,139,12.0 +646,0.061,,1336,Core ESB,Extra Special / Strong Bitter (ESB),139,12.0 +647,0.038,,737,Chester's Beer (2005),American Pale Lager,512,12.0 +648,0.05,,129,Heiner Brau Kölsch,Kölsch,553,12.0 +649,0.048,,716,Trigger Blonde Ale,American Blonde Ale,515,16.0 +650,0.075,29.0,659,Crabtree Oatmeal Stout,Oatmeal Stout,515,16.0 +651,0.077,71.0,556,Eclipse Black IPA,American Black Ale,515,16.0 +652,0.06,46.0,2538,Neomexicanus Native,American Pale Ale (APA),63,12.0 +653,0.075,25.0,2355,Old Soul,Belgian Strong Pale Ale,63,12.0 +654,0.059000000000000004,,1689,Snowcat Coffee Stout,American Stout,63,12.0 +655,,,1163,WinterWonderGrass Festival Ale,American Amber / Red Ale,63,12.0 +656,,,940,Boohai Red Ale,American Amber / Red Ale,63,12.0 +657,0.052000000000000005,15.0,685,Lava Lake Wit,Witbier,63,12.0 +658,0.06,,613,Mountain Livin' Pale Ale,American Pale Ale (APA),63,12.0 +659,0.052000000000000005,25.0,356,Crazy Mountain Amber Ale,American Amber / Red Ale,63,12.0 +660,0.065,65.0,2029,Tropicalia,American IPA,247,12.0 +661,0.045,,2028,Athena,Berliner Weissbier,247,12.0 +662,0.049,25.0,2293,Aviator Raspberry Blonde,American Blonde Ale,169,12.0 +663,0.055,,1105,3 Picket Porter,American Porter,169,12.0 +664,0.055999999999999994,,1104,Rusty Nail Pale Ale,American Pale Ale (APA),169,12.0 +665,0.065,,2145,Red Water Irish Style Red,American Amber / Red Ale,212,12.0 +666,0.066,,1804,Mjöllnir,Herbed / Spiced Beer,212,12.0 +667,0.055,,1602,Bear Butte Nut Brown Ale,American Brown Ale,212,12.0 +668,0.045,,1301,Easy Livin' Summer Ale,American Blonde Ale,212,12.0 +669,0.055,,542,Canyon Cream Ale,Cream Ale,212,12.0 +670,0.069,,272,Pile O'Dirt Porter,American Porter,212,12.0 +671,0.06,,271,11th Hour IPA,American IPA,212,12.0 +672,0.06,31.0,1057,South Ridge Amber Ale,American Amber / Red Ale,472,16.0 +673,0.052000000000000005,23.0,681,Summertime Ale,Kölsch,472,16.0 +674,0.049,,1789,Lost River Blonde Ale,American Blonde Ale,315,16.0 +675,0.054000000000000006,,1788,Monon Wheat,Witbier,315,16.0 +676,0.08,,1787,Floyd's Folly,Scottish Ale,315,16.0 +677,0.063,,1786,Half Court IPA,American IPA,315,16.0 +678,0.045,,1763,Geary's Pale Ale,English Pale Ale,323,12.0 +679,0.06,,1311,Geary's Summer Ale,Kölsch,323,12.0 +680,0.08,,2078,Stone of Arbroath,Scotch Ale / Wee Heavy,227,12.0 +681,0.05,15.0,1809,The Tradition,American Blonde Ale,227,12.0 +682,0.053,11.0,1263,El Hefe Speaks,Hefeweizen,227,12.0 +683,0.055,,1092,Penn Quarter Porter,American Porter,227,12.0 +684,0.092,115.0,851,On the Wings of Armageddon,American Double / Imperial IPA,227,12.0 +685,0.065,80.0,186,The Corruption,American IPA,227,12.0 +686,0.07,,185,The Citizen,Belgian Pale Ale,227,12.0 +687,0.06,,184,The Public,American Pale Ale (APA),227,12.0 +688,0.065,,1224,Dank IPA,American IPA,451,16.0 +689,0.065,,964,Dank IPA (2012),American IPA,451,16.0 +690,0.07200000000000001,,1623,Lift Off IPA,American IPA,358,16.0 +691,0.055,,110,BrewFarm Select Golden Lager,American Pale Lager,554,12.0 +692,0.05,,1735,Sprocket Blonde Ale (2006),American Blonde Ale,333,12.0 +693,0.05,,1734,Sprocket Pale Ale (2006),American Pale Ale (APA),333,12.0 +694,0.063,37.0,1746,Dead Armadillo Amber Ale,American Amber / Red Ale,330,12.0 +695,0.06,,2371,Neato Bandito,Euro Pale Lager,127,12.0 +696,0.075,33.0,2251,Oak Cliff Coffee Ale,American Brown Ale,127,12.0 +697,0.085,100.0,2166,Dream Crusher Double IPA,American Double / Imperial IPA,127,12.0 +698,0.06,,1827,Deep Ellum Pale Ale,American Pale Ale (APA),127,12.0 +699,0.07,,1203,Double Brown Stout,Baltic Porter,127,12.0 +700,0.048,25.0,1202,Farmhouse Wit,Saison / Farmhouse Ale,127,16.0 +701,0.046,,1161,Rye Pils Session Lager,German Pilsener,127,12.0 +702,0.052000000000000005,23.0,946,Dallas Blonde,American Blonde Ale,127,12.0 +703,0.07,70.0,943,Deep Ellum IPA,American IPA,127,12.0 +704,0.045,44.0,1886,Thrasher Session India Pale Ale,American IPA,283,12.0 +705,0.05,16.0,1885,Gutch English Style Mild Ale,English Pale Mild Ale,283,12.0 +706,0.059000000000000004,55.0,1213,Chuli Stout,Irish Dry Stout,453,12.0 +707,0.055999999999999994,46.0,1159,Mother Ale,American Blonde Ale,453,12.0 +708,0.065,71.0,947,Twister Creek India Pale Ale,American IPA,453,12.0 +709,0.057999999999999996,46.0,929,Single Engine Red,Irish Red Ale,453,12.0 +710,0.07,,1944,Incredible Pedal IPA,American IPA,263,12.0 +711,0.05,,1943,Graham Cracker Porter,American Porter,263,12.0 +712,0.05,40.0,1210,Mirror Pond Pale Ale,American Pale Ale (APA),454,12.0 +713,0.052000000000000005,16.0,2550,Weissenheimer,Hefeweizen,57,12.0 +714,0.049,22.0,2505,Abbey's Single (2015- ),Abbey Single Ale,57,12.0 +715,0.063,76.0,2025,Vertex IPA,American IPA,57,12.0 +716,0.05,12.0,2021,Here Gose Nothin',Gose,57,12.0 +717,0.05,,2015,Strawberry Blonde,Fruit / Vegetable Beer,57,12.0 +718,0.096,85.0,1888,Hoperation Overload,American Double / Imperial IPA,57,12.0 +719,0.049,22.0,1887,Abbey's Single Ale (Current),Abbey Single Ale,57,12.0 +720,0.044000000000000004,45.0,2051,Bravo Four Point,American Pale Ale (APA),237,12.0 +721,0.052000000000000005,26.0,1201,Striped Bass Pale Ale,American Pale Ale (APA),237,12.0 +722,0.054000000000000006,27.0,924,Deadicated Amber,American Amber / Red Ale,491,16.0 +723,,,731,Kaleidoscope Collaboration 2012,American Black Ale,491,16.0 +724,0.071,85.0,730,California Sunshine Rye IPA,American IPA,491,16.0 +725,0.07400000000000001,12.0,647,Full Boar Scotch Ale,Scotch Ale / Wee Heavy,491,16.0 +726,0.045,,1773,12 Man Pale Ale,American Pale Ale (APA),319,12.0 +727,0.065,72.0,1795,Filthy Hoppin' IPA,American IPA,311,16.0 +728,,,944,Dock Street Amber Beer (1992),American Amber / Red Ale,488,12.0 +729,,,524,Dolores River Hefeweizen,Hefeweizen,531,16.0 +730,,,450,Dolores River ESB,Extra Special / Strong Bitter (ESB),531,16.0 +731,,,449,Snaggletooth Double Pale Ale,American Double / Imperial IPA,531,16.0 +732,,,448,Dolores River Pale Ale,American Pale Ale (APA),531,16.0 +733,,,447,Dolores River Dry Stout,Irish Dry Stout,531,16.0 +734,,,446,Dolores River Mild,English Dark Mild Ale,531,16.0 +735,0.049,,1246,Cranberry Blend,Cider,446,12.0 +736,0.051,,977,Orignal Blend,Cider,446,12.0 +737,0.066,100.0,881,Hop Abomination,American IPA,496,12.0 +738,0.051,17.0,880,Apricot Blonde,Fruit / Vegetable Beer,496,12.0 +739,0.043,12.0,872,Dry Dock Hefeweizen,Hefeweizen,496,12.0 +740,0.057999999999999996,49.0,871,Dry Dock Amber Ale,American Amber / Red Ale,496,12.0 +741,0.061,64.0,1685,Category 3 IPA,American IPA,340,12.0 +742,0.045,18.0,457,Dundee Summer Wheat Beer,American Pale Wheat Ale,538,12.0 +743,0.05,,1590,Pumpkin Patch Ale,Pumpkin Ale,369,16.0 +744,0.078,74.0,1382,Crank Yanker IPA,American IPA,369,16.0 +745,0.06,,1110,River Runners Pale Ale,American Pale Ale (APA),369,16.0 +746,0.05,,1014,Pumpkin Patch Ale (2012),Pumpkin Ale,369,16.0 +747,0.055,,911,Mountain Fairy Raspberry Wheat,Fruit / Vegetable Beer,369,16.0 +748,0.045,,680,Boater Beer,German Pilsener,369,16.0 +749,0.078,74.0,395,Crank Yanker IPA (2011),American IPA,369,16.0 +750,0.057,,1642,Bleeding Buckeye Red Ale,Extra Special / Strong Bitter (ESB),352,16.0 +751,0.049,25.0,673,Dottie Seattle Lager,American Amber / Red Lager,516,16.0 +752,0.07,,1107,Nut Sack Imperial Brown Ale,American Brown Ale,465,12.0 +753,0.05,,1039,Underachiever,American Adjunct Lager,473,16.0 +754,0.052000000000000005,,2477,Lil' Brainless Raspberries,Fruit / Vegetable Beer,81,12.0 +755,0.052000000000000005,,2008,Element 29,American Pale Ale (APA),81,12.0 +756,0.05,,2004,Hop Syndrome,American Pale Lager,81,12.0 +757,0.062,,2003,Escape to Colorado,American IPA,81,12.0 +758,0.043,60.0,2292,Little Sister India Style Session Ale,American IPA,170,12.0 +759,0.062,80.0,1504,Country Boy IPA,American IPA,170,12.0 +760,0.049,23.0,2604,Blonde Czich,American Blonde Ale,26,16.0 +761,0.07,61.0,2432,White Reaper,Belgian IPA,26,16.0 +762,0.051,,2431,Bobblehead,American Pale Wheat Ale,26,16.0 +763,0.052000000000000005,,2430,Lucky Dog,American Pale Ale (APA),26,16.0 +764,0.048,,2429,Voodoo,American Porter,26,16.0 +765,0.054000000000000006,48.0,1967,General George Patton Pilsner,Czech Pilsener,26,16.0 +766,0.04,,2283,Nomader Weiss,Berliner Weissbier,173,12.0 +767,0.085,,2248,Molotov Lite,American Double / Imperial IPA,173,16.0 +768,0.055,,1287,Hipster Ale (Two Roads Brewing),American Pale Ale (APA),173,12.0 +769,0.027000000000000003,,1286,Bikini Beer,American IPA,173,12.0 +770,0.055,,640,Hipster Ale (Westbrook Brewing),American Pale Ale (APA),173,12.0 +771,0.05,32.0,1722,Iron Horse Pale Ale,American Pale Ale (APA),335,12.0 +772,0.045,19.0,1435,Stone's Throw IPA,Scottish Ale,335,12.0 +773,0.067,70.0,1434,Wood Chipper India Pale Ale,American IPA,335,12.0 +774,0.063,55.0,2089,Trail Head,American Pale Ale (APA),224,12.0 +775,0.07,80.0,2088,Hop Stalker Fresh Hop IPA,American IPA,224,16.0 +776,0.07,58.0,1455,Sudice American Stout,American Stout,405,16.0 +777,0.05,20.0,1454,Parcae Belgian Style Pale Ale,Belgian Pale Ale,405,16.0 +778,0.05,20.0,1453,Norns Roggenbier,Roggenbier,405,16.0 +779,0.05,20.0,1452,Laimas Kölsch Style Ale,Kölsch,405,16.0 +780,0.07,70.0,1451,Moirai India Pale Ale,American IPA,405,16.0 +781,0.075,53.0,2191,Loki Red Ale,American Amber / Red Ale,201,16.0 +782,0.046,,1731,Peaches & Cream,Fruit / Vegetable Beer,201,16.0 +783,0.051,,1022,Quaff India Style Session Ale,American IPA,201,16.0 +784,0.075,53.0,895,Loki Red Ale (2013),American Amber / Red Ale,201,16.0 +785,0.069,,682,Mjolnir Imperial IPA,American Double / Imperial IPA,201,16.0 +786,0.05,,112,Fearless Scottish Ale,Scottish Ale,201,16.0 +787,0.081,,2289,Mastermind,American Double / Imperial IPA,172,12.0 +788,0.08199999999999999,,2027,Hyzer Flip,American Double / Imperial IPA,172,16.0 +789,0.08199999999999999,80.0,1929,Second Fiddle,American Double / Imperial IPA,172,16.0 +790,0.055,30.0,1858,Hodad Porter,American Porter,172,16.0 +791,0.045,,2591,Weiss Weiss Baby,Kristalweizen,36,12.0 +792,0.055,45.0,2590,Czech Yo Self,Czech Pilsener,36,12.0 +793,0.048,20.0,1968,FMB 101,Kölsch,36,12.0 +794,0.09,,1981,Hardcore Chimera,American Double / Imperial IPA,256,16.0 +795,0.08,80.0,1664,Sobek & Set,American Black Ale,256,16.0 +796,0.086,,1663,Nuclear Winter,Belgian Strong Dark Ale,256,16.0 +797,0.05,22.0,1662,Wet Hot American Wheat Ale,American Pale Wheat Ale,256,16.0 +798,0.053,,941,Secret Stache Stout,American Stout,256,16.0 +799,0.08,72.0,935,Fascist Pig Ale,American Amber / Red Ale,256,16.0 +800,0.055,,809,Cut Throat Pale Ale,American Pale Ale (APA),256,16.0 +801,0.075,,481,Threadless IPA,American IPA,256,16.0 +802,0.055,,351,Cut Throat Pale Ale (2011),American Pale Ale (APA),256,16.0 +803,0.047,,350,Golden Wing Blonde Ale,American Blonde Ale,256,16.0 +804,0.045,47.0,2569,Easy Jack,American IPA,48,12.0 +805,0.075,75.0,2463,Union Jack,American IPA,48,12.0 +806,0.053,,2462,Pivo Pils,German Pilsener,48,12.0 +807,0.047,,1957,805 Blonde Ale,American Blonde Ale,48,12.0 +808,0.047,20.0,1733,805,American Blonde Ale,48,12.0 +809,0.065,,2624,Deflator,Doppelbock,16,16.0 +810,0.05,27.0,2284,Hinchtown Hammer Down,American Blonde Ale,16,16.0 +811,0.06,104.0,1610,Half Cycle IPA,American IPA,16,16.0 +812,,,520,Inclined Plane Ale,American IPA,532,12.0 +813,0.055,,2554,Moped Traveler,American Pale Ale (APA),54,16.0 +814,0.071,60.0,608,Snake Dog IPA,American IPA,521,12.0 +815,0.047,28.0,607,Underdog Atlantic Lager,American Pale Lager,521,12.0 +816,0.04,,2567,Flying Mouse 8,American Porter,50,12.0 +817,0.07,70.0,2566,Flying Mouse 4,American IPA,50,12.0 +818,0.078,,1899,La Ferme Urbaine Farmhouse Ale,Saison / Farmhouse Ale,279,12.0 +819,0.06,,983,Backyahd IPA,American IPA,279,12.0 +820,0.065,,982,Raincloud Robust Porter,American Porter,279,12.0 +821,0.045,,981,Barstool American Golden Ale,American Blonde Ale,279,12.0 +822,0.05,18.0,2111,What the Butler Saw,Witbier,217,12.0 +823,0.069,65.0,2110,1916 Shore Shiver,American IPA,217,12.0 +824,0.052000000000000005,,2172,Quick WIT,Belgian Pale Ale,206,12.0 +825,0.062,,2171,The Optimist,American IPA,206,12.0 +826,0.045,,1911,Suicide Squeeze IPA,American IPA,206,16.0 +827,0.065,,1803,Java the Hop,American IPA,206,16.0 +828,0.062,,1566,Next Adventure Black IPA,American Black Ale,206,16.0 +829,0.067,,1515,3-Way IPA (2013),American IPA,206,16.0 +830,0.057999999999999996,,1214,Tender Loving Empire NWPA,American Pale Ale (APA),206,16.0 +831,0.052000000000000005,,674,Quick Wit Belgianesque Ale,Witbier,206,16.0 +832,0.055,,562,Sunrise Oatmeal Pale Ale,American Pale Ale (APA),206,16.0 +833,0.08800000000000001,,552,Cavatica Stout,American Double / Imperial Stout,206,16.0 +834,0.051,,319,1811 Lager,American Amber / Red Lager,206,16.0 +835,0.07400000000000001,97.0,318,Vortex IPA,American IPA,206,16.0 +836,,,2322,Fort Pitt Ale,American Amber / Red Ale,151,12.0 +837,0.047,19.0,2661,Park,American Pale Wheat Ale,4,12.0 +838,0.055999999999999994,16.0,2660,Westfalia,American Amber / Red Ale,4,12.0 +839,0.046,17.0,2659,KSA,Kölsch,4,12.0 +840,0.063,42.0,2658,Villager,American IPA,4,12.0 +841,0.085,50.0,2625,Dirty Bastard,Scotch Ale / Wee Heavy,15,12.0 +842,0.07200000000000001,65.0,1565,Centennial IPA,American IPA,15,12.0 +843,0.047,42.0,1223,All Day IPA,American IPA,15,12.0 +844,0.076,73.0,1874,El Chingon IPA,American IPA,287,12.0 +845,0.057,40.0,1873,Block Party Robust Porter,American Porter,287,12.0 +846,0.052000000000000005,20.0,1872,Local Buzz,American Blonde Ale,287,12.0 +847,0.055,,2613,Feel Like Maplin' Love,Oatmeal Stout,22,16.0 +848,0.05,,2612,Father's Beer,Belgian Pale Ale,22,16.0 +849,0.06,,2611,The 26th,American IPA,22,16.0 +850,0.064,90.0,2610,The Gadget,American IPA,22,16.0 +851,0.04,,1657,Leprechaun Lager,American Pale Lager,348,12.0 +852,0.052000000000000005,17.0,2309,Sunbru Kölsch,Kölsch,160,12.0 +853,0.06,21.0,1635,Kilt Lifter Scottish-Style Ale,,160,12.0 +854,0.051,,1616,Pumpkin Porter,American Porter,160,12.0 +855,0.042,9.0,1585,Four Peaks Peach Ale,Fruit / Vegetable Beer,160,12.0 +856,0.067,47.0,358,Hop Knot IPA,American IPA,160,12.0 +857,0.06,21.0,179,Kilt Lifter Scottish-Style Ale (2009),Scottish Ale,160,12.0 +858,0.052000000000000005,,178,Sunbru Kölsch,Kölsch,160,12.0 +859,0.06,,2428,Four String Vanilla Porter,American Porter,105,12.0 +860,0.05,28.0,2427,Suncaster Summer Wheat,American Pale Wheat Ale,105,12.0 +861,0.057,36.0,2425,Brass Knuckle Pale Ale,American Pale Ale (APA),105,12.0 +862,0.07,70.0,2424,Big Star White IPA,American White IPA,105,12.0 +863,0.055999999999999994,,1998,Old Detroit,American Amber / Red Ale,253,12.0 +864,0.069,69.0,1556,Batch 69 IPA,American IPA,253,12.0 +865,0.055,18.0,1208,Twisted Helles Summer Lager,Munich Helles Lager,253,12.0 +866,0.053,27.0,2527,OktoberFiesta,,66,12.0 +867,0.065,33.0,2526,Texicali ,American Brown Ale,66,12.0 +868,0.06,,2525,Pinata Protest,Witbier,66,12.0 +869,0.042,20.0,2524,Bat Outta Helles,Munich Helles Lager,66,12.0 +870,0.068,,2523,Original,American Amber / Red Ale,66,12.0 +871,0.042,10.0,2522,Rye Wit,Witbier,66,12.0 +872,0.059000000000000004,70.0,2521,Soul Doubt,American IPA,66,12.0 +873,0.044000000000000004,5.0,2520,Yo Soy Un Berliner,Berliner Weissbier,66,12.0 +874,0.04,,1174,77 Fremont Select Spring Session IPA,American IPA,460,12.0 +875,0.045,,1116,Fremont Organic Pale Ale,American Pale Ale (APA),460,12.0 +876,0.08,,994,Abominable Ale,English Strong Ale,460,12.0 +877,0.065,35.0,901,Harvest Ale,Saison / Farmhouse Ale,460,12.0 +878,0.065,45.0,875,Fremont Summer Ale,American Pale Ale (APA),460,12.0 +879,0.055999999999999994,30.0,858,Universale Pale Ale,American Pale Ale (APA),460,12.0 +880,0.065,80.0,857,Interurban IPA,American IPA,460,12.0 +881,0.053,32.0,1300,Gateway Kolsch Style Ale,Kölsch,433,12.0 +882,0.07,24.0,1260,Wee-Heavy-Er Scotch Ale,Scotch Ale / Wee Heavy,433,12.0 +883,0.052000000000000005,42.0,1259,13 Rebels ESB,Extra Special / Strong Bitter (ESB),433,12.0 +884,0.07,73.0,2254,Salamander Slam,American IPA,180,16.0 +885,0.05,,1658,Cack-A-Lacky,American Pale Ale (APA),347,12.0 +886,0.07200000000000001,50.0,2077,No Wake IPA,American IPA,228,12.0 +887,0.049,15.0,2076,Boathouse Blonde,American Blonde Ale,228,12.0 +888,0.05,26.0,2075,Cedar Point,American Amber / Red Ale,228,12.0 +889,0.067,70.0,2426,Clean Shave IPA,American IPA,106,12.0 +890,0.07200000000000001,75.0,2045,Might As Well IPL,American Pale Lager,240,16.0 +891,0.057999999999999996,35.0,1960,Saison Pamplemousse,Saison / Farmhouse Ale,240,12.0 +892,0.07400000000000001,74.0,1777,2020 IPA,American IPA,240,16.0 +893,0.08,70.0,1698,Wolf Among Weeds IPA,American IPA,240,16.0 +894,0.094,92.0,1641,Better Weather IPA,American IPA,240,16.0 +895,0.059000000000000004,60.0,1490,Point the Way IPA,American IPA,240,16.0 +896,0.046,15.0,1489,Golden Road Hefeweizen,Hefeweizen,240,16.0 +897,0.068,65.0,1399,Heal the Bay IPA,American IPA,240,16.0 +898,0.059000000000000004,60.0,1296,Point the Way IPA,American IPA,240,12.0 +899,0.05,,1034,Cabrillo Kölsch,Kölsch,240,16.0 +900,0.055,20.0,991,Get Up Offa That Brown,American Brown Ale,240,16.0 +901,0.08,70.0,750,Burning Bush Smoked IPA,American IPA,240,16.0 +902,0.08,70.0,749,Wolf Among Weeds IPA (2012),American IPA,240,16.0 +903,0.059000000000000004,60.0,549,Point the Way IPA (2012),American IPA,240,16.0 +904,0.046,15.0,548,Golden Road Hefeweizen (2012),Hefeweizen,240,16.0 +905,0.07,11.0,2587,Vanilla Porter,American Porter,39,16.0 +906,0.07,70.0,1109,Descender IPA,American IPA,464,12.0 +907,0.06,18.0,1108,Sweet As Pacific Ale,American Pale Wheat Ale,464,12.0 +908,0.055999999999999994,36.0,1000,Good People Pale Ale,American Pale Ale (APA),478,12.0 +909,0.09300000000000001,103.0,312,Snake Handler Double IPA,American Double / Imperial IPA,478,12.0 +910,0.06,54.0,311,Coffee Oatmeal Stout,Oatmeal Stout,478,12.0 +911,0.06,64.0,309,Good People IPA,American IPA,478,12.0 +912,0.057999999999999996,36.0,308,Good People American Brown Ale,American Brown Ale,478,12.0 +913,0.055,40.0,2205,Mountain Rescue Pale Ale,American Pale Ale (APA),194,12.0 +914,0.059000000000000004,55.0,2198,Goose Island India Pale Ale,American IPA,196,12.0 +915,0.054000000000000006,30.0,2457,312 Urban Pale Ale,American Pale Ale (APA),88,16.0 +916,0.054000000000000006,30.0,2202,312 Urban Pale Ale,American Pale Ale (APA),88,12.0 +917,0.042,18.0,2201,312 Urban Wheat Ale,American Pale Wheat Ale,88,16.0 +918,0.042,18.0,1829,312 Urban Wheat Ale,American Pale Wheat Ale,88,12.0 +919,0.042,20.0,581,312 Urban Wheat Ale (2012),American Pale Wheat Ale,88,12.0 +920,0.052000000000000005,19.0,1383,Beaver Logger,American Pale Lager,420,12.0 +921,0.05,,477,White Water Wheat,American Pale Wheat Ale,536,12.0 +922,0.052000000000000005,,476,Grand Canyon American Pilsner,American Pilsner,536,12.0 +923,0.054000000000000006,,143,Grand Canyon Sunset Amber Ale,American Amber / Red Ale,536,12.0 +924,,,142,Black Iron India Pale Ale,American IPA,536,12.0 +925,0.043,21.0,2129,Monarch Classic American Wheat,American Pale Wheat Ale,213,12.0 +926,0.049,21.0,2127,Sir William's English Brown Ale,English Brown Ale,213,12.0 +927,0.055,35.0,2126,Lakefire Rye Pale Ale,American Pale Ale (APA),213,12.0 +928,0.053,22.0,2303,Beer Agent Re-Ignition,American Blonde Ale,165,16.0 +929,0.057,18.0,1990,Cherry Ale,Fruit / Vegetable Beer,165,16.0 +930,0.055999999999999994,33.0,1702,Bourbon Barrel Aged Coconut Porter,American Porter,165,16.0 +931,0.062,60.0,1701,Great Crescent IPA,American IPA,165,16.0 +932,0.057,27.0,1700,Aurora Lager,Dortmunder / Export Lager,165,16.0 +933,0.053,22.0,1699,Great Crescent Blonde Ale,American Blonde Ale,165,16.0 +934,0.055999999999999994,33.0,1269,Great Crescent Coconut Porter,American Porter,165,16.0 +935,0.057,25.0,930,Great Crescent Oktoberfest Lager,Märzen / Oktoberfest,165,16.0 +936,0.045,36.0,649,Great Crescent Brown Ale,American Brown Ale,165,16.0 +937,0.057,18.0,639,Cherry Ale (1),Fruit / Vegetable Beer,165,16.0 +938,0.057,27.0,626,Aurora Lager (2011),Dortmunder / Export Lager,165,16.0 +939,0.06,25.0,615,Frosted Fields Winter Wheat,American Dark Wheat Ale,165,16.0 +940,0.051,13.0,478,Great Crescent Belgian Style Wit,Witbier,165,16.0 +941,0.075,65.0,455,Bourbon's Barrel Stout,American Stout,165,16.0 +942,0.08,66.0,442,Great Crescent Stout,English Stout,165,16.0 +943,0.055999999999999994,33.0,441,Great Crescent Coconut Porter (2012),American Porter,165,16.0 +944,0.057,23.0,440,Great Crescent Dark Lager,Euro Dark Lager,165,16.0 +945,0.042,26.0,439,Great Crescent Mild Ale,English Dark Mild Ale,165,16.0 +946,0.062,60.0,436,Great Crescent IPA (2011),American IPA,165,16.0 +947,0.053,22.0,389,Great Crescent Blonde Ale (2011),American Blonde Ale,165,16.0 +948,0.05,,2650,Denver Pale Ale (Artist Series No. 1),American Pale Ale (APA),6,12.0 +949,0.087,,2649,Hibernation Ale,Old Ale,6,12.0 +950,0.061,,2648,Whitewater,American Pale Wheat Ale,6,12.0 +951,0.071,,2647,Rumble,American IPA,6,12.0 +952,0.083,,2646,Orabelle,Tripel,6,12.0 +953,0.05,,2645,Lasso,American IPA,6,12.0 +954,0.095,75.0,2644,Yeti Imperial Stout,Russian Imperial Stout,6,12.0 +955,0.073,,2643,Colette,Saison / Farmhouse Ale,6,12.0 +956,0.071,,2642,Titan IPA,American IPA,6,12.0 +957,0.045,15.0,404,Black Star Double Hopped Golden Lager (24 oz.),American Pale Lager,543,24.0 +958,0.045,15.0,164,Black Star Double Hopped Golden Lager (12 oz.),American Pale Lager,543,12.0 +959,0.052000000000000005,49.0,1923,Commotion APA,American Pale Ale (APA),269,12.0 +960,0.052000000000000005,,1922,Southern Drawl Pale Lager,American Pale Lager,269,12.0 +961,0.05,5.0,1604,Chickawawa Lemonale,Fruit / Vegetable Beer,365,12.0 +962,0.07,22.0,1574,Barrel Aged Farmer,American Brown Ale,365,16.0 +963,0.048,,1446,Great River Golden Ale,American Blonde Ale,365,12.0 +964,0.048,,1275,Dirty Blonde Chocolate Ale,American Blonde Ale,365,12.0 +965,0.048,20.0,1244,Dos Pistolas,Vienna Lager,365,12.0 +966,0.05,30.0,1064,Owney Irish Style Red Ale,Irish Red Ale,365,16.0 +967,0.06,,1028,Aaah Bock Lager,Vienna Lager,365,16.0 +968,0.055,10.0,865,Widespread Wit,Witbier,365,16.0 +969,0.054000000000000006,30.0,864,Roller Dam Red Ale,Irish Red Ale,365,16.0 +970,0.053,48.0,863,483 Pale Ale,American Pale Ale (APA),365,16.0 +971,0.09,99.0,672,Hop A Potamus Double Dark Rye Pale Ale,Rye Beer,365,16.0 +972,0.07,22.0,655,Farmer Brown Ale,American Brown Ale,365,16.0 +973,0.07,70.0,540,Big Cock IPA,American IPA,365,16.0 +974,0.059000000000000004,25.0,539,Oktoberfest,Märzen / Oktoberfest,365,16.0 +975,0.048,25.0,517,40th Annual Bix Street Fest Copper Ale (Current),American Amber / Red Ale,365,16.0 +976,0.06,36.0,371,Redband Stout,American Stout,365,16.0 +977,0.053,48.0,190,483 Pale Ale (2010),American Pale Ale (APA),365,16.0 +978,0.054000000000000006,30.0,189,Roller Dam Red Ale (2010),Irish Red Ale,365,16.0 +979,0.05,30.0,1106,Pablo Beach Pale Ale,American Pale Ale (APA),466,12.0 +980,0.057,44.0,2314,Wild Trail Pale Ale,American Pale Ale (APA),156,12.0 +981,0.067,71.0,2313,Mothman Black IPA,American Black Ale,156,12.0 +982,0.057999999999999996,,2461,Autumn Winds Fest Beer,Märzen / Oktoberfest,86,16.0 +983,0.085,69.0,2044,Captain's Daughter,American Double / Imperial IPA,86,12.0 +984,0.057999999999999996,,1567,Autumn Winds,Märzen / Oktoberfest,379,16.0 +985,0.06,54.0,1505,Flying Jenny Extra Pale Ale,American Pale Ale (APA),379,12.0 +986,0.04,20.0,1186,Hazy Day Belgian-Style Wit,Witbier,379,16.0 +987,0.055,,1185,Bring Back the Beach Blonde Ale,American Blonde Ale,379,16.0 +988,0.06,34.0,984,Leaning Chimney Smoked Porter,American Porter,379,16.0 +989,0.06,54.0,693,Flying Jenny Extra Pale Ale (2012),American Pale Ale (APA),379,12.0 +990,0.049,22.0,631,Flagship Ale,Cream Ale,379,12.0 +991,0.045,6.0,2375,Mr. Blue Sky,American Pale Wheat Ale,124,16.0 +992,0.065,,2143,3 Scrooges,Winter Warmer,124,16.0 +993,0.05,25.0,2142,Screamin’ Pumpkin,Pumpkin Ale,124,16.0 +994,0.05,35.0,2141,Grand Trunk Bohemian Pils,Czech Pilsener,124,16.0 +995,0.065,25.0,2140,El Rojo,American Amber / Red Ale,124,16.0 +996,0.075,,2139,Norm's Raggedy Ass IPA,American IPA,124,16.0 +997,0.05,35.0,2138,Grind Line,American Pale Ale (APA),124,16.0 +998,0.04,55.0,2007,Norm's Gateway IPA,American IPA,124,12.0 +999,0.09,,1570,Lemon Shandy Tripel,Tripel,124,16.0 +1000,0.063,43.0,2339,Little Red Cap,Altbier,144,12.0 +1001,0.069,67.0,1857,Supergoose IPA,American IPA,290,12.0 +1002,0.047,,1440,Hale's Pale American Ale,American Pale Ale (APA),290,12.0 +1003,0.07,,1753,Heyoka IPA,American IPA,327,16.0 +1004,0.08,,1448,Guest Lager,American Double / Imperial Pilsner,327,16.0 +1005,0.057,,1134,Pony Pilsner,German Pilsener,327,16.0 +1006,0.055,,1066,Akari Shogun American Wheat Ale,American Pale Wheat Ale,327,16.0 +1007,0.06,,849,Meat Wave,English India Pale Ale (IPA),327,16.0 +1008,0.06,,352,Over Ale,American Brown Ale,327,16.0 +1009,0.042,,149,Gossamer Golden Ale,American Blonde Ale,327,16.0 +1010,0.052000000000000005,,148,Daisy Cutter Pale Ale,American Pale Ale (APA),327,16.0 +1011,0.07,40.0,2026,Pursuit,American IPA,248,12.0 +1012,0.052000000000000005,18.0,1361,Half Full Bright Ale,American Blonde Ale,248,12.0 +1013,0.046,17.0,1016,Orange Wheat,Fruit / Vegetable Beer,476,12.0 +1014,0.043,14.0,1015,Hangar 24 Helles Lager,Munich Helles Lager,476,12.0 +1015,0.075,70.0,1677,The Great Return,American IPA,343,16.0 +1016,0.044000000000000004,18.0,1331,Hardywood Cream Ale,Cream Ale,343,12.0 +1017,0.055999999999999994,55.0,1270,Capital Trail Pale Ale,American Pale Ale (APA),343,12.0 +1018,0.052000000000000005,15.0,2059,UFO Gingerland,Herbed / Spiced Beer,234,12.0 +1019,0.062,45.0,1653,The Long Thaw White IPA,American White IPA,234,12.0 +1020,0.048,,1558,Honey Cider,Cider,234,12.0 +1021,0.05,28.0,1380,Harpoon Summer Beer,Kölsch,234,12.0 +1022,0.059000000000000004,42.0,1379,Harpoon IPA,American IPA,234,12.0 +1023,0.059000000000000004,20.0,1340,UFO Pumpkin,Pumpkin Ale,234,12.0 +1024,0.055,30.0,1313,Harpoon Octoberfest,Märzen / Oktoberfest,234,12.0 +1025,0.059000000000000004,42.0,770,Harpoon IPA (2012),American IPA,234,12.0 +1026,0.05,28.0,769,Harpoon Summer Beer (2012),Kölsch,234,12.0 +1027,0.048,10.0,610,UFO White,American Pale Wheat Ale,234,12.0 +1028,0.05,28.0,192,Harpoon Summer Beer (2010),Kölsch,234,12.0 +1029,0.059000000000000004,42.0,126,Harpoon IPA (2010),American IPA,234,12.0 +1030,,,506,Great Falls Select Pale Ale,American Blonde Ale,535,12.0 +1031,0.048,,181,Beltian White,Witbier,535,12.0 +1032,0.049,,2183,Kaua'i Golden Ale,American Blonde Ale,204,12.0 +1033,0.054000000000000006,,2182,Sunset Amber,American Pale Ale (APA),204,12.0 +1034,0.064,,2181,Hapa Brown Ale,American Brown Ale,204,19.2 +1035,0.064,,2180,Hapa Brown Ale,American Brown Ale,204,12.0 +1036,0.083,,2179,Southern Cross,Flanders Red Ale,204,19.2 +1037,0.076,65.0,1895,Groupe G,Belgian IPA,280,16.0 +1038,0.062,40.0,1894,Pt. Bonita Rustic Lager,American Pale Lager,280,16.0 +1039,0.08800000000000001,77.0,1893,Hill 88 Double IPA,American Double / Imperial IPA,280,16.0 +1040,0.07200000000000001,45.0,990,Loose Cannon,American IPA,479,12.0 +1041,0.06,30.0,989,AARGHtoberfest!,Märzen / Oktoberfest,479,12.0 +1042,0.06,,988,Davy Jones Lager,Cream Ale,479,12.0 +1043,0.063,30.0,1351,Grazias,Cream Ale,423,16.0 +1044,0.08,86.0,1346,Habitus IPA,American IPA,423,16.0 +1045,0.099,85.0,904,Ex Umbris Rye Imperial Stout,American Double / Imperial Stout,423,16.0 +1046,0.063,21.0,2295,The Golden One,American Pilsner,168,12.0 +1047,0.07,68.0,2294,The Power of Zeus,American Pale Ale (APA),168,12.0 +1048,0.044000000000000004,22.0,824,Tonganoxie Honey Wheat,American Pale Wheat Ale,500,12.0 +1049,0.045,,616,Oregon Trail Unfiltered Raspberry Wheat,Fruit / Vegetable Beer,500,12.0 +1050,0.055,,96,Annie's Amber Ale,American Amber / Red Ale,500,12.0 +1051,0.045,32.0,1615,The 12th Can™,American Pale Ale (APA),362,16.0 +1052,0.055,34.0,889,Hilliard's Pils,Czech Pilsener,362,16.0 +1053,0.049,20.0,724,Hilliard's Blonde,American Blonde Ale,362,16.0 +1054,0.055,60.0,497,Hilliard's Amber Ale,American Amber / Red Ale,362,16.0 +1055,0.066,30.0,496,Hilliard's Saison,Saison / Farmhouse Ale,362,16.0 +1056,0.042,,1652,White Cap White IPA,American White IPA,349,16.0 +1057,0.042,25.0,1835,Provision,Saison / Farmhouse Ale,297,12.0 +1058,0.047,28.0,1834,One Nut Brown,American Brown Ale,297,12.0 +1059,0.057999999999999996,45.0,1833,Hop Farm IPA,American IPA,297,12.0 +1060,0.049,20.0,2195,Double D Blonde,American Blonde Ale,198,12.0 +1061,0.078,60.0,1605,Festeroo Winter Ale,American Strong Ale,198,12.0 +1062,0.063,70.0,1543,Proxima IPA,American IPA,198,12.0 +1063,0.049,20.0,1390,Double D Blonde (2013),American Blonde Ale,198,12.0 +1064,0.048,13.0,1354,541 American Lager,American Pale Lager,198,12.0 +1065,0.065,90.0,1353,Alphadelic IPA,American IPA,198,12.0 +1066,0.065,90.0,499,Alphadelic IPA (2011),American IPA,198,12.0 +1067,0.049,20.0,498,Double D Blonde (2011),American Blonde Ale,198,12.0 +1068,0.07,,1501,Green House India Pale Ale,American IPA,395,12.0 +1069,0.051,,1004,The One They Call Zoe,American Pale Lager,395,12.0 +1070,0.051,40.0,502,Alteration,Altbier,395,12.0 +1071,0.06,50.0,501,Pale Dog,American Pale Ale (APA),395,12.0 +1072,0.065,,2357,Porter Culture,American Porter,136,12.0 +1073,0.068,,2483,Hard Cider,Cider,80,16.0 +1074,0.027000000000000003,21.0,2482,Totally Radler,Radler,80,16.0 +1075,0.039,20.0,2400,Nonstop Hef Hop,American Pale Wheat Ale,80,16.0 +1076,0.039,20.0,2399,Nonstop Hef Hop,American Pale Wheat Ale,80,16.0 +1077,0.039,20.0,2398,Nonstop Hef Hop,American Pale Wheat Ale,80,16.0 +1078,0.039,20.0,2397,Nonstop Hef Hop,American Pale Wheat Ale,80,16.0 +1079,0.039,20.0,2396,Nonstop Hef Hop,American Pale Wheat Ale,80,16.0 +1080,0.039,20.0,2395,Nonstop Hef Hop,American Pale Wheat Ale,80,16.0 +1081,0.039,20.0,2394,Nonstop Hef Hop,American Pale Wheat Ale,80,16.0 +1082,0.039,20.0,2393,Nonstop Hef Hop,American Pale Wheat Ale,80,16.0 +1083,0.039,20.0,2392,Nonstop Hef Hop,American Pale Wheat Ale,80,16.0 +1084,0.039,20.0,2391,Nonstop Hef Hop,American Pale Wheat Ale,80,16.0 +1085,0.039,20.0,2390,Nonstop Hef Hop,American Pale Wheat Ale,80,16.0 +1086,0.039,20.0,2389,Nonstop Hef Hop,American Pale Wheat Ale,80,16.0 +1087,0.057999999999999996,60.0,2388,Rise Up Red,American Amber / Red Ale,80,16.0 +1088,0.057999999999999996,35.0,2200,Survival Stout,American Stout,80,16.0 +1089,0.066,75.0,2199,Hopworks IPA,American IPA,80,16.0 +1090,0.073,70.0,2193,Abominable Winter Ale,American Strong Ale,80,16.0 +1091,0.06,60.0,1398,Pigwar White India Pale Ale,American White IPA,80,16.0 +1092,0.057999999999999996,60.0,1085,Rise-Up Red (2014),American Amber / Red Ale,80,16.0 +1093,0.073,70.0,916,Abominable Winter Ale (2012),American Strong Ale,80,16.0 +1094,0.051,32.0,658,HUB Lager,Czech Pilsener,80,16.0 +1095,0.066,75.0,653,Hopworks IPA (2012),American IPA,80,16.0 +1096,0.055999999999999994,,2385,Watermelon Wheat,American Pale Wheat Ale,120,12.0 +1097,0.051,17.0,2384,Laka Laka Pineapple,Hefeweizen,120,12.0 +1098,0.06,,2383,Oktoberfest,Märzen / Oktoberfest,120,16.0 +1099,0.065,,1251,Trail Maker Pale Ale,American Pale Ale (APA),445,12.0 +1100,0.055,,1250,Action Man Lager,Vienna Lager,445,12.0 +1101,0.068,90.0,1903,Let It Ride IPA,American IPA,277,12.0 +1102,0.065,22.0,1691,Stir Crazy Winter Ale,Winter Warmer,277,12.0 +1103,0.05,10.0,1555,Sweet Yamma Jamma Ale,Fruit / Vegetable Beer,277,12.0 +1104,0.046,27.0,1115,Shenanigans Summer Ale,American Pale Wheat Ale,277,12.0 +1105,0.065,80.0,729,Midnight Ryder,American Black Ale,277,12.0 +1106,0.054000000000000006,45.0,728,Day Tripper Pale Ale,American Pale Ale (APA),277,12.0 +1107,0.048,32.0,2350,Oklahoma Suks,American Amber / Red Ale,140,12.0 +1108,0.055,42.0,2301,Power & Light,American Pale Ale (APA),140,12.0 +1109,0.059000000000000004,27.0,1904,White Rabbit ,Witbier,140,12.0 +1110,0.057999999999999996,58.0,2609,Tribute,American Pale Ale (APA),23,12.0 +1111,0.07,75.0,2038,Infamous IPA,American IPA,242,12.0 +1112,0.055,20.0,1774,Hijack,Cream Ale,242,12.0 +1113,0.045,20.0,559,Jon Boat Coastal Ale,American Blonde Ale,527,12.0 +1114,0.068,55.0,558,I-10 IPA,American IPA,527,12.0 +1115,0.053,28.0,553,People's Pale Ale,American Pale Ale (APA),527,12.0 +1116,0.049,,2376,Summer Ale,American Blonde Ale,123,12.0 +1117,,,1784,Appreciation Ale,American IPA,316,16.0 +1118,0.052000000000000005,18.0,2673,House Lager,Keller Bier / Zwickel Bier,2,16.0 +1119,0.048,15.0,2672,Leisure Time,American Pale Lager,2,12.0 +1120,0.07200000000000001,80.0,2671,Excess IPL,American India Pale Lager,2,16.0 +1121,0.067,65.0,2670,Hoponius Union,American India Pale Lager,2,12.0 +1122,0.049,45.0,2669,Calyptra,American India Pale Lager,2,12.0 +1123,0.05,,1405,Helen's Blend,Cider,416,12.0 +1124,0.051,,823,Jack's Hard Cider,Cider,416,12.0 +1125,0.055,37.0,1793,Thunder Ann,American Pale Ale (APA),312,12.0 +1126,0.055,,2453,Razz Wheat,Fruit / Vegetable Beer,92,12.0 +1127,0.065,,2363,Hop Ryot,American IPA,92,12.0 +1128,0.07,,689,Mystic Mama IPA,American IPA,92,12.0 +1129,0.05,,688,Firefly Amber Ale,American Amber / Red Ale,92,12.0 +1130,0.067,,687,Chomolungma Honey Nut Brown Ale,English Brown Ale,92,12.0 +1131,0.069,,2408,Welcome to Scoville,American IPA,114,12.0 +1132,,,2595,Bastian,American Strong Ale,32,12.0 +1133,0.045,,2480,Healani,Hefeweizen,32,12.0 +1134,0.055,,1525,Yabba Dhaba Chai Tea Porter,American Porter,32,12.0 +1135,0.055,,1524,A Capella Gluten Free Pale Ale,American Pale Ale (APA),32,12.0 +1136,0.06,,1523,Casper White Stout,American Blonde Ale,32,12.0 +1137,0.06,,1254,JP's Ould Sod Irish Red IPA,American IPA,32,12.0 +1138,0.05,15.0,2060,Weize Guy,Hefeweizen,233,12.0 +1139,0.05,50.0,469,Fox Tail Gluten Free Ale,American Pale Ale (APA),233,12.0 +1140,0.09300000000000001,90.0,468,Hop Box Imperial IPA,American Double / Imperial IPA,233,12.0 +1141,0.052000000000000005,15.0,467,Joseph James American Lager,American Adjunct Lager,233,12.0 +1142,0.071,,2163,Sucha Much IPA,American IPA,208,12.0 +1143,0.075,24.0,2162,Lewbricator Wheat Dopplebock ,Doppelbock,208,12.0 +1144,0.052000000000000005,16.0,2374,Weisse Versa (2012),Hefeweizen,125,12.0 +1145,0.057999999999999996,25.0,1560,Mother in Lager,Munich Dunkel Lager,125,12.0 +1146,0.055,40.0,1557,Weekend Warrior Pale Ale,American Pale Ale (APA),125,12.0 +1147,0.055,25.0,1458,Karbachtoberfest,Märzen / Oktoberfest,125,12.0 +1148,0.047,20.0,1235,Love Street Summer Seasonal (2014),Kölsch,125,12.0 +1149,0.066,20.0,1068,Barn Burner Saison,Saison / Farmhouse Ale,125,12.0 +1150,0.095,85.0,666,Rodeo Clown Double IPA,American Double / Imperial IPA,125,12.0 +1151,0.049,45.0,465,Sympathy for the Lager,American Amber / Red Lager,125,12.0 +1152,0.052000000000000005,15.0,464,Weisse Versa,Hefeweizen,125,12.0 +1153,0.066,70.0,463,Hopadillo India Pale Ale,American IPA,125,12.0 +1154,0.057,19.0,1678,KelSo Nut Brown Lager,Euro Dark Lager,342,12.0 +1155,0.06,64.0,1572,KelSo India Pale Ale,American IPA,342,12.0 +1156,0.055,23.0,1348,KelSo Pilsner,Czech Pilsener,342,12.0 +1157,0.057999999999999996,,1193,Skilak Scottish Ale,Scottish Ale,458,12.0 +1158,0.05,15.0,1187,Peninsula Brewers Reserve (PBR),American Blonde Ale,458,12.0 +1159,0.068,,349,Sunken Island IPA,American IPA,458,12.0 +1160,0.057999999999999996,,348,Skilak Scottish Ale (2011),Scottish Ale,458,12.0 +1161,0.065,11.0,760,Cold Smoke Scotch Ale (2007),Scotch Ale / Wee Heavy,510,16.0 +1162,0.065,65.0,759,Double Haul IPA (2009),American IPA,510,16.0 +1163,0.065,65.0,758,Double Haul IPA (2006),American IPA,510,16.0 +1164,0.055,50.0,87,Eddy Out Pale Ale,American Pale Ale (APA),510,16.0 +1165,0.065,65.0,86,Double Haul IPA,American IPA,510,16.0 +1166,0.065,11.0,85,Cold Smoke Scotch Ale,Scotch Ale / Wee Heavy,510,16.0 +1167,,,2472,U. P. Witbier,Witbier,84,12.0 +1168,,,779,November Gale Pale Ale,American Pale Ale (APA),84,12.0 +1169,,,364,Olde Ore Dock Scottish Ale,Scottish Ale,84,12.0 +1170,,,60,Widow Maker Black Ale,American Brown Ale,84,12.0 +1171,,,59,Lift Bridge Brown Ale,American Brown Ale,84,12.0 +1172,,,58,Pick Axe Blonde Ale,American Blonde Ale,84,12.0 +1173,,,57,Red Jacket Amber Ale,American Amber / Red Ale,84,12.0 +1174,0.051,,2436,Amber Ale,American Amber / Red Ale,102,12.0 +1175,0.055,,1706,King Street Pilsner,Czech Pilsener,102,12.0 +1176,0.06,70.0,1667,King Street IPA,American IPA,102,12.0 +1177,0.057,10.0,1666,King Street Hefeweizen,Hefeweizen,102,12.0 +1178,0.049,,1665,King Street Blonde Ale,American Blonde Ale,102,12.0 +1179,0.063,65.0,2460,India Pale Ale,American IPA,87,16.0 +1180,0.048,11.0,2459,Blackberry Wheat,American Pale Wheat Ale,87,16.0 +1181,0.046,18.0,1274,Longboard Island Lager,American Amber / Red Lager,439,24.0 +1182,0.046,18.0,1220,Longboard Island Lager,American Amber / Red Lager,439,16.0 +1183,0.046,18.0,1070,Longboard Island Lager,American Amber / Red Lager,439,12.0 +1184,0.046,18.0,590,Longboard Island Lager,American Amber / Red Lager,439,12.0 +1185,0.04,9.0,781,Choc Beer (2003),American Dark Wheat Ale,505,12.0 +1186,0.08,,1637,Bellingham Beer Week 2013 Collaboration,Belgian Strong Dark Ale,354,16.0 +1187,0.054000000000000006,15.0,1741,A Slice of Hefen,Hefeweizen,332,16.0 +1188,0.07200000000000001,100.0,664,Elevated IPA,American IPA,332,16.0 +1189,0.066,30.0,392,Rumspringa Golden Bock,Maibock / Helles Bock,545,12.0 +1190,0.048,28.0,195,Lancaster German Style Kölsch,Kölsch,545,12.0 +1191,0.045,,2547,Beach Cruiser,Hefeweizen,59,12.0 +1192,0.068,,2493,I.P. Eh!,American IPA,59,12.0 +1193,0.05,,2492,Schoolhouse Honey,American Amber / Red Ale,59,12.0 +1194,0.055,,2491,10 Degrees of Separation,English Brown Ale,59,12.0 +1195,0.05,12.0,2108,Laughing Dog Cream Ale,Cream Ale,218,12.0 +1196,0.048,9.0,1397,Two-One Niner,American Pilsner,218,12.0 +1197,0.064,66.0,1396,Laughing Dog IPA,American IPA,218,12.0 +1198,0.064,95.0,1675,Madra Allta,American IPA,345,12.0 +1199,0.055999999999999994,70.0,1249,Duluchan India Pale Ale,American IPA,345,12.0 +1200,0.05,,1445,Lazy Monk Bohemian Pilsner,Czech Pilsener,406,16.0 +1201,0.051,,475,Yellowstone Golden Ale,Kölsch,537,12.0 +1202,0.057,,474,Tumbleweed IPA,American IPA,537,12.0 +1203,0.05,,473,Lewis & Clark Amber Ale,American Amber / Red Ale,537,12.0 +1204,0.05,,472,Miner's Gold Hefeweizen,Hefeweizen,537,12.0 +1205,0.057,,471,Back Country Scottish Ale,Scottish Ale,537,12.0 +1206,0.052000000000000005,30.0,2036,Getaway,German Pilsener,244,16.0 +1207,0.06,30.0,1168,Farm Girl Saison,Saison / Farmhouse Ale,244,16.0 +1208,0.057999999999999996,40.0,1832,Adam's Stout,American Stout,298,12.0 +1209,0.057,42.0,1688,American Hero,American Amber / Red Ale,298,12.0 +1210,0.052000000000000005,20.0,1687,Schweet Ale,Fruit / Vegetable Beer,298,12.0 +1211,0.065,75.0,1686,Irregardless IPA,American IPA,298,12.0 +1212,0.057,40.0,2434,Peach Pale Ale,American Pale Ale (APA),104,12.0 +1213,0.06,,2332,Deadeye Jack,American Porter,149,12.0 +1214,0.075,,2330,Pistols at Dawn,American Stout,149,16.0 +1215,0.057,47.0,2329,Peacemaker Pale Ale,American Pale Ale (APA),149,12.0 +1216,0.057999999999999996,11.0,2327,Shotgun Betty,Hefeweizen,149,12.0 +1217,0.061,30.0,2326,Sweet Josie,American Brown Ale,149,12.0 +1218,0.059000000000000004,42.0,1926,Long Trail IPA,English India Pale Ale (IPA),268,12.0 +1219,0.046,30.0,1924,Long Trail Ale,American Amber / Red Ale,268,12.0 +1220,0.07200000000000001,33.0,1090,Double Bag,Altbier,268,16.0 +1221,0.04,8.0,574,Blackbeary Wheat,Fruit / Vegetable Beer,268,12.0 +1222,0.046,30.0,573,Long Trail Ale (1),Altbier,268,12.0 +1223,0.046,8.0,2584,Gose,Gose,41,16.0 +1224,0.048,20.0,2583,Vermont Pilsner,German Pilsener,41,16.0 +1225,0.055,,2582,Mosaic Single Hop IPA,American IPA,41,16.0 +1226,0.045,,2581,Lost Galaxy,American IPA,41,16.0 +1227,0.062,65.0,1309,Face Plant IPA,American IPA,430,12.0 +1228,0.055999999999999994,55.0,1308,Rhino Chasers Pilsner,Czech Pilsener,430,12.0 +1229,0.052000000000000005,29.0,1571,Slow Hand Stout,American Stout,377,16.0 +1230,0.062,,1204,Hips Don't Lie,Hefeweizen,456,16.0 +1231,0.052000000000000005,,1122,Ride Again Pale Ale,American Pale Ale (APA),456,16.0 +1232,0.048,,700,The Farmer's Daughter,American Blonde Ale,456,16.0 +1233,0.038,18.0,2033,Pub Ale,English Dark Mild Ale,245,12.0 +1234,0.051,31.0,2032,Ballistic Blonde,Belgian Pale Ale,245,12.0 +1235,0.054000000000000006,,2311,Knotty Pine,American Pale Ale (APA),158,12.0 +1236,0.053,20.0,1153,Lumberyard Pilsner,American Pilsner,158,12.0 +1237,0.061,,355,Lumberyard IPA,American IPA,158,12.0 +1238,0.057999999999999996,,125,Lumberyard Red Ale,American Amber / Red Ale,158,12.0 +1239,0.05,,962,Mac's Highlander Pale Ale (2000),American Pale Ale (APA),485,12.0 +1240,0.051,32.0,961,Mac's Scottish Style Amber Ale (2000),American Amber / Red Ale,485,12.0 +1241,0.05,,1475,Macon Progress Ale,American Pale Ale (APA),400,12.0 +1242,0.055,,1008,Macon History Ale,American Brown Ale,400,12.0 +1243,0.099,,2454,Galaxy High,American Double / Imperial IPA,91,12.0 +1244,0.043,18.0,2209,Sol Drifter,American Blonde Ale,91,12.0 +1245,0.085,,2133,Thunder Snow,Winter Warmer,91,12.0 +1246,0.079,18.0,1994,The Great Pumpcan,Fruit / Vegetable Beer,91,16.0 +1247,0.047,11.0,1816,LIFT,Kölsch,91,12.0 +1248,0.05,40.0,1815,SPRYE,American Pale Ale (APA),91,12.0 +1249,0.069,70.0,1126,Psychopathy,American IPA,91,12.0 +1250,0.07,32.0,1125,Gnarly Brown,American Brown Ale,91,12.0 +1251,0.06,30.0,1124,Happy Amber,American Amber / Red Ale,91,12.0 +1252,0.051,20.0,1813,#9,Fruit / Vegetable Beer,303,16.0 +1253,0.055,13.0,1113,Elder Betty,Hefeweizen,303,12.0 +1254,0.051,20.0,360,#9,Fruit / Vegetable Beer,303,12.0 +1255,0.042,,511,High Country Pilsner (Current),German Pilsener,534,12.0 +1256,0.065,,75,Epic IPA,American IPA,534,12.0 +1257,0.042,,74,Golden Trout Pilsner,German Pilsener,534,12.0 +1258,0.045,,73,Real McCoy Amber Ale (Current),American Amber / Red Ale,534,12.0 +1259,0.07200000000000001,,1628,Festivus (1),Winter Warmer,356,12.0 +1260,0.067,,1626,Manayunk Oktoberfest,Märzen / Oktoberfest,356,12.0 +1261,0.045,21.0,1625,Belgian Style Session Ale,Belgian Pale Ale,356,12.0 +1262,0.055,,1624,Manayunk IPA,American IPA,356,12.0 +1263,0.055,,1600,Yunkin' Punkin',Pumpkin Ale,356,12.0 +1264,0.05,18.0,1484,Summer Paradise,American Pale Wheat Ale,356,12.0 +1265,0.09,30.0,1356,Monk from the 'Yunk,Tripel,356,12.0 +1266,0.06,14.0,1355,Schuylkill Punch,Fruit / Vegetable Beer,356,12.0 +1267,0.085,85.0,1334,Dreamin' Double IPA,American Double / Imperial IPA,356,12.0 +1268,0.099,93.0,1674,Chaotic Double IPA,American Double / Imperial IPA,346,12.0 +1269,0.08,88.0,1673,Manzanita IPA,American IPA,346,12.0 +1270,0.06,25.0,1672,Riverwalk Blonde Ale,American Blonde Ale,346,12.0 +1271,0.095,49.0,1671,Gillespie Brown Ale,American Brown Ale,346,12.0 +1272,0.066,44.0,1670,Manzanita Pale Ale,American Pale Ale (APA),346,12.0 +1273,0.047,,1262,Marble Pilsner,German Pilsener,443,12.0 +1274,0.062,,845,Marble India Pale Ale,American IPA,443,12.0 +1275,0.07200000000000001,,1783,Toughcats IPA,American IPA,317,16.0 +1276,0.05,,1717,Tug Pale Ale,American Pale Ale (APA),317,16.0 +1277,0.099,,1716,Sexy Chaos,Russian Imperial Stout,317,16.0 +1278,0.063,,1516,Ace Hole American Pale Ale,American Pale Ale (APA),317,16.0 +1279,0.09699999999999999,,725,Cant Dog Imperial Pale Ale,American Double / Imperial IPA,317,16.0 +1280,0.05,20.0,2308,River House,Saison / Farmhouse Ale,161,16.0 +1281,0.065,47.0,2268,Pretzel Stout,American Stout,161,16.0 +1282,0.05,35.0,2197,Rubberneck Red,American Amber / Red Ale,161,16.0 +1283,0.08,,2120,The Imperial Texan,American Double / Imperial IPA,161,16.0 +1284,0.08,,1234,The Imperial Texan,American Double / Imperial IPA,161,12.0 +1285,0.05,,1233,Day Break 4-Grain Breakfast Beer,Rye Beer,161,16.0 +1286,0.05,,1232,River House Saison,Saison / Farmhouse Ale,161,12.0 +1287,0.065,,1231,There Will Be Stout,American Stout,161,12.0 +1288,0.065,60.0,1831,Our Legacy IPA,American IPA,299,12.0 +1289,0.042,,1359,Saranac Shandy,Shandy,299,12.0 +1290,0.065,60.0,1135,Our Legacy IPA,American IPA,299,16.0 +1291,0.051,,960,Saranac Golden Pilsener (2003),German Pilsener,299,12.0 +1292,0.045,,959,Saranac Adirondack Light (2002),Light Lager,299,12.0 +1293,0.045,,958,DAX Light (1998),Light Lager,299,12.0 +1294,0.048,,957,Saranac Traditional Lager (2000),American Pale Lager,299,12.0 +1295,0.047,,956,Pomegranate Wheat (2008),Fruit / Vegetable Beer,299,12.0 +1296,0.05,12.0,773,Blueberry Blonde Ale,American Blonde Ale,299,12.0 +1297,0.06,,686,Saranac White IPA,American IPA,299,12.0 +1298,0.047,,453,Saranac Summer Ale (2011),American Pale Wheat Ale,299,12.0 +1299,0.055,,150,Saranac Pale Ale (12 oz.),English Pale Ale,299,12.0 +1300,0.055,,133,Saranac Pale Ale (16 oz.),English Pale Ale,299,16.0 +1301,0.051,20.0,1578,Lahaina Town Brown,American Brown Ale,375,12.0 +1302,0.055,,1429,Pau Hana Pilsner,Czech Pilsener,375,12.0 +1303,0.05,,1271,Lemongrass Saison,Saison / Farmhouse Ale,375,12.0 +1304,0.07,,713,Aloha B’ak’tun,Belgian Strong Dark Ale,375,12.0 +1305,0.08199999999999999,,712,Liquid Breadfruit,Fruit / Vegetable Beer,375,12.0 +1306,0.06,24.0,690,Sobrehumano Palena'ole,American Amber / Red Ale,375,12.0 +1307,0.05,12.0,547,La Perouse White,Witbier,375,12.0 +1308,0.068,68.0,435,Flyin' HI.P.Hay,American IPA,375,12.0 +1309,0.055,15.0,313,Mana Wheat,American Pale Wheat Ale,375,12.0 +1310,0.045,18.0,33,Bikini Blonde Lager,Munich Helles Lager,375,12.0 +1311,0.057,30.0,32,CoCoNut Porter,American Porter,375,12.0 +1312,0.062,65.0,31,Big Swell IPA,American IPA,375,12.0 +1313,0.037000000000000005,34.0,1237,Pit Stop Chocolate Porter,American Porter,448,12.0 +1314,0.037000000000000005,21.0,1236,Pace Setter Belgian Style Wit,Witbier,448,12.0 +1315,0.037000000000000005,53.0,1047,Back in the Saddle Rye Pale Ale,American Pale Ale (APA),448,12.0 +1316,0.069,,1986,Bushwhacker Cider,Cider,254,16.0 +1317,0.069,,1985,Weim-R-Iner,Cider,254,16.0 +1318,0.069,,1984,Cherry Bomb,Cider,254,16.0 +1319,0.07200000000000001,75.0,2186,Tsunami IPA,American IPA,203,19.2 +1320,0.07200000000000001,75.0,2185,Tsunami IPA,American IPA,203,12.0 +1321,0.042,22.0,2184,Humpback Blonde Ale,American Blonde Ale,203,12.0 +1322,0.052000000000000005,27.0,2178,Hawaiian Crow Porter,American Porter,203,12.0 +1323,0.052000000000000005,23.0,2177,Volcano Red Ale,American Amber / Red Ale,203,12.0 +1324,0.054000000000000006,42.0,2176,Mauna Kea Pale Ale,American Pale Ale (APA),203,12.0 +1325,0.053,11.0,1508,Shark Bait,Fruit / Vegetable Beer,393,12.0 +1326,0.053,30.0,1507,Gator Tail Brown Ale,American Brown Ale,393,12.0 +1327,0.071,62.0,1506,Miami Vice IPA,American IPA,393,12.0 +1328,0.053,16.0,1325,Big Rod Coconut Ale,American Blonde Ale,393,12.0 +1329,0.055999999999999994,,174,Mickey Finn's Amber Ale,American Amber / Red Ale,552,12.0 +1330,0.063,61.0,2093,Pleasure Town,American IPA,223,12.0 +1331,0.063,61.0,1814,Pleasure Town IPA,American IPA,223,12.0 +1332,0.048,12.0,587,Snowshoe White Ale,Witbier,223,12.0 +1333,0.05,24.0,586,Kodiak Brown Ale,American Brown Ale,223,12.0 +1334,0.057,70.0,434,Sockeye Red IPA,American IPA,223,12.0 +1335,0.08,100.0,2668,Habitus (2014),American Double / Imperial IPA,3,16.0 +1336,0.075,85.0,2667,Solis,American IPA,3,16.0 +1337,0.06,24.0,2666,Jucundus,Wheat Ale,3,16.0 +1338,0.08,100.0,2664,Habitus,American Double / Imperial IPA,3,16.0 +1339,0.063,30.0,2663,Grazias,Cream Ale,3,16.0 +1340,0.057999999999999996,28.0,2662,Claritas,Kölsch,3,16.0 +1341,0.083,,2535,Vinyl Frontier,American Double / Imperial IPA,65,24.0 +1342,0.08,,2534,Disco Superfly,American IPA,65,24.0 +1343,0.075,,2533,Misty Mountain Hop,American IPA,65,24.0 +1344,0.075,,2532,One-Hit Wonderful,Belgian IPA,65,24.0 +1345,0.065,,2531,En Parfaite Harmonie,Saison / Farmhouse Ale,65,24.0 +1346,0.043,8.0,2530,Daft Funk,Berliner Weissbier,65,24.0 +1347,0.075,,2529,Love In An Ellavator,American IPA,65,24.0 +1348,0.053,,2528,Spin Doctor,American Pale Ale (APA),65,24.0 +1349,0.05,,1612,Keeper (Current),American Pilsner,363,12.0 +1350,0.068,,1611,Better Half,American IPA,363,12.0 +1351,0.048,,1273,SNO White Ale,Witbier,440,16.0 +1352,0.048,,365,BRIK Irish Red Ale,Irish Red Ale,440,16.0 +1353,,,273,AXL Pale Ale,American Pale Ale (APA),440,16.0 +1354,0.087,80.0,1884,Hop Freak,American Double / Imperial IPA,284,16.0 +1355,0.051,24.0,1272,Louie's Demise Amber Ale,American Amber / Red Ale,284,16.0 +1356,0.075,51.0,1080,Hop Happy,American IPA,284,16.0 +1357,0.065,20.0,932,Booyah Farmhouse Ale,Saison / Farmhouse Ale,284,16.0 +1358,0.092,,776,O-Gii,Witbier,284,16.0 +1359,0.048,18.0,172,Flaming Damsel Lager (2010),Vienna Lager,284,16.0 +1360,0.051,24.0,171,Louie’s Demise Immort-Ale (2010),American Amber / Red Ale,284,16.0 +1361,0.099,,2361,Axe Head Malt Liquor,American Malt Liquor,134,24.0 +1362,0.054000000000000006,,2359,Huber Bock (2014),Bock,134,16.0 +1363,0.04,,2358,Minhas Light (2012),Light Lager,134,12.0 +1364,0.05,,2282,Huber,American Pale Lager,134,12.0 +1365,0.062,,2281,Clear Creek Ice,American Pale Lager,134,16.0 +1366,0.062,,2280,Clear Creek Ice,American Pale Lager,134,12.0 +1367,0.055,,2279,Mountain Crest,American Pale Lager,134,16.0 +1368,0.055,,2278,Mountain Crest,American Pale Lager,134,12.0 +1369,0.055,,2277,Mountain Creek (2013),American Pale Lager,134,12.0 +1370,0.05,,2276,Boxer,American Adjunct Lager,134,24.0 +1371,0.042,,2275,Boxer Light,Light Lager,134,12.0 +1372,0.055,,2274,Boxer Ice,American Adjunct Lager,134,12.0 +1373,0.05,,2273,Boxer,American Adjunct Lager,134,12.0 +1374,0.05,,2442,Cortez Gold,Belgian Pale Ale,98,32.0 +1375,0.068,66.0,2441,Mission IPA,American IPA,98,32.0 +1376,0.048,44.0,1460,El Conquistador Extra Pale Ale,American Pale Ale (APA),98,32.0 +1377,0.092,75.0,1459,Shipwrecked Double IPA,American Double / Imperial IPA,98,32.0 +1378,0.04,,1476,Squeaky Bike Nut Brown Ale,American Brown Ale,399,16.0 +1379,0.04,,902,Dead Horse Amber,American Pale Wheat Ale,399,16.0 +1380,0.04,,645,Rocket Bike American Lager,California Common / Steam Beer,399,16.0 +1381,0.04,,644,Johnny's American IPA,American IPA,399,16.0 +1382,0.055,,337,Boneshaker Brown Ale,English Brown Ale,547,24.0 +1383,0.055999999999999994,,336,Iron Mike Pale Ale,American Pale Ale (APA),547,24.0 +1384,0.042,,2236,Monkadelic,American Pale Ale (APA),189,12.0 +1385,0.075,85.0,2159,City of the Sun,American IPA,209,16.0 +1386,0.068,75.0,2157,Booming Rollers,American IPA,209,16.0 +1387,0.052000000000000005,50.0,2156,Oneida,American Pale Ale (APA),209,16.0 +1388,0.067,75.0,2154,Aurora ,American Amber / Red Ale,209,16.0 +1389,0.055,30.0,1495,Lomaland,Saison / Farmhouse Ale,209,16.0 +1390,0.047,46.0,1494,Fortunate Islands,American Pale Wheat Ale,209,16.0 +1391,0.057999999999999996,40.0,1493,Black House,American Stout,209,16.0 +1392,0.065,115.0,1492,Blazing World,American Amber / Red Ale,209,16.0 +1393,0.05,,327,Wapiti Amber Ale,American Amber / Red Ale,549,12.0 +1394,0.054000000000000006,,719,Sweet Georgia Brown,American Brown Ale,514,16.0 +1395,0.087,,718,Rich Man's IIPA,American Double / Imperial IPA,514,16.0 +1396,0.057999999999999996,,717,Monkey Paw Oatmeal Pale Ale,American Pale Ale (APA),514,16.0 +1397,0.055999999999999994,28.0,1907,Montauk Summer Ale,American Blonde Ale,276,12.0 +1398,0.06,49.0,1906,Driftwood Ale,Extra Special / Strong Bitter (ESB),276,12.0 +1399,0.055999999999999994,18.0,1756,When Helles Freezes Over,Munich Helles Lager,326,12.0 +1400,0.049,24.0,1617,Morgan Street Oktoberfest,Märzen / Oktoberfest,326,12.0 +1401,0.047,14.0,1052,Honey Wheat,American Pale Wheat Ale,326,12.0 +1402,0.046,24.0,1051,Black Bear Dark Lager,Schwarzbier,326,12.0 +1403,0.05,35.0,1046,Golden Pilsner,German Pilsener,326,12.0 +1404,0.052000000000000005,21.0,2413,Cali Creamin',Cream Ale,111,12.0 +1405,0.05,,419,Second Wind Pale Ale,American Pale Ale (APA),540,12.0 +1406,0.05,,408,Sunny Haze,Hefeweizen,540,12.0 +1407,0.052000000000000005,21.0,2237,Towhead,American Blonde Ale,188,12.0 +1408,0.07,70.0,2208,Lil' Helper,American IPA,188,12.0 +1409,0.08199999999999999,,1952,Train Wreck,American Amber / Red Ale,260,16.0 +1410,0.085,,768,Full Moon Belgian White Ale,Witbier,507,12.0 +1411,0.07200000000000001,,625,Desert Magic IPA,American IPA,507,12.0 +1412,0.042,,326,Up River Light,Light Lager,507,12.0 +1413,0.085,,132,Full Moon Belgian White Ale (2007),Witbier,507,12.0 +1414,0.055,,131,Dry Heat Hefeweizen (2006),Hefeweizen,507,12.0 +1415,0.05,,1598,Mustang Sixty-Six,American Amber / Red Lager,366,12.0 +1416,0.04,,862,Mustang '33,American Pale Lager,366,12.0 +1417,0.04,,699,Session '33 (2011),American Pale Lager,366,12.0 +1418,0.053,10.0,421,Mustang Golden Ale,American Blonde Ale,366,12.0 +1419,0.053,14.0,420,Washita Wheat,American Pale Wheat Ale,366,12.0 +1420,0.037000000000000005,10.0,2345,Gansett Light,Light Lager,143,16.0 +1421,0.052000000000000005,30.0,2224,Bohemian Pils,American Pilsner,143,16.0 +1422,0.053,30.0,1775,Autocrat Coffee Milk Stout,Milk / Sweet Stout,143,16.0 +1423,0.086,35.0,1291,Narragansett Bohemian Pilsner,German Pilsener,143,16.0 +1424,0.042,24.0,1093,Narragansett Summer Ale,American Pale Wheat Ale,143,12.0 +1425,0.05,22.0,580,Narragansett Cream Ale,Cream Ale,143,16.0 +1426,0.042,24.0,403,Narragansett Summer Ale,American Pale Wheat Ale,143,16.0 +1427,0.07,22.0,316,Narragansett Porter,American Porter,143,16.0 +1428,0.065,32.0,315,Narragansett Bock,Bock,143,16.0 +1429,0.055,15.0,314,Narragansett Fest Lager,Märzen / Oktoberfest,143,16.0 +1430,0.053,,1537,Undun Blonde Ale,American Blonde Ale,387,16.0 +1431,0.07400000000000001,,1536,CuDa Cascadian Dark Ale,American Black Ale,387,16.0 +1432,0.085,86.0,1265,Old Grogham Imperial India Pale Ale,American Double / Imperial IPA,387,16.0 +1433,0.085,86.0,747,Old Grogham Imperial India Pale Ale (2012),American Double / Imperial IPA,387,16.0 +1434,0.07400000000000001,,746,CuDa Cascadian Dark Ale (2012),American Black Ale,387,16.0 +1435,0.053,,654,Undun Blonde Ale (2012),American Blonde Ale,387,16.0 +1436,0.061,11.0,1705,Wick For Brains,Pumpkin Ale,337,12.0 +1437,0.065,65.0,1148,Nebraska India Pale Ale,American IPA,337,12.0 +1438,0.048,10.0,1147,EOS Hefeweizen,Hefeweizen,337,12.0 +1439,0.048,15.0,1146,Brunette Nut Brown Ale,English Brown Ale,337,12.0 +1440,0.057,29.0,1145,Cardinal Pale Ale,American Pale Ale (APA),337,12.0 +1441,0.066,,1758,County Line IPA,American IPA,325,12.0 +1442,0.048,,1757,Trauger Pilsner,German Pilsener,325,12.0 +1443,0.045,40.0,2475,Slow Ride,American IPA,82,12.0 +1444,0.065,70.0,2230,Ranger IPA,American IPA,82,12.0 +1445,0.05,29.0,1987,Shift,American Pale Lager,82,12.0 +1446,0.055999999999999994,21.0,1978,1554 Black Lager,Euro Dark Lager,82,12.0 +1447,0.048,,1975,Blue Paddle,Czech Pilsener,82,12.0 +1448,0.055,,1737,California Route,American Amber / Red Lager,82,12.0 +1449,0.052000000000000005,,1707,Snapshot,American Pale Wheat Ale,82,16.0 +1450,0.048,,1690,Sunshine Wheat Beer,American Pale Wheat Ale,82,12.0 +1451,0.052000000000000005,18.0,1586,Fat Tire Amber Ale,American Amber / Red Ale,82,12.0 +1452,0.05,29.0,952,Shift (1),American Pale Lager,82,12.0 +1453,0.052000000000000005,18.0,748,Fat Tire Amber Ale (2011),American Amber / Red Ale,82,12.0 +1454,0.05,29.0,578,Shift,American Pale Lager,82,16.0 +1455,0.065,70.0,564,Ranger IPA,American IPA,82,16.0 +1456,0.052000000000000005,18.0,563,Fat Tire Amber Ale,American Amber / Red Ale,82,16.0 +1457,0.065,70.0,115,Ranger IPA (Current),American IPA,82,12.0 +1458,0.048,,72,Sunshine Wheat Beer (2009),American Pale Wheat Ale,82,12.0 +1459,0.052000000000000005,18.0,71,Fat Tire Amber Ale (2008),American Amber / Red Ale,82,12.0 +1460,0.034,6.0,1417,Weiss Trash Culture,Berliner Weissbier,410,12.0 +1461,0.062,,885,Sea Hag IPA,American IPA,410,12.0 +1462,0.05,,884,Elm City Pilsner,American Pilsner,410,12.0 +1463,0.05,,757,Atlantic Amber Ale (2004),American Amber / Red Ale,410,12.0 +1464,0.09,,568,668 Neighbor of the Beast12 oz.,Belgian Pale Ale,410,12.0 +1465,0.08800000000000001,85.0,320,Gandhi-Bot Double IPA (12 oz.),American Double / Imperial IPA,410,12.0 +1466,0.09,,43,668 Neighbor of the Beast (16 oz.) (2010),Belgian Pale Ale,410,16.0 +1467,0.08800000000000001,85.0,42,Gandhi-Bot Double IPA (16 oz.) (2010),American Double / Imperial IPA,410,16.0 +1468,0.05,,41,Elm City Lager (2007),American Pilsner,410,12.0 +1469,0.05,,40,Atlantic Amber Ale (2007),American Amber / Red Ale,410,12.0 +1470,0.062,,39,Sea Hag IPA (Current),American IPA,410,12.0 +1471,0.05,,2272,Rebirth Pale Ale,American Pale Ale (APA),174,12.0 +1472,0.068,,1582,Irish Channel Stout,American Stout,174,16.0 +1473,0.08800000000000001,,1114,MechaHopzilla,American Double / Imperial IPA,174,16.0 +1474,0.065,,486,Hopitoulas IPA,American IPA,174,16.0 +1475,0.039,,485,NOLA Brown Ale,English Dark Mild Ale,174,12.0 +1476,0.049,,484,NOLA Blonde Ale,American Blonde Ale,174,12.0 +1477,0.055999999999999994,20.0,2043,Skylight,Dunkelweizen,241,12.0 +1478,0.055999999999999994,30.0,2042,Kadigan,American Blonde Ale,241,12.0 +1479,0.052000000000000005,50.0,2041,Dammit Jim!,American Amber / Red Ale,241,12.0 +1480,0.054000000000000006,,646,Nut Brown Ale,English Brown Ale,518,12.0 +1481,0.046,,165,White Ale,Witbier,518,12.0 +1482,0.042,35.0,2050,Cream Ale,Cream Ale,238,12.0 +1483,0.07200000000000001,,915,Green Head IPA,American IPA,495,12.0 +1484,0.054000000000000006,,914,Plum Island Belgian White,Witbier,495,12.0 +1485,0.055,,913,Newburyport Pale Ale,American Pale Ale (APA),495,12.0 +1486,0.055,,1811,Marblehead,American Amber / Red Ale,305,16.0 +1487,0.051,31.0,1622,Jam Session,American Pale Ale (APA),359,16.0 +1488,0.07200000000000001,80.0,1621,Hop Drop 'N Roll IPA,American IPA,359,16.0 +1489,0.06,,1307,Paleo IPA,English India Pale Ale (IPA),431,12.0 +1490,0.061,,1306,Buck Snort Stout,American Stout,431,12.0 +1491,0.055,,1305,Station 33 Firehouse Red,Irish Red Ale,431,12.0 +1492,0.045,,1304,Slimy Pebble Pils,German Pilsener,431,12.0 +1493,0.045,50.0,2692,Get Together,American IPA,0,16.0 +1494,0.049,26.0,2691,Maggie's Leap,Milk / Sweet Stout,0,16.0 +1495,0.048,19.0,2690,Wall's End,English Brown Ale,0,16.0 +1496,0.06,38.0,2689,Pumpion,Pumpkin Ale,0,16.0 +1497,0.06,25.0,2688,Stronghold,American Porter,0,16.0 +1498,0.055999999999999994,47.0,2687,Parapet ESB,Extra Special / Strong Bitter (ESB),0,16.0 +1499,0.069,,1854,Blue Boots IPA,American IPA,293,16.0 +1500,0.063,,1227,Hoppy Bitch IPA,American IPA,450,16.0 +1501,0.063,42.0,1226,Three Skulls Ale Pale Ale,American Pale Ale (APA),450,16.0 +1502,0.045,,541,Walter's Premium Pilsener Beer,German Pilsener,529,12.0 +1503,0.045,,109,Floppin' Crappie,American Pale Wheat Ale,529,12.0 +1504,0.043,,1917,Left of the Dial IPA,American IPA,271,12.0 +1505,0.04,,1190,Notch Session Pils,Czech Pilsener,271,12.0 +1506,0.055,,1264,O'Fallon Pumpkin Beer,Pumpkin Ale,442,12.0 +1507,0.061,66.0,1258,5 Day IPA,American IPA,442,12.0 +1508,0.051,7.0,128,O'Fallon Wheach,Fruit / Vegetable Beer,442,12.0 +1509,0.067,70.0,2331,Watershed IPA,American IPA,150,12.0 +1510,0.054000000000000006,24.0,1669,Oakshire Amber Ale,American Amber / Red Ale,150,12.0 +1511,0.057999999999999996,27.0,1668,Overcast Espresso Stout,American Stout,150,12.0 +1512,0.067,70.0,999,Watershed IPA (2013),American IPA,150,12.0 +1513,0.08199999999999999,25.0,2247,Lake Monster,Baltic Porter,184,16.0 +1514,0.049,27.0,2071,London Homesick Ale,English Bitter,184,12.0 +1515,0.048,35.0,2070,Luchesa Lager,Keller Bier / Zwickel Bier,184,12.0 +1516,0.048,35.0,2069,Slow Ride,American Pale Ale (APA),184,12.0 +1517,0.047,,2192,Occidental Hefeweizen,American Pale Wheat Ale,200,16.0 +1518,0.051,,1130,Occidental Dunkel,Dunkelweizen,200,16.0 +1519,0.05,,1129,Occidental Altbier,Altbier,200,16.0 +1520,0.045,,1081,Occidental Kölsch,Kölsch,200,16.0 +1521,0.092,72.0,2335,Perpetual Darkness,Belgian Strong Dark Ale,148,12.0 +1522,0.087,29.0,2334,Clan Warrior,Scotch Ale / Wee Heavy,148,12.0 +1523,0.054000000000000006,36.0,2333,Psycho Penguin Vanilla Porter,American Porter,148,12.0 +1524,0.047,,1721,Heliocentric Hefeweizen,Hefeweizen,148,12.0 +1525,0.051,,1720,Ghose Drifter Pale Ale,American Pale Ale (APA),148,12.0 +1526,0.051,,1431,Ghost Rider Pale Ale (2013),American Pale Ale (APA),148,12.0 +1527,0.047,,1430,Helios Hefeweizen (2013),Hefeweizen,148,12.0 +1528,0.095,19.0,1059,The Hole in Hadrian's Wall,Scottish Ale,471,16.0 +1529,0.065,26.0,1058,33 Select Brown Ale,American Brown Ale,471,16.0 +1530,0.06,29.0,603,Midwest Charm Farmhouse Ale,Saison / Farmhouse Ale,471,16.0 +1531,0.05,45.0,602,Boji Blue Pale Ale,American Pale Ale (APA),471,16.0 +1532,0.057,26.0,601,Winter Games Select #32 Stout,American Stout,471,16.0 +1533,0.05,23.0,600,Boji Beach Golden Rye Ale,Rye Beer,471,16.0 +1534,0.06,,1828,Hopsmith Pale Lager,American Pale Lager,301,16.0 +1535,0.065,65.0,1487,Falling Down Brown Ale,American Brown Ale,301,16.0 +1536,0.068,,1486,Resolution Rye Stout,American Stout,301,16.0 +1537,0.055,,1485,Plowshare Porter,American Porter,301,16.0 +1538,0.046,20.0,1394,Old Forge Pumpkin Ale,Pumpkin Ale,301,16.0 +1539,0.045,,1381,Endless Sun Ale,American Pale Wheat Ale,301,16.0 +1540,0.065,,900,Celestial Blonde Ale,American Blonde Ale,301,16.0 +1541,0.075,,891,Overbite IPA,American IPA,301,16.0 +1542,0.055,,509,T-Rail Pale Ale,American Pale Ale (APA),301,16.0 +1543,0.048,,508,Endless Summer Ale (2011),American Pale Wheat Ale,301,16.0 +1544,0.053,,1530,Clem's Gold,American Pale Lager,390,16.0 +1545,0.055,,1529,Lizzy's Red,American Amber / Red Lager,390,16.0 +1546,0.067,,1528,Orlison India Pale Lager,American Pale Lager,390,16.0 +1547,0.042,,1527,Brünette,Euro Dark Lager,390,16.0 +1548,0.040999999999999995,,1526,Havanüther,Light Lager,390,16.0 +1549,0.065,,2113,Lyric Ale,Saison / Farmhouse Ale,216,12.0 +1550,0.053,,2112,Atalanta,Saison / Farmhouse Ale,216,12.0 +1551,0.049,35.0,2302,Pinner Throwback IPA,American IPA,166,12.0 +1552,0.052000000000000005,,1883,Centennial State Pale Ale,American Pale Ale (APA),166,19.2 +1553,0.08,,1859,Old Chub NITRO,Scotch Ale / Wee Heavy,166,16.0 +1554,,,1796,The CROWLER™,,166,32.0 +1555,,,1790,CAN'D AID Foundation,,166,12.0 +1556,,,1752,Icey.P.A.,American IPA,166,16.0 +1557,0.05,,1751,One Nut Brown,English Brown Ale,166,12.0 +1558,,,1750,Birth IPA,American IPA,166,12.0 +1559,0.065,65.0,1444,Dale's Pale Ale,American Pale Ale (APA),166,12.0 +1560,0.065,65.0,1252,Dale's Pale Ale,American Pale Ale (APA),166,12.0 +1561,0.053,35.0,1167,Mama's Little Yella Pils,Czech Pilsener,166,19.2 +1562,0.085,,993,oSKAr the G'Rauch,American IPA,166,19.2 +1563,0.085,,992,oSKAr the G'Rauch,American IPA,166,16.0 +1564,0.065,65.0,955,Dale's Pale Ale,American Pale Ale (APA),166,19.2 +1565,0.07,,933,The Deuce,American Brown Ale,166,16.0 +1566,0.065,65.0,892,Dale's Pale Ale (10 Year Anniversary),American Pale Ale (APA),166,12.0 +1567,0.065,65.0,828,Dale's Pale Ale (2012),American Pale Ale (APA),166,12.0 +1568,0.087,85.0,806,Gordon Imperial Red (2010),American Double / Imperial IPA,166,12.0 +1569,0.065,65.0,755,Dale's Pale Ale (2011),American Pale Ale (APA),166,12.0 +1570,0.065,65.0,754,Dale's Pale Ale (2010),American Pale Ale (APA),166,12.0 +1571,0.087,85.0,726,G'KNIGHT (16 oz.),American Double / Imperial IPA,166,16.0 +1572,0.09,,720,15th Anniversary Abbey Ale (2012),Belgian Dark Ale,166,16.0 +1573,0.08,,661,Chaka,Belgian Strong Pale Ale,166,16.0 +1574,0.08,70.0,585,HGH (Home Grown Hops): Part Duh,American Strong Ale,166,12.0 +1575,0.08,,565,Deviant Dale's IPA,American Double / Imperial IPA,166,16.0 +1576,0.09,60.0,391,One Hit Wonder,American Double / Imperial IPA,166,12.0 +1577,0.087,85.0,388,G'KNIGHT (12 oz.),American Double / Imperial IPA,166,12.0 +1578,0.099,98.0,8,Ten Fidy Imperial Stout,Russian Imperial Stout,166,12.0 +1579,0.053,35.0,7,Mama's Little Yella Pils,Czech Pilsener,166,12.0 +1580,0.099,100.0,6,GUBNA Imperial IPA,American Double / Imperial IPA,166,12.0 +1581,0.08,35.0,5,Old Chub,Scottish Ale,166,12.0 +1582,0.087,85.0,4,Gordon Ale (2009),American Double / Imperial IPA,166,12.0 +1583,0.065,65.0,1,Dale's Pale Ale,American Pale Ale (APA),166,12.0 +1584,0.092,85.0,805,Gordon (2005),American Double / Imperial IPA,503,12.0 +1585,0.095,98.0,804,Ten Fidy Imperial Stout (2008),Russian Imperial Stout,503,12.0 +1586,0.099,98.0,803,Ten Fidy Imperial Stout (2007),Russian Imperial Stout,503,12.0 +1587,0.08,35.0,787,Old Chub (2008),Scottish Ale,503,12.0 +1588,0.08,35.0,786,Old Chub (2004),Scottish Ale,503,12.0 +1589,0.08,35.0,785,Old Chub (2003),Scottish Ale,503,12.0 +1590,0.065,65.0,745,Dale's Pale Ale (2008),American Pale Ale (APA),503,12.0 +1591,0.065,65.0,744,Dale's Pale Ale (2006),American Pale Ale (APA),503,12.0 +1592,0.065,65.0,743,Dale's Pale Ale (2004),American Pale Ale (APA),503,12.0 +1593,0.065,65.0,742,Dale's Pale Ale (2003),American Pale Ale (APA),503,12.0 +1594,0.065,65.0,741,Dale's Pale Ale (2002),American Pale Ale (APA),503,12.0 +1595,0.052000000000000005,,734,Leroy (2005),American Brown Ale,503,12.0 +1596,0.087,60.0,733,Gordon Beer (2006),American Double / Imperial IPA,503,12.0 +1597,0.087,85.0,1533,G'KNIGHT,American Double / Imperial IPA,389,12.0 +1598,0.099,98.0,1532,Ten Fidy,Russian Imperial Stout,389,12.0 +1599,0.08,85.0,1328,Deviant Dale's IPA,American Double / Imperial IPA,389,16.0 +1600,0.08,35.0,1175,Old Chub,Scottish Ale,389,12.0 +1601,0.065,65.0,1166,Dale's Pale Ale,American Pale Ale (APA),389,19.2 +1602,0.065,65.0,1065,Dale's Pale Ale,American Pale Ale (APA),389,12.0 +1603,0.055,45.0,1908,Fresh Slice White IPA,American White IPA,275,12.0 +1604,0.055,55.0,1946,Overgrown American Pale Ale,American Pale Ale (APA),261,12.0 +1605,0.04,39.0,1961,Ozark American Pale Ale,American Pale Ale (APA),259,12.0 +1606,0.048,,1684,Hula Hoppie Session IPA,American IPA,341,12.0 +1607,0.053,,927,Dirty Hippie Dark Wheat,American Dark Wheat Ale,341,12.0 +1608,0.052000000000000005,23.0,1268,Rustic Red,Irish Red Ale,441,16.0 +1609,0.053,48.0,697,Stimulator Pale Ale,American Pale Ale (APA),441,16.0 +1610,0.045,22.0,696,Old Town Ale,Kölsch,441,16.0 +1611,0.044000000000000004,28.0,695,Car 21,English Bitter,441,16.0 +1612,0.05,24.0,694,Cache La Porter,American Porter,441,16.0 +1613,0.042,35.0,1805,Rodeo Rye Pale Ale,American Pale Ale (APA),307,12.0 +1614,0.062,65.0,1048,Outlaw IPA,American IPA,307,12.0 +1615,0.044000000000000004,,1043,North Fork Lager,American Pale Lager,307,12.0 +1616,0.048,35.0,890,Payette Pale Ale,American Pale Ale (APA),307,12.0 +1617,0.055,25.0,775,Mutton Buster,American Brown Ale,307,12.0 +1618,0.05,,1087,Side Kick Kölsch,Kölsch,468,12.0 +1619,0.046,,1931,Fresh Cut Pilsner,American Pilsner,266,12.0 +1620,0.05,61.0,1930,Summer Session Ale,American Pale Wheat Ale,266,12.0 +1621,0.04,12.0,2238,Lobo Lito,Light Lager,187,12.0 +1622,0.05,17.0,2144,Robert Earl Keen Honey Pils,American Pilsner,187,12.0 +1623,0.065,77.0,2175,Mound Builder IPA,American IPA,205,12.0 +1624,0.062,62.0,2168,Amazon Princess IPA,American IPA,205,12.0 +1625,0.042,,1956,Farmer's Daughter Wheat,American Pale Wheat Ale,205,12.0 +1626,0.045,,1794,People's Pilsner,German Pilsener,205,12.0 +1627,0.055,10.0,2633,Hotbox Brown,American Brown Ale,13,12.0 +1628,0.048,15.0,2632,Gold,American Blonde Ale,13,12.0 +1629,0.057999999999999996,,2631,Black,American Black Ale,13,12.0 +1630,0.065,65.0,2630,98 Problems (Cuz A Hop Ain't One),American IPA,13,12.0 +1631,0.05,40.0,2629,Veteran’s Pale Ale (VPA),American Pale Ale (APA),13,12.0 +1632,0.05,35.0,2628,Grapefruit IPA,American IPA,13,12.0 +1633,0.051,,1062,Pete's ESP Lager (1998),American Pale Lager,470,12.0 +1634,0.047,,1061,Pete's Wicked Summer Brew (1995),American Pale Wheat Ale,470,12.0 +1635,0.049,,1060,Pete's Wicked Bohemian Pilsner (1997),Czech Pilsener,470,12.0 +1636,,,1056,Pete's Wicked Pale Ale (1997),American Pale Ale (APA),470,12.0 +1637,0.047,,1055,Pete's Wicked Summer Brew (2002),American Pale Wheat Ale,470,12.0 +1638,0.047,,1054,Pete's Wicked Summer Brew (1997),American Pale Wheat Ale,470,12.0 +1639,0.047,,1053,Pete's Wicked Summer Brew (1996),American Pale Wheat Ale,470,12.0 +1640,0.040999999999999995,12.0,2635,Sparkle,American Pale Lager,11,16.0 +1641,0.059000000000000004,25.0,1404,North 45 Amber Ale,American Amber / Red Ale,11,16.0 +1642,0.069,20.0,1403,Horny Monk,Dubbel,11,16.0 +1643,0.067,74.0,1402,Mind's Eye PA,American IPA,11,16.0 +1644,0.061,60.0,2312,Camelback,American IPA,157,12.0 +1645,0.055999999999999994,,1636,Local 5 Pale Ale,American Pale Ale (APA),355,16.0 +1646,0.073,,1518,Devils Head Red Ale,American Amber / Red Ale,355,16.0 +1647,0.07,75.0,1384,Elephant Rock IPA,American IPA,355,12.0 +1648,0.05,,1797,Black Bay Milk Stout,Milk / Sweet Stout,310,12.0 +1649,0.05,,1437,Atom Splitter Pale Ale,American Pale Ale (APA),310,12.0 +1650,0.06,20.0,1791,Hot Date Ale,Chile Beer,314,16.0 +1651,0.07,,1540,Masked Bandit IPA,American Black Ale,314,16.0 +1652,0.06,24.0,1491,Sweet Potato Ale,Fruit / Vegetable Beer,314,16.0 +1653,0.045,18.0,1335,Float Trip Ale,American Blonde Ale,314,16.0 +1654,0.055,25.0,847,Old Tom Porter,American Porter,314,16.0 +1655,0.045,18.0,846,Black Walnut Wheat,American Dark Wheat Ale,314,16.0 +1656,0.055,20.0,521,McKinney Eddy Amber Ale,American Amber / Red Ale,314,16.0 +1657,0.07,70.0,479,Missouri Mule India Pale Ale,American IPA,314,16.0 +1658,0.065,,2559,Blood of the Unicorn,American Amber / Red Ale,52,16.0 +1659,0.069,51.0,1760,GreyBeard™ IPA,American IPA,324,12.0 +1660,0.057,31.0,1759,Pisgah Pale Ale,American Pale Ale (APA),324,12.0 +1661,0.045,,1589,PONTO S.I.P.A.,American IPA,370,16.0 +1662,0.049,,1457,Chronic Ale,American Amber / Red Ale,370,16.0 +1663,0.068,,1191,Swami's India Pale Ale,American IPA,370,16.0 +1664,0.05,,2336,New Cleveland Palesner,American Pilsner,147,12.0 +1665,0.054000000000000006,45.0,2553,Mazzie,American Pale Ale (APA),55,12.0 +1666,0.099,,1909,Big Chuck Barleywine,American Barleywine,274,12.0 +1667,,,335,Ponderosa IPA,American IPA,548,12.0 +1668,,,64,Liquid Amber Ale,American Amber / Red Ale,548,12.0 +1669,0.059000000000000004,14.0,2360,Morning Wood Wheat (Current),American Pale Wheat Ale,135,12.0 +1670,0.069,17.0,1463,Hideout Helles,Munich Helles Lager,135,12.0 +1671,0.06,15.0,1462,Dead Eye Dunkel,Munich Dunkel Lager,135,12.0 +1672,0.057999999999999996,21.0,1461,Peacemaker Pilsner,Czech Pilsener,135,12.0 +1673,0.057,68.0,711,Over the Rail Pale Ale,American Pale Ale (APA),135,12.0 +1674,0.057999999999999996,21.0,188,Pallavicini Pilsner (2009),Czech Pilsener,135,12.0 +1675,0.059000000000000004,14.0,130,Morning Wood Wheat (Current),American Pale Wheat Ale,135,12.0 +1676,0.052000000000000005,18.0,399,Pyramid Hefeweizen (2011),Hefeweizen,544,12.0 +1677,0.052000000000000005,18.0,82,Haywire Hefeweizen (2010),Hefeweizen,544,16.0 +1678,0.045,35.0,2031,Golden Fleece,Belgian Pale Ale,246,12.0 +1679,0.055,30.0,2030,Smoking Mirror,American Porter,246,12.0 +1680,0.046,,2269,Rahr's Blonde,Munich Helles Lager,176,12.0 +1681,0.057999999999999996,60.0,2229,Pride of Texas Pale Ale,American Pale Ale (APA),176,12.0 +1682,0.044000000000000004,5.0,2370,18th Anniversary Gose,Gose,128,12.0 +1683,0.046,25.0,2211,White (2015),Witbier,128,12.0 +1684,0.099,85.0,1861,BLAKKR,American Black Ale,128,12.0 +1685,0.051,21.0,1718,Firemans #4 Blonde Ale (2013),American Blonde Ale,128,12.0 +1686,0.059000000000000004,,1290,The Sword Iron Swan Ale,English Pale Ale,128,12.0 +1687,0.053,52.0,1091,Hans' Pils (2015),German Pilsener,128,12.0 +1688,0.06,50.0,1086,Four Squared (2015),American Blonde Ale,128,12.0 +1689,0.051,21.0,830,Firemans #4 Blonde Ale (2015),American Blonde Ale,128,12.0 +1690,0.07200000000000001,55.0,1021,Watership Brown Ale,American Brown Ale,475,12.0 +1691,0.062,55.0,938,Gangway IPA,American IPA,475,12.0 +1692,0.049,,715,Long Day Lager,Czech Pilsener,475,12.0 +1693,0.051,17.0,2516,Farmer's Daughter Blonde,American Blonde Ale,68,16.0 +1694,0.055,45.0,2515,Pump House IPA,American IPA,68,16.0 +1695,0.07,,2514,Suicide Blonde IPA,Belgian IPA,68,16.0 +1696,0.047,25.0,2513,Vanilla Porter,American Porter,68,16.0 +1697,0.057999999999999996,18.0,2512,Honey Rye,Rye Beer,68,16.0 +1698,0.055,,1467,Happy Cider,Cider,403,16.0 +1699,0.065,44.0,945,Long Hammer IPA,American IPA,487,16.0 +1700,0.065,44.0,583,Long Hammer IPA,American IPA,487,12.0 +1701,0.057999999999999996,27.0,339,Copper Hook (2011),American Amber / Red Ale,487,12.0 +1702,0.08,,1375,Nectar of the Hops,Mead,421,16.0 +1703,0.08,,1374,Sunshine Nectar,Mead,421,16.0 +1704,0.08,,1373,Black Raspberry Nectar,Mead,421,16.0 +1705,0.05,16.0,2087,Blood Orange Wit,Witbier,225,16.0 +1706,0.05,40.0,2414,Consilium,American Pale Ale (APA),110,12.0 +1707,0.09,60.0,1581,Hammer & Sickle,Russian Imperial Stout,110,12.0 +1708,0.07,100.0,1176,Redacted Rye IPA,American IPA,110,16.0 +1709,0.099,100.0,1006,Elevation Triple India Pale Ale,American Double / Imperial IPA,110,12.0 +1710,0.05,25.0,1005,5:00 O'Clock Afternoon Ale,American Blonde Ale,110,16.0 +1711,0.07,100.0,636,Ryeteous Rye IPA (2012),American IPA,110,16.0 +1712,0.064,,1538,Stout Ol' Friend,American Stout,386,16.0 +1713,0.064,,1075,Stout Ol' Friend (2012),American Stout,386,16.0 +1714,,,710,Rye Porter,American Porter,386,16.0 +1715,0.05,,709,Miner's Gold,American Blonde Ale,386,16.0 +1716,0.046,,708,Vienna Lager,Vienna Lager,386,16.0 +1717,0.055999999999999994,,706,Jessie's Garage,American Pale Ale (APA),386,16.0 +1718,0.062,,220,Colorado Red Ale,American Amber / Red Ale,386,12.0 +1719,,,219,Miner's Gold,American Blonde Ale,386,12.0 +1720,0.055,40.0,2576,Fist City,American Pale Ale (APA),44,12.0 +1721,0.068,,1133,A Little Crazy,Belgian Pale Ale,44,12.0 +1722,0.057999999999999996,15.0,609,Rosa Hibiscus Ale,Herbed / Spiced Beer,44,12.0 +1723,0.061,31.0,418,Fistmas Ale,Herbed / Spiced Beer,44,12.0 +1724,0.057,25.0,417,Oktoberfest Revolution,Märzen / Oktoberfest,44,12.0 +1725,0.068,28.0,416,Eugene Porter,American Porter,44,12.0 +1726,0.065,70.0,415,Anti-Hero IPA,American IPA,44,12.0 +1727,0.05,14.0,414,Bottom Up Belgian Wit,Witbier,44,12.0 +1728,0.057,42.0,2452,Hustle,American Amber / Red Ale,93,12.0 +1729,0.055,42.0,2451,Pure Fury,American Pale Ale (APA),93,12.0 +1730,0.06,60.0,2132,Dad,American Amber / Red Ale,93,12.0 +1731,0.057999999999999996,35.0,1993,Panther,American Porter,93,12.0 +1732,0.052000000000000005,21.0,1992,Franz,Märzen / Oktoberfest,93,12.0 +1733,0.043,45.0,1935,Zen,American Pale Ale (APA),93,12.0 +1734,0.07200000000000001,75.0,1852,Truth,American IPA,93,12.0 +1735,0.048,25.0,1851,Cougar,American Blonde Ale,93,12.0 +1736,0.038,,2307,Smooth Operator,Cream Ale,162,16.0 +1737,0.035,,2580,Gose,Gose,42,16.0 +1738,0.043,,1807,Maine Island Trail Ale,American Pale Ale (APA),42,16.0 +1739,0.05,,1180,River North White Ale,Witbier,459,16.0 +1740,0.05,,1179,River North Ale,American Amber / Red Ale,459,16.0 +1741,0.05,55.0,1771,Lil SIPA,American IPA,321,16.0 +1742,0.055,60.0,1654,Hop Bomber Rye Pale Ale,American Pale Ale (APA),321,16.0 +1743,0.05,100.0,2579,Jah Mon,American IPA,43,12.0 +1744,0.062,,2373,Oktoberfest,Märzen / Oktoberfest,43,12.0 +1745,0.08,,2049,Headless Wylie,Pumpkin Ale,43,12.0 +1746,0.05,,2048,Dayman IPA,American IPA,43,12.0 +1747,0.071,,1880,All Aboard! Anniversary Stout,Oatmeal Stout,43,12.0 +1748,0.062,,1879,Hop Lace,American White IPA,43,12.0 +1749,0.048,,1878,OH-PA Session Pale Ale,American Pale Ale (APA),43,12.0 +1750,0.08,,1877,Patrick's Poison,American Amber / Red Ale,43,12.0 +1751,0.081,,1764,Rudolph's Red,American Amber / Red Ale,43,12.0 +1752,0.053,,1103,Babbling Blonde,American Blonde Ale,43,12.0 +1753,0.051,,1102,Maxwell's Scottish Ale,Scottish Ale,43,12.0 +1754,0.061,,1101,Grateful White,Witbier,43,12.0 +1755,0.055,,1100,RT Lager,American Amber / Red Lager,43,12.0 +1756,0.062,,1099,Old Wylie's IPA,American IPA,43,12.0 +1757,0.048,,1098,Hala Kahiki Pineapple Beer,Fruit / Vegetable Beer,43,12.0 +1758,0.045,,1330,Track 1 Amber Lager,American Amber / Red Lager,427,16.0 +1759,0.053,,2074,Pine Knob Pilsner,Czech Pilsener,229,16.0 +1760,,,1724,Cal and Co. Black Cherry Porter,American Porter,229,16.0 +1761,0.055,,1280,Lazy Daze Lager,American Adjunct Lager,229,16.0 +1762,0.059000000000000004,,899,Rochester Red Ale,American Amber / Red Ale,229,16.0 +1763,0.05,,363,Milkshake Stout,Milk / Sweet Stout,229,16.0 +1764,0.07,,158,Cornerstone IPA,American IPA,229,16.0 +1765,0.055,,97,Lazy Daze Lager,American Adjunct Lager,229,12.0 +1766,0.051,,1860,Rogue American Amber Ale,American Amber / Red Ale,289,16.0 +1767,0.076,78.0,1577,12th Round,American Strong Ale,376,16.0 +1768,0.07,80.0,1576,RoughTail IPA,American IPA,376,16.0 +1769,0.08,,1575,Polar Night Stout,American Stout,376,16.0 +1770,0.071,36.0,2304,Sundown,Saison / Farmhouse Ale,164,12.0 +1771,0.099,,2249,Sanctified,Belgian Strong Pale Ale,164,12.0 +1772,0.051,,2053,Fear of a Brett Planet,American Pale Ale (APA),164,12.0 +1773,0.055999999999999994,40.0,1842,Original Slacker Ale,English Brown Ale,164,12.0 +1774,0.07200000000000001,,1841,Alpha Blackback,American Black Ale,164,12.0 +1775,0.063,,1782,Kiss Off IPA,American IPA,164,12.0 +1776,0.045,28.0,1552,Dog Days Summer Ale,Kölsch,164,12.0 +1777,0.055999999999999994,35.0,1479,1881 California Red,American Amber / Red Ale,397,12.0 +1778,0.073,55.0,1478,CAPT Black IPA,American Black Ale,397,12.0 +1779,0.048,42.0,1370,Ruhstaller's Gilt Edge Lager Beer,American Amber / Red Lager,397,12.0 +1780,0.073,55.0,883,CAPT Black IPA,American Black Ale,397,16.0 +1781,0.055999999999999994,35.0,882,1881 California Red Ale,American Amber / Red Ale,397,16.0 +1782,0.05,15.0,1868,Saint Archer White Ale,Witbier,288,12.0 +1783,0.068,66.0,1867,Saint Archer IPA,American IPA,288,12.0 +1784,0.052000000000000005,40.0,1865,Saint Archer Pale Ale,American Pale Ale (APA),288,12.0 +1785,0.048,22.0,1864,Saint Archer Blonde,Kölsch,288,12.0 +1786,0.069,20.0,2599,Sex Panther,American Porter,30,12.0 +1787,0.095,25.0,2073,Winter Warmer (Vault Series),Winter Warmer,30,16.0 +1788,0.091,99.0,2063,Count Hopula (Vault Series),American Double / Imperial IPA,30,16.0 +1789,0.055,,1995,Oktoberfest,Märzen / Oktoberfest,30,12.0 +1790,0.05,15.0,1934,SunSpot Golden Ale,American Blonde Ale,30,12.0 +1791,0.06,,1329,I.W.A. (2011),American Pale Wheat Ale,30,12.0 +1792,0.065,,1299,Supermonk I.P.A.,Belgian IPA,30,12.0 +1793,0.055,20.0,1073,Epicenter Amber Ale,American Amber / Red Ale,30,12.0 +1794,0.05,15.0,1072,SanTan HefeWeizen,Hefeweizen,30,12.0 +1795,0.07,85.0,1071,Hop Shock IPA,American IPA,30,12.0 +1796,0.069,20.0,852,Sex Panther (2014),American Porter,30,12.0 +1797,0.055,45.0,850,Devil’s Ale,American Pale Ale (APA),30,12.0 +1798,0.081,,839,Rail Slide Imperial Spiced Ale,Herbed / Spiced Beer,30,12.0 +1799,0.05,20.0,777,Mr. Pineapple,Fruit / Vegetable Beer,30,12.0 +1800,0.055,45.0,764,American Idiot Ale (2012),American Pale Ale (APA),30,12.0 +1801,0.07,85.0,317,Hop Shock IPA (2010),American IPA,30,12.0 +1802,0.05,15.0,286,SanTan HefeWeizen (2010),Hefeweizen,30,12.0 +1803,0.055,45.0,285,Devil’s Ale (2010),American Pale Ale (APA),30,12.0 +1804,0.055,20.0,124,Epicenter Amber Ale (2010),American Amber / Red Ale,30,12.0 +1805,0.057999999999999996,20.0,1392,Sanitas Saison Ale,Saison / Farmhouse Ale,419,12.0 +1806,0.068,65.0,1391,Sanitas Black IPA,American Black Ale,419,12.0 +1807,0.08900000000000001,88.0,2002,Giant DIPA,American Double / Imperial IPA,252,16.0 +1808,0.054000000000000006,,1683,Dread Brown Ale,American Brown Ale,252,12.0 +1809,0.07,,1362,Casinos IPA,English India Pale Ale (IPA),252,16.0 +1810,0.055,30.0,1519,Saison 88,Saison / Farmhouse Ale,392,12.0 +1811,0.071,95.0,967,Black IPA,American Black Ale,392,12.0 +1812,0.045,,599,Santa Fe Irish Red Ale,Irish Red Ale,392,12.0 +1813,,,307,Santa Fe Oktoberfest,Märzen / Oktoberfest,392,12.0 +1814,0.08,,305,Imperial Java Stout,Russian Imperial Stout,392,12.0 +1815,0.055,,304,Freestyle Pilsner,German Pilsener,392,12.0 +1816,0.066,,217,Happy Camper IPA,American IPA,392,12.0 +1817,0.05,11.0,1477,Oval Beach Blonde Ale,American Blonde Ale,398,16.0 +1818,0.065,,1503,Oak Aged Cider,Cider,394,12.0 +1819,0.065,,1466,Ginger Cider,Cider,394,12.0 +1820,0.065,,1245,Schilling Hard Cider,Cider,394,12.0 +1821,0.05,45.0,1324,Schlafly Yakima Wheat Ale,American Pale Wheat Ale,428,12.0 +1822,0.05,,1323,Schlafly Black Lager,Schwarzbier,428,12.0 +1823,0.045,30.0,1078,Schlafly IPA,American IPA,428,12.0 +1824,0.05,30.0,1077,Schlafly American Brown Ale,American Brown Ale,428,12.0 +1825,0.040999999999999995,16.0,588,Schlafly Hefeweizen,Hefeweizen,428,12.0 +1826,0.045,17.0,53,Schlafly Summer Lager,Munich Helles Lager,428,12.0 +1827,0.047,,815,Sea Dog Wild Blueberry Wheat Ale,Fruit / Vegetable Beer,502,12.0 +1828,0.07400000000000001,60.0,1302,Blur India Pale Ale,American IPA,432,12.0 +1829,0.065,,1416,Dry Cider,Cider,411,16.0 +1830,0.065,,1415,Dry Hard Cider,Cider,411,16.0 +1831,0.07,105.0,918,Frankenlou's IPA,American IPA,494,16.0 +1832,0.07,55.0,917,Becky's Black Cat Porter,American Porter,494,16.0 +1833,0.077,40.0,2250,Seventh Son of a Seventh Son,American Strong Ale,183,16.0 +1834,0.053,20.0,1768,Stone Fort Brown Ale,English Brown Ale,183,16.0 +1835,0.077,40.0,1767,Seventh Son Hopped Red Ale,American Amber / Red Ale,183,16.0 +1836,0.06,53.0,1766,Humulus Nimbus Super Pale Ale,American Pale Ale (APA),183,16.0 +1837,0.07,68.0,1765,Golden Ratio IPA,American IPA,183,16.0 +1838,0.068,,2368,Black Hop IPA,American Black Ale,130,12.0 +1839,0.05,,738,Archer's Ale (2004),English Pale Ale,511,12.0 +1840,0.069,65.0,1539,Monkey Fist IPA,American IPA,385,12.0 +1841,0.051,,975,Shipyard Summer Ale,American Pale Wheat Ale,385,12.0 +1842,0.047,,814,Pumpkinhead Ale,Pumpkin Ale,385,12.0 +1843,0.051,,727,Shipyard Export,American Blonde Ale,385,12.0 +1844,0.052000000000000005,,2474,Nooner,German Pilsener,83,12.0 +1845,0.07200000000000001,65.0,2239,Torpedo,American IPA,83,12.0 +1846,0.06,,1919,Yonder Bock,Maibock / Helles Bock,83,12.0 +1847,0.06,,1918,CANfusion Rye Bock,Rye Beer,83,12.0 +1848,0.055999999999999994,37.0,1905,Sierra Nevada Pale Ale,American Pale Ale (APA),83,16.0 +1849,0.048,26.0,1338,Old Chico Crystal Wheat,American Pale Wheat Ale,83,12.0 +1850,0.05,28.0,1295,Summerfest,Czech Pilsener,83,12.0 +1851,0.07200000000000001,65.0,426,Torpedo,American IPA,83,16.0 +1852,0.055999999999999994,37.0,400,Sierra Nevada Pale Ale,American Pale Ale (APA),83,12.0 +1853,0.069,,2353,Sietsema Red Label,Cider,137,16.0 +1854,0.042,,212,Bear Ass Brown,American Brown Ale,551,12.0 +1855,0.06,,161,Red Mountain Ale,American Amber / Red Ale,551,12.0 +1856,0.068,,160,Ice Pick Ale,American IPA,551,12.0 +1857,0.1,52.0,2574,4Beans,Baltic Porter,46,12.0 +1858,0.042,16.0,2479,Jammer,Gose,46,12.0 +1859,0.08,,2443,Abigale,Belgian Pale Ale,46,12.0 +1860,0.032,7.0,2266,Rad,Fruit / Vegetable Beer,46,16.0 +1861,0.065,62.0,2090,Bengali,American IPA,46,24.0 +1862,0.047,50.0,1962,Sensi Harvest,American Pale Ale (APA),46,12.0 +1863,0.099,111.0,1696,Hi-Res,American Double / Imperial IPA,46,12.0 +1864,0.07,70.0,1608,Global Warmer,American Strong Ale,46,12.0 +1865,0.067,74.0,1591,Autumnation (2013),American IPA,46,16.0 +1866,0.054000000000000006,42.0,1388,The Crisp,German Pilsener,46,16.0 +1867,0.052000000000000005,34.0,1387,Sweet Action,Cream Ale,46,16.0 +1868,0.063,57.0,1386,Righteous Ale,Rye Beer,46,16.0 +1869,0.064,62.0,1385,Bengali Tiger,American IPA,46,16.0 +1870,0.099,85.0,1020,3Beans,Baltic Porter,46,12.0 +1871,0.059000000000000004,47.0,778,Brownstone,American Brown Ale,46,16.0 +1872,0.052000000000000005,11.0,630,Apollo,American Pale Wheat Ale,46,16.0 +1873,0.049,35.0,629,Harbinger,Saison / Farmhouse Ale,46,16.0 +1874,0.091,103.0,628,Resin,American Double / Imperial IPA,46,12.0 +1875,0.063,69.0,525,Diesel,American Stout,46,16.0 +1876,0.06,48.0,512,Autumnation (2011-12) (2011),Pumpkin Ale,46,16.0 +1877,0.054000000000000006,42.0,425,The Crisp (2011),German Pilsener,46,16.0 +1878,0.052000000000000005,34.0,424,Sweet Action (2011),Cream Ale,46,16.0 +1879,0.063,57.0,423,Righteous Ale (2011),Rye Beer,46,16.0 +1880,0.064,62.0,422,Bengali Tiger (2011),American IPA,46,16.0 +1881,0.045,,1942,Rudie Session IPA,American IPA,264,12.0 +1882,0.07400000000000001,,1708,Taster's Choice,Doppelbock,264,12.0 +1883,0.068,65.0,1521,Modus Hoperandi,American IPA,264,12.0 +1884,0.057999999999999996,15.0,1297,Estival Cream Stout,American Stout,264,12.0 +1885,0.057999999999999996,,1192,Vernal Minthe Stout,American Stout,264,12.0 +1886,0.08,,1013,Hibernal Vinifera Stout,Foreign / Export Stout,264,12.0 +1887,,,774,Autumnal Molé Stout,American Stout,264,12.0 +1888,0.042,18.0,386,Mexican Logger,American Pale Lager,264,12.0 +1889,0.053,,70,True Blonde Ale,American Blonde Ale,264,12.0 +1890,0.061,,69,Euphoria Pale Ale,American Pale Ale (APA),264,12.0 +1891,0.057,58.0,68,ESB Special Ale,Extra Special / Strong Bitter (ESB),264,12.0 +1892,0.068,65.0,67,Modus Hoperandi,American IPA,264,12.0 +1893,0.057999999999999996,39.0,1792,Iron Butt Red Ale,American Amber / Red Ale,313,12.0 +1894,0.071,92.0,1609,Initial Point India Pale Ale,American IPA,313,12.0 +1895,0.085,,2537,Monkey Dancing On A Razor Blade,Belgian IPA,64,24.0 +1896,0.08199999999999999,,2536,Tripel Deke,Tripel,64,24.0 +1897,0.049,,30,Urban Wilderness Pale Ale,English Pale Ale,557,12.0 +1898,0.06,70.0,2305,Homefront IPA,American IPA,163,12.0 +1899,0.055,16.0,1588,Sly Fox Christmas Ale 2013,Winter Warmer,371,12.0 +1900,0.055999999999999994,25.0,1363,Grisette,Grisette,371,12.0 +1901,0.062,,1211,360° India Pale Ale,American IPA,371,12.0 +1902,0.049,18.0,1123,Helles Golden Lager,Munich Helles Lager,371,12.0 +1903,0.055,16.0,926,Sly Fox Christmas Ale 2012 (2012),Winter Warmer,371,12.0 +1904,0.084,90.0,894,Odyssey Imperial IPA,American Double / Imperial IPA,371,12.0 +1905,0.057999999999999996,25.0,166,Oktoberfest Lager,Märzen / Oktoberfest,371,12.0 +1906,0.07,113.0,24,113 IPA,American IPA,371,12.0 +1907,0.053,21.0,23,Dunkel Lager,Munich Dunkel Lager,371,12.0 +1908,0.055999999999999994,11.0,22,Royal Weisse Ale,Hefeweizen,371,12.0 +1909,0.049,44.0,21,Pikeland Pils,German Pilsener,371,12.0 +1910,0.051,40.0,20,Phoenix Pale Ale,American Pale Ale (APA),371,12.0 +1911,0.07,88.0,2407,Rule G IPA,American IPA,115,12.0 +1912,0.057999999999999996,35.0,2406,Murphy's Law,American Amber / Red Ale,115,12.0 +1913,0.062,33.0,2405,Alter Ego ,Saison / Farmhouse Ale,115,12.0 +1914,0.05,,2234,Monarch Pilsner,American Pilsner,191,12.0 +1915,0.06,55.0,1606,Snow King Pale Ale,American Pale Ale (APA),191,12.0 +1916,0.054000000000000006,36.0,617,Zonker Stout,Foreign / Export Stout,191,12.0 +1917,0.05,22.0,407,OB-1 Organic Ale,English Brown Ale,191,12.0 +1918,0.05,18.0,406,Snake River Lager,Vienna Lager,191,12.0 +1919,0.052000000000000005,32.0,402,Snake River Pale Ale,American Pale Ale (APA),191,12.0 +1920,0.068,60.0,393,Pako’s EyePA,American IPA,191,12.0 +1921,0.05,,1798,Thanksgiving Ale,Kölsch,309,12.0 +1922,0.092,,1655,Double Dagger Imperial IPA,American Double / Imperial IPA,309,12.0 +1923,0.063,100.0,1596,Dagger Falls IPA,American IPA,309,12.0 +1924,0.063,100.0,1595,Dagger Falls IPA,American IPA,309,12.0 +1925,0.06,,1482,Socktoberfest,Märzen / Oktoberfest,309,16.0 +1926,0.079,,1447,Hopnoxious Imperial IPA,American Double / Imperial IPA,309,12.0 +1927,0.099,,1425,Barrel Aged Seven Devils Imperial Stout,American Double / Imperial Stout,309,12.0 +1928,0.055,,1424,Boise Co-Op Two Score Ale,Saison / Farmhouse Ale,309,16.0 +1929,0.05,,1298,Sockeye Belgian Style Summer Ale,Witbier,309,16.0 +1930,0.064,,1181,Sockeye Maibock,Maibock / Helles Bock,309,12.0 +1931,0.099,100.0,1160,Old Devil's Tooth,American Barleywine,309,12.0 +1932,0.043,,1152,Galena Golden,American Blonde Ale,309,12.0 +1933,0.052000000000000005,32.0,1151,Hell-Diver Pale Ale,American Pale Ale (APA),309,12.0 +1934,0.046,12.0,1150,Woolybugger Wheat,American Pale Wheat Ale,309,12.0 +1935,0.057,,1076,Power House Porter,American Porter,309,12.0 +1936,0.084,90.0,995,Winterfest,American Strong Ale,309,16.0 +1937,0.063,100.0,879,Dagger Falls IPA,American IPA,309,12.0 +1938,0.07,18.0,1972,LuckenBock,Bock,257,16.0 +1939,0.055,40.0,1971,Texas Pale Ale (TPA),American IPA,257,16.0 +1940,0.08,,1970,6 String Saison,Saison / Farmhouse Ale,257,16.0 +1941,0.05,22.0,1969,Kol' Beer,Kölsch,257,16.0 +1942,0.035,,2024,Montauk Light,Light Lager,249,12.0 +1943,0.048,32.0,1283,Na Zdraví Pilsner,Czech Pilsener,436,16.0 +1944,0.055,65.0,1282,Nice Rack IPA,American IPA,436,16.0 +1945,0.075,72.0,2362,2014 IPA Cicada Series,American IPA,133,16.0 +1946,0.077,65.0,2346,Sinister Minister Black IPA,American IPA,133,16.0 +1947,0.053,45.0,2320,Jack the Sipper,Extra Special / Strong Bitter (ESB),133,12.0 +1948,0.057999999999999996,60.0,2297,Devil's Harvest Extra Pale Ale,American Pale Ale (APA),133,12.0 +1949,0.05,20.0,2296,Suzy B Dirty Blonde Ale,American Blonde Ale,133,12.0 +1950,0.08,80.0,1745,Mississippi Fire Ant,American Amber / Red Ale,133,16.0 +1951,0.057999999999999996,40.0,1120,Hipster Breakfast,Oatmeal Stout,133,16.0 +1952,0.05,20.0,1118,Suzy B Dirty Blonde Ale,American Blonde Ale,133,16.0 +1953,0.057999999999999996,60.0,1117,Devil's Harvest Extra Pale Ale,American Pale Ale (APA),133,16.0 +1954,0.065,45.0,2387,Pine Belt Pale Ale,American Pale Ale (APA),118,12.0 +1955,0.055,,2267,Walloon,Saison / Farmhouse Ale,118,12.0 +1956,0.069,23.0,1740,Le Mort Vivant,Bière de Garde,118,12.0 +1957,0.085,110.0,1728,Red Cockaded Ale,American Double / Imperial IPA,118,12.0 +1958,0.092,100.0,1497,Valkyrie Double IPA,American Double / Imperial IPA,118,12.0 +1959,0.085,110.0,1011,Red Cockaded Ale (2013),American Double / Imperial IPA,118,12.0 +1960,0.07200000000000001,40.0,1010,Old Potentate,Old Ale,118,12.0 +1961,0.05,20.0,856,Bombshell Blonde,American Blonde Ale,118,16.0 +1962,0.099,100.0,853,PRO-AM (2012) (2012),American Double / Imperial IPA,118,12.0 +1963,0.055,,691,Walloon (2014),Saison / Farmhouse Ale,118,12.0 +1964,0.069,23.0,555,Le Mort Vivant (2011),Bière de Garde,118,12.0 +1965,0.083,50.0,46,Buried Hatchet Stout,Foreign / Export Stout,118,12.0 +1966,0.065,45.0,45,Pine Belt Pale Ale,American Pale Ale (APA),118,16.0 +1967,0.05,20.0,44,Bombshell Blonde,American Blonde Ale,118,12.0 +1968,0.047,35.0,2486,Baby Daddy Session IPA,American IPA,78,12.0 +1969,,,763,Hopluia (2004),English India Pale Ale (IPA),508,16.0 +1970,0.057999999999999996,,2271,Ball & Chain (2014),American Pale Ale (APA),175,16.0 +1971,0.096,,2206,Bitter Biker Double IPA,American Double / Imperial IPA,175,16.0 +1972,0.08199999999999999,,2136,God Damn Pigeon Porter,American Porter,175,16.0 +1973,0.079,,2135,Working for the Weekend,American Double / Imperial IPA,175,16.0 +1974,0.06,,2134,Angry Adam,American Amber / Red Ale,175,16.0 +1975,0.055,,2109,Freedom Fries,American Stout,175,16.0 +1976,0.096,,1821,Bitter Biker Double IPA,American Double / Imperial IPA,175,12.0 +1977,0.073,,1820,Ghost Bike Pale Ale,American Pale Ale (APA),175,16.0 +1978,0.062,,1819,Spiteful IPA,American IPA,175,12.0 +1979,0.06,,1634,Alley Time,American Pale Ale (APA),175,12.0 +1980,0.057999999999999996,,1633,Fat Badger,Irish Red Ale,175,12.0 +1981,0.055,,1632,In the Weeds,American Pale Wheat Ale,175,12.0 +1982,0.05,22.0,855,Special Amber,Vienna Lager,498,12.0 +1983,0.05,22.0,445,Special Amber,Vienna Lager,498,12.0 +1984,0.055999999999999994,,1587,Seven Gates Pale Ale,American Pale Ale (APA),372,12.0 +1985,0.052000000000000005,,2242,Gunga Din,Cider,186,16.0 +1986,0.042,20.0,1544,Starr Pils,German Pilsener,383,12.0 +1987,0.065,52.0,1205,Northern Lights India Pale Ale,American IPA,383,16.0 +1988,0.048,12.0,369,Festie,Märzen / Oktoberfest,383,12.0 +1989,0.065,52.0,368,Northern Lights India Pale Ale,American IPA,383,12.0 +1990,0.065,65.0,2386,Third Eye Enlightened Pale Ale,American Pale Ale (APA),119,12.0 +1991,0.049,17.0,92,Colorado Kölsch,Kölsch,119,12.0 +1992,0.057,25.0,91,Steam Engine Lager,American Amber / Red Lager,119,12.0 +1993,0.065,65.0,90,Third Eye Pale Ale,American IPA,119,12.0 +1994,0.047,9.0,2366,Point Special (Current),American Adjunct Lager,131,12.0 +1995,0.047,9.0,2365,Point Special,American Adjunct Lager,131,12.0 +1996,0.054000000000000006,33.0,2270,Point Cascade Pale Ale (2013),American Pale Ale (APA),131,12.0 +1997,0.047,9.0,2228,Point Special,American Adjunct Lager,131,12.0 +1998,0.052000000000000005,9.0,2151,Onyx Black Ale,American Black Ale,131,12.0 +1999,0.063,64.0,2150,Beyond The Pale IPA,American IPA,131,12.0 +2000,0.047,9.0,2122,Point Special (2013),American Adjunct Lager,131,12.0 +2001,0.047,9.0,2121,Point Special (2012),American Adjunct Lager,131,12.0 +2002,0.047,9.0,2115,Point Special Lager,American Adjunct Lager,131,16.0 +2003,0.062,,1450,St. Benedict's Winter Ale,Winter Warmer,131,12.0 +2004,0.057,15.0,1357,Point Oktoberfest,Märzen / Oktoberfest,131,16.0 +2005,0.052000000000000005,7.0,1225,Point Nude Beach Summer Wheat,American Pale Wheat Ale,131,16.0 +2006,0.05,7.0,816,Point Nude Beach Summer Wheat,American Pale Wheat Ale,131,12.0 +2007,0.05,7.0,772,Point Nude Beach Summer Wheat (2011),American Pale Wheat Ale,131,12.0 +2008,0.035,,684,Drop Dead Blonde,American Blonde Ale,131,12.0 +2009,0.049,13.0,650,Three Kings Ale,Kölsch,131,12.0 +2010,0.057,15.0,456,Point Oktoberfest,Märzen / Oktoberfest,131,12.0 +2011,0.054000000000000006,32.0,357,2012 Black Ale,American Brown Ale,131,12.0 +2012,0.05,7.0,141,Point Nude Beach Summer Wheat (2010),American Pale Wheat Ale,131,12.0 +2013,0.054000000000000006,33.0,140,Point Cascade Pale Ale,American Pale Ale (APA),131,12.0 +2014,0.047,14.0,139,Point Amber Classic,American Amber / Red Lager,131,12.0 +2015,0.047,9.0,138,Point Special Lager,American Adjunct Lager,131,12.0 +2016,0.051,31.0,953,Wisco Disco,American Amber / Red Ale,486,16.0 +2017,0.05,,1983,Brontide,American Black Ale,255,12.0 +2018,0.05,,1631,Brontide,American Black Ale,255,12.0 +2019,0.045,,1344,Classique,Saison / Farmhouse Ale,255,12.0 +2020,0.045,,922,Sunsplash Golden Ale (2004),American Blonde Ale,492,12.0 +2021,0.051,25.0,1410,Sand Island Lighthouse,Kölsch,412,12.0 +2022,0.05,30.0,925,Lily Flagg Milk Stout,Milk / Sweet Stout,412,12.0 +2023,0.07200000000000001,70.0,637,Monkeynaut IPA,American IPA,412,12.0 +2024,0.05,,2369,Straub Beer (Current),American Adjunct Lager,129,12.0 +2025,0.040999999999999995,8.0,2233,American Lager,American Adjunct Lager,129,12.0 +2026,0.040999999999999995,8.0,2232,American Amber,American Amber / Red Lager,129,12.0 +2027,0.032,13.0,2231,American Light,Light Lager,129,12.0 +2028,0.053,49.0,2352,Extra Pale Ale,American Pale Ale (APA),138,12.0 +2029,0.053,40.0,2549,Make It So,Extra Special / Strong Bitter (ESB),58,12.0 +2030,0.047,55.0,2473,Hopvale Organic Ale,American Pale Ale (APA),58,16.0 +2031,0.083,100.0,2415,Unchained #18 Hop Silo,American Double / Imperial IPA,58,16.0 +2032,0.052000000000000005,29.0,2605,Tip Off,Altbier,25,16.0 +2033,0.054000000000000006,,2215,Java Mac,Scottish Ale,25,16.0 +2034,0.054000000000000006,23.0,2164,Cowbell,American Porter,25,16.0 +2035,0.057999999999999996,20.0,2085,Hop Up Offa That Brett (2014),Belgian Pale Ale,25,16.0 +2036,0.083,23.0,2084,PV Muckle (2013),Scotch Ale / Wee Heavy,25,16.0 +2037,0.099,36.0,2083,Bourbon Barrel Batch 666: Sympathy for the Devil,Belgian Dark Ale,25,16.0 +2038,0.09,30.0,2082,Whip Fight,Scotch Ale / Wee Heavy,25,16.0 +2039,0.053,23.0,2081,Port Barrel Wee Mac ,Scotch Ale / Wee Heavy,25,16.0 +2040,0.064,75.0,2001,Fistful Of Hops Red,American IPA,25,16.0 +2041,0.063,75.0,2000,Fistful of Hops Orange,American IPA,25,16.0 +2042,0.064,75.0,1999,Fistful Of Hops Blue,American IPA,25,16.0 +2043,0.064,75.0,1996,Fistful of Hops Green,American IPA,25,16.0 +2044,,,1948,30 Min Coma,Belgian IPA,25,16.0 +2045,0.09,30.0,1656,Wee Muckle,Scotch Ale / Wee Heavy,25,16.0 +2046,0.065,55.0,1599,Royal Brat,Extra Special / Strong Bitter (ESB),25,16.0 +2047,0.075,77.0,1420,Grapefruit Jungle (GFJ),American IPA,25,16.0 +2048,0.055999999999999994,50.0,1389,Osiris Pale Ale,American Pale Ale (APA),25,16.0 +2049,0.099,75.0,1367,Bourbon Barrel Aged Timmie,Russian Imperial Stout,25,16.0 +2050,0.063,23.0,1366,Stupid Sexy Flanders,Flanders Oud Bruin,25,16.0 +2051,,,1347,Bourbon Barrel Cowbell,American Porter,25,16.0 +2052,0.054000000000000006,,1314,Popcorn Pilsner,German Pilsener,25,16.0 +2053,0.071,27.0,1128,Ring of Dingle,Irish Dry Stout,25,16.0 +2054,0.054000000000000006,23.0,1127,Bourbon Barrel Wee Mac,Scottish Ale,25,16.0 +2055,0.099,60.0,1049,Bourbon Barrel Johan,English Barleywine,25,16.0 +2056,0.07,,934,The Deuce,American Brown Ale,25,16.0 +2057,0.09,24.0,923,The Velvet Fog,Quadrupel (Quad),25,16.0 +2058,0.055,23.0,874,Sun King Oktoberfest,Märzen / Oktoberfest,25,16.0 +2059,0.052000000000000005,24.0,739,Indianapolis Indians Lager,Dortmunder / Export Lager,25,16.0 +2060,0.052000000000000005,24.0,698,Indians Victory Lager (2012),Dortmunder / Export Lager,25,16.0 +2061,0.08,,660,Chaka,Belgian Strong Pale Ale,25,16.0 +2062,0.091,91.0,651,Isis,American Double / Imperial IPA,25,16.0 +2063,0.09,30.0,584,Wee Muckle (2011),Scotch Ale / Wee Heavy,25,16.0 +2064,0.075,77.0,532,Grapefruit Jungle (GFJ) (2011),American IPA,25,16.0 +2065,0.055,23.0,526,Sun King Oktoberfest (2011),Märzen / Oktoberfest,25,16.0 +2066,0.099,60.0,394,Johan the Barleywine,English Barleywine,25,16.0 +2067,0.054000000000000006,23.0,213,Wee Mac Scottish-Style Ale,Scottish Ale,25,16.0 +2068,0.053,20.0,55,Sunlight Cream Ale,Cream Ale,25,16.0 +2069,0.055999999999999994,50.0,54,Osiris Pale Ale (2010),American Pale Ale (APA),25,16.0 +2070,0.045,,1207,Dam Lager,American Amber / Red Lager,455,12.0 +2071,0.07,,1206,Red Clay IPA,American IPA,455,12.0 +2072,0.07200000000000001,,2543,Todd the Axe Man,American IPA,61,16.0 +2073,0.057,,2409,Doomtree,Extra Special / Strong Bitter (ESB),61,16.0 +2074,0.099,85.0,1739,BLAKKR,American Black Ale,61,16.0 +2075,0.073,69.0,1112,Overrated! West Coast Style IPA,American IPA,61,16.0 +2076,0.075,90.0,329,WET,American IPA,61,16.0 +2077,0.04,37.0,19,Bitter Brewer,English Bitter,61,16.0 +2078,0.055,34.0,18,SurlyFest,Rye Beer,61,16.0 +2079,0.051,45.0,17,Coffee Bender,American Brown Ale,61,16.0 +2080,0.051,45.0,16,Bender,American Brown Ale,61,16.0 +2081,0.09699999999999999,120.0,15,Abrasive Ale,American Double / Imperial IPA,61,16.0 +2082,0.051,20.0,14,Hell,Keller Bier / Zwickel Bier,61,16.0 +2083,0.067,33.0,13,CynicAle,Saison / Farmhouse Ale,61,16.0 +2084,0.062,99.0,12,Furious,American IPA,61,16.0 +2085,0.073,50.0,1242,Big Nose,American IPA,447,12.0 +2086,0.05,10.0,1241,Cotton Mouth,Witbier,447,12.0 +2087,0.055999999999999994,35.0,1240,Stump Knocker Pale Ale,American Pale Ale (APA),447,12.0 +2088,0.05,38.0,1239,Midnight Oil,Oatmeal Stout,447,12.0 +2089,0.059000000000000004,18.0,1238,Wild Night,Cream Ale,447,12.0 +2090,0.045,,1554,Bermuda Triangle Ginger Beer,Herbed / Spiced Beer,381,12.0 +2091,0.055,35.0,2568,Take Two Pils,German Pilsener,49,12.0 +2092,0.057,,2551,Waterkeeper,Hefeweizen,49,12.0 +2093,0.064,,1710,SweetWater IPA,American IPA,49,12.0 +2094,0.054000000000000006,,1709,420 Extra Pale Ale,American Pale Ale (APA),49,12.0 +2095,0.08,95.0,1229,Dodgy Knight Imperial IPA,American Double / Imperial IPA,449,12.0 +2096,0.05,,1164,TailGate Saison,Saison / Farmhouse Ale,449,12.0 +2097,0.05,44.0,663,TailGate IPA,American IPA,449,24.0 +2098,0.05,44.0,662,TailGate IPA,American IPA,449,12.0 +2099,0.049,28.0,623,TailGate Hefeweizen,Hefeweizen,449,24.0 +2100,0.05,19.0,622,Blacktop Blonde,American Blonde Ale,449,24.0 +2101,0.05,19.0,362,Blacktop Blonde,American Blonde Ale,449,12.0 +2102,0.049,28.0,361,TailGate Hefeweizen,Hefeweizen,449,12.0 +2103,0.085,34.0,2575,Wooden Rooster,Tripel,45,16.9 +2104,0.048,20.0,2555,Ginger Peach Saison,Saison / Farmhouse Ale,45,16.0 +2105,0.062,35.0,1736,Zombie Monkie,American Porter,45,16.0 +2106,0.055999999999999994,20.0,1196,Wild Plum Farmhouse Ale,Saison / Farmhouse Ale,45,16.0 +2107,0.05,20.0,1063,Vanilla Bean Buffalo Sweat,Oatmeal Stout,45,16.0 +2108,0.068,110.0,1017,Ethos IPA,American IPA,45,16.0 +2109,0.044000000000000004,12.0,1009,Tallgrass Pub Ale,American Brown Ale,45,16.0 +2110,0.07200000000000001,93.0,912,Oasis,Extra Special / Strong Bitter (ESB),45,16.0 +2111,0.05,20.0,765,Buffalo Sweat,Milk / Sweet Stout,45,16.0 +2112,0.05,20.0,676,Halcyon Unfiltered Wheat,American Pale Wheat Ale,45,16.0 +2113,0.052000000000000005,,595,8-Bit Pale Ale,American Pale Ale (APA),45,16.0 +2114,0.085,,537,Velvet Rooster,Tripel,45,16.0 +2115,0.05,20.0,412,Halcyon Unfiltered Wheat,American Pale Wheat Ale,45,12.0 +2116,0.05,16.0,105,Köld Lager (2010),German Pilsener,45,16.0 +2117,0.07200000000000001,93.0,104,Oasis (2010),American Double / Imperial IPA,45,16.0 +2118,0.044000000000000004,22.0,103,Tallgrass Ale,American Brown Ale,45,16.0 +2119,0.05,20.0,102,Buffalo Sweat (2010),Milk / Sweet Stout,45,16.0 +2120,0.063,60.0,101,Tallgrass IPA,American IPA,45,16.0 +2121,0.068,,1433,Hat Trick Hop IPA,American IPA,409,16.0 +2122,0.055999999999999994,,1432,Yard Sale Amber Ale,American Amber / Red Ale,409,16.0 +2123,0.055,,936,Loafin Bräu,Altbier,490,16.0 +2124,0.07,80.0,544,Old Elephant Foot IPA,American IPA,490,16.0 +2125,0.065,35.0,2640,Peck's Porter,American Porter,7,16.0 +2126,0.07,,2448,Reactor,American IPA,7,16.0 +2127,0.057,,2447,Mr. Orange,Witbier,7,16.0 +2128,0.08,22.0,2601,Deduction,Dubbel,28,12.0 +2129,0.057,,973,Face Down Brown Ale,American Brown Ale,480,12.0 +2130,0.064,,827,Tempter IPA,American IPA,480,12.0 +2131,0.055,,589,Bridal Veil Rye Pale Ale,American Pale Ale (APA),480,12.0 +2132,0.048,,2155,Smittytown,Extra Special / Strong Bitter (ESB),210,12.0 +2133,0.04,,1982,Greenwood Beach,Fruit / Vegetable Beer,210,12.0 +2134,0.066,,1939,Gatecrasher,English India Pale Ale (IPA),210,12.0 +2135,0.047,42.0,1082,RecreationAle,American Pale Ale (APA),469,12.0 +2136,0.055,35.0,2119,First Stand,Saison / Farmhouse Ale,215,12.0 +2137,0.063,23.0,2118,Battle LIne,American Brown Ale,215,12.0 +2138,0.055999999999999994,12.0,2117,Broken Bridge,Dunkelweizen,215,12.0 +2139,0.071,69.0,2116,Brutus,English India Pale Ale (IPA),215,12.0 +2140,0.06,,1916,Petit Mutant,American Wild Ale,272,16.0 +2141,0.096,,1915,The Crusher,American Double / Imperial IPA,272,16.0 +2142,0.08,,1914,Beelzebub,American Double / Imperial Stout,272,16.0 +2143,0.07,,1810,Focal Banger,American IPA,272,16.0 +2144,0.08,120.0,1111,Heady Topper,American Double / Imperial IPA,272,16.0 +2145,0.08,120.0,379,Heady Topper,American Double / Imperial IPA,272,16.0 +2146,0.046,20.0,1200,Bomber Mountain Amber Ale (2013),American Amber / Red Ale,457,12.0 +2147,0.07,75.0,1199,Indian Paintbrush IPA,American IPA,457,12.0 +2148,0.048,16.0,1198,Saddle Bronc Brown Ale (2013),English Brown Ale,457,12.0 +2149,0.059000000000000004,15.0,1197,Wagon Box Wheat Beer,American Pale Wheat Ale,457,12.0 +2150,0.05,,1945,Birdhouse Pale Ale,Belgian Pale Ale,262,12.0 +2151,0.073,,1079,Ozzy,Belgian Pale Ale,262,12.0 +2152,0.07,,94,Resurrection,Dubbel,262,12.0 +2153,0.052000000000000005,16.0,1748,Bronx Summer Pale Ale,American Pale Ale (APA),329,16.0 +2154,0.057,46.0,1747,Bronx Black Pale Ale,American Black Ale,329,16.0 +2155,0.063,50.0,1037,Bronx Pale Ale,American Pale Ale (APA),329,16.0 +2156,0.052000000000000005,35.0,2594,Surfrider,American Pale Ale (APA),33,16.0 +2157,0.055,,2035,Kolschtal Eddy,Kölsch,33,16.0 +2158,0.05,,2034,South Bay Session IPA,American IPA,33,16.0 +2159,0.069,34.0,1562,Grandma's Pecan,English Brown Ale,33,16.0 +2160,0.099,101.0,1561,Double Trunk,American Double / Imperial IPA,33,16.0 +2161,0.046,45.0,1749,Just IPA,American IPA,328,12.0 +2162,0.045,,2455,Lionshead,American Pilsner,90,12.0 +2163,,,963,Manhattan Gold Lager (1990),American Amber / Red Lager,484,12.0 +2164,0.052000000000000005,,2638,G. B. Russo’s Italian Pistachio Pale Ale,American Pale Ale (APA),9,16.0 +2165,0.057999999999999996,,1278,Northern Hawk Owl Amber,American Amber / Red Ale,438,12.0 +2166,0.059000000000000004,,1277,CEO Stout,American Stout,438,16.0 +2167,0.047,,1276,Will Power Pale Ale,American Pale Ale (APA),438,16.0 +2168,0.044000000000000004,,1732,Curious Traveler Shandy,Shandy,334,12.0 +2169,0.048,18.0,2347,Hunny Do Wheat,American Pale Wheat Ale,142,12.0 +2170,0.052000000000000005,,1781,Three Way Pale Ale,American Pale Ale (APA),142,12.0 +2171,0.040999999999999995,,1780,Rise to the Top,Cream Ale,142,12.0 +2172,0.049,,1779,Lost Trout Brown Ale,American Brown Ale,142,12.0 +2173,0.051,11.0,2421,Watermelon Ale,Fruit / Vegetable Beer,108,12.0 +2174,0.04,18.0,2319,Knotty Blonde Ale,American Blonde Ale,153,12.0 +2175,0.062,40.0,2317,Fivepine Chocolate Porter,American Porter,153,12.0 +2176,0.062,82.0,2316,Hoodoo Voodoo IPA,American IPA,153,12.0 +2177,0.053,22.0,1913,Hydraulion Red,Irish Red Ale,273,12.0 +2178,0.06,50.0,1912,40 Mile IPA,American IPA,273,12.0 +2179,0.055,64.0,2617,Citra Faced,American Pale Wheat Ale,21,16.0 +2180,0.055,31.0,2616,Pole Barn Stout,Oatmeal Stout,21,16.0 +2181,0.054000000000000006,37.0,2615,Pale,American Pale Ale (APA),21,16.0 +2182,0.053,27.0,2614,Yoshi's Nectar,California Common / Steam Beer,21,16.0 +2183,0.052000000000000005,,1889,Leatherhead Red,American Amber / Red Ale,282,12.0 +2184,0.065,,1222,Cropduster Mid-American IPA,American IPA,282,12.0 +2185,0.075,,122,Golden Frau Honey Wheat,Braggot,282,12.0 +2186,,,121,Cornstalker Dark Wheat,American Dark Wheat Ale,282,12.0 +2187,0.057999999999999996,20.0,2623,Cafe Leche,American Porter,17,16.0 +2188,0.052000000000000005,12.0,2622,Damascene Apricot Sour,Fruit / Vegetable Beer,17,16.0 +2189,0.12,90.0,2621,Csar,Russian Imperial Stout,17,16.0 +2190,0.055,,1817,Klingon Warnog Roggen Dunkel,Roggenbier,17,16.0 +2191,0.085,115.0,1449,Overlord Imperial IPA,American Double / Imperial IPA,17,16.0 +2192,0.057999999999999996,36.0,951,Alloy,American IPA,17,16.0 +2193,0.051,22.0,950,Rivet Irish Red Ale,Irish Red Ale,17,16.0 +2194,0.052000000000000005,50.0,949,3 Gear Robust Porter,American Porter,17,16.0 +2195,0.045,35.0,948,Circuit Bohemian Pilsner,Czech Pilsener,17,16.0 +2196,0.055,,2321,Turnrow Harvest Ale,American Blonde Ale,152,12.0 +2197,0.07,60.0,1755,Juke Joint IPA,American IPA,152,12.0 +2198,0.07,35.0,1754,Parade Ground Coffee Porter,American Porter,152,12.0 +2199,0.05,21.0,1428,Tin Roof Watermelon Wheat,Fruit / Vegetable Beer,152,12.0 +2200,0.045,18.0,529,Tin Roof Blonde Ale,American Blonde Ale,152,12.0 +2201,0.055,37.0,495,Voodoo Bengal Pale Ale,American Pale Ale (APA),152,12.0 +2202,0.045,28.0,494,Perfect Tin Amber,American Amber / Red Ale,152,12.0 +2203,0.073,87.0,1856,IPA & a Half,American IPA,291,12.0 +2204,0.055,33.0,736,Ornery Amber Lager (2003),Vienna Lager,291,12.0 +2205,0.05,,1027,Big Island Shandy,Shandy,474,16.0 +2206,0.068,,1026,Preservation IPA,American IPA,474,16.0 +2207,0.062,72.0,1938,Almanac IPA,American IPA,265,12.0 +2208,0.065,,1937,Milk Mustachio Stout,Milk / Sweet Stout,265,12.0 +2209,0.06,30.0,1936,Farmer's Tan Red Ale,American Amber / Red Ale,265,12.0 +2210,0.057,,594,Triangle India Pale Ale,American IPA,524,12.0 +2211,0.05,,114,Triangle White Ale,Witbier,524,12.0 +2212,0.08,,113,Triangle Belgian Golden Ale,Belgian Strong Pale Ale,524,12.0 +2213,0.08199999999999999,,2445,Troegenator,Doppelbock,97,16.0 +2214,0.075,93.0,2444,Nugget Nectar,American Amber / Red Ale,97,16.0 +2215,0.045,45.0,2203,Sunshine Pils,American Pilsner,97,12.0 +2216,0.08199999999999999,25.0,1510,Troegenator Doublebock,Doppelbock,97,16.0 +2217,0.075,85.0,1509,Perpetual IPA,American IPA,97,12.0 +2218,0.055,52.0,433,Greenville Pale Ale,American Pale Ale (APA),539,12.0 +2219,0.062,65.0,641,Hoppy Boy,American IPA,520,16.0 +2220,0.054000000000000006,26.0,2588,Cow Creek,American Amber / Red Lager,38,12.0 +2221,0.075,63.0,2458,Chupahopra,American IPA,38,12.0 +2222,0.051,19.0,2212,Twisted X,American Adjunct Lager,38,12.0 +2223,0.040999999999999995,41.0,2235,Day Hike Session,American IPA,190,12.0 +2224,0.048,48.0,1661,Trailhead ISA,American IPA,190,12.0 +2225,0.052000000000000005,27.0,1660,Immersion Amber,American Amber / Red Ale,190,12.0 +2226,0.062,70.0,1659,Evo IPA,American IPA,190,12.0 +2227,0.048,,1438,Presidential Pils,Czech Pilsener,190,12.0 +2228,0.062,70.0,1173,Evolutionary IPA (2012),American IPA,190,12.0 +2229,0.057,36.0,560,Persnickety Pale,American Pale Ale (APA),190,12.0 +2230,0.054000000000000006,20.0,519,SoDo Brown Ale,American Brown Ale,190,12.0 +2231,0.052000000000000005,27.0,518,Immersion Amber Ale (2011),American Amber / Red Ale,190,12.0 +2232,0.062,70.0,505,Evolutionary IPA (2011),American IPA,190,12.0 +2233,0.048,48.0,482,Trailhead India Style Session Ale (2011),American IPA,190,12.0 +2234,0.046,,451,Panorama Wheat Ale,American Pale Wheat Ale,190,12.0 +2235,0.063,69.0,2497,Wobble,American IPA,74,16.0 +2236,0.057999999999999996,43.0,2246,Night Cat,American Dark Wheat Ale,74,12.0 +2237,0.057999999999999996,43.0,1630,Night Cat (2014),American Dark Wheat Ale,74,12.0 +2238,0.051,17.0,1284,Dog Days Lager,Dortmunder / Export Lager,74,12.0 +2239,0.051,36.0,1121,Sidekick Extra Pale Ale,American Pale Ale (APA),74,12.0 +2240,0.077,23.0,1042,Atom Smasher,Märzen / Oktoberfest,74,12.0 +2241,0.045,,1041,Testudo,Bière de Garde,74,12.0 +2242,0.065,,1040,Hobnob B & B Pale Ale,American Pale Ale (APA),74,12.0 +2243,0.07,68.0,861,Cane and Ebel,American Strong Ale,74,12.0 +2244,0.065,,642,Outlaw IPA (2015),American IPA,74,12.0 +2245,0.045,,2037,The Gilded Age,Munich Helles Lager,243,12.0 +2246,0.05,,1285,No Limits Hefeweizen,Hefeweizen,435,16.0 +2247,0.06,,1189,Honeyspot Road White IPA,American White IPA,435,12.0 +2248,0.07200000000000001,,1171,Road 2 Ruin Double IPA,American Double / Imperial IPA,435,12.0 +2249,0.048,,1170,Workers Comp Saison,Saison / Farmhouse Ale,435,12.0 +2250,0.05,,1169,Ol' Factory Pils,German Pilsener,435,12.0 +2251,0.05,10.0,2310,PUNK'N,Pumpkin Ale,159,12.0 +2252,0.04,22.0,2100,Yard Sale Winter Lager,American Amber / Red Lager,159,12.0 +2253,0.04,42.0,1925,Trader Session IPA,American IPA,159,12.0 +2254,0.073,83.0,1723,Hop Nosh IPA,American IPA,159,12.0 +2255,0.04,17.0,1212,SUM'R,American Blonde Ale,159,12.0 +2256,0.04,32.0,1097,Organic Baba Black Lager,Schwarzbier,159,12.0 +2257,0.073,82.0,1089,Hop Notch IPA (2013),American IPA,159,12.0 +2258,0.04,34.0,1088,Cutthroat Pale Ale,American Pale Ale (APA),159,12.0 +2259,0.04,29.0,974,WYLD Extra Pale Ale,American Pale Ale (APA),159,12.0 +2260,0.055,,98,Pilsner Ukiah,German Pilsener,555,12.0 +2261,0.06,75.0,2372,The Green Room,American IPA,126,16.0 +2262,0.047,25.0,2367,Humbucker Helles,Maibock / Helles Bock,126,16.0 +2263,0.065,,1704,Uncle John's Apple Cherry Cider,Cider,338,16.0 +2264,0.065,,1703,Uncle John's Apricot Apple Cider,Cider,338,16.0 +2265,0.065,,877,Draught Hard Apple Cider,Cider,338,16.0 +2266,0.001,,606,Scotty K NA,Low Alcohol Beer,522,16.0 +2267,0.068,,543,Bacon Brown Ale,American Brown Ale,522,16.0 +2268,0.064,,347,Golden State Ale,Belgian Pale Ale,522,16.0 +2269,0.078,,346,Baltic Porter,Baltic Porter,522,16.0 +2270,0.085,,25,Siamese twin,Dubbel,522,16.0 +2271,0.085,90.0,2507,Double Duckpin,American Double / Imperial IPA,71,12.0 +2272,0.042,10.0,2506,Old Pro,Gose,71,12.0 +2273,0.055,,829,Duckpin Pale Ale,American Pale Ale (APA),71,12.0 +2274,0.06,,582,Balt Altbier,Altbier,71,12.0 +2275,0.045,50.0,2190,Campside Session IPA,American IPA,202,16.0 +2276,0.045,15.0,1951,Upland Wheat Ale,Witbier,202,16.0 +2277,0.06,,1950,Dragonfly IPA,American IPA,202,16.0 +2278,0.128,,2565,Lee Hill Series Vol. 5 - Belgian Style Quadrupel Ale,Quadrupel (Quad),51,19.2 +2279,0.10400000000000001,,2564,Lee Hill Series Vol. 4 - Manhattan Style Rye Ale,Rye Beer,51,19.2 +2280,0.068,24.0,2563,Lee Hill Series Vol. 2 - Wild Saison,American Wild Ale,51,19.2 +2281,0.099,51.0,2562,Lee Hill Series Vol. 3 - Barrel Aged Imperial Stout,American Double / Imperial Stout,51,19.2 +2282,0.076,,2561,Lee Hill Series Vol. 1 - Barrel Aged Brown Ale,American Brown Ale,51,19.2 +2283,0.06,,2560,Blood Orange Saison,Saison / Farmhouse Ale,51,12.0 +2284,0.065,33.0,1932,Thai Style White IPA,American White IPA,51,12.0 +2285,0.075,30.0,1853,Ferus Fluxus Wild Belgian Pale Ale,American Wild Ale,51,19.2 +2286,0.099,90.0,1315,Upslope Imperial India Pale Ale,American Double / Imperial IPA,51,19.2 +2287,0.08199999999999999,,907,Upslope Christmas Ale,Winter Warmer,51,16.0 +2288,0.077,,906,Upslope Pumpkin Ale,Pumpkin Ale,51,16.0 +2289,0.075,30.0,683,Upslope Belgian Style Pale Ale,Belgian Pale Ale,51,12.0 +2290,0.069,,614,Upslope Foreign Style Stout,Foreign / Export Stout,51,12.0 +2291,0.048,15.0,466,Top Rope Mexican-style Craft Lager,Vienna Lager,51,12.0 +2292,0.048,22.0,444,Upslope Craft Lager,Vienna Lager,51,12.0 +2293,0.067,,345,Upslope Brown Ale,English Brown Ale,51,12.0 +2294,0.057999999999999996,,80,Upslope Pale Ale,American Pale Ale (APA),51,12.0 +2295,0.07200000000000001,,79,Upslope India Pale Ale,American IPA,51,12.0 +2296,0.053,22.0,382,Common Sense Kentucky Common Ale,American Brown Ale,546,16.0 +2297,0.065,70.0,381,Upstate I.P.W.,American IPA,546,12.0 +2298,0.04,,1826,Squatters Full Suspension Pale Ale,American Pale Ale (APA),302,12.0 +2299,0.09,75.0,1825,Squatters Hop Rising Double IPA,American Double / Imperial IPA,302,12.0 +2300,0.08,,1824,Devastator Double Bock,Doppelbock,302,12.0 +2301,0.06,,1823,Wasatch Ghostrider White IPA,American White IPA,302,12.0 +2302,0.06,,1682,Wasatch Ghostrider White IPA (2014),American White IPA,302,12.0 +2303,0.04,,1681,Wasatch Apricot Hefeweizen,Fruit / Vegetable Beer,302,12.0 +2304,0.09,75.0,1680,Squatters Hop Rising Double IPA (2014),American Double / Imperial IPA,302,12.0 +2305,0.04,,1679,Squatters Full Suspension Pale Ale,American Pale Ale (APA),302,12.0 +2306,0.068,,2245,Nunica Pine,Cider,185,16.0 +2307,0.069,,2244,Ginger Peach,Cider,185,16.0 +2308,0.068,,1378,Totally Roasted,Cider,185,16.0 +2309,0.068,,1377,Blue Gold,Cider,185,16.0 +2310,0.068,,1376,Hard Apple,Cider,185,16.0 +2311,0.052000000000000005,,2411,Nitro Can Coffee Stout,American Stout,113,12.0 +2312,0.092,25.0,1770,Voodoo Love Child,Tripel,322,12.0 +2313,0.079,23.0,1769,White Magick of the Sun,Witbier,322,12.0 +2314,0.075,31.0,1730,Wynona's Big Brown Ale,American Brown Ale,322,12.0 +2315,0.092,25.0,1729,Gran Met,Belgian Strong Pale Ale,322,12.0 +2316,0.073,85.0,1603,Good Vibes IPA,American IPA,322,12.0 +2317,0.075,85.0,1488,Pilzilla,American Double / Imperial Pilsner,322,12.0 +2318,0.04,37.0,1846,Wachusett Light IPA,American IPA,295,12.0 +2319,0.06,55.0,1845,Green Monsta IPA,American IPA,295,12.0 +2320,0.055999999999999994,50.0,1844,Wachusett IPA,American IPA,295,12.0 +2321,0.047,,1843,Strawberry White,Witbier,295,12.0 +2322,0.085,85.0,1418,Larry Imperial IPA,American Double / Imperial IPA,295,12.0 +2323,0.047,,1038,Wachusett Summer,American Pale Wheat Ale,295,12.0 +2324,0.051,17.0,1030,Country Pale Ale,English Pale Ale,295,12.0 +2325,0.04,37.0,1029,Wachusett Light IPA (2013),American IPA,295,12.0 +2326,0.052000000000000005,20.0,908,Pumpkan,Pumpkin Ale,295,12.0 +2327,0.045,10.0,619,Wachusett Blueberry Ale,Fruit / Vegetable Beer,295,12.0 +2328,0.06,55.0,618,Green Monsta IPA,American IPA,295,12.0 +2329,0.047,,780,T-6 Red Ale (2004),American Amber / Red Ale,506,12.0 +2330,0.052000000000000005,67.0,2450,Self Starter,American IPA,94,16.0 +2331,0.054000000000000006,20.0,2223,Ermal's,Cream Ale,94,16.0 +2332,0.07,,2222,10 Ton,Oatmeal Stout,94,16.0 +2333,0.07,,2221,Flyin' Rye,American IPA,94,16.0 +2334,0.09,,2439,Christmas Ale,Herbed / Spiced Beer,100,12.0 +2335,0.07,,2356,Pay It Forward Cocoa Porter,American Porter,100,12.0 +2336,0.055,,1069,West Sixth Amber Ale,American Amber / Red Ale,100,12.0 +2337,,,652,West Sixth IPA,American IPA,100,12.0 +2338,0.055,,1542,One Claw,American Pale Ale (APA),384,12.0 +2339,0.04,5.0,1312,Westbrook Gose,Gose,384,12.0 +2340,0.05,16.0,576,White Thai,Witbier,384,12.0 +2341,0.068,65.0,575,Westbrook IPA,American IPA,384,12.0 +2342,0.057,22.0,1645,Westfield Octoberfest,Märzen / Oktoberfest,351,12.0 +2343,0.052000000000000005,,1551,Pop's Old Fashioned Lager,American Amber / Red Lager,351,12.0 +2344,0.057999999999999996,55.0,1550,Charlie in the Rye,American IPA,351,12.0 +2345,,,2364,Royal Lager,American Pale Lager,132,16.0 +2346,0.08,,2348,Rip Van Winkle (Current),Bock,132,12.0 +2347,,,2344,O’Malley’s Stout,English Stout,132,12.0 +2348,0.075,89.0,2343,O’Malley’s IPA,American IPA,132,12.0 +2349,,,2342,O’Malley’s Irish Style Cream Ale,Cream Ale,132,12.0 +2350,0.049,28.0,2341,L'il Lucy's Hot Pepper Ale,Chile Beer,132,12.0 +2351,0.052000000000000005,,2340,Drop Kick Ale,American Amber / Red Ale,132,12.0 +2352,0.055,,2573,Raspberry Berliner Weisse,Berliner Weissbier,47,12.0 +2353,0.05,,2572,Hop Session,American IPA,47,12.0 +2354,0.055,,2571,Blueberry Berliner Weisse,Berliner Weissbier,47,12.0 +2355,0.055,,2570,Berliner Weisse,Berliner Weissbier,47,12.0 +2356,0.06,,1498,Super G IPA,American IPA,396,16.0 +2357,0.049,30.0,1838,Hefe Lemon,Radler,296,12.0 +2358,0.049,30.0,1837,Hefe Black,Hefeweizen,296,12.0 +2359,0.049,30.0,1836,Widmer Brothers Hefeweizen,Hefeweizen,296,12.0 +2360,0.08199999999999999,100.0,1619,Hop Slayer Double IPA,American Double / Imperial IPA,361,12.0 +2361,0.045,,1618,Pumpkin Ale,Pumpkin Ale,361,12.0 +2362,0.05,,1364,Big Bowl Blonde Ale,American Brown Ale,361,12.0 +2363,0.052000000000000005,27.0,971,Phat Chance,American Blonde Ale,361,12.0 +2364,0.08199999999999999,100.0,740,Hop Slayer Double IPA (2011),American Double / Imperial IPA,361,12.0 +2365,0.08199999999999999,100.0,430,Hop Slayer Double IPA (2011),American Double / Imperial IPA,361,12.0 +2366,0.042,13.0,398,Wild Onion Summer Wit,Witbier,361,12.0 +2367,0.06,23.0,366,Jack Stout,Oatmeal Stout,361,12.0 +2368,0.045,,334,Wild Onion Pumpkin Ale (2010),Pumpkin Ale,361,12.0 +2369,0.055999999999999994,41.0,162,Paddy Pale Ale,American Pale Ale (APA),361,12.0 +2370,0.068,21.0,2253,Blonde Hunny,Belgian Pale Ale,181,12.0 +2371,0.057,20.0,1318,Wild Wolf Wee Heavy Scottish Style Ale,Scotch Ale / Wee Heavy,181,12.0 +2372,0.045,25.0,1195,Wild Wolf American Pilsner,American Pilsner,181,12.0 +2373,0.051,45.0,1194,Alpha Ale,American Pale Ale (APA),181,12.0 +2374,0.054000000000000006,,826,Mystical Stout,Irish Dry Stout,499,16.0 +2375,0.075,,825,Bodacious Bock,Bock,499,16.0 +2376,0.05,,813,Ambitious Lager,Munich Helles Lager,499,16.0 +2377,0.07200000000000001,,324,Wyoming Pale Ale,American Pale Ale (APA),550,16.0 +2378,0.05,,323,Wind River Blonde Ale,American Blonde Ale,550,16.0 +2379,0.07400000000000001,83.0,762,Ace IPA,American IPA,509,16.0 +2380,0.08,31.0,761,P-51 Porter,American Porter,509,16.0 +2381,0.055,,2149,#001 Golden Amber Lager,American Amber / Red Lager,211,12.0 +2382,0.071,60.0,2148,#002 American I.P.A.,American IPA,211,12.0 +2383,0.052000000000000005,,2147,#003 Brown & Robust Porter,American Porter,211,12.0 +2384,0.048,38.0,2146,#004 Session I.P.A.,American IPA,211,12.0 +2385,0.059000000000000004,,2047,Tarasque,Saison / Farmhouse Ale,239,12.0 +2386,0.062,61.0,1470,Ananda India Pale Ale,American IPA,239,12.0 +2387,0.045,23.0,1469,Tiny Bomb,American Pilsner,239,12.0 +2388,0.057999999999999996,72.0,2627,Train Hopper,American IPA,14,12.0 +2389,0.045,,2626,Edward’s Portly Brown,American Brown Ale,14,12.0 +2390,0.059000000000000004,135.0,1676,Troopers Alley IPA,American IPA,344,12.0 +2391,0.047,15.0,1468,Wolverine Premium Lager,American Pale Lager,402,12.0 +2392,0.05,,822,Woodchuck Amber Hard Cider,Cider,501,12.0 +2393,0.065,82.0,2417,4000 Footer IPA,American IPA,109,12.0 +2394,0.027999999999999997,15.0,2306,Summer Brew,American Pilsner,109,12.0 +2395,0.065,69.0,1697,Be Hoppy IPA,American IPA,339,16.0 +2396,0.069,69.0,2194,Worthy IPA,American IPA,199,12.0 +2397,0.045,25.0,1514,Easy Day Kolsch,Kölsch,199,12.0 +2398,0.077,30.0,1513,Lights Out Vanilla Cream Extra Stout,American Double / Imperial IPA,199,12.0 +2399,0.069,69.0,1512,Worthy IPA (2013),American IPA,199,12.0 +2400,0.06,50.0,1511,Worthy Pale,American Pale Ale (APA),199,12.0 +2401,0.042,,1345,Patty's Chile Beer,Chile Beer,424,12.0 +2402,0.08199999999999999,,1316,Colorojo Imperial Red Ale,American Strong Ale,424,12.0 +2403,0.055,,1045,Wynkoop Pumpkin Ale,Pumpkin Ale,424,12.0 +2404,0.075,,1035,Rocky Mountain Oyster Stout,American Stout,424,12.0 +2405,0.067,45.0,928,Belgorado,Belgian IPA,424,12.0 +2406,0.052000000000000005,,807,Rail Yard Ale,American Amber / Red Ale,424,12.0 +2407,0.055,,620,B3K Black Lager,Schwarzbier,424,12.0 +2408,0.055,40.0,145,Silverback Pale Ale,American Pale Ale (APA),424,12.0 +2409,0.052000000000000005,,84,Rail Yard Ale (2009),American Amber / Red Ale,424,12.0 diff --git a/DataLayer/data_source/breweries.csv b/DataLayer/data_source/breweries.csv new file mode 100644 index 0000000..302fc60 --- /dev/null +++ b/DataLayer/data_source/breweries.csv @@ -0,0 +1,559 @@ +,name,city,state +0,NorthGate Brewing ,Minneapolis, MN +1,Against the Grain Brewery,Louisville, KY +2,Jack's Abby Craft Lagers,Framingham, MA +3,Mike Hess Brewing Company,San Diego, CA +4,Fort Point Beer Company,San Francisco, CA +5,COAST Brewing Company,Charleston, SC +6,Great Divide Brewing Company,Denver, CO +7,Tapistry Brewing,Bridgman, MI +8,Big Lake Brewing,Holland, MI +9,The Mitten Brewing Company,Grand Rapids, MI +10,Brewery Vivant,Grand Rapids, MI +11,Petoskey Brewing,Petoskey, MI +12,Blackrocks Brewery,Marquette, MI +13,Perrin Brewing Company,Comstock Park, MI +14,Witch's Hat Brewing Company,South Lyon, MI +15,Founders Brewing Company,Grand Rapids, MI +16,Flat 12 Bierwerks,Indianapolis, IN +17,Tin Man Brewing Company,Evansville, IN +18,Black Acre Brewing Co.,Indianapolis, IN +19,Brew Link Brewing,Plainfield, IN +20,Bare Hands Brewery,Granger, IN +21,Three Pints Brewing,Martinsville, IN +22,Four Fathers Brewing ,Valparaiso, IN +23,Indiana City Brewing,Indianapolis, IN +24,Burn 'Em Brewing,Michigan City, IN +25,Sun King Brewing Company,Indianapolis, IN +26,Evil Czech Brewery,Mishawaka, IN +27,450 North Brewing Company,Columbus, IN +28,Taxman Brewing Company,Bargersville, IN +29,Cedar Creek Brewery,Seven Points, TX +30,SanTan Brewing Company,Chandler, AZ +31,Boulevard Brewing Company,Kansas City, MO +32,James Page Brewing Company,Stevens Point, WI +33,The Dudes' Brewing Company,Torrance, CA +34,Ballast Point Brewing Company,San Diego, CA +35,Anchor Brewing Company,San Francisco, CA +36,Figueroa Mountain Brewing Company,Buellton, CA +37,Avery Brewing Company,Boulder, CO +38,Twisted X Brewing Company,Dripping Springs, TX +39,Gonzo's BiggDogg Brewing,Kalamazoo, MI +40,Big Muddy Brewing,Murphysboro, IL +41,Lost Nation Brewing,East Fairfield, VT +42,Rising Tide Brewing Company,Portland, ME +43,Rivertowne Brewing Company,Export, PA +44,Revolution Brewing Company,Chicago, IL +45,Tallgrass Brewing Company,Manhattan, KS +46,Sixpoint Craft Ales,Brooklyn, NY +47,White Birch Brewing,Hooksett, NH +48,Firestone Walker Brewing Company,Paso Robles, CA +49,SweetWater Brewing Company,Atlanta, GA +50,Flying Mouse Brewery,Troutville, VA +51,Upslope Brewing Company,Boulder, CO +52,Pipeworks Brewing Company,Chicago, IL +53,Bent Brewstillery,Roseville, MN +54,Flesk Brewing Company,Lombard, IL +55,Pollyanna Brewing Company,Lemont, IL +56,BuckleDown Brewing,Lyons, IL +57,Destihl Brewery,Bloomington, IL +58,Summit Brewing Company,St. Paul, MN +59,Latitude 42 Brewing Company,Portage, MI +60,4 Hands Brewing Company,Saint Louis, MO +61,Surly Brewing Company,Brooklyn Center, MN +62,Against The Grain Brewery,Louisville, KY +63,Crazy Mountain Brewing Company,Edwards, CO +64,SlapShot Brewing Company,Chicago, IL +65,Mikerphone Brewing,Chicago, IL +66,Freetail Brewing Company,San Antonio, TX +67,3 Daughters Brewing,St Petersburg, FL +68,Red Shedman Farm Brewery and Hop...,Mt. Airy, MD +69,Appalachian Mountain Brewery,Boone, NC +70,Birdsong Brewing Company,Charlotte, NC +71,Union Craft Brewing,Baltimore, MD +72,Atwater Brewery,Detroit, MI +73,Ale Asylum,Madison, WI +74,Two Brothers Brewing Company,Warrenville, IL +75,Bent Paddle Brewing Company,Duluth, MN +76,Bell's Brewery,Kalamazoo, MI +77,Blue Owl Brewing,Austin, TX +78,Speakasy Ales & Lagers,San Francisco, CA +79,Black Tooth Brewing Company,Sheridan, WY +80,Hopworks Urban Brewery,Portland, OR +81,Epic Brewing,Denver, CO +82,New Belgium Brewing Company,Fort Collins, CO +83,Sierra Nevada Brewing Company,Chico, CA +84,Keweenaw Brewing Company,Houghton, MI +85,Brewery Terra Firma,Traverse City, MI +86,Grey Sail Brewing Company,Westerly, RI +87,Kirkwood Station Brewing Company,Kirkwood, MO +88,Goose Island Brewing Company,Chicago, IL +89,Broad Brook Brewing LLC,East Windsor, CT +90,The Lion Brewery,Wilkes-Barre, PA +91,Madtree Brewing Company,Cincinnati, OH +92,Jackie O's Pub & Brewery,Athens, OH +93,Rhinegeist Brewery,Cincinnati, OH +94,Warped Wing Brewing Company,Dayton, OH +95,Blackrocks Brewery,Marquette, MA +96,Catawba Valley Brewing Company,Morganton, NC +97,Tröegs Brewing Company,Hershey, PA +98,Mission Brewery,San Diego, CA +99,Christian Moerlein Brewing Company,Cincinnati, OH +100,West Sixth Brewing,Lexington, KY +101,Coastal Extreme Brewing Company,Newport, RI +102,King Street Brewing Company,Anchorage, AK +103,Beer Works Brewery,Lowell, MA +104,Lone Tree Brewing Company,Lone Tree, CO +105,Four String Brewing Company,Columbus, OH +106,Glabrous Brewing Company,Pineland, ME +107,Bonfire Brewing Company,Eagle, CO +108,Thomas Hooker Brewing Company,Bloomfield, CT +109,"Woodstock Inn, Station & Brewery",North Woodstock, NH +110,Renegade Brewing Company,Denver, CO +111,Mother Earth Brew Company,Vista, CA +112,Black Market Brewing Company,Temecula, CA +113,Vault Brewing Company,Yardley, PA +114,Jailbreak Brewing Company,Laurel, MD +115,Smartmouth Brewing Company,Norfolk, VA +116,Base Camp Brewing Co.,Portland, OR +117,Alameda Brewing,Portland, OR +118,Southern Star Brewing Company,Conroe, TX +119,Steamworks Brewing Company,Durango, CO +120,Horny Goat Brew Pub,Milwaukee, WI +121,Cheboygan Brewing Company,Cheboygan, MI +122,Center of the Universe Brewing C...,Ashland, VA +123,Ipswich Ale Brewery,Ipswich, MA +124,Griffin Claw Brewing Company,Birmingham, MI +125,Karbach Brewing Company,Houston, TX +126,Uncle Billy's Brewery and Smokeh...,Austin, TX +127,Deep Ellum Brewing Company,Dallas, TX +128,Real Ale Brewing Company,Blanco, TX +129,Straub Brewery,St Mary's, PA +130,Shebeen Brewing Company,Wolcott, CT +131,Stevens Point Brewery,Stevens Point, WI +132,Weston Brewing Company,Weston, MO +133,Southern Prohibition Brewing Com...,Hattiesburg, MS +134,Minhas Craft Brewery,Monroe, WI +135,Pug Ryan's Brewery,Dillon, CO +136,Hops & Grains Brewing Company,Austin, TX +137,Sietsema Orchards and Cider Mill,Ada, MI +138,Summit Brewing Company,St Paul, MN +139,Core Brewing & Distilling Company,Springdale, AR +140,Independence Brewing Company,Austin, TX +141,Cigar City Brewing Company,Tampa, FL +142,Third Street Brewhouse,Cold Spring, MN +143,Narragansett Brewing Company,Providence, RI +144,Grimm Brothers Brewhouse,Loveland, CO +145,Cisco Brewers,Nantucket, MA +146,Angry Minnow,Hayward, WI +147,Platform Beer Company,Cleveland, OH +148,Odyssey Beerwerks,Arvada, CO +149,Lonerider Brewing Company,Raleigh, NC +150,Oakshire Brewing,Eugene, OR +151,Fort Pitt Brewing Company,Latrobe, PA +152,Tin Roof Brewing Company,Baton Rouge, LA +153,Three Creeks Brewing,Sisters, OR +154,2 Towns Ciderhouse,Corvallis, OR +155,Caldera Brewing Company,Ashland, OR +156,Greenbrier Valley Brewing Company,Lewisburg, WV +157,Phoenix Ale Brewery,Phoenix, AZ +158,Lumberyard Brewing Company,Flagstaff, AZ +159,Uinta Brewing Company,Salt Lake City, UT +160,Four Peaks Brewing Company,Tempe, AZ +161,Martin House Brewing Company,Fort Worth, TX +162,Right Brain Brewery,Traverse City, MI +163,Sly Fox Brewing Company,Phoenixville, PA +164,Round Guys Brewing,Lansdale, PA +165,Great Crescent Brewery,Aurora, IN +166,Oskar Blues Brewery,Longmont, CO +167,Boxcar Brewing Company,West Chester, PA +168,High Hops Brewery,Windsor, CO +169,Crooked Fence Brewing Company,Garden City, ID +170,Everybody's Brewing,White Salmon, WA +171,Anderson Valley Brewing Company,Boonville, CA +172,Fiddlehead Brewing Company,Shelburne, VT +173,Evil Twin Brewing,Brooklyn, NY +174,New Orleans Lager & Ale Brewing ...,New Orleans, LA +175,Spiteful Brewing Company,Chicago, IL +176,Rahr & Sons Brewing Company,Fort Worth, TX +177,18th Street Brewery,Gary, IN +178,Cambridge Brewing Company,Cambridge, MA +179,Carolina Brewery,Pittsboro, NC +180,Frog Level Brewing Company,Waynesville, NC +181,Wild Wolf Brewing Company,Nellysford, VA +182,COOP Ale Works,Oklahoma City, OK +183,Seventh Son Brewing Company,Columbus, OH +184,Oasis Texas Brewing Company,Austin, TX +185,Vander Mill Ciders,Spring Lake, MI +186,St. Julian Winery,Paw Paw, MI +187,Pedernales Brewing Company,Fredericksburg, TX +188,Mother's Brewing,Springfield, MO +189,Modern Monks Brewery,Lincoln, NE +190,Two Beers Brewing Company,Seattle, WA +191,Snake River Brewing Company,Jackson, WY +192,Capital Brewery,Middleton, WI +193,Anthem Brewing Company,Oklahoma City, OK +194,Goodlife Brewing Co.,Bend, OR +195,Breakside Brewery,Portland, OR +196,Goose Island Brewery Company,Chicago, IL +197,Burnside Brewing Co.,Portland, OR +198,Hop Valley Brewing Company,Springfield, OR +199,Worthy Brewing Company,Bend, OR +200,Occidental Brewing Company,Portland, OR +201,Fearless Brewing Company,Estacada, OR +202,Upland Brewing Company,Bloomington, IN +203,Mehana Brewing Co.,Hilo, HI +204,Hawai'i Nui Brewing Co.,Hilo, HI +205,People's Brewing Company,Lafayette, IN +206,Fort George Brewery,Astoria, OR +207,Branchline Brewing Company,San Antonio, TX +208,Kalona Brewing Company,Kalona, IA +209,Modern Times Beer,San Diego, CA +210,Temperance Beer Company,Evanston, IL +211,Wisconsin Brewing Company,Verona, WI +212,Crow Peak Brewing Company,Spearfish, SD +213,Grapevine Craft Brewery,Farmers Branch, TX +214,Buffalo Bayou Brewing Company,Houston, TX +215,Texian Brewing Co.,Richmond, TX +216,Orpheus Brewing,Atlanta, GA +217,Forgotten Boardwalk,Cherry Hill, NJ +218,Laughing Dog Brewing Company,Ponderay, ID +219,Bozeman Brewing Company,Bozeman, MT +220,Big Choice Brewing,Broomfield, CO +221,Big Storm Brewing Company,Odessa, FL +222,Carton Brewing Company,Atlantic Highlands, NJ +223,Midnight Sun Brewing Company,Anchorage, AK +224,Fat Head's Brewery,Middleburg Heights, OH +225,Refuge Brewery,Temecula, CA +226,Chatham Brewing,Chatham, NY +227,DC Brau Brewing Company,Washington, DC +228,Geneva Lake Brewing Company,Lake Geneva, WI +229,Rochester Mills Brewing Company,Rochester, MI +230,Cape Ann Brewing Company,Gloucester, MA +231,Borderlands Brewing Company,Tucson, AZ +232,College Street Brewhouse and Pub,Lake Havasu City, AZ +233,Joseph James Brewing Company,Henderson, NV +234,Harpoon Brewery,Boston, MA +235,Back East Brewing Company,Bloomfield, CT +236,Champion Brewing Company,Charlottesville, VA +237,Devil's Backbone Brewing Company,Lexington, VA +238,Newburgh Brewing Company,Newburgh, NY +239,Wiseacre Brewing Company,Memphis, TN +240,Golden Road Brewing,Los Angeles, CA +241,New Republic Brewing Company,College Station, TX +242,Infamous Brewing Company,Austin, TX +243,Two Henrys Brewing Company,Plant City, FL +244,Lift Bridge Brewing Company,Stillwater, MN +245,Lucky Town Brewing Company,Jackson, MS +246,Quest Brewing Company,Greenville, SC +247,Creature Comforts,Athens, GA +248,Half Full Brewery,Stamford, CT +249,Southampton Publick House,Southampton, NY +250,Chapman's Brewing,Angola, IN +251,Barrio Brewing Company,Tucson, AZ +252,Santa Cruz Mountain Brewing,Santa Cruz, CA +253,Frankenmuth Brewery,Frankenmuth, MI +254,Meckley's Cidery,Somerset Center, MI +255,Stillwater Artisanal Ales,Baltimore, MD +256,Finch's Beer Company,Chicago, IL +257,South Austin Brewery,South Austin, TX +258,Bauhaus Brew Labs,Minneapolis, MN +259,Ozark Beer Company,Rogers, AR +260,Mountain Town Brewing Company ,Mount Pleasant, MI +261,Otter Creek Brewing,Waterbury, VT +262,The Brewer's Art,Baltimore, MD +263,Denver Beer Company,Denver, CO +264,Ska Brewing Company,Durango, CO +265,Tractor Brewing Company,Albuquerque, NM +266,Peak Organic Brewing Company,Portland, ME +267,Cape Cod Beer,Hyannis, MA +268,Long Trail Brewing Company,Bridgewater Corners, VT +269,Great Raft Brewing Company,Shreveport, LA +270,Alaskan Brewing Company,Juneau, AK +271,Notch Brewing Company,Ipswich, MA +272,The Alchemist,Waterbury, VT +273,Three Notch'd Brewing Company,Charlottesville, VA +274,Portside Brewery,Cleveland, OH +275,Otter Creek Brewing,Middlebury, VT +276,Montauk Brewing Company,Montauk, NY +277,Indeed Brewing Company,Minneapolis, MN +278,Berkshire Brewing Company,South Deerfield, MA +279,Foolproof Brewing Company,Pawtucket, RI +280,Headlands Brewing Company,Mill Valley, CA +281,Bolero Snort Brewery,Ridgefield Park, NJ +282,Thunderhead Brewing Company,Kearney, NE +283,Defiance Brewing Company,Hays, KS +284,Milwaukee Brewing Company,Milwaukee, WI +285,Catawba Island Brewing,Port Clinton, OH +286,Back Forty Beer Company,Gadsden, AL +287,Four Corners Brewing Company,Dallas, TX +288,Saint Archer Brewery,San Diego, CA +289,Rogue Ales,Newport, OR +290,Hale's Ales,Seattle, WA +291,Tommyknocker Brewery,Idaho Springs, CO +292,Baxter Brewing Company,Lewiston, ME +293,Northampton Brewery,Northamtpon, MA +294,Black Shirt Brewing Company,Denver, CO +295,Wachusett Brewing Company,Westminster, MA +296,Widmer Brothers Brewing Company,Portland, OR +297,Hop Farm Brewing Company,Pittsburgh, PA +298,Liquid Hero Brewery,York, PA +299,Matt Brewing Company,Utica, NY +300,Boston Beer Company,Boston, MA +301,Old Forge Brewing Company,Danville, PA +302,Utah Brewers Cooperative,Salt Lake City, UT +303,Magic Hat Brewing Company,South Burlington, VT +304,Blue Hills Brewery,Canton, MA +305,Night Shift Brewing,Everett, MA +306,Beach Brewing Company,Virginia Beach, VA +307,Payette Brewing Company,Garden City, ID +308,Brew Bus Brewing,Tampa, FL +309,Sockeye Brewing Company,Boise, ID +310,Pine Street Brewery,San Francisco, CA +311,Dirty Bucket Brewing Company,Woodinville, WA +312,Jackalope Brewing Company,Nashville, TN +313,Slanted Rock Brewing Company,Meridian, ID +314,Piney River Brewing Company,Bucryus, MO +315,Cutters Brewing Company,Avon, IN +316,Iron Hill Brewery & Restaurant,Wilmington, DE +317,Marshall Wharf Brewing Company,Belfast, ME +318,Banner Beer Company,Williamsburg, MA +319,Dick's Brewing Company,Centralia, WA +320,Claremont Craft Ales,Claremont, CA +321,Rivertown Brewing Company,Lockland, OH +322,Voodoo Brewery,Meadville, PA +323,D.L. Geary Brewing Company,Portland, ME +324,Pisgah Brewing Company,Black Mountain, NC +325,Neshaminy Creek Brewing Company,Croydon, PA +326,Morgan Street Brewery,Saint Louis, MO +327,Half Acre Beer Company,Chicago, IL +328,The Just Beer Project,Burlington, VT +329,The Bronx Brewery,Bronx, NY +330,Dead Armadillo Craft Brewing,Tulsa, OK +331,Catawba Brewing Company,Morganton, NC +332,La Cumbre Brewing Company,Albuquerque, NM +333,David's Ale Works,Diamond Springs, CA +334,The Traveler Beer Company,Burlington, VT +335,Fargo Brewing Company,Fargo, ND +336,Big Sky Brewing Company,Missoula, MT +337,Nebraska Brewing Company,Papillion, NE +338,Uncle John's Fruit House Winery,St. John's, MI +339,Wormtown Brewery,Worcester, MA +340,Due South Brewing Company,Boynton Beach, FL +341,Palisade Brewing Company,Palisade, CO +342,KelSo Beer Company,Brooklyn, NY +343,Hardywood Park Craft Brewery,Richmond, VA +344,Wolf Hills Brewing Company,Abingdon, VA +345,Lavery Brewing Company,Erie, PA +346,Manzanita Brewing Company,Santee, CA +347,Fullsteam Brewery,Durham, NC +348,Four Horsemen Brewing Company,South Bend, IN +349,Hinterland Brewery,Green Bay, WI +350,Central Coast Brewing Company,San Luis Obispo, CA +351,Westfield River Brewing Company,Westfield, MA +352,Elevator Brewing Company,Columbus, OH +353,Aslan Brewing Company,Bellingham, WA +354,Kulshan Brewery,Bellingham, WA +355,Pikes Peak Brewing Company,Monument, CO +356,Manayunk Brewing Company,Philadelphia, PA +357,Buckeye Brewing,Cleveland, OH +358,Daredevil Brewing Company,Shelbyville, IN +359,NoDa Brewing Company,Charlotte, NC +360,Aviator Brewing Company,Fuquay-Varina, NC +361,Wild Onion Brewing Company,Lake Barrington, IL +362,Hilliard's Beer,Seattle, WA +363,Mikkeller,Pottstown, PA +364,Bohemian Brewery,Midvale, UT +365,Great River Brewery,Davenport, IA +366,Mustang Brewing Company,Mustang, OK +367,Airways Brewing Company,Kent, WA +368,21st Amendment Brewery,San Francisco, CA +369,Eddyline Brewery & Restaurant,Buena Vista, CO +370,Pizza Port Brewing Company,Carlsbad, CA +371,Sly Fox Brewing Company,Pottstown, PA +372,Spring House Brewing Company,Conestoga, PA +373,7venth Sun,Dunedin, FL +374,Astoria Brewing Company,Astoria, OR +375,Maui Brewing Company,Lahaina, HI +376,RoughTail Brewing Company,Midwest City, OK +377,Lucette Brewing Company,Menominee, WI +378,Bold City Brewery,Jacksonville, FL +379,Grey Sail Brewing of Rhode Island,Westerly, RI +380,Blue Blood Brewing Company,Lincoln, NE +381,Swashbuckler Brewing Company,Manheim, PA +382,Blue Mountain Brewery,Afton, VA +383,Starr Hill Brewery,Crozet, VA +384,Westbrook Brewing Company,Mt. Pleasant, SC +385,Shipyard Brewing Company,Portland, ME +386,Revolution Brewing,Paonia, CO +387,Natian Brewery,Portland, OR +388,Alltech's Lexington Brewing Company,Lexington, KY +389,Oskar Blues Brewery (North Carol...,Brevard, NC +390,Orlison Brewing Company,Airway Heights, WA +391,Breckenridge Brewery,Denver, CO +392,Santa Fe Brewing Company,Santa Fe, NM +393,Miami Brewing Company,Miami, FL +394,Schilling & Company,Seattle, WA +395,Hops & Grain Brewery,Austin, TX +396,White Flame Brewing Company,Hudsonville, MI +397,Ruhstaller Beer Company,Sacramento, CA +398,Saugatuck Brewing Company,Douglas, MI +399,Moab Brewery,Moab, UT +400,Macon Beer Company,Macon, GA +401,Amnesia Brewing Company,Washougal, WA +402,Wolverine State Brewing Company,Ann Arbor, MI +403,Red Tank Cider Company,Bend, OR +404,Cascadia Ciderworks United,Portland, OR +405,Fate Brewing Company,Boulder, CO +406,Lazy Monk Brewing,Eau Claire, WI +407,Bitter Root Brewing,Hamilton, MT +408,10 Barrel Brewing Company,Bend, OR +409,Tamarack Brewing Company,Lakeside, MT +410,New England Brewing Company,Woodbridge, CT +411,Seattle Cider Company,Seattle, WA +412,Straight to Ale,Huntsville, AL +413,Austin Beerworks,Austin, TX +414,Blue Mountain Brewery,Arrington, VA +415,Coastal Empire Beer Company,Savannah, GA +416,Jack's Hard Cider (Hauser Estate...,Biglerville, PA +417,Boulder Beer Company,Boulder, CO +418,Coalition Brewing Company,Portland, OR +419,Sanitas Brewing Company,Boulder, CO +420,Gore Range Brewery,Edwards, CO +421,Redstone Meadery,Boulder, CO +422,Blue Dog Mead,Eugene, OR +423,Hess Brewing Company,San Diego, CA +424,Wynkoop Brewing Company,Denver, CO +425,Ciderboys,Stevens Point, WI +426,Armadillo Ale Works,Denton, TX +427,Roanoke Railhouse Brewery,Roanoke, VA +428,Schlafly Brewing Company,Saint Louis, MO +429,Asher Brewing Company,Boulder, CO +430,Lost Rhino Brewing Company,Ashburn, VA +431,North Country Brewing Company,Slippery Rock, PA +432,Seabright Brewery,Santa Cruz, CA +433,French Broad Brewery,Asheville, NC +434,Angry Orchard Cider Company,Cincinnati, OH +435,Two Roads Brewing Company,Stratford, CT +436,Southern Oregon Brewing Company,Medford, OR +437,Brooklyn Brewery,Brooklyn, NY +438,The Right Brain Brewery,Traverse City, MI +439,Kona Brewing Company,Kona, HI +440,MillKing It Productions,Royal Oak, MI +441,Pateros Creek Brewing Company,Fort Collins, CO +442,O'Fallon Brewery,O'Fallon, MO +443,Marble Brewery,Albuquerque, NM +444,Big Wood Brewery,Vadnais Heights, MN +445,Howard Brewing Company,Lenoir, NC +446,Downeast Cider House,Leominster, MA +447,Swamp Head Brewery,Gainesville, FL +448,Mavericks Beer Company,Half Moon Bay, CA +449,TailGate Beer,San Diego, CA +450,Northwest Brewing Company,Pacific, WA +451,Dad & Dude's Breweria,Aurora, CO +452,Centennial Beer Company,Edwards, CO +453,Denali Brewing Company,Talkeetna, AK +454,Deschutes Brewery,Bend, OR +455,Sunken City Brewing Company,Hardy, VA +456,Lucette Brewing Company,Menominie, WI +457,The Black Tooth Brewing Company,Sheridan, WY +458,Kenai River Brewing Company,Soldotna, AK +459,River North Brewery,Denver, CO +460,Fremont Brewing Company,Seattle, WA +461,Armstrong Brewing Company,South San Francisco, CA +462,AC Golden Brewing Company,Golden, CO +463,Big Bend Brewing Company,Alpine, TX +464,Good Life Brewing Company,Bend, OR +465,Engine 15 Brewing,Jacksonville Beach, FL +466,Green Room Brewing,Jacksonville, FL +467,Brindle Dog Brewing Company,Tampa Bay, FL +468,Peace Tree Brewing Company,Knoxville, IA +469,Terrapin Brewing Company,Athens, GA +470,Pete's Brewing Company,San Antonio, TX +471,Okoboji Brewing Company,Spirit Lake, IA +472,Crystal Springs Brewing Company,Boulder, CO +473,Engine House 9,Tacoma, WA +474,Tonka Beer Company,Minnetonka, MN +475,Red Hare Brewing Company,Marietta, GA +476,Hangar 24 Craft Brewery,Redlands, CA +477,Big Elm Brewing,Sheffield, MA +478,Good People Brewing Company,Birmingham, AL +479,Heavy Seas Beer,Halethorpe, MD +480,Telluride Brewing Company,Telluride, CO +481,7 Seas Brewing Company,Gig Harbor, WA +482,Confluence Brewing Company,Des Moines, IA +483,Bale Breaker Brewing Company,Yakima, WA +484,The Manhattan Brewing Company,New York, NY +485,MacTarnahans Brewing Company,Portland, OR +486,Stillmank Beer Company,Green Bay, WI +487,Redhook Brewery,Woodinville, WA +488,Dock Street Brewery,Philadelphia, PA +489,Blue Point Brewing Company,Patchogue, NY +490,Tampa Bay Brewing Company,Tampa, FL +491,Devil's Canyon Brewery,Belmont, CA +492,Stone Coast Brewing Company,Portland, ME +493,Broken Tooth Brewing Company,Anchorage, AK +494,Seven Brides Brewery,Silverton, OR +495,Newburyport Brewing Company,Newburyport, MA +496,Dry Dock Brewing Company,Aurora, CO +497,Cans Bar and Canteen,Charlotte, NC +498,Sprecher Brewing Company,Glendale, WI +499,Wildwood Brewing Company,Stevensville, MT +500,High Noon Saloon And Brewery,Leavenworth, KS +501,Woodchuck Hard Cider,Middlebury, VT +502,Sea Dog Brewing Company,Portland, ME +503,Oskar Blues Brewery,Lyons, CO +504,Carolina Beer & Beverage,Mooresville, NC +505,Krebs Brewing Company (Pete's Pl...,Krebs, OK +506,Warbird Brewing Company,Fort Wayne, IN +507,Mudshark Brewing Company,Lake Havasu City, AZ +508,Spilker Ales,Cortland, NE +509,Wingman Brewers,Tacoma, WA +510,Kettle House Brewing Company,Missoula, MT +511,Sherwood Forest Brewers,Marlborough, MA +512,Cottrell Brewing,Pawcatuck, CT +513,Arctic Craft Brewery,Colorado Springs, CO +514,Monkey Paw Pub & Brewery,San Diego, CA +515,Crabtree Brewing Company,Greeley, CO +516,Emerald City Beer Company,Seattle, WA +517,Butcher's Brewing,Carlsbad, CA +518,New South Brewing Company,Myrtle Beach, SC +519,Big River Brewing Company,Chattanooga, TN +520,Twisted Pine Brewing Company,Boulder, CO +521,Flying Dog Brewery,Frederick, MD +522,Uncommon Brewers,Santa Cruz, CA +523,Aspen Brewing Company,Aspen, CO +524,Triangle Brewing Company,Durham, NC +525,Bomb Beer Company,New York, NY +526,Churchkey Can Company,Seattle, WA +527,Intuition Ale Works,Jacksonville, FL +528,Asheville Brewing Company,Asheville, NC +529,Northwoods Brewpub,Eau Claire, WI +530,Buckbean Brewing Company,Reno, NV +531,Dolores River Brewery,Dolores, CO +532,Flat Rock Brewing Company,Smithton, PA +533,Abita Brewing Company,Abita Springs, LA +534,Mammoth Brewing Company,Mammoth Lakes, CA +535,Harvest Moon Brewing Company,Belt, MT +536,Grand Canyon Brewing Company,Williams, AZ +537,Lewis and Clark Brewing Company,Helena, MT +538,Dundee Brewing Company,Rochester, NY +539,Twin Lakes Brewing Company,Greenville, DE +540,Mother Earth Brewing Company,Kinston, NC +541,Arcadia Brewing Company,Battle Creek, MI +542,Angry Minnow Brewing Company,Hayward, WI +543,Great Northern Brewing Company,Whitefish, MT +544,Pyramid Breweries,Seattle, WA +545,Lancaster Brewing Company,Lancaster, PA +546,Upstate Brewing Company,Elmira, NY +547,Moat Mountain Smoke House & Brew...,North Conway, NH +548,Prescott Brewing Company,Prescott, AZ +549,Mogollon Brewing Company,Flagstaff, AZ +550,Wind River Brewing Company,Pinedale, WY +551,Silverton Brewery,Silverton, CO +552,Mickey Finn's Brewery,Libertyville, IL +553,Covington Brewhouse,Covington, LA +554,Dave's Brewfarm,Wilson, WI +555,Ukiah Brewing Company,Ukiah, CA +556,Butternuts Beer and Ale,Garrattsville, NY +557,Sleeping Lady Brewing Company,Anchorage, AK diff --git a/DataLayer/data_source/breweries.json b/DataLayer/data_source/breweries.json new file mode 100644 index 0000000..4f20f9f --- /dev/null +++ b/DataLayer/data_source/breweries.json @@ -0,0 +1,162686 @@ +[ + { + "id": "5128df48-79fc-4f0f-8b52-d06be54d0cec", + "name": "(405) Brewing Co", + "brewery_type": "micro", + "address_1": "1716 Topeka St", + "address_2": null, + "address_3": null, + "city": "Norman", + "state_province": "Oklahoma", + "postal_code": "73069-8224", + "country": "United States", + "longitude": -97.46818222, + "latitude": 35.25738891, + "phone": "4058160490", + "website_url": "http://www.405brewing.com", + "state": "Oklahoma", + "street": "1716 Topeka St" + }, + { + "id": "9c5a66c8-cc13-416f-a5d9-0a769c87d318", + "name": "(512) Brewing Co", + "brewery_type": "micro", + "address_1": "407 Radam Ln Ste F200", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78745-1197", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5129211545", + "website_url": "http://www.512brewing.com", + "state": "Texas", + "street": "407 Radam Ln Ste F200" + }, + { + "id": "34e8c68b-6146-453f-a4b9-1f6cd99a5ada", + "name": "1 of Us Brewing Company", + "brewery_type": "micro", + "address_1": "8100 Washington Ave", + "address_2": null, + "address_3": null, + "city": "Mount Pleasant", + "state_province": "Wisconsin", + "postal_code": "53406-3920", + "country": "United States", + "longitude": -87.883363502094, + "latitude": 42.720108268996, + "phone": "2624847553", + "website_url": "https://www.1ofusbrewing.com", + "state": "Wisconsin", + "street": "8100 Washington Ave" + }, + { + "id": "6d14b220-8926-4521-8d19-b98a2d6ec3db", + "name": "10 Barrel Brewing Co", + "brewery_type": "large", + "address_1": "62970 18th St", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97701-9847", + "country": "United States", + "longitude": -121.281706, + "latitude": 44.08683531, + "phone": "5415851007", + "website_url": "http://www.10barrel.com", + "state": "Oregon", + "street": "62970 18th St" + }, + { + "id": "e2e78bd8-80ff-4a61-a65c-3bfbd9d76ce2", + "name": "10 Barrel Brewing Co", + "brewery_type": "large", + "address_1": "1135 NW Galveston Ave Ste B", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97703-2465", + "country": "United States", + "longitude": -121.3288021, + "latitude": 44.0575649, + "phone": "5415851007", + "website_url": null, + "state": "Oregon", + "street": "1135 NW Galveston Ave Ste B" + }, + { + "id": "e432899b-7f58-455f-9c7b-9a6e2130a1e0", + "name": "10 Barrel Brewing Co", + "brewery_type": "large", + "address_1": "1411 NW Flanders St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97209-2620", + "country": "United States", + "longitude": -122.6855056, + "latitude": 45.5259786, + "phone": "5032241700", + "website_url": "http://www.10barrel.com", + "state": "Oregon", + "street": "1411 NW Flanders St" + }, + { + "id": "ef970757-fe42-416f-931d-722451f1f59c", + "name": "10 Barrel Brewing Co", + "brewery_type": "large", + "address_1": "1501 E St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92101-6618", + "country": "United States", + "longitude": -117.129593, + "latitude": 32.714813, + "phone": "6195782311", + "website_url": "http://10barrel.com", + "state": "California", + "street": "1501 E St" + }, + { + "id": "9f1852da-c312-42da-9a31-097bac81c4c0", + "name": "10 Barrel Brewing Co - Bend Pub", + "brewery_type": "large", + "address_1": "62950 NE 18th St", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97701", + "country": "United States", + "longitude": -121.2809536, + "latitude": 44.0912109, + "phone": "5415851007", + "website_url": null, + "state": "Oregon", + "street": "62950 NE 18th St" + }, + { + "id": "ea4f30c0-bce6-416b-8904-fab4055a7362", + "name": "10 Barrel Brewing Co - Boise", + "brewery_type": "large", + "address_1": "826 W Bannock St", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83702-5857", + "country": "United States", + "longitude": -116.202929, + "latitude": 43.618516, + "phone": "2083445870", + "website_url": "http://www.10barrel.com", + "state": "Idaho", + "street": "826 W Bannock St" + }, + { + "id": "1988eb86-f0a2-4674-ba04-02454efa0d31", + "name": "10 Barrel Brewing Co - Denver", + "brewery_type": "large", + "address_1": "2620 Walnut St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80205-2231", + "country": "United States", + "longitude": -104.9853655, + "latitude": 39.7592508, + "phone": "7205738992", + "website_url": null, + "state": "Colorado", + "street": "2620 Walnut St" + }, + { + "id": "1ecc330f-6275-42a5-b14e-00adbed62752", + "name": "10 Torr Distilling and Brewing", + "brewery_type": "micro", + "address_1": "490 Mill St", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89502", + "country": "United States", + "longitude": -119.7732015, + "latitude": 39.5171702, + "phone": "7755307014", + "website_url": "http://www.10torr.com", + "state": "Nevada", + "street": "490 Mill St" + }, + { + "id": "7531dbd8-afc9-4b5b-95bc-7ece7f2c0bf3", + "name": "10-56 Brewing Company", + "brewery_type": "micro", + "address_1": "400 Brown Cir", + "address_2": null, + "address_3": null, + "city": "Knox", + "state_province": "Indiana", + "postal_code": "46534", + "country": "United States", + "longitude": -86.627954, + "latitude": 41.289715, + "phone": "6308165790", + "website_url": null, + "state": "Indiana", + "street": "400 Brown Cir" + }, + { + "id": "49eaa1ab-5cee-40cd-a0dc-da14ba2b7dac", + "name": "1000 Hills Brewing Company", + "brewery_type": "brewpub", + "address_1": "168 Old Main Road", + "address_2": " Botha's Hill", + "address_3": null, + "city": "Durban", + "state_province": "KwaZulu-Natal", + "postal_code": "3610", + "country": "South Africa", + "longitude": 30.7063, + "latitude": -29.7711, + "phone": "+27 31 777 1566", + "website_url": "https://1000hillsbrewingcompany.co.za/", + "state": "KwaZulu-Natal", + "street": "168 Old Main Road" + }, + { + "id": "5ae467af-66dc-4d7f-8839-44228f89b596", + "name": "101 North Brewing Company", + "brewery_type": "closed", + "address_1": "1304 Scott St Ste D", + "address_2": null, + "address_3": null, + "city": "Petaluma", + "state_province": "California", + "postal_code": "94954-7100", + "country": "United States", + "longitude": -122.665055, + "latitude": 38.27029381, + "phone": "7077534934", + "website_url": "http://www.101northbeer.com", + "state": "California", + "street": "1304 Scott St Ste D" + }, + { + "id": "4ffda196-dd59-44a5-9eeb-5f7fd4b58f5a", + "name": "105 West Brewing Co", + "brewery_type": "micro", + "address_1": "1043 Park St", + "address_2": null, + "address_3": null, + "city": "Castle Rock", + "state_province": "Colorado", + "postal_code": "80109-1585", + "country": "United States", + "longitude": -104.8667206, + "latitude": 39.38269495, + "phone": "3033257321", + "website_url": "http://www.105westbrewing.com", + "state": "Colorado", + "street": "1043 Park St" + }, + { + "id": "42aa37d5-8384-4ffe-8c81-7c982eff0384", + "name": "10K Brewing", + "brewery_type": "micro", + "address_1": "2005 2nd Ave", + "address_2": null, + "address_3": null, + "city": "Anoka", + "state_province": "Minnesota", + "postal_code": "55303-2243", + "country": "United States", + "longitude": -93.38952559, + "latitude": 45.19812039, + "phone": "7633924753", + "website_url": "http://10KBrew.com", + "state": "Minnesota", + "street": "2005 2nd Ave" + }, + { + "id": "232e8f62-9afc-45f5-b4bc-582c26b5c43b", + "name": "10th District Brewing Company", + "brewery_type": "micro", + "address_1": "491 Washington St", + "address_2": null, + "address_3": null, + "city": "Abington", + "state_province": "Massachusetts", + "postal_code": "02351-2419", + "country": "United States", + "longitude": -70.94594149, + "latitude": 42.10591754, + "phone": "7813071554", + "website_url": "http://www.10thdistrictbrewing.com", + "state": "Massachusetts", + "street": "491 Washington St" + }, + { + "id": "08f78223-24f8-4b71-b381-ea19a5bd82df", + "name": "11 Below Brewing Company", + "brewery_type": "micro", + "address_1": "6820 Bourgeois Rd", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77066-3107", + "country": "United States", + "longitude": -95.5186591, + "latitude": 29.9515464, + "phone": "2814442337", + "website_url": "http://www.11belowbrewing.com", + "state": "Texas", + "street": "6820 Bourgeois Rd" + }, + { + "id": "58293321-14ae-49d7-9a7b-08436c9e63a6", + "name": "1188 Brewing Co", + "brewery_type": "brewpub", + "address_1": "141 E Main St", + "address_2": null, + "address_3": null, + "city": "John Day", + "state_province": "Oregon", + "postal_code": "97845-1210", + "country": "United States", + "longitude": -118.9218754, + "latitude": 44.4146563, + "phone": "5415751188", + "website_url": "http://www.1188brewing.com", + "state": "Oregon", + "street": "141 E Main St" + }, + { + "id": "e5f3e72a-fee2-4813-82cf-f2e53b439ae6", + "name": "12 Acres Brewing Company", + "brewery_type": "micro", + "address_1": "Unnamed Street", + "address_2": "Clonmore", + "address_3": null, + "city": "Killeshin", + "state_province": "Laois", + "postal_code": "R93 X3X8", + "country": "Ireland", + "longitude": -6.979343891, + "latitude": 52.84930763, + "phone": "353599107299", + "website_url": "https://12acresbrewing.ie/", + "state": "Laois", + "street": "Unnamed Street" + }, + { + "id": "d81ff708-b5d2-478f-af6a-6d40f5beb9ac", + "name": "12 Gates Brewing Company", + "brewery_type": "brewpub", + "address_1": "80 Earhart Dr Ste 20", + "address_2": null, + "address_3": null, + "city": "Williamsville", + "state_province": "New York", + "postal_code": "14221-7804", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7169066600", + "website_url": "http://www.12gatesbrewing.com", + "state": "New York", + "street": "80 Earhart Dr Ste 20" + }, + { + "id": "fb94830f-6196-4f59-9189-c9060b778085", + "name": "12 West Brewing Company", + "brewery_type": "micro", + "address_1": "3000 E Ray Rd Bldg 6", + "address_2": null, + "address_3": null, + "city": "Gilbert", + "state_province": "Arizona", + "postal_code": "85296-7832", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6023395014", + "website_url": "http://www.12westbrewing.com", + "state": "Arizona", + "street": "3000 E Ray Rd Bldg 6" + }, + { + "id": "0faa0fb2-fffa-416d-9eab-46f67477c8ef", + "name": "12 West Brewing Company - Production Facility", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mesa", + "state_province": "Arizona", + "postal_code": "85207", + "country": "United States", + "longitude": -111.5860662, + "latitude": 33.436188, + "phone": null, + "website_url": null, + "state": "Arizona", + "street": null + }, + { + "id": "e54c2f02-acd6-4172-861d-fcfa54c8701a", + "name": "122 West Brewing Co", + "brewery_type": "closed", + "address_1": "2416 Meridian St", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98225-2405", + "country": "United States", + "longitude": -122.485982, + "latitude": 48.7621709, + "phone": "3603063285", + "website_url": "https://www.122westbrew.com/", + "state": "Washington", + "street": "2416 Meridian St" + }, + { + "id": "d5cb896d-3e99-4e19-9693-5e06ce987e53", + "name": "127 Brewing", + "brewery_type": "micro", + "address_1": "3090 Shirley Dr", + "address_2": null, + "address_3": null, + "city": "Jackson", + "state_province": "Michigan", + "postal_code": "49201-7010", + "country": "United States", + "longitude": -84.43116792, + "latitude": 42.28667212, + "phone": "5172581346", + "website_url": null, + "state": "Michigan", + "street": "3090 Shirley Dr" + }, + { + "id": "06e9fffb-e820-45c9-b107-b52b51013e8f", + "name": "12Degree Brewing", + "brewery_type": "brewpub", + "address_1": "820 Main St", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Colorado", + "postal_code": "80027-1865", + "country": "United States", + "longitude": -105.1319826, + "latitude": 39.9782443, + "phone": "3035791004", + "website_url": "http://www.12degree.com", + "state": "Colorado", + "street": "820 Main St" + }, + { + "id": "50521ef7-f543-4c5d-98b1-0d0ee1a2be01", + "name": "12welve Eyes Brewing", + "brewery_type": "micro", + "address_1": "141 E 4th St Ste LL2", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55101-1639", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6514938106", + "website_url": "http://www.12welveEyes.com", + "state": "Minnesota", + "street": "141 E 4th St Ste LL2" + }, + { + "id": "950180bd-29c9-46b3-ad0c-e6f09799ec7f", + "name": "13 Below Brewery", + "brewery_type": "micro", + "address_1": "7391 Forbes Rd", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45233-1013", + "country": "United States", + "longitude": -84.70634815, + "latitude": 39.12639764, + "phone": "5139750613", + "website_url": "http://www.13belowbrewery.com", + "state": "Ohio", + "street": "7391 Forbes Rd" + }, + { + "id": "45119c56-345b-4adc-b481-c5cf7bfe98c4", + "name": "13 Stripes Brewery", + "brewery_type": "brewpub", + "address_1": "250 Mill St, Suite PW3101", + "address_2": null, + "address_3": null, + "city": "Taylors", + "state_province": "South Carolina", + "postal_code": "29687", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8643491430", + "website_url": "http://www.13StripesBrewery.com", + "state": "South Carolina", + "street": "250 Mill St, Suite PW3101" + }, + { + "id": "936c3d7e-5d54-4459-b72c-117cdda059b4", + "name": "13 Virtues Brewing Co", + "brewery_type": "brewpub", + "address_1": "6410 SE Milwaukie Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97202-5518", + "country": "United States", + "longitude": -122.6487531, + "latitude": 45.4762536, + "phone": "5032393831", + "website_url": "http://www.13virtuesbrewing.com", + "state": "Oregon", + "street": "6410 SE Milwaukie Ave" + }, + { + "id": "5c53b314-ebab-4e3e-89be-e4139d9318ae", + "name": "1323 R & D", + "brewery_type": "micro", + "address_1": "1323 Capital Blvd 1323 R and D", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27603-1117", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9199775654", + "website_url": "http://www.1323rnd.com", + "state": "North Carolina", + "street": "1323 Capital Blvd 1323 R and D" + }, + { + "id": "4788221a-a03b-458c-9084-4cadd69ade6d", + "name": "14 Cannons Brewing Company", + "brewery_type": "micro", + "address_1": "31125 Via Colinas Ste 907", + "address_2": null, + "address_3": null, + "city": "Westlake Village", + "state_province": "California", + "postal_code": "91362-3974", + "country": "United States", + "longitude": -118.802397, + "latitude": 34.15334, + "phone": "8186996165", + "website_url": "http://14cannons.com", + "state": "California", + "street": "31125 Via Colinas Ste 907" + }, + { + "id": "b7b68d22-5045-4501-b9bf-ec94946eaffc", + "name": "14 Lakes Brewery", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Crosslake", + "state_province": "Minnesota", + "postal_code": "56442", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2186924129", + "website_url": null, + "state": "Minnesota", + "street": null + }, + { + "id": "4b677b60-fef1-42e2-90ef-dadc1bd7fb06", + "name": "14er Brewing Company", + "brewery_type": "proprietor", + "address_1": "2801 Walnut St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80205-2235", + "country": "United States", + "longitude": -104.9839636, + "latitude": 39.7614112, + "phone": "7207731437", + "website_url": "http://www.14erBrewing.com", + "state": "Colorado", + "street": "2801 Walnut St" + }, + { + "id": "6c53984f-fac1-4ea7-9c44-44e25897c71a", + "name": "14th Star Brewing", + "brewery_type": "micro", + "address_1": "133 N Main St Ste 7", + "address_2": null, + "address_3": null, + "city": "Saint Albans", + "state_province": "Vermont", + "postal_code": "05478-1735", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8025285988", + "website_url": "http://www.14thstarbrewing.com", + "state": "Vermont", + "street": "133 N Main St Ste 7" + }, + { + "id": "85192a9c-58a4-48c3-bd9d-496d09d22aa3", + "name": "16 Lots Brewing", + "brewery_type": "brewpub", + "address_1": "753 Reading Rd", + "address_2": null, + "address_3": null, + "city": "Mason", + "state_province": "Ohio", + "postal_code": "45040-1303", + "country": "United States", + "longitude": -84.3183801, + "latitude": 39.3545967, + "phone": "5134863672", + "website_url": "http://www.16lots.com", + "state": "Ohio", + "street": "753 Reading Rd" + }, + { + "id": "284b44f8-6ccb-4cd6-8d06-f2ad882a47c3", + "name": "16 Mile Brewing Co", + "brewery_type": "micro", + "address_1": "413 S Bedford St", + "address_2": null, + "address_3": null, + "city": "Georgetown", + "state_province": "Delaware", + "postal_code": "19947-1849", + "country": "United States", + "longitude": -75.37816436, + "latitude": 38.6788938, + "phone": "3022538816", + "website_url": "http://www.16milebrewery.com", + "state": "Delaware", + "street": "413 S Bedford St" + }, + { + "id": "ee6d39c6-092f-4623-8099-5b8643f70dbe", + "name": "16 Stone Brewpub", + "brewery_type": "brewpub", + "address_1": "9542 Main St", + "address_2": null, + "address_3": null, + "city": "Holland Patent", + "state_province": "New York", + "postal_code": "13354", + "country": "United States", + "longitude": -75.2565195, + "latitude": 43.24211175, + "phone": "3158658500", + "website_url": "http://www.16stonebrewpub.com", + "state": "New York", + "street": "9542 Main St" + }, + { + "id": "d35b40b0-a3ff-4878-a6ee-9caa2149b521", + "name": "1623 Brewing CO, llc", + "brewery_type": "contract", + "address_1": "1146 colonel Joshua Ct", + "address_2": null, + "address_3": null, + "city": "Westminister", + "state_province": "Maryland", + "postal_code": "21157", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Maryland", + "street": "1146 colonel Joshua Ct" + }, + { + "id": "84bd3b3c-bd2d-4e07-bc31-b43a8c8ebf4c", + "name": "1717 Brewing Co", + "brewery_type": "micro", + "address_1": "322 E Court Ave", + "address_2": null, + "address_3": null, + "city": "Des Moines", + "state_province": "Iowa", + "postal_code": "50309-2015", + "country": "United States", + "longitude": -93.6120353, + "latitude": 41.5872267, + "phone": "5152437868", + "website_url": "http://1717brewing.com", + "state": "Iowa", + "street": "322 E Court Ave" + }, + { + "id": "f41a0c47-ba9b-4547-bfed-fcbefe0fc74b", + "name": "1718 Ocracoke Brewing", + "brewery_type": "brewpub", + "address_1": "1129 Irvin Garrish Hwy", + "address_2": null, + "address_3": null, + "city": "Ocracoke", + "state_province": "North Carolina", + "postal_code": "27960", + "country": "United States", + "longitude": -75.97176063, + "latitude": 35.10715368, + "phone": "2529282337", + "website_url": "http://www.ocracokebrewing.com", + "state": "North Carolina", + "street": "1129 Irvin Garrish Hwy" + }, + { + "id": "84d621c4-81a5-44e6-aca7-1566c2e67cc0", + "name": "1781 Brewing Company", + "brewery_type": "micro", + "address_1": "11109 Plank Rd", + "address_2": null, + "address_3": null, + "city": "Spotsylvania", + "state_province": "Virginia", + "postal_code": "22553-4258", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5408412598", + "website_url": null, + "state": "Virginia", + "street": "11109 Plank Rd" + }, + { + "id": "896f26a1-d80e-4790-9287-026a86c1799d", + "name": "180 and Tapped", + "brewery_type": "micro", + "address_1": "2010 A State Ave", + "address_2": null, + "address_3": null, + "city": "Coraopolis", + "state_province": "Pennsylvania", + "postal_code": "15108", + "country": "United States", + "longitude": -80.15020356, + "latitude": 40.50984957, + "phone": "4127375273", + "website_url": "http://www.180andtapped.com", + "state": "Pennsylvania", + "street": "2010 A State Ave" + }, + { + "id": "46839a79-b7bf-4733-b91b-ce116d062a57", + "name": "1817 Brewery", + "brewery_type": "micro", + "address_1": "100 B South Olive St", + "address_2": null, + "address_3": null, + "city": "okolona", + "state_province": "Mississippi", + "postal_code": "38860", + "country": "United States", + "longitude": -88.750264, + "latitude": 34.001703, + "phone": "6623055907", + "website_url": null, + "state": "Mississippi", + "street": "100 B South Olive St" + }, + { + "id": "1a1b2165-73ed-40aa-b89b-56794d140f22", + "name": "1840 Brewing Company", + "brewery_type": "micro", + "address_1": "342 E Ward St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53207-1348", + "country": "United States", + "longitude": -87.90606942, + "latitude": 43.00436242, + "phone": "4142364056", + "website_url": "http://www.1840brewing.com", + "state": "Wisconsin", + "street": "342 E Ward St" + }, + { + "id": "fe6b9893-b93e-43d5-a9f6-3e0c89a3f13c", + "name": "1850 Brewing Company", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mariposa", + "state_province": "California", + "postal_code": "95338", + "country": "United States", + "longitude": -119.9036592, + "latitude": 37.570148, + "phone": null, + "website_url": "http://www.1850restaurant.com", + "state": "California", + "street": null + }, + { + "id": "b51f3cdf-60ff-4ae1-94a7-76906c7d62eb", + "name": "18th Street Brewery", + "brewery_type": "micro", + "address_1": "5725 Miller Ave", + "address_2": null, + "address_3": null, + "city": "Gary", + "state_province": "Indiana", + "postal_code": "46403-2871", + "country": "United States", + "longitude": -87.26887786, + "latitude": 41.59928343, + "phone": null, + "website_url": "http://www.18thstreetbrewery.com", + "state": "Indiana", + "street": "5725 Miller Ave" + }, + { + "id": "add7f978-942e-4d56-b209-c80837a51d69", + "name": "18th Street Brewery", + "brewery_type": "micro", + "address_1": "5417 Oakley Ave", + "address_2": null, + "address_3": null, + "city": "Hammond", + "state_province": "Indiana", + "postal_code": "46320-1817", + "country": "United States", + "longitude": -87.517422, + "latitude": 41.61556796, + "phone": null, + "website_url": null, + "state": "Indiana", + "street": "5417 Oakley Ave" + }, + { + "id": "dbde8235-2b55-4d8b-8b1c-438155abe104", + "name": "1905 Brewing Company", + "brewery_type": "micro", + "address_1": "1301 S Chestnut St", + "address_2": null, + "address_3": null, + "city": "Assumption", + "state_province": "Illinois", + "postal_code": "62510-8504", + "country": "United States", + "longitude": -89.0503635, + "latitude": 39.5172564, + "phone": "2172549374", + "website_url": "http://1905BrewingCompany.com", + "state": "Illinois", + "street": "1301 S Chestnut St" + }, + { + "id": "4f4b5b34-d572-4dff-a18f-47e507c073e6", + "name": "1912 Brewing", + "brewery_type": "micro", + "address_1": "2045 N Forbes Blvd Ste 105", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85745-1444", + "country": "United States", + "longitude": -110.9927505, + "latitude": 32.24673727, + "phone": "5202564851", + "website_url": "http://www.1912brewing.com", + "state": "Arizona", + "street": "2045 N Forbes Blvd Ste 105" + }, + { + "id": "4ccad9b9-f9cf-4d21-b6d5-ab005ee1532d", + "name": "192 Brewing", + "brewery_type": "micro", + "address_1": "7324 NE 175th St", + "address_2": null, + "address_3": null, + "city": "Kenmore", + "state_province": "Washington", + "postal_code": "98028-2500", + "country": "United States", + "longitude": -122.2415652, + "latitude": 47.75670075, + "phone": "4254242337", + "website_url": "http://www.192brewing.com", + "state": "Washington", + "street": "7324 NE 175th St" + }, + { + "id": "4a09f017-db8f-42e1-a8ec-a0cd81c28761", + "name": "1940's Brewing Company", + "brewery_type": "micro", + "address_1": "1337 Lincoln Ave Unit 1", + "address_2": null, + "address_3": null, + "city": "Holbrook", + "state_province": "New York", + "postal_code": "11741-2275", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6315334838", + "website_url": "http://www.1940sbrewingcompany.com", + "state": "New York", + "street": "1337 Lincoln Ave Unit 1" + }, + { + "id": "4dcaeaa3-d7cc-4016-9392-5bde4e3a8f4d", + "name": "1st Republic Brewing Co", + "brewery_type": "micro", + "address_1": "39 River Rd Ste 6", + "address_2": null, + "address_3": null, + "city": "Essex Junction", + "state_province": "Vermont", + "postal_code": "05452-3879", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8028575318", + "website_url": "http://www.1strepublic-homebrew.com", + "state": "Vermont", + "street": "39 River Rd Ste 6" + }, + { + "id": "9046adec-ed04-4c60-8043-4a02e9e2dabc", + "name": "2 Basset Brewery", + "brewery_type": "micro", + "address_1": "202 E Main St", + "address_2": null, + "address_3": null, + "city": "White Sulphur Springs", + "state_province": "Montana", + "postal_code": "59645-9081", + "country": "United States", + "longitude": -110.9004865, + "latitude": 46.54807609, + "phone": "4065472337", + "website_url": "http://www.2bassetbrewery.com", + "state": "Montana", + "street": "202 E Main St" + }, + { + "id": "8436b02b-9a06-474c-b5eb-8ff9aedf1f99", + "name": "2 Dogz and A Guy Brewing", + "brewery_type": "micro", + "address_1": "228 Church St", + "address_2": null, + "address_3": null, + "city": "Montrose", + "state_province": "Pennsylvania", + "postal_code": "18801-1271", + "country": "United States", + "longitude": -75.8800318, + "latitude": 41.8336364, + "phone": "5704320069", + "website_url": "http://2dogzandaguybrewing.com", + "state": "Pennsylvania", + "street": "228 Church St" + }, + { + "id": "2005a2bb-0f89-4520-8553-f79cf0b4c909", + "name": "2 Feet Brewing Company", + "brewery_type": "brewpub", + "address_1": "80 Columbia St", + "address_2": null, + "address_3": null, + "city": "Bangor", + "state_province": "Maine", + "postal_code": "04401-6319", + "country": "United States", + "longitude": -68.77283099, + "latitude": 44.80012684, + "phone": "2075731979", + "website_url": "http://www.2feetbrewing.com", + "state": "Maine", + "street": "80 Columbia St" + }, + { + "id": "d30841d8-0152-469f-9a19-1b97a5f965a6", + "name": "2 HALFS Brewing Distilling", + "brewery_type": "micro", + "address_1": "2 Stokes Avenue", + "address_2": null, + "address_3": null, + "city": "Alexandria", + "state_province": "NSW", + "postal_code": "2015", + "country": "Australia", + "longitude": 151.1979, + "latitude": -33.902839, + "phone": "+61 2 8068 0915", + "website_url": "https://2halfs.com.au/", + "state": "NSW", + "street": "2 Stokes Avenue" + }, + { + "id": "6948c755-a504-42f9-88e8-d04d027731e5", + "name": "2 Row Brewing", + "brewery_type": "micro", + "address_1": "6856 S 300 W", + "address_2": null, + "address_3": null, + "city": "Midvale", + "state_province": "Utah", + "postal_code": "84047-1083", + "country": "United States", + "longitude": -111.9007652, + "latitude": 40.5950202, + "phone": "8019878663", + "website_url": "http://www.2rowbrewing.com", + "state": "Utah", + "street": "6856 S 300 W" + }, + { + "id": "fb2460bb-d6bb-4690-a700-f0b5628cc7dd", + "name": "2 Silos Brewing Company", + "brewery_type": "micro", + "address_1": "9925 Discovery Blvd", + "address_2": null, + "address_3": null, + "city": "Manassas", + "state_province": "Virginia", + "postal_code": "20109", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7034202257", + "website_url": "http://www.2silosbrewing.com", + "state": "Virginia", + "street": "9925 Discovery Blvd" + }, + { + "id": "836cb05e-ee8f-4798-859e-fe0bedb0186a", + "name": "2 Tones Brewing Co.", + "brewery_type": "micro", + "address_1": "4539 E Broad St", + "address_2": null, + "address_3": null, + "city": "Whitehall", + "state_province": "Ohio", + "postal_code": "43213-1308", + "country": "United States", + "longitude": -82.9118174, + "latitude": 40.0030689, + "phone": null, + "website_url": "http://www.2tonesbrewingco.com", + "state": "Ohio", + "street": "4539 E Broad St" + }, + { + "id": "5ec3b488-48bd-49a7-9828-05bd90195cd5", + "name": "2 Tread Brewing Co", + "brewery_type": "brewpub", + "address_1": "1018 Santa Rosa Plz", + "address_2": null, + "address_3": null, + "city": "Santa Rosa", + "state_province": "California", + "postal_code": "95401-6399", + "country": "United States", + "longitude": -122.7167729, + "latitude": 38.4387767, + "phone": "4152330857", + "website_url": "http://www.2treadbrewing.com", + "state": "California", + "street": "1018 Santa Rosa Plz" + }, + { + "id": "8624d11b-8593-49a8-89b4-c46a0f111cd7", + "name": "2 Way Brewing Company", + "brewery_type": "brewpub", + "address_1": "18 W Main St", + "address_2": null, + "address_3": null, + "city": "Beacon", + "state_province": "New York", + "postal_code": "12508-2512", + "country": "United States", + "longitude": -73.9809868, + "latitude": 41.5082102, + "phone": "8452027334", + "website_url": "http://www.2waybrewingcompany.com", + "state": "New York", + "street": "18 W Main St" + }, + { + "id": "5cda93ce-6b16-4374-9d43-bb4383be0187", + "name": "2 Witches Winery and Brewing Company", + "brewery_type": "micro", + "address_1": "209 Trade St", + "address_2": null, + "address_3": null, + "city": "Danville", + "state_province": "Virginia", + "postal_code": "24541-3545", + "country": "United States", + "longitude": -79.42125553, + "latitude": 36.58590349, + "phone": "4345492739", + "website_url": "http://www.2witcheswinebrew.com", + "state": "Virginia", + "street": "209 Trade St" + }, + { + "id": "64a48d9e-08e9-45e3-83ca-f00d24bb7e49", + "name": "20 Corners Brewing LLC", + "brewery_type": "brewpub", + "address_1": "14148 NE 190th St Ste A", + "address_2": null, + "address_3": null, + "city": "Woodinville", + "state_province": "Washington", + "postal_code": "98072-8437", + "country": "United States", + "longitude": -122.1517007, + "latitude": 47.76864301, + "phone": "4253755223", + "website_url": "http://www.20cornersbrewing.com", + "state": "Washington", + "street": "14148 NE 190th St Ste A" + }, + { + "id": "c018299b-db2d-438b-b58c-ecaa0f07a0df", + "name": "210 Brewing Co", + "brewery_type": "brewpub", + "address_1": "3438 Stoluckquamish Ln", + "address_2": null, + "address_3": null, + "city": "Arlington", + "state_province": "Washington", + "postal_code": "98223-9056", + "country": "United States", + "longitude": -122.18421, + "latitude": 48.215096, + "phone": "3604749740", + "website_url": "http://www.angelofthewind.com", + "state": "Washington", + "street": "3438 Stoluckquamish Ln" + }, + { + "id": "00fdce16-e1dd-4678-87f2-45550f9083e1", + "name": "212 Brewing Company", + "brewery_type": "contract", + "address_1": "21476 Route 23", + "address_2": null, + "address_3": null, + "city": "Davenport", + "state_province": "New York", + "postal_code": "13750", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2123779050", + "website_url": null, + "state": "New York", + "street": "21476 Route 23" + }, + { + "id": "46a8ed58-5d1a-413e-871e-d2d29d6d43f0", + "name": "217 Brew Works", + "brewery_type": "micro", + "address_1": "217 South St S", + "address_2": null, + "address_3": null, + "city": "Wilson", + "state_province": "North Carolina", + "postal_code": "27893-4911", + "country": "United States", + "longitude": -77.9120318, + "latitude": 35.7227625, + "phone": "2529916959", + "website_url": null, + "state": "North Carolina", + "street": "217 South St S" + }, + { + "id": "63baab9a-b561-4eff-8619-f95290a61b77", + "name": "21st Amendment Brewery", + "brewery_type": "regional", + "address_1": "2010 Williams St Unit A", + "address_2": null, + "address_3": null, + "city": "San Leandro", + "state_province": "California", + "postal_code": "94577-2334", + "country": "United States", + "longitude": -122.1772928, + "latitude": 37.71130036, + "phone": "5105952111", + "website_url": "http://www.21st-Amendment.com", + "state": "California", + "street": "2010 Williams St Unit A" + }, + { + "id": "8f9621dc-da98-4ddb-82a1-039c9e2b3224", + "name": "21st Amendment Brewery Cafe", + "brewery_type": "brewpub", + "address_1": "563 2nd St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94107-1411", + "country": "United States", + "longitude": -122.3925769, + "latitude": 37.782448, + "phone": "4153690900", + "website_url": "http://www.21st-amendment.com", + "state": "California", + "street": "563 2nd St" + }, + { + "id": "84337872-75da-4cdd-9f8f-1e1691f21642", + "name": "21st St Brewers Bar", + "brewery_type": "brewpub", + "address_1": "2017 Chouteau Ave", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63103", + "country": "United States", + "longitude": -90.213781, + "latitude": 38.624291, + "phone": "3142416969", + "website_url": "http://www.21stbrew.com", + "state": "Missouri", + "street": "2017 Chouteau Ave" + }, + { + "id": "2711c5ad-83cb-4917-932e-b8bbf1a25ffb", + "name": "23 Brewing Company / Lizzie B's Cafe", + "brewery_type": "brewpub", + "address_1": "2010 KY Route 321", + "address_2": null, + "address_3": null, + "city": "Prestonsburg", + "state_province": "Kentucky", + "postal_code": "41653-9103", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6068862844", + "website_url": "http://www.23brewingcompany.com", + "state": "Kentucky", + "street": "2010 KY Route 321" + }, + { + "id": "e05dc493-284f-4ece-995e-19899398f077", + "name": "238 Brewing Company", + "brewery_type": "closed", + "address_1": "10321 E Day Mt Spokane Rd", + "address_2": null, + "address_3": null, + "city": "Mead", + "state_province": "Washington", + "postal_code": "99021", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5092382739", + "website_url": "http://www.238brewing.com", + "state": "Washington", + "street": "10321 E Day Mt Spokane Rd" + }, + { + "id": "29c73154-9117-4f27-98e1-b5bb5f69c055", + "name": "23rd Ave Brewery", + "brewery_type": "micro", + "address_1": "2313 S Jackson St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98144-2340", + "country": "United States", + "longitude": -122.301811, + "latitude": 47.599163, + "phone": "2066792048", + "website_url": "https://23rd-ave-brewery.square.site", + "state": "Washington", + "street": "2313 S Jackson St" + }, + { + "id": "c70c8ad5-4bfa-4b2a-a383-7e7d15e0baf9", + "name": "23rd Street Brewery", + "brewery_type": "brewpub", + "address_1": "3512 Clinton Pkwy", + "address_2": null, + "address_3": null, + "city": "Lawrence", + "state_province": "Kansas", + "postal_code": "66047-2145", + "country": "United States", + "longitude": -95.28093353, + "latitude": 38.9429674, + "phone": "7858562337", + "website_url": "http://www.brew23.com", + "state": "Kansas", + "street": "3512 Clinton Pkwy" + }, + { + "id": "6751228c-5373-4a54-8d68-72df6849a437", + "name": "26 Degree Brewing Company", + "brewery_type": "micro", + "address_1": "2600 E Atlantic Blvd", + "address_2": null, + "address_3": null, + "city": "Pompano Beach", + "state_province": "Florida", + "postal_code": "33062-4940", + "country": "United States", + "longitude": -80.1224169, + "latitude": 26.2316338, + "phone": "9545326964", + "website_url": null, + "state": "Florida", + "street": "2600 E Atlantic Blvd" + }, + { + "id": "e0444512-54a6-4a44-b5bb-0f9b88326454", + "name": "27 South Brewing", + "brewery_type": "micro", + "address_1": "44 Milsom Street", + "address_2": "3", + "address_3": null, + "city": "Coorparoo", + "state_province": "QLD", + "postal_code": "4151", + "country": "Australia", + "longitude": 153.0567537, + "latitude": -27.4869498, + "phone": null, + "website_url": "http://www.27southbrewing.com.au/", + "state": "QLD", + "street": "44 Milsom Street" + }, + { + "id": "d6e77d51-2fa2-44cb-89b3-c94bf1dc77df", + "name": "28th State Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77095-6933", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "https://www.instagram.com/28thstatebrew/?hl=en", + "state": "Texas", + "street": null + }, + { + "id": "7d13ee75-e7e3-4623-862a-43a18dd6a1ae", + "name": "2C Family Brewing Co.", + "brewery_type": "micro", + "address_1": "1215 1st St S", + "address_2": null, + "address_3": null, + "city": "Nampa", + "state_province": "Idaho", + "postal_code": "83651-3957", + "country": "United States", + "longitude": -116.559282, + "latitude": 43.578989, + "phone": "2084753981", + "website_url": null, + "state": "Idaho", + "street": "1215 1st St S" + }, + { + "id": "5fdcc498-f9df-4fa5-b35d-487a59f0fecc", + "name": "2Kids Brewing Company", + "brewery_type": "micro", + "address_1": "8680 Miralani Dr Ste 123", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92126-6391", + "country": "United States", + "longitude": -117.137429, + "latitude": 32.896584, + "phone": "8584805437", + "website_url": "http://www.2kidsBrewing.com", + "state": "California", + "street": "8680 Miralani Dr Ste 123" + }, + { + "id": "be0ec266-d637-42e4-94ba-4ce21e456054", + "name": "2nd Shift Brewing Co", + "brewery_type": "brewpub", + "address_1": "1601 Sublette Ave", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63110-1924", + "country": "United States", + "longitude": -90.280526, + "latitude": 38.621943, + "phone": "6187910728", + "website_url": "http://www.2ndshiftbrewing.com", + "state": "Missouri", + "street": "1601 Sublette Ave" + }, + { + "id": "fb8eee34-da8a-42b2-bc4c-77020024a7f0", + "name": "2nd Story Brewing Company", + "brewery_type": "brewpub", + "address_1": "117 Chestnut St Frnt", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19106-4700", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2673145770", + "website_url": "http://www.2ndstorybrewing.com/", + "state": "Pennsylvania", + "street": "117 Chestnut St Frnt" + }, + { + "id": "3cf2698f-4193-4591-aab3-a8ef0fbedcab", + "name": "2SP Brewing Company", + "brewery_type": "micro", + "address_1": "120 Concord Rd", + "address_2": null, + "address_3": null, + "city": "Aston", + "state_province": "Pennsylvania", + "postal_code": "19014-2909", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4844837860", + "website_url": "http://www.2spbrewing.com", + "state": "Pennsylvania", + "street": "120 Concord Rd" + }, + { + "id": "9fdb80f1-a96f-4dc4-80a2-5b0d9a246916", + "name": "3 Beards Beer Company", + "brewery_type": "contract", + "address_1": "4 Main St", + "address_2": null, + "address_3": null, + "city": "Williamsburg", + "state_province": "Massachusetts", + "postal_code": "01096", + "country": "United States", + "longitude": -72.7305059, + "latitude": 42.3923659, + "phone": "6173837039", + "website_url": "http://www.3beardsbeer.com", + "state": "Massachusetts", + "street": "4 Main St" + }, + { + "id": "065200ec-51cf-4612-b1b9-61f7db489c3c", + "name": "3 Daughters Brewing", + "brewery_type": "micro", + "address_1": "222 22nd St S", + "address_2": null, + "address_3": null, + "city": "Saint Petersburg", + "state_province": "Florida", + "postal_code": "33712-1240", + "country": "United States", + "longitude": -82.6629721, + "latitude": 27.76899022, + "phone": "7274956002", + "website_url": "http://www.3dbrewing.com", + "state": "Florida", + "street": "222 22nd St S" + }, + { + "id": "60c00c0b-b797-4f6a-b442-3bfbaec156ca", + "name": "3 Disciples Brewing", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sebastopol", + "state_province": "California", + "postal_code": "95472-5937", + "country": "United States", + "longitude": -122.8332502, + "latitude": 38.3845125, + "phone": "7072287309", + "website_url": "http://www.3disciplesbrewing.com/home", + "state": "California", + "street": null + }, + { + "id": "a1887b5a-0c21-43cf-9547-527b7c11dcf4", + "name": "3 Freaks Brewing Co", + "brewery_type": "micro", + "address_1": "7140 E County Line Rd", + "address_2": null, + "address_3": null, + "city": "Highlands Ranch", + "state_province": "Colorado", + "postal_code": "80126-3926", + "country": "United States", + "longitude": -104.9426656, + "latitude": 39.5659575, + "phone": "7202990994", + "website_url": "http://www.3freaksbrewery.com", + "state": "Colorado", + "street": "7140 E County Line Rd" + }, + { + "id": "a74744eb-ca98-43c5-9199-09df39f8b400", + "name": "3 Iron Brewing Company", + "brewery_type": "micro", + "address_1": "898 Via Lata Ste A", + "address_2": null, + "address_3": null, + "city": "Colton", + "state_province": "California", + "postal_code": "92324-3920", + "country": "United States", + "longitude": -117.3066993, + "latitude": 34.05616889, + "phone": "9095334892", + "website_url": "http://www.3ironbrewingco.com", + "state": "California", + "street": "898 Via Lata Ste A" + }, + { + "id": "1218736c-bfcf-4b95-b473-7399aaf60d1d", + "name": "3 Keys Brewing Company, LLC", + "brewery_type": "brewpub", + "address_1": "2505 Manatee Ave E", + "address_2": null, + "address_3": null, + "city": "Bradenton", + "state_province": "Florida", + "postal_code": "34208-2421", + "country": "United States", + "longitude": -82.53393502, + "latitude": 27.49645026, + "phone": "9412180396", + "website_url": "http://www.3keysbrewing.com", + "state": "Florida", + "street": "2505 Manatee Ave E" + }, + { + "id": "ed387340-ea78-4f65-9de0-15e2da50371e", + "name": "3 Nations Brewing", + "brewery_type": "micro", + "address_1": "2405 Squire Pl Ste 200", + "address_2": null, + "address_3": null, + "city": "Farmers Branch", + "state_province": "Texas", + "postal_code": "75234-4714", + "country": "United States", + "longitude": -96.89883128, + "latitude": 32.93044336, + "phone": "4696607184", + "website_url": "http://www.threenationsbrewing.com", + "state": "Texas", + "street": "2405 Squire Pl Ste 200" + }, + { + "id": "50f26a2b-242d-40af-b78b-cf975ce37761", + "name": "3 Ravens", + "brewery_type": "micro", + "address_1": "260 Dundas Street", + "address_2": null, + "address_3": null, + "city": "Thornbury", + "state_province": "VIC", + "postal_code": "3071", + "country": "Australia", + "longitude": 145.026872, + "latitude": -37.755894, + "phone": "+61 424 707 592", + "website_url": "https://3ravens.com.au/index", + "state": "VIC", + "street": "260 Dundas Street" + }, + { + "id": "a8fda9a9-026b-4b15-86b9-62b4ccb126c1", + "name": "3 Sheeps Brewing Co", + "brewery_type": "micro", + "address_1": "1837 North Ave", + "address_2": null, + "address_3": null, + "city": "Sheboygan", + "state_province": "Wisconsin", + "postal_code": "53083-4620", + "country": "United States", + "longitude": -87.73006524, + "latitude": 43.77384561, + "phone": "9209469715", + "website_url": "http://www.3sheepsbrewing.com", + "state": "Wisconsin", + "street": "1837 North Ave" + }, + { + "id": "5595bb24-e2b8-4a6e-9f0b-451fac8dd903", + "name": "3 Sheets Brewery", + "brewery_type": "micro", + "address_1": "136 W 1st Ave", + "address_2": null, + "address_3": null, + "city": "Albany", + "state_province": "Oregon", + "postal_code": "97321", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5416190183", + "website_url": "http://www.3sheetsbrewery.com", + "state": "Oregon", + "street": "136 W 1st Ave" + }, + { + "id": "e2ddeea8-03d4-43e7-bfd0-d27797b9d016", + "name": "3 Sons Brewing Co.", + "brewery_type": "proprietor", + "address_1": "236 N Federal Hwy", + "address_2": null, + "address_3": null, + "city": "Dania", + "state_province": "Florida", + "postal_code": "33004-2870", + "country": "United States", + "longitude": -80.14361029, + "latitude": 26.04800238, + "phone": "9546013833", + "website_url": "http://www.3sonsbrewingco.com", + "state": "Florida", + "street": "236 N Federal Hwy" + }, + { + "id": "bd8b76ca-a70a-4363-96cb-24f1d0118a74", + "name": "3 Stars Brewing Co", + "brewery_type": "micro", + "address_1": "6400 Chillum Pl NW Ste B", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "District of Columbia", + "postal_code": "20012-2111", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2026700333", + "website_url": "http://www.3starsbrewing.com", + "state": "District of Columbia", + "street": "6400 Chillum Pl NW Ste B" + }, + { + "id": "cb56e27e-d113-4f74-925a-69305a56d082", + "name": "3 Trails Brewing Co", + "brewery_type": "micro", + "address_1": "111 N Main St ", + "address_2": null, + "address_3": null, + "city": "Independence", + "state_province": "Missouri", + "postal_code": "64050", + "country": "United States", + "longitude": -94.41265, + "latitude": 39.122385, + "phone": "8168866256", + "website_url": "http://www.3trailsbrewing.com", + "state": "Missouri", + "street": "111 N Main St " + }, + { + "id": "6c5dabed-6a59-4610-abc9-b1e958393186", + "name": "30 Mile Brewing Co.", + "brewery_type": "closed", + "address_1": "39 Ragged Rock Rd Unit 5", + "address_2": null, + "address_3": null, + "city": "Old Saybrook", + "state_province": "Connecticut", + "postal_code": "06475-1518", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8603395238", + "website_url": "http://www.30milebrewingco.com", + "state": "Connecticut", + "street": "39 Ragged Rock Rd Unit 5" + }, + { + "id": "2f6062af-4d6f-42b2-b4ad-626cf01a1fec", + "name": "300 Suns Brewing Company", + "brewery_type": "brewpub", + "address_1": "335 1st Ave Unit C", + "address_2": null, + "address_3": null, + "city": "Longmont", + "state_province": "Colorado", + "postal_code": "80501-5958", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.300sunsbrewing.com", + "state": "Colorado", + "street": "335 1st Ave Unit C" + }, + { + "id": "3b0b5b9b-f6d8-49e3-8ebd-0bcef6939bcd", + "name": "32 North Brewing Co", + "brewery_type": "brewpub", + "address_1": "8655 Production Ave Ste A", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92121-2258", + "country": "United States", + "longitude": -117.1649842, + "latitude": 32.88313237, + "phone": "(619) 363-2622", + "website_url": "https://42northbrewing.com", + "state": "California", + "street": "8655 Production Ave Ste A" + }, + { + "id": "a964a343-e4f1-40d8-9353-09ef9b74f513", + "name": "34 Degree North Experiment Station", + "brewery_type": "micro", + "address_1": "4802 Main St", + "address_2": null, + "address_3": null, + "city": "Shallotte", + "state_province": "North Carolina", + "postal_code": "28470", + "country": "United States", + "longitude": -78.38636517, + "latitude": 33.97270364, + "phone": null, + "website_url": null, + "state": "North Carolina", + "street": "4802 Main St" + }, + { + "id": "098595c2-f606-40b4-9b49-195f73fb6fd6", + "name": "350 Brewing Co", + "brewery_type": "brewpub", + "address_1": "7144 183rd St", + "address_2": null, + "address_3": null, + "city": "Tinley Park", + "state_province": "Illinois", + "postal_code": "60477-3933", + "country": "United States", + "longitude": -87.79160288, + "latitude": 41.55864726, + "phone": "7088257339", + "website_url": "http://www.350brewing.com", + "state": "Illinois", + "street": "7144 183rd St" + }, + { + "id": "63969ec8-b557-4c71-b993-ad00c99ab70e", + "name": "360 Degree Brewing Company", + "brewery_type": "micro", + "address_1": "Bluebell Business Estate", + "address_2": null, + "address_3": null, + "city": "Sheffield Park", + "state_province": "East Sussex", + "postal_code": "TN22 3HQ", + "country": "England", + "longitude": -0.00086, + "latitude": 50.993912, + "phone": "1825722375", + "website_url": "https://www.360degreebrewing.com/", + "state": "East Sussex", + "street": "Bluebell Business Estate" + }, + { + "id": "55de8d28-4231-4497-8ff7-3031e7bb3be5", + "name": "38 State Brewing", + "brewery_type": "micro", + "address_1": "8071 S Broadway Ste A", + "address_2": null, + "address_3": null, + "city": "Littleton", + "state_province": "Colorado", + "postal_code": "80122-2730", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7206383678", + "website_url": "http://www.38statebrew.com", + "state": "Colorado", + "street": "8071 S Broadway Ste A" + }, + { + "id": "53305a0f-9b51-4f73-bf5e-88bb0439b216", + "name": "380 Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Clancy", + "state_province": "Montana", + "postal_code": "59634", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2065796509", + "website_url": null, + "state": "Montana", + "street": null + }, + { + "id": "b84d47b5-43a1-4a05-9ee4-e795dfbf019c", + "name": "3806 Brewing", + "brewery_type": "micro", + "address_1": "12 Enterprise Avenue", + "address_2": null, + "address_3": null, + "city": "Berwick", + "state_province": "VIC", + "postal_code": "3806", + "country": "Australia", + "longitude": 145.3416748, + "latitude": -38.0371856, + "phone": "+61 477 581 483", + "website_url": "http://3806.beer/", + "state": "VIC", + "street": "12 Enterprise Avenue" + }, + { + "id": "dfa3f8fc-21cf-443d-ba8d-8adfc6873852", + "name": "38°-75° Brewing", + "brewery_type": "brewpub", + "address_1": "2000 Coastal Highway STE 105", + "address_2": null, + "address_3": null, + "city": "Rehoboth Beach", + "state_province": "Delaware", + "postal_code": "19971", + "country": "United States", + "longitude": -75.090191, + "latitude": 38.7074994, + "phone": "3022278519", + "website_url": null, + "state": "Delaware", + "street": "2000 Coastal Highway STE 105" + }, + { + "id": "842d193f-7a1b-4960-86f8-7d6614884005", + "name": "3cross Fermentation Cooperative", + "brewery_type": "micro", + "address_1": "4 Knowlton Ave", + "address_2": null, + "address_3": null, + "city": "Worcester", + "state_province": "Massachusetts", + "postal_code": "01603", + "country": "United States", + "longitude": -71.83057593, + "latitude": 42.24364875, + "phone": "5086158195", + "website_url": "http://www.3cross.coop", + "state": "Massachusetts", + "street": "4 Knowlton Ave" + }, + { + "id": "4f70ac94-eca5-4cec-8581-92ec5afdf4f2", + "name": "3Halves Brewing Co", + "brewery_type": "brewpub", + "address_1": "110 E Kansas St", + "address_2": null, + "address_3": null, + "city": "Liberty", + "state_province": "Missouri", + "postal_code": "64068-2374", + "country": "United States", + "longitude": -94.4190247, + "latitude": 39.2461993, + "phone": "8164296886", + "website_url": "http://www.3halvesbrewingco.com", + "state": "Missouri", + "street": "110 E Kansas St" + }, + { + "id": "694547f5-28fd-4363-bad6-03b6eaf0f1dd", + "name": "3rd Degree Brewhouse", + "brewery_type": "micro", + "address_1": "1625 N Main St", + "address_2": null, + "address_3": null, + "city": "Fuquay Varina", + "state_province": "North Carolina", + "postal_code": "27526", + "country": "United States", + "longitude": -78.794223, + "latitude": 35.5914556, + "phone": "9192015457", + "website_url": "http://www.facebook.com/3rddegreebrewhouse/", + "state": "North Carolina", + "street": "1625 N Main St" + }, + { + "id": "370fdc3b-55a0-43f0-a54e-f617a7cec7b8", + "name": "3rd Planet Brewing", + "brewery_type": "micro", + "address_1": "120 Partin Dr N", + "address_2": null, + "address_3": null, + "city": "Niceville", + "state_province": "Florida", + "postal_code": "32578-2053", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8505029952", + "website_url": "http://www.facebook.com/3rdplanetbrewing/", + "state": "Florida", + "street": "120 Partin Dr N" + }, + { + "id": "3c9354c5-4d21-40a8-8e53-8f2f9b5e043b", + "name": "3rd Rock Brewing Company", + "brewery_type": "micro", + "address_1": "134 Industrial Park Dr", + "address_2": null, + "address_3": null, + "city": "Trenton", + "state_province": "North Carolina", + "postal_code": "28585-9593", + "country": "United States", + "longitude": -77.36749285, + "latitude": 35.06939877, + "phone": "2526319213", + "website_url": "http://www.3rockbrew.com", + "state": "North Carolina", + "street": "134 Industrial Park Dr" + }, + { + "id": "2eed7840-ec52-48b5-b22e-d9d76bd01929", + "name": "3rd Turn Brewing", + "brewery_type": "micro", + "address_1": "10408 Watterson Trl", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40299-3702", + "country": "United States", + "longitude": -85.56656078, + "latitude": 38.19322725, + "phone": null, + "website_url": "http://www.3rdturnbrewing.com", + "state": "Kentucky", + "street": "10408 Watterson Trl" + }, + { + "id": "781bda70-39b2-4f3f-9213-9d0f44c08991", + "name": "3rd Wave Brewing Co", + "brewery_type": "micro", + "address_1": "501 N Bi State Blvd", + "address_2": null, + "address_3": null, + "city": "Delmar", + "state_province": "Delaware", + "postal_code": "19940-1106", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3029070423", + "website_url": "http://www.3rdwavebrewingco.com", + "state": "Delaware", + "street": "501 N Bi State Blvd" + }, + { + "id": "a00c1c11-dede-4d7f-a514-bd291b6db283", + "name": "3TREE BREWERY", + "brewery_type": "micro", + "address_1": "3-19 Futabacho", + "address_2": null, + "address_3": null, + "city": "Ibaraki", + "state_province": "Osaka", + "postal_code": "567-0829", + "country": "Japan", + "longitude": 135.5780968, + "latitude": 34.81744613, + "phone": null, + "website_url": "https://3tree-brewery.jimdosite.com/", + "state": "Osaka", + "street": "3-19 Futabacho" + }, + { + "id": "b72f2ce6-e062-404d-ac31-c1060db2d870", + "name": "4 By 4 Brewing Company", + "brewery_type": "micro", + "address_1": "2811 E Galloway St Ste A", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Missouri", + "postal_code": "65804-4601", + "country": "United States", + "longitude": -93.239889, + "latitude": 37.147986, + "phone": "4178616400", + "website_url": "http://www.4by4brewingcompany.com", + "state": "Missouri", + "street": "2811 E Galloway St Ste A" + }, + { + "id": "ac2f41ed-e1e8-4586-aa78-253543db7714", + "name": "4 Hands Brewing Co", + "brewery_type": "regional", + "address_1": "1220 S 8th St", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63104-3610", + "country": "United States", + "longitude": -90.19762012, + "latitude": 38.61526593, + "phone": "3144361559", + "website_url": "http://www.4handsbrewery.com", + "state": "Missouri", + "street": "1220 S 8th St" + }, + { + "id": "dc652569-19d7-4f63-a999-3e8d5d6798c1", + "name": "4 Noses Brewing Company", + "brewery_type": "micro", + "address_1": "8855 W 116th Cir Ste 3", + "address_2": null, + "address_3": null, + "city": "Broomfield", + "state_province": "Colorado", + "postal_code": "80021-2521", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7204602797", + "website_url": "http://4nosesbrewing.com", + "state": "Colorado", + "street": "8855 W 116th Cir Ste 3" + }, + { + "id": "cbcca8ac-55f6-47cb-967f-1a77dfa959e5", + "name": "4 Pines", + "brewery_type": "large", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "VIC", + "postal_code": "3121", + "country": "Australia", + "longitude": 144.9901574, + "latitude": -37.824664, + "phone": null, + "website_url": null, + "state": "VIC", + "street": null + }, + { + "id": "7c669ae6-460d-476b-bc56-0b4d566a152c", + "name": "4 Stitch Brewing Co - Brewery & Taproom", + "brewery_type": "taproom", + "address_1": "16709 9th Ave SE", + "address_2": null, + "address_3": null, + "city": "Mill Creek", + "state_province": "Washington", + "postal_code": "98012-6309", + "country": "United States", + "longitude": -122.21991381534, + "latitude": 47.84671432549, + "phone": "4252247583", + "website_url": "https://www.4stitchbrewing.com", + "state": "Washington", + "street": "16709 9th Ave SE" + }, + { + "id": "b237e2d5-dabc-41f9-a3ff-2b4e3f3a9c8e", + "name": "4 Stitch Brewing Co - Taproom & Kitchen", + "brewery_type": "brewpub", + "address_1": "5817 238th St SE Ste 3", + "address_2": null, + "address_3": null, + "city": "Woodinville", + "state_province": "Washington", + "postal_code": "98072-8669", + "country": "United States", + "longitude": -122.15488674812, + "latitude": 47.782473284418, + "phone": "4252866004", + "website_url": "https://www.4stitchbrewing.com", + "state": "Washington", + "street": "5817 238th St SE Ste 3" + }, + { + "id": "d4c7fb43-6671-4597-8cdd-e938d751aca2", + "name": "400 North Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sugarhill", + "state_province": "Georgia", + "postal_code": "30518-7916", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4047911119", + "website_url": "http://400northbrewing.com", + "state": "Georgia", + "street": null + }, + { + "id": "9c3f919e-e6de-4e43-91cb-30f3e73ad591", + "name": "406 Brewing Company", + "brewery_type": "micro", + "address_1": "101 E Oak St, Ste D", + "address_2": null, + "address_3": null, + "city": "Bozeman", + "state_province": "Montana", + "postal_code": "59715-2967", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4065853745", + "website_url": "http://www.406brewingcompany.com", + "state": "Montana", + "street": "101 E Oak St, Ste D" + }, + { + "id": "b7f2ebb8-6764-4654-a98b-246724c8952a", + "name": "411 Broadway Ales", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fresno", + "state_province": "California", + "postal_code": "93721-2801", + "country": "United States", + "longitude": -119.7088613, + "latitude": 36.7295295, + "phone": "5412706076", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "ef60f8cf-0fdc-4ea1-aa94-09e1f869176b", + "name": "412 Brews", + "brewery_type": "brewpub", + "address_1": "706 Island Ave", + "address_2": null, + "address_3": null, + "city": "Mc Kees Rocks", + "state_province": "Pennsylvania", + "postal_code": "15136-3287", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.412brews.com", + "state": "Pennsylvania", + "street": "706 Island Ave" + }, + { + "id": "dad10840-28ab-4dcf-9005-bf2cc2665b5a", + "name": "42 North Brewing Company", + "brewery_type": "brewpub", + "address_1": "25 Pine St", + "address_2": null, + "address_3": null, + "city": "East Aurora", + "state_province": "New York", + "postal_code": "14052-1827", + "country": "United States", + "longitude": -78.607989, + "latitude": 42.769311, + "phone": "7168057500", + "website_url": "http://www.42northbrewing.com", + "state": "New York", + "street": "25 Pine St" + }, + { + "id": "52dd0878-928b-4b47-b7fa-602f140592ed", + "name": "4204 Main Street Brewing Co", + "brewery_type": "brewpub", + "address_1": "4204 W Main St", + "address_2": null, + "address_3": null, + "city": "Belleville", + "state_province": "Illinois", + "postal_code": "62226", + "country": "United States", + "longitude": -90.02053343, + "latitude": 38.53796122, + "phone": "6184167261", + "website_url": null, + "state": "Illinois", + "street": "4204 W Main St" + }, + { + "id": "1d3084b5-c9bc-4380-9862-14e837b82bb9", + "name": "45 Degree Brewhouse", + "brewery_type": "micro", + "address_1": "10421 E Sprague Ave", + "address_2": null, + "address_3": null, + "city": "Spokane Valley", + "state_province": "Washington", + "postal_code": "99206-3629", + "country": "United States", + "longitude": -117.264473, + "latitude": 47.657478, + "phone": "5092413281", + "website_url": "http://45degreebrewhouse.com", + "state": "Washington", + "street": "10421 E Sprague Ave" + }, + { + "id": "eb3d0c66-bbe8-495d-a876-924f0c0cf509", + "name": "450 North Brewing Company @ Simmons Winery", + "brewery_type": "brewpub", + "address_1": "8111 E 450 N", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Indiana", + "postal_code": "47203-8106", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8125460091", + "website_url": "http://www.450northbrewing.com", + "state": "Indiana", + "street": "8111 E 450 N" + }, + { + "id": "6b892c61-269b-453f-acd1-b79491b0ef0b", + "name": "47 Hills Brewing Co", + "brewery_type": "brewpub", + "address_1": "137 S Linden Ave", + "address_2": null, + "address_3": null, + "city": "South San Francisco", + "state_province": "California", + "postal_code": "94080-6410", + "country": "United States", + "longitude": -122.4136168, + "latitude": 37.64425595, + "phone": "6508678476", + "website_url": "http://47hillsbrewingcompany.com", + "state": "California", + "street": "137 S Linden Ave" + }, + { + "id": "cd97aeab-a499-4c95-b20b-881bfe3ed6c8", + "name": "49th State Brewing Co", + "brewery_type": "micro", + "address_1": "248.4 Parks Hwy 5 Mile", + "address_2": null, + "address_3": null, + "city": "Healy", + "state_province": "Alaska", + "postal_code": "99743", + "country": "United States", + "longitude": -149.017877, + "latitude": 63.864759, + "phone": "9076832739", + "website_url": "https://www.49statebrewing.com/denali", + "state": "Alaska", + "street": "248.4 Parks Hwy 5 Mile" + }, + { + "id": "eaa4afea-bcb5-434c-839e-ef48fe8811d0", + "name": "49th State Brewing Co - Anchorage", + "brewery_type": "brewpub", + "address_1": "717 W 3rd Ave", + "address_2": null, + "address_3": null, + "city": "Anchorage", + "state_province": "Alaska", + "postal_code": "99501-2104", + "country": "United States", + "longitude": -149.8958196, + "latitude": 61.2197366, + "phone": "9076832739", + "website_url": "http://www.49statebrewing.com/", + "state": "Alaska", + "street": "717 W 3rd Ave" + }, + { + "id": "dbf0d7e7-4e2c-4574-9dee-791d95496811", + "name": "4B's Brewery", + "brewery_type": "brewpub", + "address_1": "215 W Main St", + "address_2": null, + "address_3": null, + "city": "Cedaredge", + "state_province": "Colorado", + "postal_code": "81413-3339", + "country": "United States", + "longitude": -107.925782, + "latitude": 38.900614, + "phone": "9708567762", + "website_url": "http://www.4bsbrewery.com", + "state": "Colorado", + "street": "215 W Main St" + }, + { + "id": "aea0a6f9-557e-4907-be23-d80737a071e4", + "name": "4J Brewing Company", + "brewery_type": "micro", + "address_1": "1348 Cedar Post Ln.", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77055", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7136780776", + "website_url": "https://4jbrewingcompany.com", + "state": "Texas", + "street": "1348 Cedar Post Ln." + }, + { + "id": "53efe9e9-dbb3-4c98-ab77-61515abef2a9", + "name": "4kd Crick Brewery", + "brewery_type": "brewpub", + "address_1": "211 Carpenter Rd", + "address_2": null, + "address_3": null, + "city": "Defiance", + "state_province": "Ohio", + "postal_code": "43512-1718", + "country": "United States", + "longitude": -84.341647, + "latitude": 41.296252, + "phone": "4199562863", + "website_url": "http://Www.4kdcrickbrewery.com", + "state": "Ohio", + "street": "211 Carpenter Rd" + }, + { + "id": "760e8395-f2a2-4161-9bf1-c72ed1aa6ae3", + "name": "4th Tap Brewing Cooperative", + "brewery_type": "micro", + "address_1": "10615 Metric Blvd", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78758-4520", + "country": "United States", + "longitude": -97.7118913, + "latitude": 30.3852024, + "phone": "5129089817", + "website_url": null, + "state": "Texas", + "street": "10615 Metric Blvd" + }, + { + "id": "d8b4ad26-346b-40dd-8215-b0e89ace23e2", + "name": "5 Alarm Brewing Co", + "brewery_type": "micro", + "address_1": "211 W Main St", + "address_2": null, + "address_3": null, + "city": "Lake Mills", + "state_province": "Iowa", + "postal_code": "50450", + "country": "United States", + "longitude": -93.53398788, + "latitude": 43.41926615, + "phone": "6415922739", + "website_url": null, + "state": "Iowa", + "street": "211 W Main St" + }, + { + "id": "c17a3e56-4d4e-405e-a21b-85f415903674", + "name": "5 Lakes Brewing Co.", + "brewery_type": "brewpub", + "address_1": "1638 142nd Ave", + "address_2": null, + "address_3": null, + "city": "Dorr", + "state_province": "Michigan", + "postal_code": "49323-9312", + "country": "United States", + "longitude": -85.70445518, + "latitude": 42.72497157, + "phone": "6163599555", + "website_url": "http://www.5lakesbrewing.com", + "state": "Michigan", + "street": "1638 142nd Ave" + }, + { + "id": "75eff8e1-7c25-483a-a2b2-49ecdbf16d31", + "name": "5 Lamps Brewery", + "brewery_type": "regional", + "address_1": "84-87 Camden St.", + "address_2": "Saint Kevin's", + "address_3": "Dublin 2", + "city": "Dublin", + "state_province": "Dublin", + "postal_code": "D02 DH36", + "country": "Ireland", + "longitude": -6.26585621, + "latitude": 53.33596635, + "phone": null, + "website_url": "https://the5lampsbrewery.com/home/", + "state": "Dublin", + "street": "84-87 Camden St." + }, + { + "id": "257e9aac-7dbe-4656-b366-9d8a94c49d58", + "name": "5 North Brewing Company", + "brewery_type": "closed", + "address_1": "6501 N Cedar Rd", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99208", + "country": "United States", + "longitude": -117.4328496, + "latitude": 47.71758683, + "phone": "5093217818", + "website_url": "http://5northbrewingcompany.com/", + "state": "Washington", + "street": "6501 N Cedar Rd" + }, + { + "id": "f927d8d6-3151-4073-9d20-410ca617853e", + "name": "5 Rabbit Cerveceria Inc", + "brewery_type": "micro", + "address_1": "6398 W 74th St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60638-6129", + "country": "United States", + "longitude": -87.6572069, + "latitude": 41.7595502, + "phone": "3128959591", + "website_url": "http://www.5rabbitbrewery.com", + "state": "Illinois", + "street": "6398 W 74th St" + }, + { + "id": "5c99b790-e00d-4ca6-86a5-37723f728690", + "name": "5 Rights Brewing Co", + "brewery_type": "micro", + "address_1": "1514 3rd St", + "address_2": null, + "address_3": null, + "city": "Marysville", + "state_province": "Washington", + "postal_code": "98270", + "country": "United States", + "longitude": -122.1762906, + "latitude": 48.05156015, + "phone": "4253341026", + "website_url": "http://www.5rightsbrewing.com", + "state": "Washington", + "street": "1514 3rd St" + }, + { + "id": "2af85509-aee5-46bc-ab1a-fd9b8b0026d4", + "name": "5 Rivers Brewing LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Spanish Fort", + "state_province": "Alabama", + "postal_code": "36527-3161", + "country": "United States", + "longitude": -87.9152724, + "latitude": 30.6749127, + "phone": "2516897483", + "website_url": "http://5riversbrewing.com", + "state": "Alabama", + "street": null + }, + { + "id": "80c395e8-28c8-460a-9cc5-721fcc22410f", + "name": "5 Seasons Brewing Co - Prado", + "brewery_type": "brewpub", + "address_1": "5600 Roswell Rd", + "address_2": null, + "address_3": null, + "city": "Sandy Springs", + "state_province": "Georgia", + "postal_code": "30342-1150", + "country": "United States", + "longitude": -84.3796711, + "latitude": 33.9078086, + "phone": "4042555911", + "website_url": "http://www.5seasonsbrewing.com", + "state": "Georgia", + "street": "5600 Roswell Rd" + }, + { + "id": "baad8dd7-b295-480c-8f64-e499562a3662", + "name": "5 Seasons Brewing Co - Westside", + "brewery_type": "brewpub", + "address_1": "1000 Marietta St NW Ste 204", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30318-0683", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4048753232", + "website_url": "http://www.5seasonsbrewing.com", + "state": "Georgia", + "street": "1000 Marietta St NW Ste 204" + }, + { + "id": "83d47922-0a23-4b85-9c1c-d50b9135d64a", + "name": "5 Stones Artisan Brewery", + "brewery_type": "micro", + "address_1": "11335 Farm To Market Road 1863", + "address_2": null, + "address_3": null, + "city": "New Braunfels", + "state_province": "Texas", + "postal_code": "78132", + "country": "United States", + "longitude": -98.232345, + "latitude": 29.711365, + "phone": "2103808215", + "website_url": null, + "state": "Texas", + "street": "11335 Farm To Market Road 1863" + }, + { + "id": "fafc2e23-c3bf-46d3-87c0-00e92209269b", + "name": "515 Brewing Co", + "brewery_type": "micro", + "address_1": "7700 University Ave", + "address_2": null, + "address_3": null, + "city": "Clive", + "state_province": "Iowa", + "postal_code": "50325-1271", + "country": "United States", + "longitude": -93.7228408, + "latitude": 41.599992, + "phone": "5156614615", + "website_url": "http://www.515brewing.com", + "state": "Iowa", + "street": "7700 University Ave" + }, + { + "id": "7e12d827-22dc-4d07-8715-8192c9680b23", + "name": "5150 Brewing At The Brass Tap Rocklin", + "brewery_type": "micro", + "address_1": "5150 Commons Dr Ste 101", + "address_2": null, + "address_3": null, + "city": "Rocklin", + "state_province": "California", + "postal_code": "95677-3925", + "country": "United States", + "longitude": -121.207331, + "latitude": 38.8047402, + "phone": "9162462729", + "website_url": "http://www.brasstaprocklin.com", + "state": "California", + "street": "5150 Commons Dr Ste 101" + }, + { + "id": "132540a2-23c8-4720-8c58-31292d264c4a", + "name": "51st State Brewing Company", + "brewery_type": "brewpub", + "address_1": "115 Harding Ave", + "address_2": null, + "address_3": null, + "city": "Kingsford", + "state_province": "Michigan", + "postal_code": "49802-3815", + "country": "United States", + "longitude": -88.08819, + "latitude": 45.808408, + "phone": "9068282167", + "website_url": "http://www.51ststatebrewingcompany.com", + "state": "Michigan", + "street": "115 Harding Ave" + }, + { + "id": "5858b701-9e27-44e6-8ab8-b950b72c4181", + "name": "51st Ward Beer Company", + "brewery_type": "contract", + "address_1": "323 N Washington St", + "address_2": null, + "address_3": null, + "city": "Westmont", + "state_province": "Illinois", + "postal_code": "60559-1512", + "country": "United States", + "longitude": -87.981157, + "latitude": 41.804494, + "phone": "7732205899", + "website_url": null, + "state": "Illinois", + "street": "323 N Washington St" + }, + { + "id": "4d878d25-a8fb-49e7-93da-56d229bf46ff", + "name": "54-40 Brewing Company", + "brewery_type": "brewpub", + "address_1": "3801 S Truman Rd Ste 1", + "address_2": null, + "address_3": null, + "city": "Washougal", + "state_province": "Washington", + "postal_code": "98671-2589", + "country": "United States", + "longitude": -122.3269349, + "latitude": 45.56577849, + "phone": "3609077062", + "website_url": "http://www.54-40brewing.com", + "state": "Washington", + "street": "3801 S Truman Rd Ste 1" + }, + { + "id": "126f87c3-1c6d-4ff0-b35c-c8dfa9a8e1b4", + "name": "550 Brewing", + "brewery_type": "proprietor", + "address_1": "119 E Chuska St", + "address_2": null, + "address_3": null, + "city": "Aztec", + "state_province": "New Mexico", + "postal_code": "87410-2110", + "country": "United States", + "longitude": -107.9950235, + "latitude": 36.8213739, + "phone": "5054861094", + "website_url": "http://Www.550brew.com", + "state": "New Mexico", + "street": "119 E Chuska St" + }, + { + "id": "4a4baf4f-921c-46c0-9130-afcc4ce4f4d2", + "name": "559 Local Brewing", + "brewery_type": "micro", + "address_1": "608 4th St", + "address_2": null, + "address_3": null, + "city": "Clovis", + "state_province": "California", + "postal_code": "93612-1183", + "country": "United States", + "longitude": -119.7017487, + "latitude": 36.82517171, + "phone": "5594731875", + "website_url": "http://www.fresnobrewingcompany.com", + "state": "California", + "street": "608 4th St" + }, + { + "id": "b0d5d69d-b439-44a6-ab3e-0cbd15658dc7", + "name": "56 Brewing", + "brewery_type": "micro", + "address_1": "3055 Columbia Ave NE Ste 102", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55418-1860", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6124040056", + "website_url": "http://www.56brewing.com", + "state": "Minnesota", + "street": "3055 Columbia Ave NE Ste 102" + }, + { + "id": "f4a902c1-e5a6-43da-b3e4-a1ffc97d31a9", + "name": "5770 Brewery", + "brewery_type": "micro", + "address_1": "303A W Main St", + "address_2": null, + "address_3": null, + "city": "Teutopolis", + "state_province": "Illinois", + "postal_code": "62467-1355", + "country": "United States", + "longitude": -88.47806652, + "latitude": 39.13142194, + "phone": "6183397841", + "website_url": "http://www.5770brewery.com", + "state": "Illinois", + "street": "303A W Main St" + }, + { + "id": "90d1fa86-77d7-4a21-9818-e338fa6fdb96", + "name": "583 양조장(583 Brewery)", + "brewery_type": "brewpub", + "address_1": "583-8, Uiam-ro", + "address_2": "Janggye-myeon", + "address_3": null, + "city": "Jangsu-gun", + "state_province": "Jeollabukdo", + "postal_code": "55621", + "country": "South Korea", + "longitude": 127.6205123, + "latitude": 35.68271721, + "phone": "063-353-5515", + "website_url": "http://www.583beer.modoo.at", + "state": "Jeollabukdo", + "street": "583-8, Uiam-ro" + }, + { + "id": "eaf55668-8444-4e4f-80c2-b9f32f7e4d83", + "name": "5th Element Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Leander", + "state_province": "Texas", + "postal_code": "78641-4009", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9156378199", + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "cc8de428-9663-466c-bae8-73ad9edf0892", + "name": "5th Line Brewing Co", + "brewery_type": "micro", + "address_1": "1015 E Lincoln Ave Ste 106", + "address_2": null, + "address_3": null, + "city": "Yakima", + "state_province": "Washington", + "postal_code": "98901-2534", + "country": "United States", + "longitude": -120.4930458, + "latitude": 46.61136701, + "phone": "5093676300", + "website_url": "https://5thlinebrewing.com/", + "state": "Washington", + "street": "1015 E Lincoln Ave Ste 106" + }, + { + "id": "849d5961-83c5-4115-9ae4-c0e93c8d3a7f", + "name": "5x5 Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mission", + "state_province": "Texas", + "postal_code": "78572-6215", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9565291353", + "website_url": "http://www.5x5brewing.com", + "state": "Texas", + "street": null + }, + { + "id": "e2bb50c4-260f-4f42-8306-392f7bd5f4ba", + "name": "6 & 40 Brewery/Taproom", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lakewood", + "state_province": "Colorado", + "postal_code": "80215-5548", + "country": "United States", + "longitude": -105.1100582, + "latitude": 39.6311085, + "phone": "3032325347", + "website_url": "http://www.tomsbrewshop.com", + "state": "Colorado", + "street": null + }, + { + "id": "e5992621-3c91-4968-b913-85972aa66fbb", + "name": "6 Bears & A Goat Brewing Company, LLC", + "brewery_type": "brewpub", + "address_1": "1140 International Pkwy", + "address_2": null, + "address_3": null, + "city": "Fredericksburg", + "state_province": "Virginia", + "postal_code": "22406-1126", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "54035690562", + "website_url": "http://www.6bgbrewingco.com", + "state": "Virginia", + "street": "1140 International Pkwy" + }, + { + "id": "76ee21a3-d4bd-4526-9ef8-5a23a4507566", + "name": "6 Bridges Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Johns Creek", + "state_province": "Georgia", + "postal_code": "30097", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7708460292", + "website_url": "http://www.sixbridgesbrewing.com", + "state": "Georgia", + "street": null + }, + { + "id": "6f431fe7-b136-444b-84e3-3a2042903d93", + "name": "6 Degrees of Separation", + "brewery_type": "brewpub", + "address_1": "35 Main St", + "address_2": null, + "address_3": null, + "city": "Ossining", + "state_province": "New York", + "postal_code": "10562-4662", + "country": "United States", + "longitude": -73.86768188, + "latitude": 41.15866213, + "phone": "9144325969", + "website_url": "http://www.6degreesbp.com", + "state": "New York", + "street": "35 Main St" + }, + { + "id": "ddf69cff-978e-47b6-b42e-75f102418bd0", + "name": "603 Brewery", + "brewery_type": "micro", + "address_1": "12 Liberty Dr Unit 7", + "address_2": null, + "address_3": null, + "city": "Londonderry", + "state_province": "New Hampshire", + "postal_code": "03053-2286", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6036307745", + "website_url": "http://www.603brewery.com", + "state": "New Hampshire", + "street": "12 Liberty Dr Unit 7" + }, + { + "id": "62871bbc-a963-4c09-9eff-eb36ade49fd7", + "name": "608 Brewing Company", + "brewery_type": "micro", + "address_1": "83 Copeland Ave", + "address_2": null, + "address_3": null, + "city": "La Crosse", + "state_province": "Wisconsin", + "postal_code": "54603-3403", + "country": "United States", + "longitude": -91.249927988566, + "latitude": 43.825963955898, + "phone": null, + "website_url": "http://www.608brewingcompany.com", + "state": "Wisconsin", + "street": "83 Copeland Ave" + }, + { + "id": "f3e9ba4b-0246-44ac-9170-f095d19e8d64", + "name": "612 Brew", + "brewery_type": "micro", + "address_1": "945 Broadway St NE", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55413-1471", + "country": "United States", + "longitude": -93.2062058, + "latitude": 45.000631, + "phone": "6129648939", + "website_url": "http://www.612brew.com", + "state": "Minnesota", + "street": "945 Broadway St NE" + }, + { + "id": "af6cb069-b61a-4c69-8fd2-0a5f87c11a17", + "name": "6th and La Brea", + "brewery_type": "brewpub", + "address_1": "600 South La Brea Ave", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90036", + "country": "United States", + "longitude": -118.3440213, + "latitude": 34.0730485, + "phone": null, + "website_url": "http://www.6thlabrea.com", + "state": "California", + "street": "600 South La Brea Ave" + }, + { + "id": "6a928a00-bf8e-4481-ae27-a2a5b14f56e2", + "name": "7 Devils Brewing Co", + "brewery_type": "brewpub", + "address_1": "247 S 2nd St", + "address_2": null, + "address_3": null, + "city": "Coos Bay", + "state_province": "Oregon", + "postal_code": "97420-1642", + "country": "United States", + "longitude": -124.2147508, + "latitude": 43.36654751, + "phone": "5418083738", + "website_url": "http://www.7devilsbrewery.com", + "state": "Oregon", + "street": "247 S 2nd St" + }, + { + "id": "8824022a-0fd9-4727-b6fa-b7aaf65eb043", + "name": "7 Hermits Brewing Company", + "brewery_type": "brewpub", + "address_1": "PO Box 3186", + "address_2": null, + "address_3": null, + "city": "Eagle", + "state_province": "Colorado", + "postal_code": "81631-3186", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9704714979", + "website_url": "http://www.7hermitsbrewing.com", + "state": "Colorado", + "street": "PO Box 3186" + }, + { + "id": "e861ea88-9815-48a0-84ba-d2a1929178e7", + "name": "7 Hills Brewing Company", + "brewery_type": "brewpub", + "address_1": "1085 Washington St", + "address_2": null, + "address_3": null, + "city": "Dubuque", + "state_province": "Iowa", + "postal_code": "52001-4932", + "country": "United States", + "longitude": -90.6635263, + "latitude": 42.5045556, + "phone": "5635878306", + "website_url": "http://www.7hillsbrew.com", + "state": "Iowa", + "street": "1085 Washington St" + }, + { + "id": "4e84a8d0-0d52-431e-a57a-da8977625bd2", + "name": "7 Locks Brewing", + "brewery_type": "micro", + "address_1": "12227 Wilkins Ave", + "address_2": null, + "address_3": null, + "city": "Rockville", + "state_province": "Maryland", + "postal_code": "20852-1833", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3018417123", + "website_url": "http://www.7locksbrewing.com", + "state": "Maryland", + "street": "12227 Wilkins Ave" + }, + { + "id": "84c84db6-1120-4106-a5d3-fd65b9d7303d", + "name": "7 Mile Brewery", + "brewery_type": "micro", + "address_1": "3156 Route 9 South Ste 1-2", + "address_2": null, + "address_3": null, + "city": "Rio Grande", + "state_province": "New Jersey", + "postal_code": "08242", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6093657777", + "website_url": "http://www.7milebrew.com", + "state": "New Jersey", + "street": "3156 Route 9 South Ste 1-2" + }, + { + "id": "745b65a8-d682-465c-a418-0188ce5878c2", + "name": "7 Seas Brewing Co", + "brewery_type": "micro", + "address_1": "2101 Jefferson Ave", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98402-1519", + "country": "United States", + "longitude": -122.4390379, + "latitude": 47.242614, + "phone": "2535727771", + "website_url": "http://www.7seasbrewing.com", + "state": "Washington", + "street": "2101 Jefferson Ave" + }, + { + "id": "e062c040-4ff9-46f1-9f3d-172626694cb0", + "name": "7 Seas Brewing Co - Gig Harbor", + "brewery_type": "taproom", + "address_1": "2905 Harborview Dr", + "address_2": null, + "address_3": null, + "city": "Gig Harbor", + "state_province": "Washington", + "postal_code": "98335-1910", + "country": "United States", + "longitude": -122.577347, + "latitude": 47.328217, + "phone": "2535148129", + "website_url": "https://www.7seasbrewing.com/gig-harbor", + "state": "Washington", + "street": "2905 Harborview Dr" + }, + { + "id": "a1199657-e4a9-496b-88c3-999f9e7e97e9", + "name": "7 Sins Brewery", + "brewery_type": "micro", + "address_1": "10593 W Main Rd", + "address_2": null, + "address_3": null, + "city": "Ripley", + "state_province": "New York", + "postal_code": "14775-9746", + "country": "United States", + "longitude": -79.7497349, + "latitude": 42.24869073, + "phone": "7165812090", + "website_url": "http://www.7sinsbrewery.com", + "state": "New York", + "street": "10593 W Main Rd" + }, + { + "id": "a3a1eac7-b858-4bdd-81ac-c2099b717da2", + "name": "7 Sisters Brewing Co", + "brewery_type": "brewpub", + "address_1": "181 Tank Farm Rd Ste 110", + "address_2": null, + "address_3": null, + "city": "San Luis Obispo", + "state_province": "California", + "postal_code": "93401-7082", + "country": "United States", + "longitude": -120.6706375, + "latitude": 35.2467278, + "phone": "8058687133", + "website_url": "http://www.7sistersbrewing.com", + "state": "California", + "street": "181 Tank Farm Rd Ste 110" + }, + { + "id": "3f3220f8-75f8-4fea-a5a4-289aa3267f11", + "name": "718BrewCafe, LLP", + "brewery_type": "brewpub", + "address_1": "718 Market St", + "address_2": null, + "address_3": null, + "city": "Metropolis", + "state_province": "Illinois", + "postal_code": "62960-1634", + "country": "United States", + "longitude": -88.73129158, + "latitude": 37.15373334, + "phone": "6185247180", + "website_url": "http://www.718BrewCafe.com", + "state": "Illinois", + "street": "718 Market St" + }, + { + "id": "c00f57cf-acdd-46da-9269-d182cb87a7e4", + "name": "734 Brewing Company", + "brewery_type": "micro", + "address_1": "15 E Cross St", + "address_2": null, + "address_3": null, + "city": "Ypsilanti", + "state_province": "Michigan", + "postal_code": "48198", + "country": "United States", + "longitude": -83.61103475, + "latitude": 42.24586784, + "phone": "7346496453", + "website_url": null, + "state": "Michigan", + "street": "15 E Cross St" + }, + { + "id": "86fc7186-e3a3-42f2-9316-e33c8afa2b8a", + "name": "7th Day Brewery", + "brewery_type": "micro", + "address_1": "9 Powells Road", + "address_2": "unit 14", + "address_3": null, + "city": "Brookvale", + "state_province": "NSW", + "postal_code": "2100", + "country": "Australia", + "longitude": 151.2727492, + "latitude": -33.7668139, + "phone": "+61 2 9939 4930", + "website_url": "http://www.7thdaybrewery.com.au/", + "state": "NSW", + "street": "9 Powells Road" + }, + { + "id": "66a91db6-7d2a-4d67-a720-7f924cae3571", + "name": "7th Settlement Brewery", + "brewery_type": "closed", + "address_1": "47 Washington St", + "address_2": null, + "address_3": null, + "city": "Dover", + "state_province": "New Hampshire", + "postal_code": "03820-3877", + "country": "United States", + "longitude": -70.8728379, + "latitude": 43.1953787, + "phone": "6033731001", + "website_url": "http://www.7thsettlement.com", + "state": "New Hampshire", + "street": "47 Washington St" + }, + { + "id": "c7b3260a-b441-4dc8-958f-34c045e26f22", + "name": "7th Wave Brewing", + "brewery_type": "micro", + "address_1": "120 N Meadows Rd Ste 8", + "address_2": null, + "address_3": null, + "city": "Medfield", + "state_province": "Massachusetts", + "postal_code": "02052-1594", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6176453397", + "website_url": "http://www.7thwavebrewing.com", + "state": "Massachusetts", + "street": "120 N Meadows Rd Ste 8" + }, + { + "id": "c179a049-9988-4640-821d-ddf349cdd87e", + "name": "7venth Sun Brewery", + "brewery_type": "micro", + "address_1": "1012 Broadway", + "address_2": null, + "address_3": null, + "city": "Dunedin", + "state_province": "Florida", + "postal_code": "34698-5762", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7277333013", + "website_url": "http://www.7venthsun.com", + "state": "Florida", + "street": "1012 Broadway" + }, + { + "id": "4679ff59-8ef6-4443-b6ec-f58232c6b7d7", + "name": "7venth Sun Tampa", + "brewery_type": "micro", + "address_1": "6809 N Nebraska Ave", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33604-5660", + "country": "United States", + "longitude": -82.4500207, + "latitude": 27.9495902, + "phone": "8132315900", + "website_url": null, + "state": "Florida", + "street": "6809 N Nebraska Ave" + }, + { + "id": "c6a766f9-a187-4e5b-9519-6c737ce0cde5", + "name": "8 Bit Brewing Company", + "brewery_type": "brewpub", + "address_1": "26755 Jefferson Ave Ste F", + "address_2": null, + "address_3": null, + "city": "Murrieta", + "state_province": "California", + "postal_code": "92562-6941", + "country": "United States", + "longitude": -117.1762542, + "latitude": 33.53033448, + "phone": "9516772322", + "website_url": "http://www.8bitbrewerycompany.com", + "state": "California", + "street": "26755 Jefferson Ave Ste F" + }, + { + "id": "eef94d73-65e8-4d94-b1de-0d4b45efe090", + "name": "8-Bit Aleworks", + "brewery_type": "micro", + "address_1": "1050 N Fairway Dr Bldg F Ste 10", + "address_2": null, + "address_3": null, + "city": "Avondale", + "state_province": "Arizona", + "postal_code": "85323-5206", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6239251650", + "website_url": "http://www.8-bitaleworks.com", + "state": "Arizona", + "street": "1050 N Fairway Dr Bldg F Ste 10" + }, + { + "id": "745272b9-5d04-4468-b1f7-e76a75c22de9", + "name": "81 Artisan", + "brewery_type": "micro", + "address_1": "Chilgrove Road", + "address_2": "Lavant", + "address_3": null, + "city": "Chichester", + "state_province": "West Sussex", + "postal_code": "PO18 9HP", + "country": "England", + "longitude": -0.81111, + "latitude": 50.89212, + "phone": "7990035736", + "website_url": "https://81artisan.com/", + "state": "West Sussex", + "street": "Chilgrove Road" + }, + { + "id": "783c5daa-ea5c-4462-836e-c2846ad3ff4e", + "name": "81Bay Brewing Company", + "brewery_type": "micro", + "address_1": "4465 W Gandy Blvd Ste 600", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33611-3379", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8133722739", + "website_url": "http://81baybrewco.com", + "state": "Florida", + "street": "4465 W Gandy Blvd Ste 600" + }, + { + "id": "187f0cfc-1433-4d8c-89c0-5b4151504a71", + "name": "841 Brewhouse", + "brewery_type": "brewpub", + "address_1": "841 E Milwaukee St", + "address_2": null, + "address_3": null, + "city": "Whitewater", + "state_province": "Wisconsin", + "postal_code": "53190-2126", + "country": "United States", + "longitude": -88.71427344, + "latitude": 42.8323014, + "phone": "2624738000", + "website_url": null, + "state": "Wisconsin", + "street": "841 E Milwaukee St" + }, + { + "id": "3055793c-9330-4fe1-958b-fef6d2a0e057", + "name": "8one8 Brewing Company", + "brewery_type": "micro", + "address_1": "8951 de Soto Ave", + "address_2": null, + "address_3": null, + "city": "Canoga Park", + "state_province": "California", + "postal_code": "91304-5901", + "country": "United States", + "longitude": -118.5885323, + "latitude": 34.2218019, + "phone": "8188352286", + "website_url": "http://www.818brewing.com", + "state": "California", + "street": "8951 de Soto Ave" + }, + { + "id": "2d880e85-5b0f-447b-b1b2-5bcae8a4b130", + "name": "8th Street Ale Haus", + "brewery_type": "brewpub", + "address_1": "1132 N 8th St", + "address_2": null, + "address_3": null, + "city": "Sheboygan", + "state_province": "Wisconsin", + "postal_code": "53081-3402", + "country": "United States", + "longitude": -87.71305702, + "latitude": 43.75674392, + "phone": "9202087540", + "website_url": "http://www.sheboyganalehaus.com", + "state": "Wisconsin", + "street": "1132 N 8th St" + }, + { + "id": "1682e94f-73ba-4035-93be-1fb28bb2cee7", + "name": "8th Ward Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Poughkeepsie", + "state_province": "New York", + "postal_code": "12603-3401", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "c2bc693f-906a-46a0-a5f9-82eab2d2845b", + "name": "8th Wonder Brewery", + "brewery_type": "micro", + "address_1": "2202 Dallas St", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77003-3519", + "country": "United States", + "longitude": -95.3559402, + "latitude": 29.7487783, + "phone": "7133970072", + "website_url": "http://www.8thwonderbrew.com", + "state": "Texas", + "street": "2202 Dallas St" + }, + { + "id": "a0a230f6-17b2-4460-8eca-61e57be53ed5", + "name": "9 White Deer Brewery", + "brewery_type": "micro", + "address_1": "Ballymakeera", + "address_2": null, + "address_3": null, + "city": "Macroom", + "state_province": "Cork", + "postal_code": "P12 E277", + "country": "Ireland", + "longitude": -9.146507143, + "latitude": 51.936249, + "phone": "35302627110", + "website_url": "http://www.9whitedeer.ie/", + "state": "Cork", + "street": "Ballymakeera" + }, + { + "id": "2b067eab-e0b0-46b6-aaea-e40a62cf632f", + "name": "903 Brewers", + "brewery_type": "micro", + "address_1": "1718 S Elm St", + "address_2": null, + "address_3": null, + "city": "Sherman", + "state_province": "Texas", + "postal_code": "75090-8725", + "country": "United States", + "longitude": -96.60698055, + "latitude": 33.61788732, + "phone": "2142438090", + "website_url": "http://www.903brewers.com", + "state": "Texas", + "street": "1718 S Elm St" + }, + { + "id": "de6341a8-881b-4d9f-9335-5e9203e8a2c3", + "name": "927 Beer Company", + "brewery_type": "micro", + "address_1": "821 Cornwall St", + "address_2": null, + "address_3": null, + "city": "Cambria", + "state_province": "California", + "postal_code": "93428-2434", + "country": "United States", + "longitude": -121.0985408, + "latitude": 35.5666725, + "phone": "8052035265", + "website_url": "http://www.cambriabeerco.com", + "state": "California", + "street": "821 Cornwall St" + }, + { + "id": "de63f5c7-c340-4095-a302-f35ab8ac7179", + "name": "93 Octane Brewery", + "brewery_type": "micro", + "address_1": "1825 Lincoln Highway", + "address_2": null, + "address_3": null, + "city": "Saint Charles", + "state_province": "Illinois", + "postal_code": "60174-4591", + "country": "United States", + "longitude": -88.333625900834, + "latitude": 41.898851100486, + "phone": "6305490332", + "website_url": "http://www.93octanebrewery.com", + "state": "Illinois", + "street": "1825 Lincoln Highway" + }, + { + "id": "b4e012c5-0f36-4d0a-a40b-cbcb29c7ceed", + "name": "95ate5 Brewpub", + "brewery_type": "brewpub", + "address_1": "9585 N Industrial Dr", + "address_2": null, + "address_3": null, + "city": "Saint John", + "state_province": "Indiana", + "postal_code": "46373", + "country": "United States", + "longitude": -87.46380305, + "latitude": 41.44400246, + "phone": "2193656506", + "website_url": "http://www.95ate5.com", + "state": "Indiana", + "street": "9585 N Industrial Dr" + }, + { + "id": "42598f85-f02e-474c-9154-0aa4f1d932be", + "name": "9th Hour Brewing Company LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Spring Grove", + "state_province": "Illinois", + "postal_code": "60081-9459", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Illinois", + "street": null + }, + { + "id": "9aeccd09-8884-4f0e-93f4-c44dacd246aa", + "name": "A Homestead Brew", + "brewery_type": "micro", + "address_1": "26685 486th Ave", + "address_2": null, + "address_3": null, + "city": "Valley Springs", + "state_province": "South Dakota", + "postal_code": "57068-7309", + "country": "United States", + "longitude": -96.49421923, + "latitude": 43.51733014, + "phone": "6055535015", + "website_url": "http://www.ahomesteadbrew.com", + "state": "South Dakota", + "street": "26685 486th Ave" + }, + { + "id": "88a7ac77-a52b-4496-91df-b41e5831a568", + "name": "A Little Madness Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Pensacola", + "state_province": "Florida", + "postal_code": "32514-8122", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.ALittleMadnessBrewingCompany.com", + "state": "Florida", + "street": null + }, + { + "id": "5b627789-ff7e-4890-a7cf-24572bf547a2", + "name": "Aardwolf Brewing Company", + "brewery_type": "micro", + "address_1": "1461 Hendricks Ave", + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Florida", + "postal_code": "32207-8622", + "country": "United States", + "longitude": -81.6545197, + "latitude": 30.3108962, + "phone": "9043010755", + "website_url": "http://www.aardwolfbrewing.com", + "state": "Florida", + "street": "1461 Hendricks Ave" + }, + { + "id": "7918a6dd-08d0-4157-a841-01b20a9a7a4c", + "name": "Abandon Brewing", + "brewery_type": "micro", + "address_1": "2994 Merritt Hill Rd", + "address_2": null, + "address_3": null, + "city": "Penn Yan", + "state_province": "New York", + "postal_code": "14527-8938", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5852093276", + "website_url": "http://www.abandonbrewing.com", + "state": "New York", + "street": "2994 Merritt Hill Rd" + }, + { + "id": "5a7b05f9-bf7b-49a2-a1de-0c1fe01b9374", + "name": "Abandoned Building Brewery", + "brewery_type": "micro", + "address_1": "142 Pleasant St Unit 103A", + "address_2": null, + "address_3": null, + "city": "Easthampton", + "state_province": "Massachusetts", + "postal_code": "01027-2805", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4132827062", + "website_url": "http://www.abandonedbuildingbrewery.com", + "state": "Massachusetts", + "street": "142 Pleasant St Unit 103A" + }, + { + "id": "9c7b9f2a-6deb-44a1-9b3e-f83952a4db38", + "name": "Abbey Brewing Co", + "brewery_type": "contract", + "address_1": "1115 16th St", + "address_2": null, + "address_3": null, + "city": "Miami Beach", + "state_province": "Florida", + "postal_code": "33139-2441", + "country": "United States", + "longitude": -80.1402943, + "latitude": 25.7890381, + "phone": "3055388110", + "website_url": null, + "state": "Florida", + "street": "1115 16th St" + }, + { + "id": "9c5acc37-15fa-4838-91ee-47bf27a94777", + "name": "Abbey Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "215 W. Alicante Rd", + "address_2": null, + "address_3": null, + "city": "Santa Fe", + "state_province": "New Mexico", + "postal_code": "87505", + "country": "United States", + "longitude": -105.9465207, + "latitude": 35.66555826, + "phone": "5056706802", + "website_url": "http://www.abbeybrewing.biz", + "state": "New Mexico", + "street": "215 W. Alicante Rd" + }, + { + "id": "30d8f77b-aeec-4435-a280-16bacd1b1c97", + "name": "Aberrant Ales", + "brewery_type": "brewpub", + "address_1": "219 W Grand River Ave", + "address_2": null, + "address_3": null, + "city": "Howell", + "state_province": "Michigan", + "postal_code": "48843", + "country": "United States", + "longitude": -83.93094539, + "latitude": 42.60773722, + "phone": "5175188699", + "website_url": "http://www.aberrantales.com", + "state": "Michigan", + "street": "219 W Grand River Ave" + }, + { + "id": "b161916f-3f69-4f16-8059-eef9eee6877c", + "name": "Abide Brewing Company", + "brewery_type": "micro", + "address_1": "110 Werz Industrial Blvd Ste 130", + "address_2": null, + "address_3": null, + "city": "Newnan", + "state_province": "Georgia", + "postal_code": "30263-5802", + "country": "United States", + "longitude": -84.76356641, + "latitude": 33.40257035, + "phone": "6789726747", + "website_url": "http://www.abidebrewing.com", + "state": "Georgia", + "street": "110 Werz Industrial Blvd Ste 130" + }, + { + "id": "e2fa853c-ca91-4043-878d-0bcee9900ea3", + "name": "Abigaile", + "brewery_type": "brewpub", + "address_1": "1301 Manhattan Ave", + "address_2": null, + "address_3": null, + "city": "Hermosa Beach", + "state_province": "California", + "postal_code": "90254-3666", + "country": "United States", + "longitude": -118.4048656, + "latitude": 33.8734519, + "phone": "3107988227", + "website_url": "http://abigailrestaurant.com", + "state": "California", + "street": "1301 Manhattan Ave" + }, + { + "id": "c074ba4c-0b31-4344-a85a-7930df7fb410", + "name": "Abita Brewing Co", + "brewery_type": "regional", + "address_1": "166 Barbee Rd", + "address_2": null, + "address_3": null, + "city": "Covington", + "state_province": "Louisiana", + "postal_code": "70433-8651", + "country": "United States", + "longitude": -90.056477, + "latitude": 30.481981, + "phone": "9858933143", + "website_url": "http://www.abita.com", + "state": "Louisiana", + "street": "166 Barbee Rd" + }, + { + "id": "f8ab9530-289b-4684-89f1-474e89f4c5ae", + "name": "Abjuration Brewing", + "brewery_type": "micro", + "address_1": "644 Broadway Ave", + "address_2": null, + "address_3": null, + "city": "Mc Kees Rocks", + "state_province": "Pennsylvania", + "postal_code": "15136-3008", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4127661668", + "website_url": "http://www.abjurationbrewing.com", + "state": "Pennsylvania", + "street": "644 Broadway Ave" + }, + { + "id": "c5f6426e-f894-4bfc-9ffb-43bc0baa0881", + "name": "Able Baker Brewing", + "brewery_type": "micro", + "address_1": "1051 Mary Crest Rd #K", + "address_2": null, + "address_3": null, + "city": "Henderson", + "state_province": "Nevada", + "postal_code": "89104", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7025817742", + "website_url": "http://www.ablebakerbrewing.com", + "state": "Nevada", + "street": "1051 Mary Crest Rd #K" + }, + { + "id": "e6780612-ff74-4289-8718-a229529e3ee1", + "name": "Able Ebenezer Brewing Company", + "brewery_type": "micro", + "address_1": "31 Columbia Cir", + "address_2": null, + "address_3": null, + "city": "Merrimack", + "state_province": "New Hampshire", + "postal_code": "03054-4161", + "country": "United States", + "longitude": -71.493705, + "latitude": 42.851742, + "phone": "8442232253", + "website_url": "http://www.ableebenezer.com", + "state": "New Hampshire", + "street": "31 Columbia Cir" + }, + { + "id": "31678502-edf6-4eb0-bc10-4ede5ac279b6", + "name": "Able Seedhouse and Brewery", + "brewery_type": "micro", + "address_1": "1121 Quincy St NE", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55413-2773", + "country": "United States", + "longitude": -93.2510686, + "latitude": 44.9993934, + "phone": "6124054642", + "website_url": "http://www.ablebeer.com", + "state": "Minnesota", + "street": "1121 Quincy St NE" + }, + { + "id": "00221d0f-2ed7-41d1-95b8-d8b1bfbc8b0e", + "name": "Abner's Restaurant Inc / Northern Michigan Beer", + "brewery_type": "brewpub", + "address_1": "7528 N Woodbridge (M37)", + "address_2": null, + "address_3": null, + "city": "Brohman", + "state_province": "Michigan", + "postal_code": "49312", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2316892295", + "website_url": null, + "state": "Michigan", + "street": "7528 N Woodbridge (M37)" + }, + { + "id": "4db32843-26ff-4e73-9e24-1cb874109b24", + "name": "Abnormal Beer Company", + "brewery_type": "micro", + "address_1": "16990 Via Tazon Ste 123", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92127-1649", + "country": "United States", + "longitude": -117.08575, + "latitude": 33.02391, + "phone": "8586182463", + "website_url": "http://abnormalbeer.co", + "state": "California", + "street": "16990 Via Tazon Ste 123" + }, + { + "id": "28e05fda-77a4-4a5a-9f8a-08169ec07ce5", + "name": "Abolitionist Ale Works", + "brewery_type": "brewpub", + "address_1": "129 W Washington St", + "address_2": null, + "address_3": null, + "city": "Charles Town", + "state_province": "West Virginia", + "postal_code": "25414-1529", + "country": "United States", + "longitude": -77.8607888, + "latitude": 39.28867207, + "phone": "6812521548", + "website_url": "http://www.abolitionistaleworks.com", + "state": "West Virginia", + "street": "129 W Washington St" + }, + { + "id": "bec6adc5-3a3b-4793-8364-c58f16e88cc8", + "name": "Abridged Beer Company", + "brewery_type": "brewpub", + "address_1": "100 Lockett Rd", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37919-4807", + "country": "United States", + "longitude": -84.016459, + "latitude": 35.932287, + "phone": "8658989438", + "website_url": "http://www.abridgedbeer.com", + "state": "Tennessee", + "street": "100 Lockett Rd" + }, + { + "id": "9de7f346-3918-4e5c-b59e-a36bf61b0441", + "name": "ABRU Craft Brewery", + "brewery_type": "micro", + "address_1": "15 Pasita Street", + "address_2": "Rosenpark", + "address_3": null, + "city": "Bellville", + "state_province": "Western Cape", + "postal_code": "7530", + "country": "South Africa", + "longitude": 18.6533, + "latitude": -33.8742, + "phone": "+27 72 616 8377", + "website_url": "https://abru.co.za/", + "state": "Western Cape", + "street": "15 Pasita Street" + }, + { + "id": "67525d30-1f18-4f03-a8ba-28a1153955eb", + "name": "Absolution Brewing Co", + "brewery_type": "micro", + "address_1": "2878 Columbia St", + "address_2": null, + "address_3": null, + "city": "Torrance", + "state_province": "California", + "postal_code": "90503-3808", + "country": "United States", + "longitude": -118.3378601, + "latitude": 33.8431391, + "phone": "3104904860", + "website_url": "http://www.absolutionbrewingcompany.com", + "state": "California", + "street": "2878 Columbia St" + }, + { + "id": "600f88e5-9dc9-4a41-b54e-909c292ba4bb", + "name": "Absolution By the Sea", + "brewery_type": "brewpub", + "address_1": "7536 Fay Ave", + "address_2": null, + "address_3": null, + "city": "La Jolla", + "state_province": "California", + "postal_code": "92037-4839", + "country": "United States", + "longitude": -117.2740167, + "latitude": 32.84083388, + "phone": "6192024152", + "website_url": null, + "state": "California", + "street": "7536 Fay Ave" + }, + { + "id": "98b6e0ab-22ba-4864-80b0-a967ca61e536", + "name": "Abyss Brewing Ltd", + "brewery_type": "micro", + "address_1": "Palehouse Common", + "address_2": null, + "address_3": null, + "city": "Uckfield", + "state_province": "East Sussex", + "postal_code": "TN22 5RB", + "country": "England", + "longitude": 0.14604, + "latitude": 50.945743, + "phone": "1825840561", + "website_url": "https://abyssbrewing.co.uk/", + "state": "East Sussex", + "street": "Palehouse Common" + }, + { + "id": "829f7243-78f3-4282-b0e8-1a5fcb10a229", + "name": "Accomplice Beer Company", + "brewery_type": "brewpub", + "address_1": "115 W 15th St", + "address_2": null, + "address_3": null, + "city": "Cheyenne", + "state_province": "Wyoming", + "postal_code": "82001-4564", + "country": "United States", + "longitude": -104.819296, + "latitude": 41.130063, + "phone": "3076322337", + "website_url": "http://www.accomplicebeer.com", + "state": "Wyoming", + "street": "115 W 15th St" + }, + { + "id": "b52bfb27-345f-4add-bfc3-1b6fc67ab55b", + "name": "Acidulous Brewing Company", + "brewery_type": "contract", + "address_1": "6712 S Independence St", + "address_2": null, + "address_3": null, + "city": "Littleton", + "state_province": "Colorado", + "postal_code": "80128-4046", + "country": "United States", + "longitude": -105.1059543, + "latitude": 39.5383949, + "phone": "3039952895", + "website_url": null, + "state": "Colorado", + "street": "6712 S Independence St" + }, + { + "id": "7fa5779e-88df-42ab-895b-412b635498ae", + "name": "Acopon Brewing Co", + "brewery_type": "micro", + "address_1": "211 W Mercer St", + "address_2": null, + "address_3": null, + "city": "Dripping Springs", + "state_province": "Texas", + "postal_code": "78620-5363", + "country": "United States", + "longitude": -98.09006208, + "latitude": 30.19269957, + "phone": "5128294723", + "website_url": "http://www.acoponbrewing.com", + "state": "Texas", + "street": "211 W Mercer St" + }, + { + "id": "1a6206ad-e34b-421d-92d9-ba409cfedf82", + "name": "Acorn Brewing", + "brewery_type": "micro", + "address_1": "2105 Meridian Ave E", + "address_2": null, + "address_3": null, + "city": "Edgewood", + "state_province": "Washington", + "postal_code": "98371", + "country": "United States", + "longitude": -122.2934912, + "latitude": 47.23859752, + "phone": "2535178899", + "website_url": "https://www.acornbeer.com/", + "state": "Washington", + "street": "2105 Meridian Ave E" + }, + { + "id": "2fe1e670-d832-4ba5-b957-f86a09ee062d", + "name": "Acoustic Ales Brewing Experiment", + "brewery_type": "closed", + "address_1": "1795 Hancock St Ste P1", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92110-2006", + "country": "United States", + "longitude": -117.1840465, + "latitude": 32.74219079, + "phone": "6192992537", + "website_url": "http://www.acousticales.com", + "state": "California", + "street": "1795 Hancock St Ste P1" + }, + { + "id": "ea7f7091-5e37-4762-bbcc-9a51702c99c1", + "name": "Actual Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "655 N James Rd", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43219-1837", + "country": "United States", + "longitude": -82.9080986, + "latitude": 39.9868523, + "phone": "6146363825", + "website_url": "http://wwww.actualbeer.com", + "state": "Ohio", + "street": "655 N James Rd" + }, + { + "id": "0d0f85e7-bc2d-44fc-bf27-4f14e5d6136a", + "name": "Adam's Northwest Bistro / Twin Rivers Brewing", + "brewery_type": "closed", + "address_1": "104 N Lewis St", + "address_2": null, + "address_3": null, + "city": "Monroe", + "state_province": "Washington", + "postal_code": "98272-1502", + "country": "United States", + "longitude": -121.970887, + "latitude": 47.85588471, + "phone": "3607944056", + "website_url": "http://www.adamsnwbistro.com", + "state": "Washington", + "street": "104 N Lewis St" + }, + { + "id": "9ff5f718-dee7-4e69-b79c-6250de87e840", + "name": "Adelbert's Brewery LLC", + "brewery_type": "micro", + "address_1": "2314 Rutland Dr Ste 100", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78758-5273", + "country": "United States", + "longitude": -97.7201589, + "latitude": 30.3826286, + "phone": "5126621462", + "website_url": "http://www.adelbertsbeer.com", + "state": "Texas", + "street": "2314 Rutland Dr Ste 100" + }, + { + "id": "a180c4e0-77cc-4088-951c-62192abd99d4", + "name": "Adirondack Pub and Brewery", + "brewery_type": "micro", + "address_1": "33 Canada St", + "address_2": null, + "address_3": null, + "city": "Lake George", + "state_province": "New York", + "postal_code": "12845-1603", + "country": "United States", + "longitude": -73.71407763, + "latitude": 43.41850655, + "phone": "5186680002", + "website_url": "http://www.adkpub.com", + "state": "New York", + "street": "33 Canada St" + }, + { + "id": "1b7f0552-3b1a-4737-8cb4-eb8d7134d903", + "name": "Adirondack Toboggan Company Microbrewery", + "brewery_type": "micro", + "address_1": "202A W Main St", + "address_2": null, + "address_3": null, + "city": "Gouverneur", + "state_province": "New York", + "postal_code": "13642-1334", + "country": "United States", + "longitude": -75.47489238, + "latitude": 44.33237311, + "phone": "3157716313", + "website_url": "http://www.adktoboggan.net", + "state": "New York", + "street": "202A W Main St" + }, + { + "id": "49e805d3-70e3-4c21-81d6-d21e290ffefe", + "name": "AdMerk Corp. Inc.", + "brewery_type": "contract", + "address_1": "20 F St NW", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "District of Columbia", + "postal_code": "20001-6700", + "country": "United States", + "longitude": -77.0094205, + "latitude": 38.89742205, + "phone": "6172028069", + "website_url": "http://www.paugustin.com", + "state": "District of Columbia", + "street": "20 F St NW" + }, + { + "id": "2861f9b7-ebe4-49a5-a047-8aa0c142dbf3", + "name": "Adobe Creek Brewing Company", + "brewery_type": "micro", + "address_1": "67 Galli Dr Ste E", + "address_2": null, + "address_3": null, + "city": "Novato", + "state_province": "California", + "postal_code": "94949-5718", + "country": "United States", + "longitude": -122.5358157, + "latitude": 38.07349982, + "phone": "4155064565", + "website_url": "http://www.adobecreekbrewing.com", + "state": "California", + "street": "67 Galli Dr Ste E" + }, + { + "id": "a0111777-1fe6-4c8c-864e-c2518f5d5670", + "name": "Adroit Theory Brewing Company", + "brewery_type": "micro", + "address_1": "404 Browning Ct Unit C", + "address_2": null, + "address_3": null, + "city": "Purcellville", + "state_province": "Virginia", + "postal_code": "20132-6171", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7034340553", + "website_url": "http://www.adroit-theory.com", + "state": "Virginia", + "street": "404 Browning Ct Unit C" + }, + { + "id": "ef2e3826-f9b5-44d2-b901-331aa728a8cd", + "name": "Adur Brewery", + "brewery_type": "micro", + "address_1": "Mouse Lane", + "address_2": null, + "address_3": null, + "city": "Steyning", + "state_province": "West Sussex", + "postal_code": "BN44 3DG", + "country": "England", + "longitude": -0.340173, + "latitude": 50.893624, + "phone": "1903867614", + "website_url": "https://www.adurbrewery.co.uk/", + "state": "West Sussex", + "street": "Mouse Lane" + }, + { + "id": "73e05bc6-30a9-42f5-917e-08def2fa33fa", + "name": "Adventure Brewing Co", + "brewery_type": "micro", + "address_1": "33 Perchwood Dr Ste 101", + "address_2": null, + "address_3": null, + "city": "Fredericksburg", + "state_province": "Virginia", + "postal_code": "22405-4552", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5402428876", + "website_url": "http://www.adventurebrewing.com", + "state": "Virginia", + "street": "33 Perchwood Dr Ste 101" + }, + { + "id": "d4661358-81e2-454d-9fe2-b08ef6fc16fe", + "name": "Adventure South", + "brewery_type": "brewpub", + "address_1": "3300 Dill Smith Dr", + "address_2": null, + "address_3": null, + "city": "Fredericksburg", + "state_province": "Virginia", + "postal_code": "22408-7319", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5403717799", + "website_url": "http://www.adventurebrewing.com", + "state": "Virginia", + "street": "3300 Dill Smith Dr" + }, + { + "id": "82b967b9-3808-4716-9a51-58f80cd038c6", + "name": "Aegir Project Brewery", + "brewery_type": "brewpub", + "address_1": "65 Beach Road", + "address_2": "Noordhoek", + "address_3": null, + "city": "Cape Town", + "state_province": "Western Cape", + "postal_code": "7979", + "country": "South Africa", + "longitude": 18.3582, + "latitude": -34.1035, + "phone": "+27 66 587 9566", + "website_url": "https://aegirprojectbrewery.com/", + "state": "Western Cape", + "street": "65 Beach Road" + }, + { + "id": "e77c24b4-8b21-4d28-a9c0-568623b77cd9", + "name": "Aero Craft Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80212-2199", + "country": "United States", + "longitude": -104.984696, + "latitude": 39.7391428, + "phone": "3039185446", + "website_url": "http://www.aerocraft.beer", + "state": "Colorado", + "street": null + }, + { + "id": "6f0bba92-cc4b-49df-ad02-827b08bd7272", + "name": "Aero Plains Brewing", + "brewery_type": "micro", + "address_1": "117 N Handley St", + "address_2": null, + "address_3": null, + "city": "Wichita", + "state_province": "Kansas", + "postal_code": "67203-6114", + "country": "United States", + "longitude": -97.35071131, + "latitude": 37.68455054, + "phone": "3164482811", + "website_url": "http://www.aeroplainsbrewing.com", + "state": "Kansas", + "street": "117 N Handley St" + }, + { + "id": "59b8c8b8-6850-4b24-81f0-a16a9cd87773", + "name": "Aeronaut Brewing Company", + "brewery_type": "micro", + "address_1": "14 Tyler St", + "address_2": null, + "address_3": null, + "city": "Somerville", + "state_province": "Massachusetts", + "postal_code": "02143-3224", + "country": "United States", + "longitude": -71.1062676, + "latitude": 42.3819723, + "phone": "6179874236", + "website_url": "http://www.aeronautbrewing.com", + "state": "Massachusetts", + "street": "14 Tyler St" + }, + { + "id": "2d26c5df-aa29-4c3b-9d56-5a83d5102f41", + "name": "Aether Brewing", + "brewery_type": "micro", + "address_1": "340 Melton Road", + "address_2": null, + "address_3": null, + "city": "Northgate", + "state_province": "QLD", + "postal_code": "4013", + "country": "Australia", + "longitude": 153.0708268, + "latitude": -27.3932924, + "phone": "+61 1800 325 013", + "website_url": "http://www.aetherbrewing.com.au/", + "state": "QLD", + "street": "340 Melton Road" + }, + { + "id": "580dba92-5b7a-4e6c-9129-ac5621c90ecd", + "name": "Afro Caribbean Brewing Company", + "brewery_type": "brewpub", + "address_1": "157 Second Avenue", + "address_2": "Kenilworth", + "address_3": null, + "city": "Cape Town", + "state_province": "Western Cape", + "postal_code": "7925", + "country": "South Africa", + "longitude": 18.4705, + "latitude": -33.9372, + "phone": "+27 21 447 1787", + "website_url": "https://www.acbc.co.za/", + "state": "Western Cape", + "street": "157 Second Avenue" + }, + { + "id": "333c81a4-9bcd-4699-b28a-2c49dd696596", + "name": "Aftershock Brewing Co", + "brewery_type": "micro", + "address_1": "28822 Old Town Front St Ste 107", + "address_2": null, + "address_3": null, + "city": "Temecula", + "state_province": "California", + "postal_code": "92590-2893", + "country": "United States", + "longitude": -117.1485306, + "latitude": 33.49310382, + "phone": "9519722256", + "website_url": "http://www.aftershockbrewingco.com", + "state": "California", + "street": "28822 Old Town Front St Ste 107" + }, + { + "id": "c185b848-a69a-4d73-8a33-7b6f0db2e3fc", + "name": "Afterthought Brewing Company", + "brewery_type": "micro", + "address_1": "844 N Ridge Ave", + "address_2": null, + "address_3": null, + "city": "Lombard", + "state_province": "Illinois", + "postal_code": "60148-1215", + "country": "United States", + "longitude": -88.02234574, + "latitude": 41.90549742, + "phone": "6303011615", + "website_url": "http://afterthoughtbrewing.com", + "state": "Illinois", + "street": "844 N Ridge Ave" + }, + { + "id": "1844257e-dab7-421d-9a9e-f594a3943b2f", + "name": "Against the Grain Beer Garden", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40217", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Kentucky", + "street": null + }, + { + "id": "3d00e6db-0f45-43a5-add5-b9455edfdccb", + "name": "Against the Grain Brewery", + "brewery_type": "micro", + "address_1": "401 E Main St", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40202-1110", + "country": "United States", + "longitude": -85.7440377, + "latitude": 38.2554568, + "phone": "5025150174", + "website_url": "http://atgbrewery.com", + "state": "Kentucky", + "street": "401 E Main St" + }, + { + "id": "68855f86-415a-44e9-a0ab-53e6c8b10a3d", + "name": "Against the Grain Production Facility", + "brewery_type": "micro", + "address_1": "1800 Northwestern Pkwy", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40203", + "country": "United States", + "longitude": -85.7767241, + "latitude": 38.2658758, + "phone": null, + "website_url": null, + "state": "Kentucky", + "street": "1800 Northwestern Pkwy" + }, + { + "id": "5ad38209-903f-4200-946e-ae435947252e", + "name": "Agar’s Brewery", + "brewery_type": "micro", + "address_1": "Unit 12", + "address_2": "109 Landmarks Avenue", + "address_3": "Samrand", + "city": "Centurion", + "state_province": "Gauteng", + "postal_code": "0157", + "country": "South Africa", + "longitude": 28.1256, + "latitude": -25.9189, + "phone": "+27 83 294 8322", + "website_url": "https://agarsbrewery.co.za/", + "state": "Gauteng", + "street": "Unit 12" + }, + { + "id": "85c7bc77-387c-449f-8091-6c694b35077c", + "name": "Agonic Brewing Company LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Rice Lake", + "state_province": "Wisconsin", + "postal_code": "54868-8786", + "country": "United States", + "longitude": -91.732284415498, + "latitude": 45.502184424793, + "phone": "7153089283", + "website_url": "http://www.agonicbrewing.com", + "state": "Wisconsin", + "street": null + }, + { + "id": "f1ed5260-13cb-4f22-a4ac-0e1f7f676a12", + "name": "Agrarian Ales, LLC", + "brewery_type": "closed", + "address_1": "31115 W Crossroads Ln", + "address_2": null, + "address_3": null, + "city": "Eugene", + "state_province": "Oregon", + "postal_code": "97408-9220", + "country": "United States", + "longitude": -123.1277712, + "latitude": 44.18922784, + "phone": "5416323803", + "website_url": "http://www.agales.com", + "state": "Oregon", + "street": "31115 W Crossroads Ln" + }, + { + "id": "685be3dc-20b8-434d-880c-d7aabac5bfc0", + "name": "Ahnapee Brewery", + "brewery_type": "micro", + "address_1": "N9153 Cherry Tree Rd Apt 4", + "address_2": null, + "address_3": null, + "city": "Algoma", + "state_province": "Wisconsin", + "postal_code": "54201-9501", + "country": "United States", + "longitude": -87.436453944363, + "latitude": 44.607613658885, + "phone": "9202178527", + "website_url": "http://www.ahnapeebrewery.com", + "state": "Wisconsin", + "street": "N9153 Cherry Tree Rd Apt 4" + }, + { + "id": "b9f4f532-15df-4a50-b15e-e5cd5d41977b", + "name": "Aigean Ales", + "brewery_type": "closed", + "address_1": "250 Commercial St Ste 2001", + "address_2": null, + "address_3": null, + "city": "Manchester", + "state_province": "New Hampshire", + "postal_code": "03101-1165", + "country": "United States", + "longitude": -71.46899187, + "latitude": 42.9899594, + "phone": "6035188550", + "website_url": null, + "state": "New Hampshire", + "street": "250 Commercial St Ste 2001" + }, + { + "id": "dfec4bba-cfbc-4562-b6be-f0563f51821a", + "name": "Aiken Brewing Co", + "brewery_type": "brewpub", + "address_1": "140 Laurens St SW", + "address_2": null, + "address_3": null, + "city": "Aiken", + "state_province": "South Carolina", + "postal_code": "29801-3848", + "country": "United States", + "longitude": -81.7228141, + "latitude": 33.5603084, + "phone": "8035020707", + "website_url": "http://www.aikenbrewingcompany.com", + "state": "South Carolina", + "street": "140 Laurens St SW" + }, + { + "id": "f4c592ed-4c20-4b87-bb35-64f894a6cc6b", + "name": "Airline Brewing Company", + "brewery_type": "micro", + "address_1": "22 Mill Ln", + "address_2": null, + "address_3": null, + "city": "Amherst", + "state_province": "Maine", + "postal_code": "04428", + "country": "United States", + "longitude": -68.3677435, + "latitude": 44.8329462, + "phone": "2075842337", + "website_url": "http://www.abcmaine.beer", + "state": "Maine", + "street": "22 Mill Ln" + }, + { + "id": "9737bf0c-b29e-49d7-9778-3951072eb147", + "name": "Airways Brewing Co", + "brewery_type": "closed", + "address_1": "8611 S 212th St", + "address_2": null, + "address_3": null, + "city": "Kent", + "state_province": "Washington", + "postal_code": "98031-1910", + "country": "United States", + "longitude": -122.2391026, + "latitude": 47.4119802, + "phone": "2532001707", + "website_url": "http://www.airwaysbrewing.com", + "state": "Washington", + "street": "8611 S 212th St" + }, + { + "id": "d9578437-2aa8-45ab-97f2-cf6f7074d9af", + "name": "Airways Brewing Co. Bistro & Beer Garden", + "brewery_type": "closed", + "address_1": "320 W Harrison St", + "address_2": null, + "address_3": null, + "city": "Kent", + "state_province": "Washington", + "postal_code": "98032-4476", + "country": "United States", + "longitude": -122.235649, + "latitude": 47.382498, + "phone": "2532368632", + "website_url": "http://airwaysbrewing.com/bistro-beer-garden/", + "state": "Washington", + "street": "320 W Harrison St" + }, + { + "id": "828ee507-7142-4c7c-9f0b-82964d4195d0", + "name": "Akademia Brewing Company", + "brewery_type": "brewpub", + "address_1": "150 Crane Dr", + "address_2": null, + "address_3": null, + "city": "Athens", + "state_province": "Georgia", + "postal_code": "30606-0600", + "country": "United States", + "longitude": -83.47153754, + "latitude": 33.94270289, + "phone": "7064613208", + "website_url": "http://www.AkademiaBC.com", + "state": "Georgia", + "street": "150 Crane Dr" + }, + { + "id": "f767a00f-fbd9-4d31-abe6-902149c0158a", + "name": "Akasha Brewing Company", + "brewery_type": "micro", + "address_1": "909 E Market St Ste 700", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40206-1688", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5027427770", + "website_url": "http://www.akashabrewing.com", + "state": "Kentucky", + "street": "909 E Market St Ste 700" + }, + { + "id": "645a43c4-74b2-47e5-a795-f2b0f678df52", + "name": "Akasha Brewing Company", + "brewery_type": "micro", + "address_1": "10-12 Spencer Street", + "address_2": null, + "address_3": null, + "city": "Five Dock", + "state_province": "NSW", + "postal_code": "2046", + "country": "Australia", + "longitude": 151.1182256, + "latitude": -33.8697751, + "phone": "+61 2 9715 7156", + "website_url": "http://www.akashabrewing.com.au/", + "state": "NSW", + "street": "10-12 Spencer Street" + }, + { + "id": "d4f4e76b-b971-4dcb-8a9b-d6c36a3e8c22", + "name": "Akronym Brewing LLC", + "brewery_type": "micro", + "address_1": "58 E Market St", + "address_2": null, + "address_3": null, + "city": "Akron", + "state_province": "Ohio", + "postal_code": "44308", + "country": "United States", + "longitude": -81.51645882, + "latitude": 41.08512193, + "phone": "3306208274", + "website_url": "http://www.akronymbrewing.com", + "state": "Ohio", + "street": "58 E Market St" + }, + { + "id": "06ac0316-a30f-40c6-acb7-c08fea0c30b1", + "name": "Akwesasne Mohawk Casino Resort", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Akwesasne", + "state_province": "New York", + "postal_code": "13655-1800", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5183582222", + "website_url": "http://mohawkcasino.com", + "state": "New York", + "street": null + }, + { + "id": "39e91766-af3e-4074-9d49-26ca621e45dc", + "name": "Al. Ringling Brewing Co", + "brewery_type": "micro", + "address_1": "623 Broadway St", + "address_2": null, + "address_3": null, + "city": "Baraboo", + "state_province": "Wisconsin", + "postal_code": "53913-2513", + "country": "United States", + "longitude": -89.744831773235, + "latitude": 43.471751392447, + "phone": "6084484013", + "website_url": "http://www.alringlingbrewingco.com", + "state": "Wisconsin", + "street": "623 Broadway St" + }, + { + "id": "b7db853a-e8aa-430f-84c8-d49b72184d01", + "name": "Alameda Brewing Co", + "brewery_type": "micro", + "address_1": "4736 SE 24th Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97202-4787", + "country": "United States", + "longitude": -122.6412495, + "latitude": 45.48882655, + "phone": "5034609025", + "website_url": null, + "state": "Oregon", + "street": "4736 SE 24th Ave" + }, + { + "id": "07ad4030-fb5b-4eb7-9b28-d7f5556b145d", + "name": "Alameda Brewing Co", + "brewery_type": "micro", + "address_1": "4765 NE Fremont St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97213-1724", + "country": "United States", + "longitude": -122.6136209, + "latitude": 45.54849565, + "phone": "5034609025", + "website_url": "http://www.alamedabrewing.com", + "state": "Oregon", + "street": "4765 NE Fremont St" + }, + { + "id": "6fbd1118-ceea-4be9-a784-45dd623f16f0", + "name": "Alameda Island Brewing Company", + "brewery_type": "micro", + "address_1": "1716 Park St", + "address_2": null, + "address_3": null, + "city": "Alameda", + "state_province": "California", + "postal_code": "94501-1416", + "country": "United States", + "longitude": -122.2394506, + "latitude": 37.76833631, + "phone": "5102178885", + "website_url": "http://www.alamedaislandbrewingcompany.com", + "state": "California", + "street": "1716 Park St" + }, + { + "id": "edf1c0fb-cce0-44ec-8d98-dd4778e2d533", + "name": "Alamo Beer Co", + "brewery_type": "micro", + "address_1": "415 Burnet St", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78202-1909", + "country": "United States", + "longitude": -98.4771638, + "latitude": 29.42902321, + "phone": "2108725589", + "website_url": "http://www.alamobeer.com", + "state": "Texas", + "street": "415 Burnet St" + }, + { + "id": "4f79f427-8214-4048-8636-63cef96b33da", + "name": "Alarmist Brewing Co", + "brewery_type": "micro", + "address_1": "4055 W Peterson Ave Ste REAR", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60646-6072", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7739882536", + "website_url": "http://alarmistbrewing.com", + "state": "Illinois", + "street": "4055 W Peterson Ave Ste REAR" + }, + { + "id": "aa3c4d60-4fb2-49e2-980c-6a61672d90cb", + "name": "Alaro Craft Brewery", + "brewery_type": "brewpub", + "address_1": "2004 Capitol Ave", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95811", + "country": "United States", + "longitude": -121.4811835, + "latitude": 38.57323961, + "phone": "9164367711", + "website_url": "http://www.alarobrewing.com", + "state": "California", + "street": "2004 Capitol Ave" + }, + { + "id": "d065903f-f9fc-4e4c-a64d-9b69905431b5", + "name": "Alaskan Brewing Co.", + "brewery_type": "regional", + "address_1": "5429 Shaune Dr", + "address_2": null, + "address_3": null, + "city": "Juneau", + "state_province": "Alaska", + "postal_code": "99801-9540", + "country": "United States", + "longitude": -134.4918763, + "latitude": 58.35681231, + "phone": "9077805866", + "website_url": "http://www.alaskanbeer.com", + "state": "Alaska", + "street": "5429 Shaune Dr" + }, + { + "id": "d188560a-fd0d-4a44-9e4b-11aab9db8205", + "name": "Albia Brewing Co", + "brewery_type": "brewpub", + "address_1": "11 Benton Ave E", + "address_2": null, + "address_3": null, + "city": "Albia", + "state_province": "Iowa", + "postal_code": "52531-2032", + "country": "United States", + "longitude": -92.8073711, + "latitude": 41.02718903, + "phone": "6419324085", + "website_url": "http://www.albiabrewingcompany.blogspot.com", + "state": "Iowa", + "street": "11 Benton Ave E" + }, + { + "id": "4c8a98d1-1012-4814-82a5-20c68b131442", + "name": "Albion Malleable Brewing Company", + "brewery_type": "brewpub", + "address_1": "420 S Superior St", + "address_2": null, + "address_3": null, + "city": "Albion", + "state_province": "Michigan", + "postal_code": "49224", + "country": "United States", + "longitude": -84.7532755, + "latitude": 42.2423188, + "phone": "5173432202", + "website_url": "http://www.albionmalleable.com", + "state": "Michigan", + "street": "420 S Superior St" + }, + { + "id": "943f1201-9c0d-4717-95e3-0756a906f527", + "name": "Albright Grove Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Townsend", + "state_province": "Tennessee", + "postal_code": "37882", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8656049898", + "website_url": null, + "state": "Tennessee", + "street": null + }, + { + "id": "ec26cd9a-540f-4f23-b030-670115eed645", + "name": "Alcatraz Brewing", + "brewery_type": "micro", + "address_1": "20 Ocean Vista Ln", + "address_2": null, + "address_3": null, + "city": "Palm Coast", + "state_province": "Florida", + "postal_code": "32137-2743", + "country": "United States", + "longitude": -81.19287028, + "latitude": 29.61781196, + "phone": "3866278909", + "website_url": "http://www.alcatraz.beer", + "state": "Florida", + "street": "20 Ocean Vista Ln" + }, + { + "id": "b1f7a6c5-a4e0-477b-a380-17f8a0120e2d", + "name": "Alcazar Brewery, LLC.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Rio Grande City", + "state_province": "Texas", + "postal_code": "78582-4450", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "091edbcc-f9fc-484e-9c04-c18ed505e2ac", + "name": "Alchemist Cannery", + "brewery_type": "regional", + "address_1": "35 Crossroad", + "address_2": null, + "address_3": null, + "city": "Waterbury", + "state_province": "Vermont", + "postal_code": "05676-9003", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8022447744", + "website_url": "http://www.alchemistbeer.com", + "state": "Vermont", + "street": "35 Crossroad" + }, + { + "id": "8135f18c-0c31-4b4d-bb22-84eccf498e9c", + "name": "Aldus Brewing Company", + "brewery_type": "micro", + "address_1": "555 Centennial Ave", + "address_2": null, + "address_3": null, + "city": "Hanover", + "state_province": "Pennsylvania", + "postal_code": "17331-3936", + "country": "United States", + "longitude": -76.98030009, + "latitude": 39.79422185, + "phone": "7176342407", + "website_url": "http://www.aldusbrewing.com", + "state": "Pennsylvania", + "street": "555 Centennial Ave" + }, + { + "id": "c812aa3f-208b-49e2-a1e6-96cae8943605", + "name": "Ale Asylum", + "brewery_type": "regional", + "address_1": "2002 Pankratz St", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Wisconsin", + "postal_code": "53704-4024", + "country": "United States", + "longitude": -89.35416285, + "latitude": 43.12046815, + "phone": "6086633926", + "website_url": "http://www.aleasylum.com", + "state": "Wisconsin", + "street": "2002 Pankratz St" + }, + { + "id": "e51921d1-17c2-4f4d-93b4-d88fe56c27de", + "name": "Ale House", + "brewery_type": "brewpub", + "address_1": "82 Steve Biko Street", + "address_2": null, + "address_3": null, + "city": "Potchefstroom", + "state_province": "North West", + "postal_code": "2531", + "country": "South Africa", + "longitude": 27.0911, + "latitude": -26.7118, + "phone": "+27 18 297 5447", + "website_url": "https://thealehouse.co.za/", + "state": "North West", + "street": "82 Steve Biko Street" + }, + { + "id": "e13a5403-3cd7-4dbf-92f1-e48d0f26c750", + "name": "Ale House Brewing Co", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "San Jose", + "state_province": "California", + "postal_code": "95118-1605", + "country": "United States", + "longitude": -121.8905833, + "latitude": 37.3361905, + "phone": "4083907574", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "13f19f47-cac4-44df-b4f3-728e4dcde6c5", + "name": "Ale Industries", + "brewery_type": "micro", + "address_1": "3096 E 10th St", + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94601-2960", + "country": "United States", + "longitude": -122.2281897, + "latitude": 37.7761111, + "phone": "9254705280", + "website_url": "http://www.aleindustries.com", + "state": "California", + "street": "3096 E 10th St" + }, + { + "id": "e9f93b6a-72c5-4e40-9511-705480434310", + "name": "Ale Mary Brewing Co.", + "brewery_type": "micro", + "address_1": "8 Gladstone Street", + "address_2": "Unit 26", + "address_3": null, + "city": "Fyshwick", + "state_province": "ACT", + "postal_code": "2609", + "country": "Australia", + "longitude": 149.173169, + "latitude": -35.32352, + "phone": "+61 411 627 321", + "website_url": "https://www.alemary.beer/", + "state": "ACT", + "street": "8 Gladstone Street" + }, + { + "id": "148e8fb4-4977-4ba8-8fa6-1133a56198d4", + "name": "Ale Republic", + "brewery_type": "micro", + "address_1": "28 Arroyo Seco", + "address_2": null, + "address_3": null, + "city": "Cedar Crest", + "state_province": "New Mexico", + "postal_code": "87008", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5052812828", + "website_url": "http://www.alerepublic.com", + "state": "New Mexico", + "street": "28 Arroyo Seco" + }, + { + "id": "797c9175-fb51-44d3-ad4b-d46b42367fdc", + "name": "Ale Spike", + "brewery_type": "closed", + "address_1": "9300 271st St NW Ste B-5", + "address_2": null, + "address_3": null, + "city": "Stanwood", + "state_province": "Washington", + "postal_code": "98292", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.alespike.com", + "state": "Washington", + "street": "9300 271st St NW Ste B-5" + }, + { + "id": "ea06694a-32f8-4026-b22e-aeb880848b4d", + "name": "Ale Spike Brewery", + "brewery_type": "micro", + "address_1": "1244 N Moore Rd Unit I-1", + "address_2": null, + "address_3": null, + "city": "Camano Island", + "state_province": "Washington", + "postal_code": "98282", + "country": "United States", + "longitude": -122.4381311, + "latitude": 48.25785496, + "phone": "3609392434", + "website_url": "http://www.alespike.com", + "state": "Washington", + "street": "1244 N Moore Rd Unit I-1" + }, + { + "id": "d678c1a4-713e-483e-8c60-c891d5cf043e", + "name": "Alefarm Brewing", + "brewery_type": "micro", + "address_1": "96 Riversdale Road", + "address_2": null, + "address_3": null, + "city": "Hawthorn", + "state_province": "VIC", + "postal_code": "3122", + "country": "Australia", + "longitude": 145.0346325, + "latitude": -37.8289324, + "phone": "+61 406 260 073", + "website_url": "http://www.ramblers.beer/", + "state": "VIC", + "street": "96 Riversdale Road" + }, + { + "id": "1170049c-c20d-43c8-9475-0a42599f144c", + "name": "Aleman Brewing", + "brewery_type": "micro", + "address_1": "3304 N Knox Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60641-4434", + "country": "United States", + "longitude": -87.74301213, + "latitude": 41.94087994, + "phone": "8123404198", + "website_url": "http://www.alemanchicago.com", + "state": "Illinois", + "street": "3304 N Knox Ave" + }, + { + "id": "f1e3ff3e-078c-46c3-85ae-62f86d3a3a21", + "name": "Alematic Artisan Ales", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Huber Heights", + "state_province": "Ohio", + "postal_code": "45424-3857", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9376122337", + "website_url": "http://www.alematicbrewing.com", + "state": "Ohio", + "street": null + }, + { + "id": "31746e2a-3704-458f-8235-437f53d5afe1", + "name": "Alesatian Brewing Co.", + "brewery_type": "brewpub", + "address_1": "21 N Loudoun St", + "address_2": null, + "address_3": null, + "city": "Winchester", + "state_province": "Virginia", + "postal_code": "22601-4715", + "country": "United States", + "longitude": -78.16559208, + "latitude": 39.18446446, + "phone": "5406672743", + "website_url": "http://www.alesatianbrewing.com", + "state": "Virginia", + "street": "21 N Loudoun St" + }, + { + "id": "f8097dbc-c8e6-4068-9540-5c4bd4ac0bcf", + "name": "AleSmith Brewing Co", + "brewery_type": "regional", + "address_1": "9990 Alesmith Ct", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92126-4200", + "country": "United States", + "longitude": -117.1495496, + "latitude": 32.88858458, + "phone": "8585499888", + "website_url": "http://www.alesmith.com", + "state": "California", + "street": "9990 Alesmith Ct" + }, + { + "id": "40093c50-b89d-443f-9ac7-b24a000d8f48", + "name": "Alesong Brewing and Blending", + "brewery_type": "micro", + "address_1": "1000 Conger St Ste C", + "address_2": null, + "address_3": null, + "city": "Eugene", + "state_province": "Oregon", + "postal_code": "97402-2950", + "country": "United States", + "longitude": -123.2384193, + "latitude": 43.85285684, + "phone": "5419723303", + "website_url": "http://www.alesongbrewing.com", + "state": "Oregon", + "street": "1000 Conger St Ste C" + }, + { + "id": "f15f6ebf-0d80-4e6b-ad38-fb0ca9f3d3ed", + "name": "Alesong Brewing and Tasting Room", + "brewery_type": "micro", + "address_1": "1000 Conger Unit C", + "address_2": null, + "address_3": null, + "city": "Eugene", + "state_province": "Oregon", + "postal_code": "97402", + "country": "United States", + "longitude": -123.2384193, + "latitude": 43.85285684, + "phone": "5419723303", + "website_url": "http://www.alesongbrewing.com", + "state": "Oregon", + "street": "1000 Conger Unit C" + }, + { + "id": "e4148f94-4ce9-4fd2-9b05-faabdcca2b09", + "name": "Alewerks Brewing Company", + "brewery_type": "micro", + "address_1": "197 Ewell Rd", + "address_2": null, + "address_3": null, + "city": "Williamsburg", + "state_province": "Virginia", + "postal_code": "23188-2185", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7572203670", + "website_url": "http://www.alewerks.com", + "state": "Virginia", + "street": "197 Ewell Rd" + }, + { + "id": "ed3ea3ae-04d3-4356-ab96-a74514992a50", + "name": "Alewife Brewing Company", + "brewery_type": "brewpub", + "address_1": "514 51st Ave", + "address_2": null, + "address_3": null, + "city": "Long Island City", + "state_province": "New York", + "postal_code": "11101-5879", + "country": "United States", + "longitude": -73.95625257, + "latitude": 40.74232214, + "phone": "7189377494", + "website_url": "http://www.alewife.beer", + "state": "New York", + "street": "514 51st Ave" + }, + { + "id": "5860a6e0-1bf6-4334-8797-e5668fc22db0", + "name": "Alexandria Brewing Company", + "brewery_type": "micro", + "address_1": "7926 Alexandria Pike Ste 1", + "address_2": null, + "address_3": null, + "city": "Alexandria", + "state_province": "Kentucky", + "postal_code": "41001-1454", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8596946999", + "website_url": "http://www.alexandriabrewingcompany.com", + "state": "Kentucky", + "street": "7926 Alexandria Pike Ste 1" + }, + { + "id": "9da0a260-5b85-4490-824a-a397446c17dc", + "name": "Algarve Rock Brewery", + "brewery_type": "micro", + "address_1": "Unidade 2B", + "address_2": "Parque Vale da Venda", + "address_3": null, + "city": "Faro", + "state_province": "Faro", + "postal_code": "8005-412", + "country": "Portugal", + "longitude": -7.9729562079031, + "latitude": 37.065600871444, + "phone": "+ 351 289 815 218", + "website_url": "https://algarverock.com/", + "state": "Faro", + "street": "Unidade 2B" + }, + { + "id": "083b7953-133d-453f-ada0-2b3541d1931c", + "name": "Alibi Ale Works", + "brewery_type": "micro", + "address_1": "204 E Enterprise St", + "address_2": null, + "address_3": null, + "city": "Incline Village", + "state_province": "Nevada", + "postal_code": "89451-9456", + "country": "United States", + "longitude": -119.9537117, + "latitude": 39.24819328, + "phone": "7752987001", + "website_url": "http://www.alibialeworks.com", + "state": "Nevada", + "street": "204 E Enterprise St" + }, + { + "id": "45a2116d-d9d2-4114-b15f-736d9557f00c", + "name": "Alice Springs Brewing Co.", + "brewery_type": "micro", + "address_1": "39 Palm Circuit", + "address_2": null, + "address_3": null, + "city": "Ross", + "state_province": "NT", + "postal_code": "873", + "country": "Australia", + "longitude": 133.867253, + "latitude": -23.732893, + "phone": "+61 8 7904 4007", + "website_url": "https://www.alicespringsbrewingco.com.au/?utm_source=google_business_profile&utm_medium=gbp_view_website&utm_campaign=gbp", + "state": "NT", + "street": "39 Palm Circuit" + }, + { + "id": "e1f999c9-3012-41ab-869b-767125e19b7f", + "name": "Alien Brewpub", + "brewery_type": "brewpub", + "address_1": "6601 Uptown Blvd NE Ste B", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87110-4207", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5058841116", + "website_url": "http://www.abqbrewpub.com", + "state": "New Mexico", + "street": "6601 Uptown Blvd NE Ste B" + }, + { + "id": "68b447a3-c65c-459f-8d02-334757bc6f71", + "name": "Align Brewing Co", + "brewery_type": "micro", + "address_1": "8680 Miralani Dr", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92126-6300", + "country": "United States", + "longitude": -117.137429, + "latitude": 32.896584, + "phone": null, + "website_url": "http://www.facebook.com/alignbrewing", + "state": "California", + "street": "8680 Miralani Dr" + }, + { + "id": "e36f9132-3c0b-41d4-b074-b54286d6a9a8", + "name": "All Inn Brewing Co.", + "brewery_type": "micro", + "address_1": "189 Elliott Road", + "address_2": null, + "address_3": null, + "city": "Banyo", + "state_province": "QLD", + "postal_code": "4014", + "country": "Australia", + "longitude": 153.0799698, + "latitude": -27.3668382, + "phone": "+61 478 519 414", + "website_url": "http://www.allinnbrewingco.com/", + "state": "QLD", + "street": "189 Elliott Road" + }, + { + "id": "108b8592-3098-42a3-b466-5c60e2e626af", + "name": "All Rise Brewing Co", + "brewery_type": "brewpub", + "address_1": "235 N Ashland Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60607-1401", + "country": "United States", + "longitude": -87.6667328, + "latitude": 41.8864021, + "phone": "3122266300", + "website_url": "http://www.allrisebrewing.com", + "state": "Illinois", + "street": "235 N Ashland Ave" + }, + { + "id": "61853d49-62af-44bc-b0f7-bbc0faa89d30", + "name": "All Saints Brewing Co", + "brewery_type": "micro", + "address_1": "1602 State Route 119", + "address_2": null, + "address_3": null, + "city": "Greensburg", + "state_province": "Pennsylvania", + "postal_code": "15601-7317", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7242891202", + "website_url": "http://www.allsaintscraftbrewing.com", + "state": "Pennsylvania", + "street": "1602 State Route 119" + }, + { + "id": "82ea8f08-2026-43f8-b1a7-cc57ebe8c0bb", + "name": "All-American Ale Works", + "brewery_type": "micro", + "address_1": "5120 E La Palma Ave Ste 103", + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92807-2082", + "country": "United States", + "longitude": -117.8056915, + "latitude": 33.85925032, + "phone": "9517412771", + "website_url": "http://www.all-americanaleworks.com", + "state": "California", + "street": "5120 E La Palma Ave Ste 103" + }, + { + "id": "8a7a2bc0-0f42-4889-94ef-7f8f647268fa", + "name": "Allagash Brewing Co", + "brewery_type": "regional", + "address_1": "50 Industrial Way", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04103-1270", + "country": "United States", + "longitude": -70.3179518, + "latitude": 43.7030951, + "phone": "2078785385", + "website_url": "http://www.allagash.com", + "state": "Maine", + "street": "50 Industrial Way" + }, + { + "id": "0924f3af-e548-446b-baf8-687ea51b02ae", + "name": "Allegheny City Brewing", + "brewery_type": "micro", + "address_1": "507 Foreland St", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15212-4910", + "country": "United States", + "longitude": -80.00061073, + "latitude": 40.45424933, + "phone": "4129043732", + "website_url": "http://www.alleghenycitybrewing.com", + "state": "Pennsylvania", + "street": "507 Foreland St" + }, + { + "id": "9b4f31d5-61b4-46ed-b501-6acc4d428666", + "name": "Allegory Brewing", + "brewery_type": "micro", + "address_1": "777 NE 4th St", + "address_2": null, + "address_3": null, + "city": "McMinnville", + "state_province": "Oregon", + "postal_code": "97128-4502", + "country": "United States", + "longitude": -123.1917806, + "latitude": 45.21081917, + "phone": "9713731253", + "website_url": "http://www.allegorybrewing.com", + "state": "Oregon", + "street": "777 NE 4th St" + }, + { + "id": "3f583ab8-71bf-4009-9257-193ef53a1fe1", + "name": "Allentown Brew Works", + "brewery_type": "brewpub", + "address_1": "812 Hamilton St", + "address_2": null, + "address_3": null, + "city": "Allentown", + "state_province": "Pennsylvania", + "postal_code": "18101-2437", + "country": "United States", + "longitude": -75.4575021, + "latitude": 40.6060468, + "phone": "6104337777", + "website_url": "http://www.thebrewworks.com", + "state": "Pennsylvania", + "street": "812 Hamilton St" + }, + { + "id": "9c3b028c-2949-4216-ba66-fbb098734cde", + "name": "Alliance Brewing Company", + "brewery_type": "micro", + "address_1": "1130 Sevier Ave", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37920", + "country": "United States", + "longitude": -83.9035469, + "latitude": 35.9593516, + "phone": "8652475355", + "website_url": "http://www.alliancebrewing.com", + "state": "Tennessee", + "street": "1130 Sevier Ave" + }, + { + "id": "10795316-cc0d-42d7-80c7-e237aae40a06", + "name": "Alligator Brewing / Tall Paul's Brewhouse", + "brewery_type": "micro", + "address_1": "10 SE 2nd Ave", + "address_2": null, + "address_3": null, + "city": "Gainesville", + "state_province": "Florida", + "postal_code": "32601-6232", + "country": "United States", + "longitude": -82.3222523, + "latitude": 29.6502615, + "phone": "3525050990", + "website_url": null, + "state": "Florida", + "street": "10 SE 2nd Ave" + }, + { + "id": "1b259770-4334-44ad-be18-8097be571df6", + "name": "Alloy Brewing Company", + "brewery_type": "micro", + "address_1": "2700 Coon Rapids Blvd NW", + "address_2": null, + "address_3": null, + "city": "Coon Rapids", + "state_province": "Minnesota", + "postal_code": "55433-3955", + "country": "United States", + "longitude": -93.33543497, + "latitude": 45.16953614, + "phone": "7634230939", + "website_url": "http://www.alloybrewingcompany.com", + "state": "Minnesota", + "street": "2700 Coon Rapids Blvd NW" + }, + { + "id": "6889b781-b8f6-4a5a-a1ef-ab3e4c72aed9", + "name": "Alltech's Lexington Brewing", + "brewery_type": "regional", + "address_1": "475 Angliana Ave", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "Kentucky", + "postal_code": "40508-3134", + "country": "United States", + "longitude": -84.51599645, + "latitude": 38.04950651, + "phone": "8592552337", + "website_url": "http://www.Kentuckyale.com", + "state": "Kentucky", + "street": "475 Angliana Ave" + }, + { + "id": "6e103afb-f4ad-4fea-bf67-b31d390c269d", + "name": "Alluvial Brewing Company", + "brewery_type": "micro", + "address_1": "3715 W 190th St", + "address_2": null, + "address_3": null, + "city": "Ames", + "state_province": "Iowa", + "postal_code": "50014-9316", + "country": "United States", + "longitude": -93.6370387, + "latitude": 41.5831617, + "phone": "515337118", + "website_url": "http://www.alluvialbrewing.com", + "state": "Iowa", + "street": "3715 W 190th St" + }, + { + "id": "4d43c467-2e30-4b93-a25c-d1e46998dc07", + "name": "Alma Brewing Co", + "brewery_type": "brewpub", + "address_1": "208 E Superior St", + "address_2": null, + "address_3": null, + "city": "Alma", + "state_province": "Michigan", + "postal_code": "48801-1819", + "country": "United States", + "longitude": -84.6588719, + "latitude": 43.37888808, + "phone": "9894620208", + "website_url": "http://www.almabrewing.com", + "state": "Michigan", + "street": "208 E Superior St" + }, + { + "id": "085c97d4-5a01-4e28-a1c6-683bf773b062", + "name": "Alma Mader Brewing", + "brewery_type": "micro", + "address_1": "2635 Southwest Blvd", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64108", + "country": "United States", + "longitude": -94.599389, + "latitude": 39.082495, + "phone": "8169452589", + "website_url": "http://almamaderbrewing.com", + "state": "Missouri", + "street": "2635 Southwest Blvd" + }, + { + "id": "9a6f84d7-194b-426d-999f-c1be9beb835d", + "name": "Almanac Beer Company", + "brewery_type": "micro", + "address_1": "651B W Tower Ave", + "address_2": null, + "address_3": null, + "city": "Alameda", + "state_province": "California", + "postal_code": "94501-5047", + "country": "United States", + "longitude": -122.3062832, + "latitude": 37.78344977, + "phone": "4159326531", + "website_url": "http://almanacbeer.com", + "state": "California", + "street": "651B W Tower Ave" + }, + { + "id": "fc0ae4ac-07b5-4df2-a1d2-0785af183a35", + "name": "Almost Famous Brewing Company", + "brewery_type": "micro", + "address_1": "17 Kripes Rd", + "address_2": null, + "address_3": null, + "city": "East Granby", + "state_province": "Connecticut", + "postal_code": "06026", + "country": "United States", + "longitude": -72.4224674, + "latitude": 41.9581654, + "phone": "8604139401", + "website_url": "https://www.almostfamousbrewing.com/", + "state": "Connecticut", + "street": "17 Kripes Rd" + }, + { + "id": "cc1c18dc-77d7-4ca5-b3b7-8180f77feecd", + "name": "Aloha Beer Co", + "brewery_type": "brewpub", + "address_1": "700 Queen St", + "address_2": null, + "address_3": null, + "city": "Honolulu", + "state_province": "Hawaii", + "postal_code": "96813-5110", + "country": "United States", + "longitude": -157.857248, + "latitude": 21.301249, + "phone": "8085455959", + "website_url": "http://www.alohabeer.com", + "state": "Hawaii", + "street": "700 Queen St" + }, + { + "id": "b3bea277-345d-4154-9a79-1c9364ee0172", + "name": "Aloha Sea Sports Centre", + "brewery_type": "bar", + "address_1": "1212 East Coast Parkway", + "address_2": "E2 Area E", + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "449886", + "country": "Singapore", + "longitude": 1.306439441491, + "latitude": 103.934847, + "phone": "+65 6241 9212", + "website_url": "https://www.alohaseasports.com/bar", + "state": "Singapore", + "street": "1212 East Coast Parkway" + }, + { + "id": "30ef2457-11c4-48ef-ae58-37109ceda4c7", + "name": "Alosta Brewing Co", + "brewery_type": "micro", + "address_1": "692 Arrow Grand Cir", + "address_2": null, + "address_3": null, + "city": "Covina", + "state_province": "California", + "postal_code": "91722-2122", + "country": "United States", + "longitude": -117.8781466, + "latitude": 34.10365026, + "phone": "9094558707", + "website_url": "http://www.alostabrewing.com", + "state": "California", + "street": "692 Arrow Grand Cir" + }, + { + "id": "abe71cdf-8c92-4be2-adac-902d1a14e7bb", + "name": "Alpenglow Beer Co", + "brewery_type": "contract", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lafayette", + "state_province": "California", + "postal_code": "94549-4621", + "country": "United States", + "longitude": -122.1180201, + "latitude": 37.8857582, + "phone": null, + "website_url": "http://www.buckwildbrew.com", + "state": "California", + "street": null + }, + { + "id": "dc9fb80b-fb92-47c2-8b13-9a6f6990f99e", + "name": "Alpha Acid Brewing Co", + "brewery_type": "micro", + "address_1": "121 Industrial Way Ste 12", + "address_2": null, + "address_3": null, + "city": "Belmont", + "state_province": "California", + "postal_code": "94002-8208", + "country": "United States", + "longitude": -122.2655717, + "latitude": 37.52125155, + "phone": "6503944728", + "website_url": null, + "state": "California", + "street": "121 Industrial Way Ste 12" + }, + { + "id": "0edb8050-2911-4a04-a99a-7927e05cd018", + "name": "Alpha Brewing Co.", + "brewery_type": "micro", + "address_1": "4310 Fyler Ave", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63116", + "country": "United States", + "longitude": -90.26236838, + "latitude": 38.59861817, + "phone": "3146212337", + "website_url": "http://www.alphabrewingcompany.com", + "state": "Missouri", + "street": "4310 Fyler Ave" + }, + { + "id": "810e0e7c-293a-4e3e-a557-13691d30d399", + "name": "Alphabet City Brewing Co", + "brewery_type": "contract", + "address_1": "96 Avenue C Frnt 4", + "address_2": null, + "address_3": null, + "city": "New York", + "state_province": "New York", + "postal_code": "10009-7055", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9143566809", + "website_url": "http://www.acbnyc.com", + "state": "New York", + "street": "96 Avenue C Frnt 4" + }, + { + "id": "1d7c2273-8031-40d2-bb50-7f518722e291", + "name": "Alpine Beer Company", + "brewery_type": "brewpub", + "address_1": "6550 Mira Mesa Blvd", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92121-4100", + "country": "United States", + "longitude": -117.113975, + "latitude": 32.9167796, + "phone": "6194452337", + "website_url": "http://www.alpinebrewing.com", + "state": "California", + "street": "6550 Mira Mesa Blvd" + }, + { + "id": "d8dd6a64-c201-471f-a0a1-0fc8d04b5b49", + "name": "Alpine Brewing Co", + "brewery_type": "closed", + "address_1": "821 14th Ave", + "address_2": null, + "address_3": null, + "city": "Oroville", + "state_province": "Washington", + "postal_code": "98844", + "country": "United States", + "longitude": -119.4305306, + "latitude": 48.9365877, + "phone": "5094769662", + "website_url": "http://www.alpine-brewing.com", + "state": "Washington", + "street": "821 14th Ave" + }, + { + "id": "9d64f11c-4f42-41c6-8ba7-768f7bf9ec13", + "name": "Alpine Dog Brewing Co", + "brewery_type": "micro", + "address_1": "1505 N Ogden St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80218-1405", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3038321245", + "website_url": "http://www.alpinedogbrewery.com", + "state": "Colorado", + "street": "1505 N Ogden St" + }, + { + "id": "8e69dcd6-de4f-41b5-a9be-cc35844fb273", + "name": "ALT Brew / Greenview Brewing LLC", + "brewery_type": "brewpub", + "address_1": "1808 Wright St", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Wisconsin", + "postal_code": "53704-2522", + "country": "United States", + "longitude": -89.33026, + "latitude": 43.12576305, + "phone": "6083523373", + "website_url": "http://www.altbrew.com", + "state": "Wisconsin", + "street": "1808 Wright St" + }, + { + "id": "728f9750-1c56-48be-9f96-b26d04215958", + "name": "Alta Brewing Company", + "brewery_type": "micro", + "address_1": "1983 Julian Avenue", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92113-1125", + "country": "United States", + "longitude": -117.1414712, + "latitude": 32.7018758, + "phone": "6197957300", + "website_url": "http://www.altabrewing.com", + "state": "California", + "street": "1983 Julian Avenue" + }, + { + "id": "ce487823-fb0a-4ad9-b3de-2f2ec4ce0631", + "name": "Altamont Beer Works", + "brewery_type": "micro", + "address_1": "2402 Research Dr", + "address_2": null, + "address_3": null, + "city": "Livermore", + "state_province": "California", + "postal_code": "94550-3850", + "country": "United States", + "longitude": -121.7210974, + "latitude": 37.67839114, + "phone": "9254432337", + "website_url": "http://www.altamontbeerworks.com", + "state": "California", + "street": "2402 Research Dr" + }, + { + "id": "c7009224-b9ce-44d0-b426-cd0a1e95d6f9", + "name": "Alter Brewing + Kitchen", + "brewery_type": "micro", + "address_1": "12 S 1st St", + "address_2": null, + "address_3": null, + "city": "Saint Charles", + "state_province": "Illinois", + "postal_code": "60174-4591", + "country": "United States", + "longitude": -88.313937317989, + "latitude": 41.913143276343, + "phone": "3319015949", + "website_url": "http://www.alterbrewing.com", + "state": "Illinois", + "street": "12 S 1st St" + }, + { + "id": "0026ad13-246b-4091-b344-641934ef7cc3", + "name": "Alter Brewing Company", + "brewery_type": "micro", + "address_1": "2300 Wisconsin Ave Ste 213", + "address_2": null, + "address_3": null, + "city": "Downers Grove", + "state_province": "Illinois", + "postal_code": "60515-2234", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6305419558", + "website_url": "http://www.alterbrewing.com", + "state": "Illinois", + "street": "2300 Wisconsin Ave Ste 213" + }, + { + "id": "6dcf0b1b-3933-4207-bf88-0a37ee98994a", + "name": "Alternation Brewing Company", + "brewery_type": "micro", + "address_1": "1539 S Broadway", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80210-2607", + "country": "United States", + "longitude": -104.9876117, + "latitude": 39.68866374, + "phone": "3038025340", + "website_url": "http://www.alternationbrewing.com", + "state": "Colorado", + "street": "1539 S Broadway" + }, + { + "id": "b71c080f-8514-4100-bbb3-40d2582b8122", + "name": "Altitude Chophouse and Brewery", + "brewery_type": "brewpub", + "address_1": "320 S 2nd St", + "address_2": null, + "address_3": null, + "city": "Laramie", + "state_province": "Wyoming", + "postal_code": "82070-3612", + "country": "United States", + "longitude": -105.5953366, + "latitude": 41.31038565, + "phone": "3077214031", + "website_url": "http://www.altitudechophouse.com", + "state": "Wyoming", + "street": "320 S 2nd St" + }, + { + "id": "be64e523-9c15-4348-87e5-c6747b87abcb", + "name": "Altmeyer and Lewis Brewing Company", + "brewery_type": "micro", + "address_1": "15898 N Hwy 123", + "address_2": null, + "address_3": null, + "city": "San Marcos", + "state_province": "Texas", + "postal_code": "78666-2418", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5126679537", + "website_url": "http://www.altmeyerlewisbrewing.com", + "state": "Texas", + "street": "15898 N Hwy 123" + }, + { + "id": "c1e6f260-1f52-4e38-bc14-ae58fdb7bb14", + "name": "Altruist Brewing Company", + "brewery_type": "brewpub", + "address_1": "559 Main St Unit 105", + "address_2": null, + "address_3": null, + "city": "Sturbridge", + "state_province": "Massachusetts", + "postal_code": "01518-1208", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7742418022", + "website_url": "http://www.altruistbrewing.com", + "state": "Massachusetts", + "street": "559 Main St Unit 105" + }, + { + "id": "68410dce-b145-4c0a-993f-08fc280cc9c8", + "name": "Altstadt Brewery", + "brewery_type": "micro", + "address_1": "6120 E US Highway 290", + "address_2": null, + "address_3": null, + "city": "Fredericksburg", + "state_province": "Texas", + "postal_code": "78624-2176", + "country": "United States", + "longitude": -98.8467263, + "latitude": 30.2468574, + "phone": "8303042337", + "website_url": "http://www.altstadtbeer.com", + "state": "Texas", + "street": "6120 E US Highway 290" + }, + { + "id": "7d0a71c4-cec0-431b-be2f-d125a9b9a44b", + "name": "Alvarado Street Brewery", + "brewery_type": "micro", + "address_1": "1315 Dayton St Ste E", + "address_2": null, + "address_3": null, + "city": "Salinas", + "state_province": "California", + "postal_code": "93901-4400", + "country": "United States", + "longitude": -121.6305329, + "latitude": 36.64880356, + "phone": null, + "website_url": null, + "state": "California", + "street": "1315 Dayton St Ste E" + }, + { + "id": "08bf17d8-5f8f-40bc-88cb-5661f0791b35", + "name": "Alvarado Street Brewery & Grill", + "brewery_type": "brewpub", + "address_1": "426 Alvarado St", + "address_2": null, + "address_3": null, + "city": "Monterey", + "state_province": "California", + "postal_code": "93940-2711", + "country": "United States", + "longitude": -121.8946096, + "latitude": 36.59857755, + "phone": "8316552337", + "website_url": null, + "state": "California", + "street": "426 Alvarado St" + }, + { + "id": "15ccd19e-e5bc-4216-939f-3d3348fb6d5c", + "name": "Alvarium Beer Company", + "brewery_type": "micro", + "address_1": "365 John Downey Dr Ste B", + "address_2": null, + "address_3": null, + "city": "New Britain", + "state_province": "Connecticut", + "postal_code": "06051-2922", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8603572039", + "website_url": "http://www.alvariumbeer.com", + "state": "Connecticut", + "street": "365 John Downey Dr Ste B" + }, + { + "id": "a649a8d5-f59e-4007-bf75-e1609ef76467", + "name": "Amador Brewing Company", + "brewery_type": "micro", + "address_1": "9659 Main St", + "address_2": null, + "address_3": null, + "city": "Plymouth", + "state_province": "California", + "postal_code": "95669-9570", + "country": "United States", + "longitude": -120.849271, + "latitude": 38.4808723, + "phone": "2095071900", + "website_url": "http://www.amadorbrewing.com", + "state": "California", + "street": "9659 Main St" + }, + { + "id": "1a6103ad-023a-4710-988f-17e47a6732c2", + "name": "Amalgam Brewing", + "brewery_type": "proprietor", + "address_1": "6381 Beach St Unit A", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80221-2036", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.amalgambrewing.com", + "state": "Colorado", + "street": "6381 Beach St Unit A" + }, + { + "id": "97ea0a56-c25b-45ab-afaa-ff0b37d68de5", + "name": "Amani Brewing", + "brewery_type": "brewpub", + "address_1": "654 Ropp Dr", + "address_2": null, + "address_3": null, + "city": "Martinsburg", + "state_province": "West Virginia", + "postal_code": "25403-1533", + "country": "United States", + "longitude": -77.949602, + "latitude": 39.5332966, + "phone": "3042793861", + "website_url": "https://amanibrewing.com", + "state": "West Virginia", + "street": "654 Ropp Dr" + }, + { + "id": "5306cc0f-35c0-4168-b49b-ea965437dc8e", + "name": "Ambacht Brewing", + "brewery_type": "micro", + "address_1": "1060 NE 25th Ave Ste B", + "address_2": null, + "address_3": null, + "city": "Hillsboro", + "state_province": "Oregon", + "postal_code": "97124-4903", + "country": "United States", + "longitude": -122.9564737, + "latitude": 45.53275124, + "phone": "5038281400", + "website_url": "http://www.ambacht.us", + "state": "Oregon", + "street": "1060 NE 25th Ave Ste B" + }, + { + "id": "5fffcb8c-fbca-4633-8ef4-7bfd7dd6d473", + "name": "Amber Lantern Brewing Company", + "brewery_type": "brewpub", + "address_1": "44 N Main St", + "address_2": null, + "address_3": null, + "city": "Warsaw", + "state_province": "New York", + "postal_code": "14569-1326", + "country": "United States", + "longitude": -78.132363, + "latitude": 42.7408423, + "phone": "5857863559", + "website_url": "http://www.amberlanternbrewingcompany.com", + "state": "New York", + "street": "44 N Main St" + }, + { + "id": "a580bbc1-343c-4213-968d-6f332755f739", + "name": "Ambitious Ales", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Long Beach", + "state_province": "California", + "postal_code": "90807-2907", + "country": "United States", + "longitude": -118.1580493, + "latitude": 33.78538945, + "phone": "7142962550", + "website_url": "http://www.ambitiousales.com", + "state": "California", + "street": null + }, + { + "id": "f02ee574-d02d-486f-8d2e-851ad54b25ab", + "name": "Amelia Island Brewing Company", + "brewery_type": "brewpub", + "address_1": "318 Centre St", + "address_2": null, + "address_3": null, + "city": "Fernandina Beach", + "state_province": "Florida", + "postal_code": "32034-4241", + "country": "United States", + "longitude": -81.46236272, + "latitude": 30.67106045, + "phone": "9043106088", + "website_url": "http://www.theameliatavern.com", + "state": "Florida", + "street": "318 Centre St" + }, + { + "id": "5e4e7f13-1e56-4715-b575-37522b595062", + "name": "American Badass Beer", + "brewery_type": "contract", + "address_1": "1401 Abbott St Corktown", + "address_2": null, + "address_3": null, + "city": "Detroit", + "state_province": "Michigan", + "postal_code": "48216-1946", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.americanbadassbeer.com", + "state": "Michigan", + "street": "1401 Abbott St Corktown" + }, + { + "id": "2b3bdfe8-47fd-4105-939e-57c9864e83b4", + "name": "American Brewers Inc", + "brewery_type": "micro", + "address_1": "3408 Miller Rd", + "address_2": null, + "address_3": null, + "city": "Kalamazoo", + "state_province": "Michigan", + "postal_code": "49001-4111", + "country": "United States", + "longitude": -85.5378194, + "latitude": 42.26671998, + "phone": "2692171920", + "website_url": "http://www.americanbrewers.us", + "state": "Michigan", + "street": "3408 Miller Rd" + }, + { + "id": "29c900c4-16b4-45ef-b688-061ed0fe8bd4", + "name": "American Brewing Company", + "brewery_type": "closed", + "address_1": "180 W Dayton St Ste 102", + "address_2": null, + "address_3": null, + "city": "Edmonds", + "state_province": "Washington", + "postal_code": "98020-4127", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4257741717", + "website_url": "http://www.americanbrewing.com", + "state": "Washington", + "street": "180 W Dayton St Ste 102" + }, + { + "id": "538f360a-f2b7-48fc-aa66-3ed35af0f62e", + "name": "American Harvest Brewpub At Schoolcraft College", + "brewery_type": "brewpub", + "address_1": "18600 Haggerty Rd", + "address_2": null, + "address_3": null, + "city": "Livonia", + "state_province": "Michigan", + "postal_code": "48152-3932", + "country": "United States", + "longitude": -83.42868497, + "latitude": 42.419317, + "phone": "7344627659", + "website_url": "http://www.schoolcraft.edu", + "state": "Michigan", + "street": "18600 Haggerty Rd" + }, + { + "id": "4c92654b-a82a-4a9a-8c3f-fc03886a0be7", + "name": "American Honor Beer Co", + "brewery_type": "contract", + "address_1": "700 N Pennsylvania Ave", + "address_2": null, + "address_3": null, + "city": "Wilkes Barre", + "state_province": "Pennsylvania", + "postal_code": "18705-2451", + "country": "United States", + "longitude": -75.859363, + "latitude": 41.254896, + "phone": null, + "website_url": "http://www.BoondoggleBeer.com", + "state": "Pennsylvania", + "street": "700 N Pennsylvania Ave" + }, + { + "id": "6ec8cb60-72f6-4c30-af4b-3e59e736b3fc", + "name": "American Icon Brewery", + "brewery_type": "brewpub", + "address_1": "1133 19th Place", + "address_2": null, + "address_3": null, + "city": "Vero Beach", + "state_province": "Florida", + "postal_code": "32960", + "country": "United States", + "longitude": -80.3955067, + "latitude": 27.63674361, + "phone": "7729344266", + "website_url": "http://www.americaniconbrewery.com", + "state": "Florida", + "street": "1133 19th Place" + }, + { + "id": "f6350f89-c5df-4969-81b2-358b6e8e6ed0", + "name": "American Solera", + "brewery_type": "micro", + "address_1": "1702 E 6th St", + "address_2": null, + "address_3": null, + "city": "Tulsa", + "state_province": "Oklahoma", + "postal_code": "74104", + "country": "United States", + "longitude": -95.9667403, + "latitude": 36.1518928, + "phone": "9189494318", + "website_url": "http://www.americansolera.com", + "state": "Oklahoma", + "street": "1702 E 6th St" + }, + { + "id": "045441f8-1882-4960-9e4d-0a32d24625e6", + "name": "Americana Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fort Lauderdale", + "state_province": "Florida", + "postal_code": "33328-1606", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "32dd19c9-33b8-4ed5-b5f0-1fb5f5d8ad02", + "name": "Amerisports Brew Pub", + "brewery_type": "brewpub", + "address_1": "3200 Ameristar Dr", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64161", + "country": "United States", + "longitude": -94.484526, + "latitude": 39.150682, + "phone": "8164147435", + "website_url": "http://www.ameristar.com", + "state": "Missouri", + "street": "3200 Ameristar Dr" + }, + { + "id": "9bd199ef-1796-410e-abaa-1a4c9da3a1ca", + "name": "Amery Ale Works", + "brewery_type": "micro", + "address_1": "588 115th St", + "address_2": null, + "address_3": null, + "city": "Amery", + "state_province": "Wisconsin", + "postal_code": "54001-7801", + "country": "United States", + "longitude": -92.396797834543, + "latitude": 45.293806062122, + "phone": "7152685226", + "website_url": "http://www.ameryaleworks.com", + "state": "Wisconsin", + "street": "588 115th St" + }, + { + "id": "fb1c5883-f652-4375-b887-a424584d0d9d", + "name": "Amherst Brewing Co / Hangar Pub and Grill", + "brewery_type": "brewpub", + "address_1": "10 University Dr", + "address_2": null, + "address_3": null, + "city": "Amherst", + "state_province": "Massachusetts", + "postal_code": "01002-2243", + "country": "United States", + "longitude": -72.5318418, + "latitude": 42.3728635, + "phone": "4132534400", + "website_url": "http://www.amherstbrewing.com", + "state": "Massachusetts", + "street": "10 University Dr" + }, + { + "id": "f4e14ed9-3db6-4829-a08f-3f964717e489", + "name": "Ammo Brewing", + "brewery_type": "micro", + "address_1": "235 N Market St", + "address_2": null, + "address_3": null, + "city": "Petersburg", + "state_province": "Virginia", + "postal_code": "23803-3207", + "country": "United States", + "longitude": -77.407177, + "latitude": 37.230765, + "phone": "8047221667", + "website_url": "http://www.ammobrewing.com", + "state": "Virginia", + "street": "235 N Market St" + }, + { + "id": "f330bf2b-e342-4265-b41f-59d8ebf8bba7", + "name": "Amorphic Beer", + "brewery_type": "micro", + "address_1": "3700 N Fratney St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53212-2360", + "country": "United States", + "longitude": -87.900978500235, + "latitude": 43.08422407407, + "phone": "4144856705", + "website_url": "http://www.amorphicbeer.com", + "state": "Wisconsin", + "street": "3700 N Fratney St" + }, + { + "id": "be80d6fe-27bc-4b12-a046-e7fc8fd947b6", + "name": "Amorys Tomb Brewing Co", + "brewery_type": "micro", + "address_1": "76 Main St", + "address_2": null, + "address_3": null, + "city": "Maynard", + "state_province": "Massachusetts", + "postal_code": "01754-2516", + "country": "United States", + "longitude": -71.45315644, + "latitude": 42.43203845, + "phone": "9782430875", + "website_url": "http://amorystomb.com", + "state": "Massachusetts", + "street": "76 Main St" + }, + { + "id": "fd0d376e-1c1d-48ce-ba6f-897298c20b85", + "name": "Amplified Ale Works", + "brewery_type": "brewpub", + "address_1": "4150 Mission Blvd Ste 208", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92109-5054", + "country": "United States", + "longitude": -117.2511178, + "latitude": 32.7719729, + "phone": "6195871400", + "website_url": "http://www.amplifiedales.com", + "state": "California", + "street": "4150 Mission Blvd Ste 208" + }, + { + "id": "c3f5bb6a-c7f4-45a9-829c-3978625f111e", + "name": "Amplified Ale Works Miramar Studio", + "brewery_type": "brewpub", + "address_1": "9030 Kenamar Dr Ste 309", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92121-2432", + "country": "United States", + "longitude": -117.1570695, + "latitude": 32.88687598, + "phone": "6503804220", + "website_url": "https://amplifiedales.com/", + "state": "California", + "street": "9030 Kenamar Dr Ste 309" + }, + { + "id": "f99c834f-df7e-41e9-8236-ce0d25e43189", + "name": "Anacapa Brewing Co", + "brewery_type": "brewpub", + "address_1": "472 E Main St", + "address_2": null, + "address_3": null, + "city": "Ventura", + "state_province": "California", + "postal_code": "93001-2627", + "country": "United States", + "longitude": -119.2935874, + "latitude": 34.28073347, + "phone": "8056432337", + "website_url": "http://www.anacapabrewing.com", + "state": "California", + "street": "472 E Main St" + }, + { + "id": "3447e49a-c978-471a-8c46-62244ca757b8", + "name": "Anacortes Brewery/Rockfish Grill", + "brewery_type": "brewpub", + "address_1": "320 Commercial Ave", + "address_2": null, + "address_3": null, + "city": "Anacortes", + "state_province": "Washington", + "postal_code": "98221-1517", + "country": "United States", + "longitude": -122.6126089, + "latitude": 48.51933431, + "phone": "3605881720", + "website_url": "http://www.anacortesrockfish.com", + "state": "Washington", + "street": "320 Commercial Ave" + }, + { + "id": "e6663203-a997-403b-b130-63dd975b00c6", + "name": "Anaheim Brewery", + "brewery_type": "micro", + "address_1": "336 S Anaheim Blvd", + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92805-3830", + "country": "United States", + "longitude": -117.9125249, + "latitude": 33.8328226, + "phone": "7147801888", + "website_url": "http://www.anaheimbrew.com", + "state": "California", + "street": "336 S Anaheim Blvd" + }, + { + "id": "bdc1beb9-2832-4c44-aa63-289726c3a13f", + "name": "Anawan Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Dighton", + "state_province": "Massachusetts", + "postal_code": "02764", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7742296300", + "website_url": "http://www.anawanbrewingco.com", + "state": "Massachusetts", + "street": null + }, + { + "id": "126392f8-8260-4619-a561-ec20153c6779", + "name": "Ancestry Brewery", + "brewery_type": "brewpub", + "address_1": "20585 SW 115th Ave", + "address_2": null, + "address_3": null, + "city": "Tualatin", + "state_province": "Oregon", + "postal_code": "97062-6857", + "country": "United States", + "longitude": -122.7967838, + "latitude": 45.3711546, + "phone": "5037060448", + "website_url": "http://www.ancestrybrewing.com", + "state": "Oregon", + "street": "20585 SW 115th Ave" + }, + { + "id": "25809e1c-0c76-498b-8a57-d6b85ff24c3c", + "name": "Anchor Brewing Co", + "brewery_type": "large", + "address_1": "1705 Mariposa St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94107-2334", + "country": "United States", + "longitude": -122.4011065, + "latitude": 37.7630772, + "phone": "4158638350", + "website_url": "http://www.anchorbrewing.com", + "state": "California", + "street": "1705 Mariposa St" + }, + { + "id": "ce8f55f6-ba10-4d74-94c3-e26cc131f473", + "name": "Anchorage Brewing Co", + "brewery_type": "micro", + "address_1": "148 W 91st Ave", + "address_2": null, + "address_3": null, + "city": "Anchorage", + "state_province": "Alaska", + "postal_code": "99515-1901", + "country": "United States", + "longitude": -149.8893581, + "latitude": 61.1385311, + "phone": "9073605104", + "website_url": "http://www.anchoragebrewingcompany.com", + "state": "Alaska", + "street": "148 W 91st Ave" + }, + { + "id": "6c8aafd9-6e4a-4f1d-9dc0-a5e4cb710dce", + "name": "Ancient City Brewing Co.", + "brewery_type": "micro", + "address_1": "3420 Agricultural Center Dr Ste 8", + "address_2": null, + "address_3": null, + "city": "Saint Augustine", + "state_province": "Florida", + "postal_code": "32092-0690", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9044299654", + "website_url": "http://www.ancientcitybrewing.com", + "state": "Florida", + "street": "3420 Agricultural Center Dr Ste 8" + }, + { + "id": "032a363c-447b-495a-bfed-814201b877c0", + "name": "Andean Brewing", + "brewery_type": "micro", + "address_1": "300 Corporate Dr Ste 2", + "address_2": null, + "address_3": null, + "city": "Blauvelt", + "state_province": "New York", + "postal_code": "10913-1162", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6464505852", + "website_url": null, + "state": "New York", + "street": "300 Corporate Dr Ste 2" + }, + { + "id": "1d690623-2a47-4bb2-aecb-08f51a8ef390", + "name": "Anders Browar", + "brewery_type": "brewpub", + "address_1": "Broniewskiego 33", + "address_2": null, + "address_3": null, + "city": "Syców", + "state_province": "dolnośląskie", + "postal_code": "56-500", + "country": "Poland", + "longitude": 17.7046519, + "latitude": 51.3044034, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Broniewskiego 33" + }, + { + "id": "55bbdf14-e891-4572-9ed2-9c6bf25edda9", + "name": "Anderson Valley Brewing Co", + "brewery_type": "regional", + "address_1": "17700 CA-253", + "address_2": null, + "address_3": null, + "city": "Boonville", + "state_province": "California", + "postal_code": "95415", + "country": "United States", + "longitude": -123.3560542, + "latitude": 39.00141731, + "phone": "7078952337", + "website_url": "http://www.avbc.com", + "state": "California", + "street": "17700 CA-253" + }, + { + "id": "adb4eef2-cd2f-4664-9912-c58890711b30", + "name": "Andrews Brewing Co", + "brewery_type": "micro", + "address_1": "353 High St", + "address_2": null, + "address_3": null, + "city": "Lincolnville", + "state_province": "Maine", + "postal_code": "04849-5846", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2077633305", + "website_url": null, + "state": "Maine", + "street": "353 High St" + }, + { + "id": "bd12815b-aceb-485f-9070-e37b03bbcbb4", + "name": "Andrews Brewing Co At Calaboose Cellars", + "brewery_type": "micro", + "address_1": "575 Aquone Rd", + "address_2": null, + "address_3": null, + "city": "Andrews", + "state_province": "North Carolina", + "postal_code": "28901-7004", + "country": "United States", + "longitude": -83.81487799, + "latitude": 35.19958164, + "phone": "8283212006", + "website_url": "http://www.calaboosecellars.com", + "state": "North Carolina", + "street": "575 Aquone Rd" + }, + { + "id": "be95afe2-de19-4b3b-8c83-a24ac9cd4aa7", + "name": "Angel City Brewery", + "brewery_type": "micro", + "address_1": "216 S Alameda St", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90012-4201", + "country": "United States", + "longitude": -118.237715, + "latitude": 34.04627065, + "phone": "2136221261", + "website_url": "http://www.angelcitybrewery.com", + "state": "California", + "street": "216 S Alameda St" + }, + { + "id": "a7e8257d-956d-46ca-81f4-33d1b6a13fc8", + "name": "Angelina Brewing Company, LLC.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lufkin", + "state_province": "Texas", + "postal_code": "75904-7550", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3168419327", + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "d4e376b6-3aad-46ae-ae8d-471791ae03f8", + "name": "Angry Chair Brewing, LLC.", + "brewery_type": "micro", + "address_1": "6401 N Florida Ave", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33604-6007", + "country": "United States", + "longitude": -82.459381, + "latitude": 28.005127, + "phone": "8138921651", + "website_url": "http://www.angrychairbrewing.com", + "state": "Florida", + "street": "6401 N Florida Ave" + }, + { + "id": "67616802-40bf-435e-8824-598bbf20e054", + "name": "Angry Erik Brewing", + "brewery_type": "micro", + "address_1": "10 Millpond Dr Unit 8", + "address_2": null, + "address_3": null, + "city": "Lafayette", + "state_province": "New Jersey", + "postal_code": "07848-3825", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8624329003", + "website_url": "http://www.angryerik.com", + "state": "New Jersey", + "street": "10 Millpond Dr Unit 8" + }, + { + "id": "8dc5e687-be97-44c3-ae27-9b0818d48471", + "name": "Angry Fish Brewing Company", + "brewery_type": "micro", + "address_1": "106 Fabrister Ln Ste C", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "South Carolina", + "postal_code": "29072", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8035707470", + "website_url": "http://angryfishbewingco.com", + "state": "South Carolina", + "street": "106 Fabrister Ln Ste C" + }, + { + "id": "40ecc96b-6dea-4e6b-a8f0-55293970654b", + "name": "Angry Hank's Microbrewery", + "brewery_type": "micro", + "address_1": "20 N 30th St", + "address_2": null, + "address_3": null, + "city": "Billings", + "state_province": "Montana", + "postal_code": "59101-2140", + "country": "United States", + "longitude": -108.5076025, + "latitude": 45.78022173, + "phone": "4062523370", + "website_url": null, + "state": "Montana", + "street": "20 N 30th St" + }, + { + "id": "5d0bfbaa-e738-4d5b-a68e-5cfea2116197", + "name": "Angry Horse Brewing", + "brewery_type": "micro", + "address_1": "603 W Whittier Blvd", + "address_2": null, + "address_3": null, + "city": "Montebello", + "state_province": "California", + "postal_code": "90640-5235", + "country": "United States", + "longitude": -118.1003743, + "latitude": 34.0084152, + "phone": "3235300015", + "website_url": "http://angryhorsebrewing.com", + "state": "California", + "street": "603 W Whittier Blvd" + }, + { + "id": "4f22a5e8-e8e0-471b-8070-888584fc446a", + "name": "Angry Inch Brewing", + "brewery_type": "micro", + "address_1": "20841 Holyoke Ave", + "address_2": null, + "address_3": null, + "city": "Lakeville", + "state_province": "Minnesota", + "postal_code": "55044-", + "country": "United States", + "longitude": -93.2432718, + "latitude": 44.6476022, + "phone": null, + "website_url": "http://www.angryinchbrewing.com", + "state": "Minnesota", + "street": "20841 Holyoke Ave" + }, + { + "id": "c9b30f6c-608f-4762-b041-c4c91e8aeba2", + "name": "Angry James Brewing Co", + "brewery_type": "micro", + "address_1": "421 Adams Ave", + "address_2": null, + "address_3": null, + "city": "Silverthorne", + "state_province": "Colorado", + "postal_code": "80498", + "country": "United States", + "longitude": -106.0764637, + "latitude": 39.63306895, + "phone": "9704558800", + "website_url": "http://www.angryjamesbrewing.com", + "state": "Colorado", + "street": "421 Adams Ave" + }, + { + "id": "64b090eb-64c7-4dc2-9799-d0420b517169", + "name": "Angry Minnow Brewery", + "brewery_type": "brewpub", + "address_1": "10440 Florida Ave", + "address_2": null, + "address_3": null, + "city": "Hayward", + "state_province": "Wisconsin", + "postal_code": "54843-7112", + "country": "United States", + "longitude": -91.4887672, + "latitude": 46.0104853, + "phone": "7159343055", + "website_url": "http://www.angryminnow.com", + "state": "Wisconsin", + "street": "10440 Florida Ave" + }, + { + "id": "3929eda4-926c-46cd-ab20-cb5c9e6f7caf", + "name": "Angry Scotsman Brewing", + "brewery_type": "contract", + "address_1": "704 W Reno Ave", + "address_2": null, + "address_3": null, + "city": "Oklahoma City", + "state_province": "Oklahoma", + "postal_code": "73102-2434", + "country": "United States", + "longitude": -97.6002769, + "latitude": 35.4644206, + "phone": "4056737713", + "website_url": "http://www.angryscotbrew.com", + "state": "Oklahoma", + "street": "704 W Reno Ave" + }, + { + "id": "fa4da286-e9a3-4d00-ab49-8e5f027f76d5", + "name": "Angry Troll Brewing / 222 Public House", + "brewery_type": "brewpub", + "address_1": "222 E Main St Ste U2", + "address_2": null, + "address_3": null, + "city": "Elkin", + "state_province": "North Carolina", + "postal_code": "28621-3493", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3362582251", + "website_url": "http://www.angrytrollbrewing.com", + "state": "North Carolina", + "street": "222 E Main St Ste U2" + }, + { + "id": "d1a61260-d377-4e7d-8ce9-8851e30934ae", + "name": "Anheuser-Busch InBev", + "brewery_type": "large", + "address_1": "1 Busch Pl", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63118-1849", + "country": "United States", + "longitude": -90.2118998, + "latitude": 38.5954536, + "phone": "3145772000", + "website_url": "http://www.anheuser-busch.com", + "state": "Missouri", + "street": "1 Busch Pl" + }, + { + "id": "12bc86df-c66b-4fb9-9f84-5bb405ccb8b1", + "name": "Anheuser-Busch Inc - Fort Collins", + "brewery_type": "large", + "address_1": "2351 Busch Dr", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80524-9400", + "country": "United States", + "longitude": -105.0019686, + "latitude": 40.61817811, + "phone": "9704904500", + "website_url": null, + "state": "Colorado", + "street": "2351 Busch Dr" + }, + { + "id": "7d78f227-f2c5-4830-abb5-28a209de235d", + "name": "Anheuser-Busch Inc - Los Angeles", + "brewery_type": "large", + "address_1": "15800 Roscoe Blvd", + "address_2": null, + "address_3": null, + "city": "Van Nuys", + "state_province": "California", + "postal_code": "91406-1350", + "country": "United States", + "longitude": -118.4721072, + "latitude": 34.2213918, + "phone": "8189895300", + "website_url": null, + "state": "California", + "street": "15800 Roscoe Blvd" + }, + { + "id": "baec5c2d-a983-49e0-beb9-ca55879d4139", + "name": "Anheuser-Busch Inc – Baldwinsville", + "brewery_type": "large", + "address_1": "2885 Belgium Rd", + "address_2": null, + "address_3": null, + "city": "Baldwinsville", + "state_province": "New York", + "postal_code": "13027-2706", + "country": "United States", + "longitude": -76.31159343, + "latitude": 43.16510925, + "phone": "3156354000", + "website_url": null, + "state": "New York", + "street": "2885 Belgium Rd" + }, + { + "id": "6599a1de-d497-4e4f-bf3d-16d5065fefec", + "name": "Anheuser-Busch Inc – Cartersville", + "brewery_type": "large", + "address_1": "100 Busch Dr NE", + "address_2": null, + "address_3": null, + "city": "Cartersville", + "state_province": "Georgia", + "postal_code": "30121-7217", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7703862000", + "website_url": null, + "state": "Georgia", + "street": "100 Busch Dr NE" + }, + { + "id": "2360f91c-60cb-402c-ad58-3eb638859f4c", + "name": "Anheuser-Busch Inc – Columbus", + "brewery_type": "large", + "address_1": "700 Schrock Rd", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43229-1123", + "country": "United States", + "longitude": -82.99307, + "latitude": 40.102197, + "phone": "6148886644", + "website_url": null, + "state": "Ohio", + "street": "700 Schrock Rd" + }, + { + "id": "2f7efc38-d4fd-47fc-bc1e-4b506fb6e66c", + "name": "Anheuser-Busch Inc – Fairfield", + "brewery_type": "large", + "address_1": "3101 Busch Dr", + "address_2": null, + "address_3": null, + "city": "Fairfield", + "state_province": "California", + "postal_code": "94534-9726", + "country": "United States", + "longitude": -122.0902992, + "latitude": 38.2365838, + "phone": "7074292000", + "website_url": null, + "state": "California", + "street": "3101 Busch Dr" + }, + { + "id": "34dd23fd-b208-4a7b-b4d2-3488b20e618f", + "name": "Anheuser-Busch Inc – Houston", + "brewery_type": "large", + "address_1": "775 Gellhorn Dr", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77029-1496", + "country": "United States", + "longitude": -95.27130674, + "latitude": 29.771858, + "phone": "7136752311", + "website_url": null, + "state": "Texas", + "street": "775 Gellhorn Dr" + }, + { + "id": "a7e9194f-28a7-4fb8-85fb-38ee669b66e6", + "name": "Anheuser-Busch Inc – Jacksonville", + "brewery_type": "large", + "address_1": "111 Busch Dr", + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Florida", + "postal_code": "32218-5546", + "country": "United States", + "longitude": -81.6481156, + "latitude": 30.4319552, + "phone": "9047510700", + "website_url": null, + "state": "Florida", + "street": "111 Busch Dr" + }, + { + "id": "c1e8a479-5371-44bb-a952-b76b60997a9e", + "name": "Anheuser-Busch Inc – Merrimack", + "brewery_type": "large", + "address_1": "221 Daniel Webster Hwy", + "address_2": null, + "address_3": null, + "city": "Merrimack", + "state_province": "New Hampshire", + "postal_code": "03054-4807", + "country": "United States", + "longitude": -71.48598162, + "latitude": 42.8253635, + "phone": "6038896631", + "website_url": null, + "state": "New Hampshire", + "street": "221 Daniel Webster Hwy" + }, + { + "id": "5486bf95-fcc8-4829-854f-2cc5779e7212", + "name": "Anheuser-Busch Inc – Newark", + "brewery_type": "large", + "address_1": "200 US Highway 1", + "address_2": null, + "address_3": null, + "city": "Newark", + "state_province": "New Jersey", + "postal_code": "07114-2298", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9736457700", + "website_url": "http://www.anheuser-busch.com", + "state": "New Jersey", + "street": "200 US Highway 1" + }, + { + "id": "277a6d32-7f94-4a94-ad41-ad7f4ce8ce1c", + "name": "Anheuser-Busch Inc ̢���� Williamsburg", + "brewery_type": "large", + "address_1": "7801 Pocahontas Trl", + "address_2": null, + "address_3": null, + "city": "Williamsburg", + "state_province": "Virginia", + "postal_code": "23185-6302", + "country": "United States", + "longitude": -76.6798988, + "latitude": 37.2652889, + "phone": "7572533600", + "website_url": "http://www.anheuser-busch.com", + "state": "Virginia", + "street": "7801 Pocahontas Trl" + }, + { + "id": "c498dd04-30b2-4f8f-b06b-c47a34dd61c7", + "name": "Animas Brewing Co", + "brewery_type": "brewpub", + "address_1": "1560 E 2nd Ave", + "address_2": null, + "address_3": null, + "city": "Durango", + "state_province": "Colorado", + "postal_code": "81301-5186", + "country": "United States", + "longitude": -107.8769912, + "latitude": 37.27997215, + "phone": "9704038850", + "website_url": "http://www.animasbrewing.com", + "state": "Colorado", + "street": "1560 E 2nd Ave" + }, + { + "id": "236cb5e3-d827-453a-a3a4-5a4d59d87adf", + "name": "Ankrolab Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Naples", + "state_province": "Florida", + "postal_code": "34112-6363", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2394511223", + "website_url": "http://ankrolab.com", + "state": "Florida", + "street": null + }, + { + "id": "b26623c7-5291-4492-b876-66c2d970c275", + "name": "Another Round Brewing Co", + "brewery_type": "closed", + "address_1": "745 N Grand Ave", + "address_2": null, + "address_3": null, + "city": "Pullman", + "state_province": "Washington", + "postal_code": "99163-3151", + "country": "United States", + "longitude": -117.175392, + "latitude": 46.736755, + "phone": "9164757580", + "website_url": "https://anotherroundbrewery.com", + "state": "Washington", + "street": "745 N Grand Ave" + }, + { + "id": "f95b4c37-7d9c-4bcb-8958-31c352cd1cab", + "name": "Anthem Brewing Co", + "brewery_type": "micro", + "address_1": "908 SW 4th St", + "address_2": null, + "address_3": null, + "city": "Oklahoma City", + "state_province": "Oklahoma", + "postal_code": "73109-1012", + "country": "United States", + "longitude": -97.5279236, + "latitude": 35.46099673, + "phone": "4056040446", + "website_url": "http://www.anthembrewing.com", + "state": "Oklahoma", + "street": "908 SW 4th St" + }, + { + "id": "9379b79b-63c2-4ce3-9605-f499f7915f7e", + "name": "Antietam Brewery,LLC", + "brewery_type": "micro", + "address_1": "140 Western Maryland Pkwy Unit G", + "address_2": null, + "address_3": null, + "city": "Hagerstown", + "state_province": "Maryland", + "postal_code": "21740-5197", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3017915915", + "website_url": "http://www.antietambrewery.com", + "state": "Maryland", + "street": "140 Western Maryland Pkwy Unit G" + }, + { + "id": "1c215e2f-7a58-46ce-88cc-241bd3d39482", + "name": "Antiques on High", + "brewery_type": "micro", + "address_1": "714 S High St", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43206", + "country": "United States", + "longitude": -82.99774, + "latitude": 39.9476, + "phone": "614-725-2070", + "website_url": "https://www.antiquesonhigh.com/", + "state": "Ohio", + "street": "714 S High St" + }, + { + "id": "516c104c-11fb-43d7-89cb-cf0a36236baf", + "name": "Anvil Ale House", + "brewery_type": "brewpub", + "address_1": "728 Kruis Street", + "address_2": null, + "address_3": null, + "city": "Dullstroom", + "state_province": "Mpumalanga", + "postal_code": "1110", + "country": "South Africa", + "longitude": 30.1017, + "latitude": -25.4223, + "phone": "+27 73 169 7155", + "website_url": "https://www.anvilale.co.za/", + "state": "Mpumalanga", + "street": "728 Kruis Street" + }, + { + "id": "26a850f9-f796-427c-810d-84b4ae08dfbb", + "name": "Anvil Brewing", + "brewery_type": "brewpub", + "address_1": "115 S. Compress St", + "address_2": null, + "address_3": null, + "city": "Pittsburg", + "state_province": "Texas", + "postal_code": "75686-1353", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9039267741", + "website_url": "http://www.anvilbrewingtx.com", + "state": "Texas", + "street": "115 S. Compress St" + }, + { + "id": "625f2c38-c681-4d85-b4b6-2e5ee25d79a9", + "name": "APE BREWING", + "brewery_type": "brewpub", + "address_1": "2-1-15 Kawaramachi Kawaramachi Daito Building 1F", + "address_2": null, + "address_3": null, + "city": "Osaka", + "state_province": "Osaka", + "postal_code": "541-0048 ", + "country": "Japan", + "longitude": 135.5076625, + "latitude": 34.68696137, + "phone": "81676619443", + "website_url": "https://www.instagram.com/ape_brewing", + "state": "Osaka", + "street": "2-1-15 Kawaramachi Kawaramachi Daito Building 1F" + }, + { + "id": "6d598adb-bca7-42d8-99b6-4f2074bc8aee", + "name": "APEShip Brewing", + "brewery_type": "micro", + "address_1": "520 N Dewey St", + "address_2": null, + "address_3": null, + "city": "North Platte", + "state_province": "Nebraska", + "postal_code": "69101-3913", + "country": "United States", + "longitude": -100.75354430575, + "latitude": 41.181566260787, + "phone": "3085689433", + "website_url": "https://apeshipbrewing.com", + "state": "Nebraska", + "street": "520 N Dewey St" + }, + { + "id": "e61dc891-91d8-4a0f-a55e-b5e34acc97fd", + "name": "Apex Aleworks Brew And BBQ Supplies", + "brewery_type": "micro", + "address_1": "4360 S Noland Rd", + "address_2": null, + "address_3": null, + "city": "Independence", + "state_province": "Missouri", + "postal_code": "64055-4741", + "country": "United States", + "longitude": -94.416872, + "latitude": 39.041039, + "phone": "8163135039", + "website_url": "http://www.apexaleworks.com", + "state": "Missouri", + "street": "4360 S Noland Rd" + }, + { + "id": "e15991e7-755b-465a-9d39-0f850305e900", + "name": "Apex Brewery", + "brewery_type": "micro", + "address_1": "405 State Route 17M Monroe, NY 10950", + "address_2": null, + "address_3": null, + "city": "Monroe", + "state_province": "New York", + "postal_code": "19050", + "country": "United States", + "longitude": -74.1730176, + "latitude": 41.3165152, + "phone": "845-202-3498", + "website_url": "https://apexbrews.com", + "state": "New York", + "street": "405 State Route 17M Monroe, NY 10950" + }, + { + "id": "98f2d2a5-5f1d-494c-b920-c50d6761b62e", + "name": "Apocalypse Ale Works", + "brewery_type": "micro", + "address_1": "1257 Burnbridge Rd", + "address_2": null, + "address_3": null, + "city": "Forest", + "state_province": "Virginia", + "postal_code": "24551-3803", + "country": "United States", + "longitude": -79.28917899, + "latitude": 37.36302124, + "phone": "4342588761", + "website_url": "http://www.apocalypsebrewworks.com", + "state": "Virginia", + "street": "1257 Burnbridge Rd" + }, + { + "id": "b622e216-d777-41c0-a795-bb901d31a555", + "name": "Apocalypse Brew Works", + "brewery_type": "micro", + "address_1": "1612 Mellwood Ave", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40206-1752", + "country": "United States", + "longitude": -85.72031443, + "latitude": 38.2566442, + "phone": "5025894843", + "website_url": "http://www.apocalypsebrewworks.com", + "state": "Kentucky", + "street": "1612 Mellwood Ave" + }, + { + "id": "855b2e6e-9fa0-40da-bcba-343bef14d556", + "name": "Appalachian Brewing Co - Collegeville", + "brewery_type": "brewpub", + "address_1": "50 W Third Ave Collegeville Station 2nd Floor", + "address_2": null, + "address_3": null, + "city": "Collegeville", + "state_province": "Pennsylvania", + "postal_code": "19426-3655", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4849736064", + "website_url": "http://www.abcbrew.com", + "state": "Pennsylvania", + "street": "50 W Third Ave Collegeville Station 2nd Floor" + }, + { + "id": "cb55778e-fc31-4634-b56f-570961484c8d", + "name": "Appalachian Brewing Co - Gettysburg Gateway", + "brewery_type": "brewpub", + "address_1": "70 Presidential Cir", + "address_2": null, + "address_3": null, + "city": "Gettysburg", + "state_province": "Pennsylvania", + "postal_code": "17325-8399", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7173982419", + "website_url": "http://www.abcbrew.com", + "state": "Pennsylvania", + "street": "70 Presidential Cir" + }, + { + "id": "48fd38a6-736f-4e76-b69a-8642d82c67df", + "name": "Appalachian Brewing Co - Harrisburg", + "brewery_type": "brewpub", + "address_1": "50 N Cameron St", + "address_2": null, + "address_3": null, + "city": "Harrisburg", + "state_province": "Pennsylvania", + "postal_code": "17101-2407", + "country": "United States", + "longitude": -76.8816961, + "latitude": 40.291059, + "phone": "7172211080", + "website_url": "http://www.abcbrew.com", + "state": "Pennsylvania", + "street": "50 N Cameron St" + }, + { + "id": "dddd1391-58ad-4a74-bd0d-93997ccaf17d", + "name": "Appalachian Brewing Co - Lititz", + "brewery_type": "brewpub", + "address_1": "55 N Water St", + "address_2": null, + "address_3": null, + "city": "Lititz", + "state_province": "Pennsylvania", + "postal_code": "17543-1612", + "country": "United States", + "longitude": -76.30100986, + "latitude": 40.15827375, + "phone": "7172211080", + "website_url": "http://www.abcbrew.com", + "state": "Pennsylvania", + "street": "55 N Water St" + }, + { + "id": "19693f1b-962f-4b88-8d53-7faf3e176208", + "name": "Appalachian Brewing Co - Mechanicsburg", + "brewery_type": "brewpub", + "address_1": "6462 Carlisle Pike", + "address_2": null, + "address_3": null, + "city": "Mechanicsburg", + "state_province": "Pennsylvania", + "postal_code": "17050-2384", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7177954660", + "website_url": "http://www.abcbrew.com", + "state": "Pennsylvania", + "street": "6462 Carlisle Pike" + }, + { + "id": "5b127f6a-3364-4588-b5ad-f7953fc6ee54", + "name": "Appalachian Mountain Brewery - Boone", + "brewery_type": "micro", + "address_1": "163 Boone Creek Dr", + "address_2": null, + "address_3": null, + "city": "Boone", + "state_province": "North Carolina", + "postal_code": "28607-7911", + "country": "United States", + "longitude": -81.668461, + "latitude": 36.2033414, + "phone": "8282631111", + "website_url": "http://www.appalachianmountainbrewery.com", + "state": "North Carolina", + "street": "163 Boone Creek Dr" + }, + { + "id": "d8528f09-f3d8-48f9-9719-db00b4e10b71", + "name": "Appalachian Mountain Brewery - Portsmouth", + "brewery_type": "micro", + "address_1": "1 Redhook Way", + "address_2": null, + "address_3": null, + "city": "Portsmouth", + "state_province": "New Hampshire", + "postal_code": "03801-6853", + "country": "United States", + "longitude": -70.8044602, + "latitude": 43.087884, + "phone": "8282631111", + "website_url": null, + "state": "New Hampshire", + "street": "1 Redhook Way" + }, + { + "id": "b5d8ac9a-0449-46e7-8eb8-c1078ee793bb", + "name": "Apple Blossom Brewing Co", + "brewery_type": "brewpub", + "address_1": "1550 E Zion Rd", + "address_2": null, + "address_3": null, + "city": "Fayetteville", + "state_province": "Arkansas", + "postal_code": "72703-5017", + "country": "United States", + "longitude": -94.1372796, + "latitude": 36.1297079, + "phone": "4792874344", + "website_url": "http://www.appleblossombrewing.com", + "state": "Arkansas", + "street": "1550 E Zion Rd" + }, + { + "id": "12a02dc2-b34b-48cd-8e34-eac44554c0cf", + "name": "Appleton Beer Factory", + "brewery_type": "brewpub", + "address_1": "603 W College Ave", + "address_2": null, + "address_3": null, + "city": "Appleton", + "state_province": "Wisconsin", + "postal_code": "54911-5803", + "country": "United States", + "longitude": -88.4139148, + "latitude": 44.26173602, + "phone": "9203649931", + "website_url": "http://www.appletonbeerfactory.com", + "state": "Wisconsin", + "street": "603 W College Ave" + }, + { + "id": "ea5535e7-94e9-4c24-baa4-32b15b495c8b", + "name": "Apponaug Brewing", + "brewery_type": "brewpub", + "address_1": "334 Knight St", + "address_2": null, + "address_3": null, + "city": "Warwick", + "state_province": "Rhode Island", + "postal_code": "02886", + "country": "United States", + "longitude": -71.4691256, + "latitude": 41.7265254, + "phone": "4016814321", + "website_url": "http://www.apponaugbrewing.com", + "state": "Rhode Island", + "street": "334 Knight St" + }, + { + "id": "e04c1682-dba4-4366-ac2e-4a8dab19da3c", + "name": "Aquabrew", + "brewery_type": "brewpub", + "address_1": "150 S L B J Dr", + "address_2": null, + "address_3": null, + "city": "San Marcos", + "state_province": "Texas", + "postal_code": "78666-5506", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5123532739", + "website_url": "http://www.aqua-brew.com", + "state": "Texas", + "street": "150 S L B J Dr" + }, + { + "id": "61239a88-ebee-45d3-9794-12860e11259c", + "name": "Aquatic Brewing LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Falmouth", + "state_province": "Massachusetts", + "postal_code": "02540-3299", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5084442155", + "website_url": "http://www.aquaticbrewing.com", + "state": "Massachusetts", + "street": null + }, + { + "id": "fc2ce5e0-8796-4749-9aba-8710cd557ccb", + "name": "Aqueduct Brewing", + "brewery_type": "micro", + "address_1": "529 Grant St Ste 106", + "address_2": null, + "address_3": null, + "city": "Akron", + "state_province": "Ohio", + "postal_code": "44311-1184", + "country": "United States", + "longitude": -81.51788487, + "latitude": 41.0698532, + "phone": "3306066583", + "website_url": "http://www.aqueductbrewing.shutterfly.com", + "state": "Ohio", + "street": "529 Grant St Ste 106" + }, + { + "id": "e37a575c-5e11-4a2f-8e58-8fcce92e78ac", + "name": "Aransas Pass Brewing Company, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Aransas Pass", + "state_province": "Texas", + "postal_code": "78336-1920", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "e38d5dc2-4bf9-4627-b468-922baaa621ab", + "name": "Arbeiter Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55418-2325", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.arbeiterbrewing.com", + "state": "Minnesota", + "street": null + }, + { + "id": "250d36ec-b9f2-46f4-a4d9-17216f6490b6", + "name": "Arbor Brewing Co", + "brewery_type": "brewpub", + "address_1": "114 E Washington St", + "address_2": null, + "address_3": null, + "city": "Ann Arbor", + "state_province": "Michigan", + "postal_code": "48104-1905", + "country": "United States", + "longitude": -83.74822471, + "latitude": 42.28041029, + "phone": "7342131393", + "website_url": "http://www.arborbrewing.com", + "state": "Michigan", + "street": "114 E Washington St" + }, + { + "id": "90fa4058-a971-4fd5-8783-559c670cddde", + "name": "Arbor Brewing Co. Microbrewery", + "brewery_type": "micro", + "address_1": "720 Norris St", + "address_2": null, + "address_3": null, + "city": "Ypsilanti", + "state_province": "Michigan", + "postal_code": "48198-2825", + "country": "United States", + "longitude": -83.6099915, + "latitude": 42.250158, + "phone": "7344802739", + "website_url": null, + "state": "Michigan", + "street": "720 Norris St" + }, + { + "id": "30561ae5-f2b9-4690-a94c-12bd52df29bb", + "name": "Arcadia Brewing Co", + "brewery_type": "micro", + "address_1": "701 E Michigan Ave", + "address_2": null, + "address_3": null, + "city": "Kalamazoo", + "state_province": "Michigan", + "postal_code": "49007-4946", + "country": "United States", + "longitude": -85.5715368, + "latitude": 42.2950789, + "phone": "2692760458", + "website_url": "http://www.arcadiaales.com", + "state": "Michigan", + "street": "701 E Michigan Ave" + }, + { + "id": "084a0621-2a9d-4588-825e-5c5cebc4e8db", + "name": "Arcadian Moon", + "brewery_type": "brewpub", + "address_1": "19203 Old Highway 40", + "address_2": null, + "address_3": null, + "city": "Higginsville", + "state_province": "Missouri", + "postal_code": "64037", + "country": "United States", + "longitude": -93.773203, + "latitude": 39.001467, + "phone": "6605846661", + "website_url": "http://www.arcadianmoon.com", + "state": "Missouri", + "street": "19203 Old Highway 40" + }, + { + "id": "43aa2e45-0b2a-473f-8696-7b9f63040279", + "name": "Arcana Brewing Company", + "brewery_type": "micro", + "address_1": "5621 Palmer Way Ste C", + "address_2": null, + "address_3": null, + "city": "Carlsbad", + "state_province": "California", + "postal_code": "92010-7254", + "country": "United States", + "longitude": -117.273876, + "latitude": 33.14038605, + "phone": null, + "website_url": "http://www.arcanabrewing.com", + "state": "California", + "street": "5621 Palmer Way Ste C" + }, + { + "id": "76da304a-4094-4cae-929c-bae2ae18d24d", + "name": "Arch Rock Brewing Co", + "brewery_type": "micro", + "address_1": "28779 Hunter Creek Loop", + "address_2": null, + "address_3": null, + "city": "Gold Beach", + "state_province": "Oregon", + "postal_code": "97444-9626", + "country": "United States", + "longitude": -124.4155402, + "latitude": 42.3898306, + "phone": "5412470555", + "website_url": "http://www.archrockbrewingcompany.com", + "state": "Oregon", + "street": "28779 Hunter Creek Loop" + }, + { + "id": "cf5055f4-59f8-4adf-b16c-b9233281bedf", + "name": "Archaic Craft Brewery At Centro", + "brewery_type": "brewpub", + "address_1": "140 E Main St", + "address_2": null, + "address_3": null, + "city": "Tustin", + "state_province": "California", + "postal_code": "92780-4408", + "country": "United States", + "longitude": -117.823173, + "latitude": 33.7419754, + "phone": "7142588817", + "website_url": null, + "state": "California", + "street": "140 E Main St" + }, + { + "id": "ce1af2d9-e7d4-4d13-99f6-212067335f9e", + "name": "Arches Brewing", + "brewery_type": "micro", + "address_1": "3361 Dogwood Dr", + "address_2": null, + "address_3": null, + "city": "Hapeville", + "state_province": "Georgia", + "postal_code": "30354-1439", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6786532739", + "website_url": null, + "state": "Georgia", + "street": "3361 Dogwood Dr" + }, + { + "id": "d86d40e0-1a3f-4c34-9b07-002191bc0952", + "name": "Archetype Brewing", + "brewery_type": "micro", + "address_1": "265 Haywood Rd", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28806-4545", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8285054177", + "website_url": "http://www.archetypebrewing.com", + "state": "North Carolina", + "street": "265 Haywood Rd" + }, + { + "id": "fc552937-9245-4091-94b2-645ed0599756", + "name": "Arclight Brewing Company", + "brewery_type": "micro", + "address_1": "544 N Main St", + "address_2": null, + "address_3": null, + "city": "Watervliet", + "state_province": "Michigan", + "postal_code": "49098-9797", + "country": "United States", + "longitude": -86.25939238, + "latitude": 42.19104832, + "phone": "2693320718", + "website_url": "http://www.arclightbrewing.com", + "state": "Michigan", + "street": "544 N Main St" + }, + { + "id": "596ac64f-9586-4b9c-8ca4-9e637be672ef", + "name": "Arcpoint Brewing Co", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Belchertown", + "state_province": "Massachusetts", + "postal_code": "01007-9305", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5187964977", + "website_url": "http://www.arcpointbrewco.com", + "state": "Massachusetts", + "street": null + }, + { + "id": "14e4b777-090d-46f9-8cfa-795c1201a191", + "name": "Ardent Craft Ales", + "brewery_type": "micro", + "address_1": "3200 W Leigh St", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23230-4410", + "country": "United States", + "longitude": -77.47201237, + "latitude": 37.5684425, + "phone": "8043591605", + "website_url": "http://www.ardentcraftales.com", + "state": "Virginia", + "street": "3200 W Leigh St" + }, + { + "id": "0b0b64c0-f10c-4252-8243-e5b9255e0b95", + "name": "Ardent Spirits, Inc", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Collinsville", + "state_province": "Illinois", + "postal_code": "62234", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "13143235530", + "website_url": "http://Ardentspirits.com", + "state": "Illinois", + "street": null + }, + { + "id": "1914fbf9-74d3-4115-909e-fddcb112e227", + "name": "Argilla Brewing Co @ Pietro's Pizza", + "brewery_type": "brewpub", + "address_1": "2667 Kirkwood Hwy", + "address_2": null, + "address_3": null, + "city": "Newark", + "state_province": "Delaware", + "postal_code": "19711-7242", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3027318200", + "website_url": "http://www.argillabrewing.com", + "state": "Delaware", + "street": "2667 Kirkwood Hwy" + }, + { + "id": "7a5dc3de-6ec7-4407-94fa-3ea9a5b627aa", + "name": "Argus Brewery", + "brewery_type": "micro", + "address_1": "11314 S Front Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60628-5007", + "country": "United States", + "longitude": -87.61206845, + "latitude": 41.68854885, + "phone": "7739414050", + "website_url": "http://www.argusbrewery.com", + "state": "Illinois", + "street": "11314 S Front Ave" + }, + { + "id": "9408064a-bc10-4e15-84d0-3ff698036d4f", + "name": "Argyle Brewing Company", + "brewery_type": "micro", + "address_1": "1 Main St", + "address_2": null, + "address_3": null, + "city": "Greenwich", + "state_province": "New York", + "postal_code": "12834-1209", + "country": "United States", + "longitude": -73.496758, + "latitude": 43.08767125, + "phone": "5183387405", + "website_url": "http://www.argylebrewing.com", + "state": "New York", + "street": "1 Main St" + }, + { + "id": "264be80a-dc5e-40cf-93f9-cd4914656440", + "name": "Arizona Craft Brewing", + "brewery_type": "micro", + "address_1": "473 Elgin Road, Suite BH", + "address_2": null, + "address_3": null, + "city": "Elgin", + "state_province": "Arizona", + "postal_code": "85611", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "520369342", + "website_url": null, + "state": "Arizona", + "street": "473 Elgin Road, Suite BH" + }, + { + "id": "701f00a8-fa71-4b74-9fb9-cf82c24c5b38", + "name": "Arizona Wilderness Brewing", + "brewery_type": "brewpub", + "address_1": "721 N Arizona Ave", + "address_2": null, + "address_3": null, + "city": "Gilbert", + "state_province": "Arizona", + "postal_code": "85233-3405", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4804972739", + "website_url": "http://Azwbeer.com", + "state": "Arizona", + "street": "721 N Arizona Ave" + }, + { + "id": "5acdc1a1-5631-4c03-960c-bd076237f124", + "name": "Arkane Aleworks", + "brewery_type": "micro", + "address_1": "2480 E Bay Dr #23", + "address_2": null, + "address_3": null, + "city": "Largo", + "state_province": "Florida", + "postal_code": "33771-2467", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7272707117", + "website_url": "http://www.arkanebeer.com", + "state": "Florida", + "street": "2480 E Bay Dr #23" + }, + { + "id": "5f887385-2c6a-4de6-8dec-68fb5c58029d", + "name": "Arkose Brewery", + "brewery_type": "micro", + "address_1": "650 E Steel Loop", + "address_2": null, + "address_3": null, + "city": "Palmer", + "state_province": "Alaska", + "postal_code": "99645-6689", + "country": "United States", + "longitude": -149.103408, + "latitude": 61.582157, + "phone": "9077462337", + "website_url": "http://www.arkosebrewery.com", + "state": "Alaska", + "street": "650 E Steel Loop" + }, + { + "id": "e10fa788-d3d7-4917-bf66-4caf54d5e6bf", + "name": "Arlington Brewery & Cidery", + "brewery_type": "brewpub", + "address_1": "1060 Spioenkop Street", + "address_2": null, + "address_3": null, + "city": "Arlington", + "state_province": "Gauteng", + "postal_code": "1933", + "country": "South Africa", + "longitude": 28.0267, + "latitude": -26.7909, + "phone": "+27 72 191 2470", + "website_url": "https://arlington.co.za/", + "state": "Gauteng", + "street": "1060 Spioenkop Street" + }, + { + "id": "4cc17a95-7020-43f2-bc23-b9d9ddd29a10", + "name": "Arlington Club", + "brewery_type": "micro", + "address_1": "811 SW Salmon St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97205-3094", + "country": "United States", + "longitude": -122.6818596, + "latitude": 45.51786855, + "phone": "5032234141", + "website_url": "http://www.thearlingtonclub.com", + "state": "Oregon", + "street": "811 SW Salmon St" + }, + { + "id": "6caf8832-1b1d-468a-a01e-87c9f82dcad7", + "name": "Armada Brewing", + "brewery_type": "contract", + "address_1": "250 Bradley Street", + "address_2": null, + "address_3": null, + "city": "East Haven", + "state_province": "Connecticut", + "postal_code": "06512", + "country": "United States", + "longitude": -72.87397563, + "latitude": 41.29004301, + "phone": "4754413759", + "website_url": "http://www.armadabeer.com", + "state": "Connecticut", + "street": "250 Bradley Street" + }, + { + "id": "7e286282-9365-48c2-8bd2-1193bac62449", + "name": "Armadillo Ale Works", + "brewery_type": "micro", + "address_1": "221 S Bell Ave", + "address_2": null, + "address_3": null, + "city": "Denton", + "state_province": "Texas", + "postal_code": "76201-4259", + "country": "United States", + "longitude": -97.12830051, + "latitude": 33.21286666, + "phone": "9405804446", + "website_url": "http://www.armadilloaleworks.com", + "state": "Texas", + "street": "221 S Bell Ave" + }, + { + "id": "d0dc210e-6f0e-4194-8791-dd2fe153843b", + "name": "Armistice Brewing Company", + "brewery_type": "micro", + "address_1": "845 Marina Bay Pkwy Suite 1", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "California", + "postal_code": "94804-6420", + "country": "United States", + "longitude": -122.348274, + "latitude": 37.91966864, + "phone": "5102304966", + "website_url": "http://www.armisticebrewing.com", + "state": "California", + "street": "845 Marina Bay Pkwy Suite 1" + }, + { + "id": "244d5454-88ea-41c3-b3b7-c4374e8b795c", + "name": "Armour Brewing Company, LLC", + "brewery_type": "brewpub", + "address_1": "721 Main St", + "address_2": null, + "address_3": null, + "city": "Armour", + "state_province": "South Dakota", + "postal_code": "57313-2122", + "country": "United States", + "longitude": -98.34450702, + "latitude": 43.33084265, + "phone": "4028901550", + "website_url": "http://www.facebook.com/ArmourBrewingCompany", + "state": "South Dakota", + "street": "721 Main St" + }, + { + "id": "a19630e3-638c-4ab8-a305-36c4f1cb84f7", + "name": "Armstrong Brewing Co", + "brewery_type": "micro", + "address_1": "415 Grand Ave Ste 103", + "address_2": null, + "address_3": null, + "city": "South San Francisco", + "state_province": "California", + "postal_code": "94080-3614", + "country": "United States", + "longitude": -119.1925726, + "latitude": 50.44703096, + "phone": "6509898447", + "website_url": "http://www.armstrongbrewing.com", + "state": "California", + "street": "415 Grand Ave Ste 103" + }, + { + "id": "d95ce7ad-97be-4a46-a9a0-85260f2bef4f", + "name": "Around the Bend Beer Co.", + "brewery_type": "contract", + "address_1": "811 N Oak Park Ave", + "address_2": null, + "address_3": null, + "city": "Oak Park", + "state_province": "Illinois", + "postal_code": "60302-1538", + "country": "United States", + "longitude": -87.79493034, + "latitude": 41.90015593, + "phone": "3129522339", + "website_url": "http://www.atbbeerco.com", + "state": "Illinois", + "street": "811 N Oak Park Ave" + }, + { + "id": "03411879-9d3e-4e2b-82a5-d5d01935074f", + "name": "Arrow Lodge Brewing", + "brewery_type": "micro", + "address_1": "720 E Arrow Hwy Ste C", + "address_2": null, + "address_3": null, + "city": "Covina", + "state_province": "California", + "postal_code": "91722-2103", + "country": "United States", + "longitude": -117.8767215, + "latitude": 34.105251, + "phone": "6264832667", + "website_url": "https://www.arrowlodgebrew.com/", + "state": "California", + "street": "720 E Arrow Hwy Ste C" + }, + { + "id": "118dd02b-488c-48a7-bfd0-7b49ee168f96", + "name": "Arrowhead Ales Brewing Company", + "brewery_type": "brewpub", + "address_1": "2101 Calistoga Dr", + "address_2": null, + "address_3": null, + "city": "New Lenox", + "state_province": "Illinois", + "postal_code": "60451-4826", + "country": "United States", + "longitude": -87.95726941, + "latitude": 41.48205844, + "phone": "8157176068", + "website_url": "http://www.arrowheadales.com", + "state": "Illinois", + "street": "2101 Calistoga Dr" + }, + { + "id": "647378c3-df63-4da2-a88d-808943dcd4f9", + "name": "Arrowood Farms", + "brewery_type": "micro", + "address_1": "236 Lower Whitfield Rd", + "address_2": null, + "address_3": null, + "city": "Accord", + "state_province": "New York", + "postal_code": "12404-5809", + "country": "United States", + "longitude": -74.24891742, + "latitude": 41.80666144, + "phone": "8452530389", + "website_url": "http://www.arrowoodfarms.com", + "state": "New York", + "street": "236 Lower Whitfield Rd" + }, + { + "id": "05549159-6724-478d-a976-4925533a40f2", + "name": "Art History Brewing", + "brewery_type": "micro", + "address_1": "649 W State St", + "address_2": null, + "address_3": null, + "city": "Geneva", + "state_province": "Illinois", + "postal_code": "60134", + "country": "United States", + "longitude": -88.312704761043, + "latitude": 41.889484227325, + "phone": "6303456274", + "website_url": "https://arthistorybrewing.com", + "state": "Illinois", + "street": "649 W State St" + }, + { + "id": "174e828f-10aa-43b9-ba31-3c3f45001288", + "name": "Artifex Brewing Company", + "brewery_type": "micro", + "address_1": "919 Calle Amanecer Ste A", + "address_2": null, + "address_3": null, + "city": "San Clemente", + "state_province": "California", + "postal_code": "92673-6298", + "country": "United States", + "longitude": -117.6058963, + "latitude": 33.44918353, + "phone": "9494297805", + "website_url": "http://www.artifexbrewing.com", + "state": "California", + "street": "919 Calle Amanecer Ste A" + }, + { + "id": "1d34d7cf-c2ce-4e07-aec2-930d3299c584", + "name": "Artisan Owl Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Ocean City", + "state_province": "New Jersey", + "postal_code": "08226-4237", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2157402057", + "website_url": null, + "state": "New Jersey", + "street": null + }, + { + "id": "e0783ffa-721d-45e2-9715-cbc1023a7d27", + "name": "Artisan's Brewery & Italian Grill", + "brewery_type": "brewpub", + "address_1": "1171 Hooper Ave", + "address_2": null, + "address_3": null, + "city": "Toms River", + "state_province": "New Jersey", + "postal_code": "08753-8305", + "country": "United States", + "longitude": -74.1880387, + "latitude": 39.9625642, + "phone": "7322447566", + "website_url": "http://www.artisanstomsriver.com", + "state": "New Jersey", + "street": "1171 Hooper Ave" + }, + { + "id": "8fb6c630-7647-4a16-a55a-fde63c129636", + "name": "Artisanal Brew Works", + "brewery_type": "micro", + "address_1": "41 Geyser Rd", + "address_2": null, + "address_3": null, + "city": "Saratoga Springs", + "state_province": "New York", + "postal_code": "12866-9038", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5185942337", + "website_url": "http://www.artisanalbrewworks.com", + "state": "New York", + "street": "41 Geyser Rd" + }, + { + "id": "ed7c9e44-df88-4e3e-8ed2-54af6f4539e5", + "name": "Arts District Brewing Company", + "brewery_type": "brewpub", + "address_1": "828 Traction Ave", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90013-1816", + "country": "United States", + "longitude": -118.2357029, + "latitude": 34.04505443, + "phone": null, + "website_url": null, + "state": "California", + "street": "828 Traction Ave" + }, + { + "id": "6f83ab76-9ebd-4b2c-a290-effaa2dca8b9", + "name": "Arundel Brewery Ltd", + "brewery_type": "brewpub", + "address_1": "Lyminster Road", + "address_2": null, + "address_3": null, + "city": "Arundel", + "state_province": "West Sussex", + "postal_code": "BN17 7QL", + "country": "England", + "longitude": -0.534301, + "latitude": 50.839971, + "phone": "1903733111", + "website_url": "https://www.arundelbrewery.co.uk/", + "state": "West Sussex", + "street": "Lyminster Road" + }, + { + "id": "39b6533a-40a4-4ba1-a41e-dd8f381b7ed7", + "name": "Arundel Cellars & Brewing Co", + "brewery_type": "brewpub", + "address_1": "11727 E Main Rd", + "address_2": null, + "address_3": null, + "city": "North East", + "state_province": "Pennsylvania", + "postal_code": "16428-3635", + "country": "United States", + "longitude": -79.8216539, + "latitude": 42.2195527, + "phone": "8147251079", + "website_url": "http://www.arundelcellars.com", + "state": "Pennsylvania", + "street": "11727 E Main Rd" + }, + { + "id": "ed6c7254-d6f6-40a1-a330-135a1e3a09ad", + "name": "Arvon Brewing Co.", + "brewery_type": "micro", + "address_1": "3057 Broadway Ave SW", + "address_2": null, + "address_3": null, + "city": "Grandville", + "state_province": "Michigan", + "postal_code": "49418-1528", + "country": "United States", + "longitude": -85.7720434, + "latitude": 42.909272, + "phone": "6162240086", + "website_url": "http://www.arvonbrewingco.com", + "state": "Michigan", + "street": "3057 Broadway Ave SW" + }, + { + "id": "41f5672a-79ff-4559-9231-db2ecdcb2385", + "name": "Asbury Park Brewery", + "brewery_type": "micro", + "address_1": "810 Sewall Ave", + "address_2": null, + "address_3": null, + "city": "Asbury Park", + "state_province": "New Jersey", + "postal_code": "07712-6527", + "country": "United States", + "longitude": -74.01229282, + "latitude": 40.21956661, + "phone": "7324555571", + "website_url": "http://www.asburyparkbrewery.com", + "state": "New Jersey", + "street": "810 Sewall Ave" + }, + { + "id": "ce507918-f969-4d44-a218-daca121c4bd0", + "name": "Ascension Brewing Company", + "brewery_type": "brewpub", + "address_1": "42000 Grand River Ave", + "address_2": null, + "address_3": null, + "city": "Novi", + "state_province": "Michigan", + "postal_code": "48375-1831", + "country": "United States", + "longitude": -83.4609783, + "latitude": 42.4783271, + "phone": "2483082093", + "website_url": "http://www.ascension.beer", + "state": "Michigan", + "street": "42000 Grand River Ave" + }, + { + "id": "e337af00-da5a-4bcf-ab5d-d9d9252b8ae8", + "name": "Asgard Brewing Company", + "brewery_type": "micro", + "address_1": "104 E 5th St", + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "Tennessee", + "postal_code": "38401-3351", + "country": "United States", + "longitude": -87.03329688, + "latitude": 35.6174542, + "phone": "6158282218", + "website_url": "http://www.asgardbrewery.com", + "state": "Tennessee", + "street": "104 E 5th St" + }, + { + "id": "64749ace-0bca-4548-83e4-c6465547c60f", + "name": "Ashby Brewing Company", + "brewery_type": "micro", + "address_1": "109 Main St", + "address_2": null, + "address_3": null, + "city": "Ashby", + "state_province": "Minnesota", + "postal_code": "56309-4687", + "country": "United States", + "longitude": -95.81621756, + "latitude": 46.09300639, + "phone": "8886350291", + "website_url": "http://www.abcbrewing.net", + "state": "Minnesota", + "street": "109 Main St" + }, + { + "id": "051edb66-62ad-455e-a04a-d6a0e5fa4178", + "name": "Asher Brewing Co", + "brewery_type": "micro", + "address_1": "4699 Nautilus Ct S Ste 104", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301-5306", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3035301381", + "website_url": "http://asherbrewing.com", + "state": "Colorado", + "street": "4699 Nautilus Ct S Ste 104" + }, + { + "id": "b5671147-4dec-4e19-b256-79a2f03b94e9", + "name": "Asheville Brewing Co", + "brewery_type": "brewpub", + "address_1": "77 Coxe Ave", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28801-3621", + "country": "United States", + "longitude": -82.55530545, + "latitude": 35.5917763, + "phone": "8282554077", + "website_url": "http://www.ashevillepizza.com", + "state": "North Carolina", + "street": "77 Coxe Ave" + }, + { + "id": "3638576a-b41f-4ffc-a039-9d2b27df4a47", + "name": "Ashtown Brewing Co", + "brewery_type": "micro", + "address_1": "1145 11th Ave", + "address_2": null, + "address_3": null, + "city": "Longview", + "state_province": "Washington", + "postal_code": "98632", + "country": "United States", + "longitude": -122.9330459, + "latitude": 46.13507657, + "phone": "3602187519", + "website_url": "http://www.ashtownbrewing.com", + "state": "Washington", + "street": "1145 11th Ave" + }, + { + "id": "799a4fc7-16fb-40e7-9fd5-4664da3976f3", + "name": "Ashuelot Brewing Company", + "brewery_type": "closed", + "address_1": "101 Old County Rd", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "New Hampshire", + "postal_code": "03470-4918", + "country": "United States", + "longitude": -72.23236816, + "latitude": 42.75946232, + "phone": null, + "website_url": null, + "state": "New Hampshire", + "street": "101 Old County Rd" + }, + { + "id": "e5c53698-deb0-4bb9-ab37-56db1bc09efb", + "name": "Asia Pacific Breweries Pte Ltd", + "brewery_type": "large", + "address_1": "459 Jalan Ahmad Ibrahim", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "639934", + "country": "Singapore", + "longitude": 1.3365111315439, + "latitude": 103.64778327672, + "phone": "+65 6861 6200", + "website_url": "https://www.apbsingapore.com.sg/", + "state": "Singapore", + "street": "459 Jalan Ahmad Ibrahim" + }, + { + "id": "be30d928-4a14-45eb-a944-89b01b544080", + "name": "Aslan Brewing Company", + "brewery_type": "micro", + "address_1": "1330 N Forest St", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98225-4702", + "country": "United States", + "longitude": -122.4754509, + "latitude": 48.74801531, + "phone": "3603934106", + "website_url": "http://aslanbrewing.com", + "state": "Washington", + "street": "1330 N Forest St" + }, + { + "id": "9c9090eb-a361-47e7-b2e5-06fefe21eef7", + "name": "Aslan Brewing Seattle", + "brewery_type": "micro", + "address_1": "401 N 36th St Ste 102", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98103-8630", + "country": "United States", + "longitude": -122.354134, + "latitude": 47.652201, + "phone": "3603934106", + "website_url": "https://aslanbrewing.com/seattle", + "state": "Washington", + "street": "401 N 36th St Ste 102" + }, + { + "id": "59bdcaa8-a690-429d-8f85-539eb4e57120", + "name": "Aslin Beer Company", + "brewery_type": "micro", + "address_1": "257 Sunset Park Dr.", + "address_2": null, + "address_3": null, + "city": "Herndon", + "state_province": "Virginia", + "postal_code": "20170", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7037875766", + "website_url": "http://www.aslinbeer.com", + "state": "Virginia", + "street": "257 Sunset Park Dr." + }, + { + "id": "5b2501b2-d069-4e5f-8c6b-ef9f6ee408cd", + "name": "Aspen Brewing Company", + "brewery_type": "micro", + "address_1": "404 Aspen Airport Business Ctr", + "address_2": null, + "address_3": null, + "city": "Aspen", + "state_province": "Colorado", + "postal_code": "81611-3530", + "country": "United States", + "longitude": -106.8597747, + "latitude": 39.22153402, + "phone": "9709202739", + "website_url": "http://www.aspenbrewingcompany.com", + "state": "Colorado", + "street": "404 Aspen Airport Business Ctr" + }, + { + "id": "60195a53-786c-4540-ae1d-a3bbca7a41fd", + "name": "Aspetuck Brew Lab", + "brewery_type": "closed", + "address_1": "3389 Fairfield Avenue", + "address_2": null, + "address_3": null, + "city": "Bridgeport", + "state_province": "Connecticut", + "postal_code": "06605", + "country": "United States", + "longitude": -73.2357109, + "latitude": 41.1544649, + "phone": "2032539423", + "website_url": "http://www.aspetuckbrewlab.com", + "state": "Connecticut", + "street": "3389 Fairfield Avenue" + }, + { + "id": "eafb7a5f-83c9-427b-b894-8ea1d0751c31", + "name": "Ass Clown Brewing Co", + "brewery_type": "micro", + "address_1": "10620 Bailey Rd Ste E", + "address_2": null, + "address_3": null, + "city": "Cornelius", + "state_province": "North Carolina", + "postal_code": "28031-9364", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9805050399", + "website_url": "http://www.assclownbrewery.com", + "state": "North Carolina", + "street": "10620 Bailey Rd Ste E" + }, + { + "id": "4cabbfbc-d07c-40b0-b5f5-fa456c22b7a2", + "name": "Assembly brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97206-3739", + "country": "United States", + "longitude": -122.6003912, + "latitude": 45.491048, + "phone": "5037299080", + "website_url": "http://www.assemblybrewingco.com", + "state": "Oregon", + "street": null + }, + { + "id": "215dc8f1-754b-4dac-a448-255375c5a8d9", + "name": "Aston Abbey Brewing Co", + "brewery_type": "micro", + "address_1": "340 Turner Industrial Way", + "address_2": null, + "address_3": null, + "city": "Aston", + "state_province": "Pennsylvania", + "postal_code": "19014-3014", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6102452178", + "website_url": "http://www.astonabbeybrewing.com", + "state": "Pennsylvania", + "street": "340 Turner Industrial Way" + }, + { + "id": "686e0f81-196a-4e76-9b73-2e3957c7b871", + "name": "Astoria Brewing Company", + "brewery_type": "micro", + "address_1": "1196 Marine Dr", + "address_2": null, + "address_3": null, + "city": "Astoria", + "state_province": "Oregon", + "postal_code": "97103-4112", + "country": "United States", + "longitude": -123.831516, + "latitude": 46.18980259, + "phone": "5037413040", + "website_url": null, + "state": "Oregon", + "street": "1196 Marine Dr" + }, + { + "id": "d916497e-0b1b-48aa-8add-10a62c0b3e90", + "name": "Astral Brewing", + "brewery_type": "micro", + "address_1": "4816 N Shepherd Dr suite a", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77018", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7135341067", + "website_url": "https://www.astralbrewing.com", + "state": "Texas", + "street": "4816 N Shepherd Dr suite a" + }, + { + "id": "d94c95b9-509c-4d53-86a6-769555e1773e", + "name": "Astro Lab Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Silver Spring", + "state_province": "Maryland", + "postal_code": "20910-4519", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3106910475", + "website_url": "http://www.astrolabbrewing.com", + "state": "Maryland", + "street": null + }, + { + "id": "e49978bd-c6d2-46c6-a3a4-50964ab4f783", + "name": "Astronomy Aleworks", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Henderson", + "state_province": "Nevada", + "postal_code": "89011", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7023754968", + "website_url": "http://astronomyaleworks.com", + "state": "Nevada", + "street": null + }, + { + "id": "7b552890-643d-4615-a73b-791cff62299b", + "name": "Asylum Brewing", + "brewery_type": "micro", + "address_1": "2970 E. La Palma Ave. Suite D", + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92806", + "country": "United States", + "longitude": -117.8612062, + "latitude": 33.84988007, + "phone": "9494495191", + "website_url": "http://Www.asylumbrewing.beer", + "state": "California", + "street": "2970 E. La Palma Ave. Suite D" + }, + { + "id": "f786b344-af07-4b30-a236-93a93314f9d5", + "name": "At Ease Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95811-3003", + "country": "United States", + "longitude": -121.4943996, + "latitude": 38.5815719, + "phone": "9167362267", + "website_url": "http://www.ateasebrewing.com", + "state": "California", + "street": null + }, + { + "id": "05f7ec4a-c1ed-4494-a2b0-5ef1ce6a8022", + "name": "At Large Brewing", + "brewery_type": "micro", + "address_1": "2730 W Marine View Dr", + "address_2": null, + "address_3": null, + "city": "Everett", + "state_province": "Washington", + "postal_code": "98201-3421", + "country": "United States", + "longitude": -122.2146867, + "latitude": 47.9808918, + "phone": "4253240039", + "website_url": "http://www.atlargebrewing.com", + "state": "Washington", + "street": "2730 W Marine View Dr" + }, + { + "id": "ba385e5a-6c50-431a-a820-21d783b9e0b1", + "name": "Atco Brewing LLC", + "brewery_type": "micro", + "address_1": "302 White Horse Pike", + "address_2": null, + "address_3": null, + "city": "Atco", + "state_province": "New Jersey", + "postal_code": "08004-2209", + "country": "United States", + "longitude": -74.89973165, + "latitude": 39.77167345, + "phone": "6097072628", + "website_url": "http://Www.atcobrewingcompany.com", + "state": "New Jersey", + "street": "302 White Horse Pike" + }, + { + "id": "be88a2bb-0975-416c-b9f4-c571ddf70e5c", + "name": "Athens Brewing Co", + "brewery_type": "brewpub", + "address_1": "101 E Tyler St", + "address_2": null, + "address_3": null, + "city": "Athens", + "state_province": "Texas", + "postal_code": "75751-2547", + "country": "United States", + "longitude": -95.852642, + "latitude": 32.205458, + "phone": "9039527493", + "website_url": "http://www.athensbrewingco.com", + "state": "Texas", + "street": "101 E Tyler St" + }, + { + "id": "01dfa6a1-0ad4-4ac5-a184-1d6c69294460", + "name": "Athletic Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Stratford", + "state_province": "Connecticut", + "postal_code": "06615-7167", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2032730422", + "website_url": "http://www.AthleticBrewing.com", + "state": "Connecticut", + "street": null + }, + { + "id": "4e0403f6-c040-4d4c-b9fe-1f5a115b0172", + "name": "Atlantic Beach Brewing Company", + "brewery_type": "micro", + "address_1": "725 Atlantic Blvd Suite 3", + "address_2": null, + "address_3": null, + "city": "Atlantic Beach", + "state_province": "Florida", + "postal_code": "32233-3946", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9048948426", + "website_url": "http://www.atlanticbeachbrewingcompany.com", + "state": "Florida", + "street": "725 Atlantic Blvd Suite 3" + }, + { + "id": "5f353918-3d93-49ba-93d1-098a0ecf318f", + "name": "Atlantic Brewing Co", + "brewery_type": "micro", + "address_1": "15 Knox Rd", + "address_2": null, + "address_3": null, + "city": "Bar Harbor", + "state_province": "Maine", + "postal_code": "04609-7770", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2072882337", + "website_url": "http://atlanticbrewing.com", + "state": "Maine", + "street": "15 Knox Rd" + }, + { + "id": "36a6f65e-aa9d-45d5-9ce8-cbbc82ca9ab1", + "name": "Atlantic Brewing Co / Bar Harbor Brewing", + "brewery_type": "brewpub", + "address_1": "52 Cottage Street Bar Harbor", + "address_2": null, + "address_3": null, + "city": "Bar Harbor", + "state_province": "Maine", + "postal_code": "04609", + "country": "United States", + "longitude": -68.20607075, + "latitude": 44.389488, + "phone": "2072884592", + "website_url": "http://www.barharborbrewing.com", + "state": "Maine", + "street": "52 Cottage Street Bar Harbor" + }, + { + "id": "41b3fd0e-0083-4f6a-96d8-dff2554e4731", + "name": "Atlas Brew Works", + "brewery_type": "micro", + "address_1": "2052 W Virginia Ave NE Ste 102", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "District of Columbia", + "postal_code": "20002-1832", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2028320420", + "website_url": "http://www.atlasbrewworks.com", + "state": "District of Columbia", + "street": "2052 W Virginia Ave NE Ste 102" + }, + { + "id": "325d44c0-53fb-4991-a694-659ac9f89fa9", + "name": "Atom Brewing Company", + "brewery_type": "micro", + "address_1": "654 Moffat St", + "address_2": null, + "address_3": null, + "city": "Erie", + "state_province": "Colorado", + "postal_code": "80516", + "country": "United States", + "longitude": -105.0542327, + "latitude": 40.0488359, + "phone": "8634120917", + "website_url": "http://www.atombrewingcompany.com", + "state": "Colorado", + "street": "654 Moffat St" + }, + { + "id": "aaba0413-9bee-49ac-9bef-8159dcd353d0", + "name": "Atomic Ale Brewpub and Eatery", + "brewery_type": "brewpub", + "address_1": "1015 Lee Blvd", + "address_2": null, + "address_3": null, + "city": "Richland", + "state_province": "Washington", + "postal_code": "99352-4226", + "country": "United States", + "longitude": -119.2782003, + "latitude": 46.27475515, + "phone": "5099465465", + "website_url": "http://www.atomicalebrewpub.com", + "state": "Washington", + "street": "1015 Lee Blvd" + }, + { + "id": "be18dd78-b1af-453c-8b8d-176c7af57e14", + "name": "Atomic Clock Brewing Company", + "brewery_type": "micro", + "address_1": "501 Washington St", + "address_2": "#A", + "address_3": null, + "city": "Durham", + "state_province": "North Carolina", + "postal_code": "27701", + "country": "United States", + "longitude": -78.9041106, + "latitude": 36.0024998, + "phone": "9192371253", + "website_url": "https://www.instagram.com/atomicclockbrewing/", + "state": "North Carolina", + "street": "501 Washington St" + }, + { + "id": "26567ffb-52fb-40b2-a31f-08f4ea3699b9", + "name": "Atrevida Beer Company", + "brewery_type": "micro", + "address_1": "204 Mount View Ln Unit 3", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80908", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7192664200", + "website_url": "http://www.atrevidabeerco.com", + "state": "Colorado", + "street": "204 Mount View Ln Unit 3" + }, + { + "id": "724a6296-cdac-4d35-92fd-cc44960010ff", + "name": "Attaboy Beer", + "brewery_type": "micro", + "address_1": "400 Sagner Ave Ste 400", + "address_2": null, + "address_3": null, + "city": "Frederick", + "state_province": "Maryland", + "postal_code": "21701-6083", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4157106459", + "website_url": null, + "state": "Maryland", + "street": "400 Sagner Ave Ste 400" + }, + { + "id": "87d71c35-9537-4ef1-b232-668bea736ffa", + "name": "Attic Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19144-3603", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7082047376", + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "70fc7667-dda2-4cf0-ae7e-cbb43b5c43c4", + "name": "Atwater Brewing Co", + "brewery_type": "regional", + "address_1": "237 Joseph Campau St", + "address_2": null, + "address_3": null, + "city": "Detroit", + "state_province": "Michigan", + "postal_code": "48207-4107", + "country": "United States", + "longitude": -83.072904, + "latitude": 42.4190883, + "phone": "3138779205", + "website_url": "http://www.atwaterbeer.com", + "state": "Michigan", + "street": "237 Joseph Campau St" + }, + { + "id": "14693124-55bc-43e9-817e-b99a85f662ac", + "name": "Atwater Grand Rapids", + "brewery_type": "brewpub", + "address_1": "201 Michigan St NW", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49503-2323", + "country": "United States", + "longitude": -85.672454, + "latitude": 42.970463, + "phone": "6166493020", + "website_url": null, + "state": "Michigan", + "street": "201 Michigan St NW" + }, + { + "id": "89d36a6d-1226-4c61-b4c6-22676a55a364", + "name": "Atwater In the Park Biergarten and Tap House", + "brewery_type": "brewpub", + "address_1": "1175 Lakepointe St", + "address_2": null, + "address_3": null, + "city": "Grosse Pointe Park", + "state_province": "Michigan", + "postal_code": "48230-1319", + "country": "United States", + "longitude": -82.9399103, + "latitude": 42.3814617, + "phone": "3133445104", + "website_url": "http://www.atwaterbeer.com", + "state": "Michigan", + "street": "1175 Lakepointe St" + }, + { + "id": "aa0195bf-8258-4262-89c4-af8a89793822", + "name": "Atwood Ales", + "brewery_type": "closed", + "address_1": "4012 Sweet Rd", + "address_2": null, + "address_3": null, + "city": "Blaine", + "state_province": "Washington", + "postal_code": "98230-9108", + "country": "United States", + "longitude": -122.6990459, + "latitude": 48.97900614, + "phone": "3603996239", + "website_url": "http://www.atwoodales.com", + "state": "Washington", + "street": "4012 Sweet Rd" + }, + { + "id": "65706566-c0f6-4995-ae18-0b07feea8396", + "name": "Atypical Brewery & Barrelworks", + "brewery_type": "micro", + "address_1": "510 Central Ave E", + "address_2": null, + "address_3": null, + "city": "Minot", + "state_province": "North Dakota", + "postal_code": "58701-4056", + "country": "United States", + "longitude": -101.2854035, + "latitude": 48.23634956, + "phone": "7018330567", + "website_url": "https://www.facebook.com/AtypicalBrew", + "state": "North Dakota", + "street": "510 Central Ave E" + }, + { + "id": "b556e8ca-eb4b-46c4-a1bc-b5bb2e33b605", + "name": "Auburn Alehouse", + "brewery_type": "brewpub", + "address_1": "289 Washington St", + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "California", + "postal_code": "95603-5036", + "country": "United States", + "longitude": -121.0789583, + "latitude": 38.89612107, + "phone": "5308852537", + "website_url": "http://www.auburnalehouse.com", + "state": "California", + "street": "289 Washington St" + }, + { + "id": "b96d27cf-42b8-4791-8fb8-87840016e497", + "name": "Auburn Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "Indiana", + "postal_code": "46706", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2609081074", + "website_url": null, + "state": "Indiana", + "street": null + }, + { + "id": "2728266c-bb3e-4e98-81b8-52489bc019ae", + "name": "Audacious Aleworks", + "brewery_type": "micro", + "address_1": "110 E Fairfax St", + "address_2": null, + "address_3": null, + "city": "Falls Church", + "state_province": "Virginia", + "postal_code": "22046", + "country": "United States", + "longitude": -77.17234359, + "latitude": 38.88076482, + "phone": null, + "website_url": null, + "state": "Virginia", + "street": "110 E Fairfax St" + }, + { + "id": "bd7e4765-9179-47b5-8888-219d1af19fe1", + "name": "Audacity Brewing", + "brewery_type": "closed", + "address_1": "1208 10th St Ste C", + "address_2": null, + "address_3": null, + "city": "Snohomish", + "state_province": "Washington", + "postal_code": "98290", + "country": "United States", + "longitude": -122.0966776, + "latitude": 47.925023, + "phone": "3602948742", + "website_url": "http://www.audacitybrewing.com", + "state": "Washington", + "street": "1208 10th St Ste C" + }, + { + "id": "e8f104ff-0e7e-429d-b3da-ae6655830e8c", + "name": "August Schell Brewing Co", + "brewery_type": "regional", + "address_1": "Schells Park/1860 Schell Rd", + "address_2": null, + "address_3": null, + "city": "New Ulm", + "state_province": "Minnesota", + "postal_code": "56073", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5073545528", + "website_url": "http://www.schellsbrewery.com", + "state": "Minnesota", + "street": "Schells Park/1860 Schell Rd" + }, + { + "id": "895ef2f2-7ce5-44c7-af97-ee9c7cce774b", + "name": "Augusta Brewing Co", + "brewery_type": "brewpub", + "address_1": "109 W Main St", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "Missouri", + "postal_code": "63090-2191", + "country": "United States", + "longitude": -91.01173472, + "latitude": 38.56026935, + "phone": "6362395010", + "website_url": "http://www.augustabrewing.com", + "state": "Missouri", + "street": "109 W Main St" + }, + { + "id": "9209ed61-b9dd-4b06-bf2c-8cacbef097f8", + "name": "Augustino Brewing", + "brewery_type": "brewpub", + "address_1": "756 N Tyler Rd", + "address_2": null, + "address_3": null, + "city": "Wichita", + "state_province": "Kansas", + "postal_code": "67212-3617", + "country": "United States", + "longitude": -97.44431468, + "latitude": 37.69517328, + "phone": "3167215554", + "website_url": "http://www.augustinobrew.com", + "state": "Kansas", + "street": "756 N Tyler Rd" + }, + { + "id": "506f8ec3-7cac-42c1-b7fd-9fe1a5865b2c", + "name": "Aurochs Brewing Company", + "brewery_type": "micro", + "address_1": "8321 Ohio River Blvd", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15202-1451", + "country": "United States", + "longitude": -80.0221567, + "latitude": 40.4488158, + "phone": "7242608737", + "website_url": null, + "state": "Pennsylvania", + "street": "8321 Ohio River Blvd" + }, + { + "id": "74f46cc4-156c-4986-b653-b5240678ff54", + "name": "Aurora Ale & Lager", + "brewery_type": "micro", + "address_1": "1891 State Route 90 N", + "address_2": null, + "address_3": null, + "city": "King Ferry", + "state_province": "New York", + "postal_code": "13081-9719", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.brewaurora.com", + "state": "New York", + "street": "1891 State Route 90 N" + }, + { + "id": "16ead71f-bbd5-4b34-b434-a3bc7849349f", + "name": "Ausable Brewing Co", + "brewery_type": "micro", + "address_1": "765 Mace Chasm Rd", + "address_2": null, + "address_3": null, + "city": "Keeseville", + "state_province": "New York", + "postal_code": "12944-2425", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3152443295", + "website_url": "http://ausablebrewing.tumblr.com", + "state": "New York", + "street": "765 Mace Chasm Rd" + }, + { + "id": "9a280fbb-adee-484a-876b-50e71235a711", + "name": "Austin Beerworks", + "brewery_type": "regional", + "address_1": "3001 Industrial Ter", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78758-7609", + "country": "United States", + "longitude": -97.72984444, + "latitude": 30.3795705, + "phone": "5128212494", + "website_url": "http://www.austinbeerworks.com", + "state": "Texas", + "street": "3001 Industrial Ter" + }, + { + "id": "26079ee9-0313-425a-84b6-25d0eda4f596", + "name": "Austin Brothers' Beer Company", + "brewery_type": "brewpub", + "address_1": "821 W Miller St", + "address_2": null, + "address_3": null, + "city": "Alpena", + "state_province": "Michigan", + "postal_code": "49707-1825", + "country": "United States", + "longitude": -83.43583578, + "latitude": 45.07296998, + "phone": "9893402300", + "website_url": "http://www.austinbrosbeerco.com", + "state": "Michigan", + "street": "821 W Miller St" + }, + { + "id": "840d509e-f231-4722-ab4c-bf2ef7996196", + "name": "Austin Street Brewery", + "brewery_type": "micro", + "address_1": "1 Industrial Way Ste 8", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04103-1072", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2072001994", + "website_url": "http://www.austinstreetbrewery.com", + "state": "Maine", + "street": "1 Industrial Way Ste 8" + }, + { + "id": "fe0ec060-d68b-480d-9a1b-4a3bf7728839", + "name": "Australian Beer Company", + "brewery_type": "micro", + "address_1": "1471 Wakley Road", + "address_2": null, + "address_3": null, + "city": "Yenda", + "state_province": "NSW", + "postal_code": "2681", + "country": "Australia", + "longitude": 146.2187469, + "latitude": -34.2467608, + "phone": null, + "website_url": "https://www.australianbeerco.com.au/", + "state": "NSW", + "street": "1471 Wakley Road" + }, + { + "id": "322a5eb4-e725-4c03-b532-a64153037076", + "name": "Automatic Brewing Co. / Blind Lady Alehouse", + "brewery_type": "brewpub", + "address_1": "3416 Adams Ave", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92116-2428", + "country": "United States", + "longitude": -117.120151, + "latitude": 32.763588, + "phone": "6192007522", + "website_url": "http://www.blindlady.blogspot.com", + "state": "California", + "street": "3416 Adams Ave" + }, + { + "id": "102c478e-ab27-4c8c-82c3-8eaee82959fa", + "name": "Avalanche Brewing Co", + "brewery_type": "brewpub", + "address_1": "1067 Blair St", + "address_2": null, + "address_3": null, + "city": "Silverton", + "state_province": "Colorado", + "postal_code": "81433-0377", + "country": "United States", + "longitude": -107.664791, + "latitude": 37.8098899, + "phone": "9703875282", + "website_url": "http://www.avalanchebrewing.com", + "state": "Colorado", + "street": "1067 Blair St" + }, + { + "id": "d07100f1-ab4b-413e-bc07-045ee4d61fe6", + "name": "Avant Garde Aleworks", + "brewery_type": "micro", + "address_1": "920 Dunraven St", + "address_2": null, + "address_3": null, + "city": "Estes Park", + "state_province": "Colorado", + "postal_code": "80517", + "country": "United States", + "longitude": -105.5085669, + "latitude": 40.3728533, + "phone": "9705912700", + "website_url": "https://avantgardealeworks.com", + "state": "Colorado", + "street": "920 Dunraven St" + }, + { + "id": "3bde4342-bfc1-49cb-9b40-7fb1aef26886", + "name": "Avery Brewing Co", + "brewery_type": "regional", + "address_1": "4910 Nautilus Ct N", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301-3242", + "country": "United States", + "longitude": -105.2047652, + "latitude": 40.0625835, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "4910 Nautilus Ct N" + }, + { + "id": "7006a17a-74da-497a-ba35-2338c7efbb25", + "name": "Aviator Brewing Company", + "brewery_type": "regional", + "address_1": "209 Technology Park Ln", + "address_2": null, + "address_3": null, + "city": "Fuquay Varina", + "state_province": "North Carolina", + "postal_code": "27526-9311", + "country": "United States", + "longitude": -78.8073896, + "latitude": 35.61695983, + "phone": "9195672337", + "website_url": "http://www.aviatorbrew.com", + "state": "North Carolina", + "street": "209 Technology Park Ln" + }, + { + "id": "adf6d133-d860-4167-a23a-7db89b1777ff", + "name": "Aviators Craft Brewing Company", + "brewery_type": "micro", + "address_1": "44 Zand Street", + "address_2": null, + "address_3": null, + "city": "Hartbeespoort", + "state_province": "North West", + "postal_code": "0216", + "country": "South Africa", + "longitude": 27.8189, + "latitude": -25.7511, + "phone": "+27 62 801 1998", + "website_url": "https://www.aviatorsbrewing.co.za/", + "state": "North West", + "street": "44 Zand Street" + }, + { + "id": "bb02e7c9-bf6e-47dd-a0dc-a0e8eb1b9ad3", + "name": "Avondale Brewing Co", + "brewery_type": "micro", + "address_1": "201 41st St S", + "address_2": null, + "address_3": null, + "city": "Birmingham", + "state_province": "Alabama", + "postal_code": "35222-1932", + "country": "United States", + "longitude": -86.774322, + "latitude": 33.524521, + "phone": "2057775456", + "website_url": "http://www.avondalebrewing.com", + "state": "Alabama", + "street": "201 41st St S" + }, + { + "id": "46813d2e-b120-4f43-8957-5e8dfadc603f", + "name": "Axe And Arrow Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Glassboro", + "state_province": "New Jersey", + "postal_code": "08028", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New Jersey", + "street": null + }, + { + "id": "f42d1652-6001-490f-ad55-ed573c47c38d", + "name": "Axle Brewing Company", + "brewery_type": "micro", + "address_1": "567 Livernois St", + "address_2": null, + "address_3": null, + "city": "Ferndale", + "state_province": "Michigan", + "postal_code": "48220-2303", + "country": "United States", + "longitude": -83.1428144, + "latitude": 42.4508021, + "phone": "2486137002", + "website_url": "http://www.axlebrewing.com", + "state": "Michigan", + "street": "567 Livernois St" + }, + { + "id": "796874cf-6c73-4946-9459-e4cc044c8f39", + "name": "Aztec Brewing Company", + "brewery_type": "micro", + "address_1": "2330 La Mirada Dr Ste 300", + "address_2": null, + "address_3": null, + "city": "Vista", + "state_province": "California", + "postal_code": "92081-7871", + "country": "United States", + "longitude": -117.2297606, + "latitude": 33.14984395, + "phone": "7605987720", + "website_url": "http://www.aztecbrewery.com", + "state": "California", + "street": "2330 La Mirada Dr Ste 300" + }, + { + "id": "483efb3e-05aa-43b5-a283-40414b6b47dc", + "name": "B and J's Handcrafted Texas Ales", + "brewery_type": "micro", + "address_1": "6335 S Padre Island Dr", + "address_2": null, + "address_3": null, + "city": "Corpus Christi", + "state_province": "Texas", + "postal_code": "78412-4013", + "country": "United States", + "longitude": -97.2962784, + "latitude": 27.6749936, + "phone": "3619926671", + "website_url": "http://pizzaandbrew@aol.com", + "state": "Texas", + "street": "6335 S Padre Island Dr" + }, + { + "id": "e5cae8be-4cfa-40da-bf78-ffd3ad7cba35", + "name": "B Chord Brewing Company", + "brewery_type": "micro", + "address_1": "34266 Williams Gap Rd", + "address_2": null, + "address_3": null, + "city": "Round Hill", + "state_province": "Virginia", + "postal_code": "20141-2100", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7036234542", + "website_url": "http://www.bchordbrewing.com", + "state": "Virginia", + "street": "34266 Williams Gap Rd" + }, + { + "id": "8f4aa88c-e9cb-4932-9245-a2230ec59b63", + "name": "B-52 Brewing", + "brewery_type": "micro", + "address_1": "12470 Milroy Ln", + "address_2": null, + "address_3": null, + "city": "Conroe", + "state_province": "Texas", + "postal_code": "77304-5160", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9364474677", + "website_url": "http://www.b52brewing.com", + "state": "Texas", + "street": "12470 Milroy Ln" + }, + { + "id": "80263b86-dfa6-46dd-86cd-3440a13d5015", + "name": "B-CS Zoigl Brewery", + "brewery_type": "micro", + "address_1": " 211-C W William Joel Bryan Pkwy", + "address_2": null, + "address_3": null, + "city": "Bryan", + "state_province": "Texas", + "postal_code": "77803-3225", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2819353018", + "website_url": "http://www.bcs-zoigl.com", + "state": "Texas", + "street": " 211-C W William Joel Bryan Pkwy" + }, + { + "id": "6918f40b-ab41-4fd8-bea0-ae8a5ce5664a", + "name": "B.C. Brewery", + "brewery_type": "micro", + "address_1": "10950 Gilroy Rd Ste F", + "address_2": null, + "address_3": null, + "city": "Hunt Valley", + "state_province": "Maryland", + "postal_code": "21031-1327", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4433913847", + "website_url": "http://www.bcbrewerymd.com", + "state": "Maryland", + "street": "10950 Gilroy Rd Ste F" + }, + { + "id": "22d43b9c-e8ba-412b-bb36-da1fc749fe80", + "name": "B.O.B's Brewery", + "brewery_type": "brewpub", + "address_1": "20 Monroe Ave NW", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49503-6208", + "country": "United States", + "longitude": -85.67248446, + "latitude": 42.9638257, + "phone": "6163562000", + "website_url": "http://thebobsbrewery.thebob.com", + "state": "Michigan", + "street": "20 Monroe Ave NW" + }, + { + "id": "03df12a0-f2ff-4c37-b862-e6df31123b74", + "name": "B9 Beverages Inc", + "brewery_type": "contract", + "address_1": "404 5th Ave # 7.055", + "address_2": null, + "address_3": null, + "city": "New York", + "state_province": "New York", + "postal_code": "10018-2797", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New York", + "street": "404 5th Ave # 7.055" + }, + { + "id": "c916c0c3-be83-4d5a-b2de-c58fc9faa206", + "name": "Baa Baa Brewhouse", + "brewery_type": "micro", + "address_1": "539 FM 359 Rd S", + "address_2": null, + "address_3": null, + "city": "Brookshire", + "state_province": "Texas", + "postal_code": "77423-8013", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2819341847", + "website_url": "http://www.baabaabrewhouse.com", + "state": "Texas", + "street": "539 FM 359 Rd S" + }, + { + "id": "569b794f-4e15-446c-b249-9699e8687d40", + "name": "Babe's Bar-B-Que and Brewhouse", + "brewery_type": "brewpub", + "address_1": "71800 Highway 111 Ste A176", + "address_2": null, + "address_3": null, + "city": "Rancho Mirage", + "state_province": "California", + "postal_code": "92270-4495", + "country": "United States", + "longitude": -116.4110483, + "latitude": 33.74096746, + "phone": "7603468738", + "website_url": "https://www.babesbbqbrewery.com/", + "state": "California", + "street": "71800 Highway 111 Ste A176" + }, + { + "id": "418c8bd5-997f-47f5-8147-a8a243517634", + "name": "Bacchus Brewing", + "brewery_type": "micro", + "address_1": "15 Ellis Dr", + "address_2": null, + "address_3": null, + "city": "Dryden", + "state_province": "New York", + "postal_code": "13053-9630", + "country": "United States", + "longitude": -76.29904171, + "latitude": 42.49966971, + "phone": "6078448474", + "website_url": "http://www.bacchusbrewing.com", + "state": "New York", + "street": "15 Ellis Dr" + }, + { + "id": "d6f0a382-0e7e-4455-a81a-5bc1b9f2b22c", + "name": "Bacchus Brewing Co", + "brewery_type": "micro", + "address_1": "2 Christine Place", + "address_2": "1", + "address_3": null, + "city": "Capalaba", + "state_province": "QLD", + "postal_code": "4157", + "country": "Australia", + "longitude": 153.2047977, + "latitude": -27.5311667, + "phone": "+61 7 3823 2828", + "website_url": "http://www.bacchusbrewing.com.au/", + "state": "QLD", + "street": "2 Christine Place" + }, + { + "id": "89028aa2-3ecf-446b-89c0-5ef641e1bd50", + "name": "Back Alley Brewing Co", + "brewery_type": "micro", + "address_1": "211 S Main St", + "address_2": null, + "address_3": null, + "city": "Goshen", + "state_province": "Indiana", + "postal_code": "46526-3722", + "country": "United States", + "longitude": -85.83457862, + "latitude": 41.58461971, + "phone": "5743704049", + "website_url": null, + "state": "Indiana", + "street": "211 S Main St" + }, + { + "id": "2c260790-18be-4c9d-88da-4334c5cf151e", + "name": "Back Bay Brewing Company", + "brewery_type": "micro", + "address_1": "614 Norfolk Ave", + "address_2": null, + "address_3": null, + "city": "Virginia Beach", + "state_province": "Virginia", + "postal_code": "23451-4419", + "country": "United States", + "longitude": -75.97974414, + "latitude": 36.83778371, + "phone": "7575317750", + "website_url": "http://www.backbaybrewingco.com", + "state": "Virginia", + "street": "614 Norfolk Ave" + }, + { + "id": "cb595c72-e65b-444e-83a6-9d07d731e2b6", + "name": "Back Channel Brewing", + "brewery_type": "micro", + "address_1": "4787 Shoreline Dr", + "address_2": null, + "address_3": null, + "city": "Spring Park", + "state_province": "Minnesota", + "postal_code": "55384-9713", + "country": "United States", + "longitude": -93.64430718, + "latitude": 44.93673794, + "phone": "9528559315", + "website_url": "https://www.backchannelbrewing.com", + "state": "Minnesota", + "street": "4787 Shoreline Dr" + }, + { + "id": "e6df4e9e-1833-49b0-90e5-69c565c5da83", + "name": "Back Creek Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Annapolis", + "state_province": "Maryland", + "postal_code": "21401-4019", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4103206904", + "website_url": "http://www.backcreekbrewing.com", + "state": "Maryland", + "street": null + }, + { + "id": "fc54b886-6305-4dc2-8511-a8b9049297e6", + "name": "Back East Brewing", + "brewery_type": "micro", + "address_1": "1296 Blue Hills Ave Ste A", + "address_2": null, + "address_3": null, + "city": "Bloomfield", + "state_province": "Connecticut", + "postal_code": "06002-5312", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8602421793", + "website_url": "https://www.backeastbrewing.com", + "state": "Connecticut", + "street": "1296 Blue Hills Ave Ste A" + }, + { + "id": "3564fec6-6f87-45cd-88a7-94063757ce94", + "name": "Back Forty Beer Co", + "brewery_type": "micro", + "address_1": "200 N 6th St", + "address_2": null, + "address_3": null, + "city": "Gadsden", + "state_province": "Alabama", + "postal_code": "35901-3361", + "country": "United States", + "longitude": -86.005006, + "latitude": 34.016888, + "phone": "2564674912", + "website_url": "http://www.backfortybeer.com", + "state": "Alabama", + "street": "200 N 6th St" + }, + { + "id": "6a5579c9-66ee-414f-9a01-fe627b6cf309", + "name": "Back Hill Beer Company", + "brewery_type": "brewpub", + "address_1": "73 Pickering Rd", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "New Hampshire", + "postal_code": "03839", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New Hampshire", + "street": "73 Pickering Rd" + }, + { + "id": "d53226dc-b8b1-494c-85f5-1c97ba255947", + "name": "Back Pedal Brewing Company", + "brewery_type": "micro", + "address_1": "1425 NW Flanders St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97209-2620", + "country": "United States", + "longitude": -122.6856562, + "latitude": 45.52597595, + "phone": "9714005950", + "website_url": "http://backpedalbrewing.com", + "state": "Oregon", + "street": "1425 NW Flanders St" + }, + { + "id": "38c59264-ac19-4b4a-bada-cab729f71d57", + "name": "Back Pew Brewing", + "brewery_type": "micro", + "address_1": "26452 Sorters Rd", + "address_2": null, + "address_3": null, + "city": "Porter", + "state_province": "Texas", + "postal_code": "77365-4752", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2816087526", + "website_url": "http://www.backpewbrewing.com", + "state": "Texas", + "street": "26452 Sorters Rd" + }, + { + "id": "df9da06e-0ead-498f-ae26-3c5f783292c9", + "name": "Back Road Brewery", + "brewery_type": "micro", + "address_1": "308 Perry St", + "address_2": null, + "address_3": null, + "city": "La Porte", + "state_province": "Indiana", + "postal_code": "46350-3216", + "country": "United States", + "longitude": -86.72649137, + "latitude": 41.6118882, + "phone": "2193627623", + "website_url": "http://www.backroadbrewery.com", + "state": "Indiana", + "street": "308 Perry St" + }, + { + "id": "dde5cb42-9ee5-44bf-ae05-b51d8e0986e1", + "name": "Back Street Brewery & Tasting Room", + "brewery_type": "micro", + "address_1": "1884 S Santa Cruz St", + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92805-6726", + "country": "United States", + "longitude": -117.8960894, + "latitude": 33.79983678, + "phone": "6572364050", + "website_url": "http://www.backstreetbrew.com", + "state": "California", + "street": "1884 S Santa Cruz St" + }, + { + "id": "e932c001-d68a-4dc8-8eef-b4311b9399ad", + "name": "Back Unturned Brewing Co.", + "brewery_type": "micro", + "address_1": "516 Brooklyn Ave", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78215", + "country": "United States", + "longitude": -98.4867139, + "latitude": 29.4330983, + "phone": "210-25-0022", + "website_url": "http://www.backunturned.com/", + "state": "Texas", + "street": "516 Brooklyn Ave" + }, + { + "id": "b48ce764-abf5-41cb-b9c5-93cf4fdc6b57", + "name": "Backacre Beermakers", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Weston", + "state_province": "Vermont", + "postal_code": "05161", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.backacrebeermakers.com", + "state": "Vermont", + "street": null + }, + { + "id": "b83daf92-6347-44b0-91df-8fec02c2a22c", + "name": "Backcountry Brewing", + "brewery_type": "micro", + "address_1": "3250 Mecca Dr", + "address_2": null, + "address_3": null, + "city": "Plover", + "state_province": "Wisconsin", + "postal_code": "54467", + "country": "United States", + "longitude": -89.5413643, + "latitude": 44.3304949, + "phone": "7155729400", + "website_url": "https://www.backcountrybrewingco.com", + "state": "Wisconsin", + "street": "3250 Mecca Dr" + }, + { + "id": "092efaaf-02ab-4ac6-a9c3-6269af54ddeb", + "name": "Backlash Beer Co", + "brewery_type": "contract", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Boston", + "state_province": "Massachusetts", + "postal_code": "02215", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://backlashbeer.com/", + "state": "Massachusetts", + "street": null + }, + { + "id": "f0ca51bb-ad85-4dca-bd03-eefeb99f1184", + "name": "Backman Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Whitehouse Station", + "state_province": "New Jersey", + "postal_code": "08889-3562", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://backmanbrewing.com", + "state": "New Jersey", + "street": null + }, + { + "id": "d4c25fef-5c3e-423e-831b-599cc328424c", + "name": "Backpocket Brewing Co", + "brewery_type": "micro", + "address_1": "903 Quarry Rd", + "address_2": null, + "address_3": null, + "city": "Coralville", + "state_province": "Iowa", + "postal_code": "52241-2208", + "country": "United States", + "longitude": -91.55981337, + "latitude": 41.68139484, + "phone": "3194493700", + "website_url": "http://www.backpocketbrewing.com", + "state": "Iowa", + "street": "903 Quarry Rd" + }, + { + "id": "a2cdb369-d869-4f9a-9d80-7a5d2becd096", + "name": "BackRoad Brewery", + "brewery_type": "micro", + "address_1": "90 School St", + "address_2": null, + "address_3": null, + "city": "Carlisle", + "state_province": "Iowa", + "postal_code": "50047", + "country": "United States", + "longitude": -93.48531767, + "latitude": 41.498501, + "phone": "5152102096", + "website_url": "http://www.backroadbeer.com", + "state": "Iowa", + "street": "90 School St" + }, + { + "id": "933637d8-72b2-4812-8795-48c3da52f206", + "name": "Backroom Brewery", + "brewery_type": "brewpub", + "address_1": "150 Ridgemont Rd", + "address_2": null, + "address_3": null, + "city": "Middletown", + "state_province": "Virginia", + "postal_code": "22645-3817", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5408698482", + "website_url": "http://www.backroombreweryva.com", + "state": "Virginia", + "street": "150 Ridgemont Rd" + }, + { + "id": "b617c420-3a48-41f3-a529-68dccd1e253f", + "name": "Backshore Brewing Co.", + "brewery_type": "brewpub", + "address_1": "913 Atlantic Ave", + "address_2": null, + "address_3": null, + "city": "Ocean City", + "state_province": "Maryland", + "postal_code": "21842-6689", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4102890008", + "website_url": "http://www.BackshoreBrew.com", + "state": "Maryland", + "street": "913 Atlantic Ave" + }, + { + "id": "9ae1ef58-7652-40a7-9abc-7900a57109a8", + "name": "Backside Brewing Co", + "brewery_type": "brewpub", + "address_1": "1640 NE Odell Ave", + "address_2": null, + "address_3": null, + "city": "Roseburg", + "state_province": "Oregon", + "postal_code": "97470-3320", + "country": "United States", + "longitude": -123.3377881, + "latitude": 43.21449839, + "phone": "5415801906", + "website_url": "http://www.backsidebrewingco.com", + "state": "Oregon", + "street": "1640 NE Odell Ave" + }, + { + "id": "b6685b52-d4f2-4b41-a3d9-f88c778b2346", + "name": "Backslope Brewing", + "brewery_type": "brewpub", + "address_1": "1107 9th St W (Highway 2)", + "address_2": null, + "address_3": null, + "city": "Columbia Falls", + "state_province": "Montana", + "postal_code": "59912", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4062242510", + "website_url": "http://www.backslopebrewing.com", + "state": "Montana", + "street": "1107 9th St W (Highway 2)" + }, + { + "id": "270cf75d-5742-44bb-b795-6300d8429cc1", + "name": "Backspace Brewing", + "brewery_type": "micro", + "address_1": "200 Walnut St", + "address_2": null, + "address_3": null, + "city": "Yankton", + "state_province": "South Dakota", + "postal_code": "57078-4343", + "country": "United States", + "longitude": -97.393642, + "latitude": 42.86878841, + "phone": "4026508158", + "website_url": "http://www.backspacebeer.com", + "state": "South Dakota", + "street": "200 Walnut St" + }, + { + "id": "ecc118fd-aee9-4e81-bcda-8ab049b2f6f3", + "name": "Backstep Brewing Company", + "brewery_type": "micro", + "address_1": "125 N Green St", + "address_2": null, + "address_3": null, + "city": "Crawfordsville", + "state_province": "Indiana", + "postal_code": "47933-1708", + "country": "United States", + "longitude": -86.89998607, + "latitude": 40.04207712, + "phone": "7652302337", + "website_url": "http://www.backstepbrewingcompany.com", + "state": "Indiana", + "street": "125 N Green St" + }, + { + "id": "9618d4a8-2e33-4025-888d-ecbc0da2a8a5", + "name": "BackStory Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sulphur Springs", + "state_province": "Texas", + "postal_code": "75482-2772", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "08d2efda-af3e-4611-b8c6-d5c46af4c7a6", + "name": "Backswing Brewing Co.", + "brewery_type": "micro", + "address_1": "500 W South St Ste 8", + "address_2": null, + "address_3": null, + "city": "Lincoln", + "state_province": "Nebraska", + "postal_code": "68522-1744", + "country": "United States", + "longitude": -96.7274091, + "latitude": 40.7922193, + "phone": "4024135576", + "website_url": "http://www.backswingbrewing.com", + "state": "Nebraska", + "street": "500 W South St Ste 8" + }, + { + "id": "55582f56-7b20-499a-875a-8457e8715a1c", + "name": "Backward Flag Brewing", + "brewery_type": "micro", + "address_1": "699 Challenger Way Ste D5", + "address_2": null, + "address_3": null, + "city": "Forked River", + "state_province": "New Jersey", + "postal_code": "08731-5917", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.backwardflagbrewing.com", + "state": "New Jersey", + "street": "699 Challenger Way Ste D5" + }, + { + "id": "707a470e-266d-4ca9-bb9f-031e8cf28de6", + "name": "Backwoods Brewing Company - Production Only", + "brewery_type": "micro", + "address_1": "1162 B Wind River Hwy", + "address_2": null, + "address_3": null, + "city": "Carson", + "state_province": "Washington", + "postal_code": "98610", + "country": "United States", + "longitude": -121.8203754, + "latitude": 45.72872253, + "phone": "5094273412", + "website_url": "http://www.backwoodsbrewingcompany.com", + "state": "Washington", + "street": "1162 B Wind River Hwy" + }, + { + "id": "f5d7bfda-bce0-46f5-8626-74e14371a85b", + "name": "Backwoods in the Gorge", + "brewery_type": "micro", + "address_1": "1162 Wind River Hwy", + "address_2": null, + "address_3": null, + "city": "Carson", + "state_province": "Washington", + "postal_code": "98610", + "country": "United States", + "longitude": -121.8203754, + "latitude": 45.72872253, + "phone": "5094273412", + "website_url": "http://www.backwoodsbrewingcompany.com", + "state": "Washington", + "street": "1162 Wind River Hwy" + }, + { + "id": "1d5ac885-33a0-4bed-971b-dfb24772eb0b", + "name": "Backyard Barn Winery and Microbrewery", + "brewery_type": "micro", + "address_1": "1945 E County Road 462", + "address_2": null, + "address_3": null, + "city": "Wildwood", + "state_province": "Florida", + "postal_code": "34785-8594", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3524187887", + "website_url": "http://www.backyardbardwinery.com", + "state": "Florida", + "street": "1945 E County Road 462" + }, + { + "id": "be52e354-8456-4703-88d0-f33cfa777e6b", + "name": "Backyard Brewery", + "brewery_type": "brewpub", + "address_1": "1211 S Mammoth Rd", + "address_2": null, + "address_3": null, + "city": "Manchester", + "state_province": "New Hampshire", + "postal_code": "03109-5101", + "country": "United States", + "longitude": -71.4134598, + "latitude": 42.93534925, + "phone": "6036233545", + "website_url": "http://www.backyardbrewerynh.com", + "state": "New Hampshire", + "street": "1211 S Mammoth Rd" + }, + { + "id": "c7215e3b-5320-4ef4-a4ad-73ab42a39603", + "name": "Bad Beat Brewing", + "brewery_type": "micro", + "address_1": "7380 Eastgate Rd Ste 110", + "address_2": null, + "address_3": null, + "city": "Henderson", + "state_province": "Nevada", + "postal_code": "89011-4012", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7024634199", + "website_url": "http://www.badbeatbrewing.com", + "state": "Nevada", + "street": "7380 Eastgate Rd Ste 110" + }, + { + "id": "cec378ba-bb45-4988-a654-30e6d3f1a3fd", + "name": "BAD Brewing Co", + "brewery_type": "micro", + "address_1": "440 S Jefferson St", + "address_2": null, + "address_3": null, + "city": "Mason", + "state_province": "Michigan", + "postal_code": "48854-1654", + "country": "United States", + "longitude": -84.4433383, + "latitude": 42.5786176, + "phone": "5176767664", + "website_url": "http://www.badbrewing.com", + "state": "Michigan", + "street": "440 S Jefferson St" + }, + { + "id": "d493c084-8f5c-4e04-994b-ddc55fcd3959", + "name": "Bad Bulldogs Brewery", + "brewery_type": "closed", + "address_1": "941 N Callow Ave", + "address_2": null, + "address_3": null, + "city": "Bremerton", + "state_province": "Washington", + "postal_code": "98312", + "country": "United States", + "longitude": -122.6533736, + "latitude": 47.56963921, + "phone": "3606278079", + "website_url": null, + "state": "Washington", + "street": "941 N Callow Ave" + }, + { + "id": "38863255-70b3-4201-bfd0-b4b0dab818d2", + "name": "Bad Dad Brewery", + "brewery_type": "micro", + "address_1": "407 W. Washington St. Ste. C", + "address_2": null, + "address_3": null, + "city": "Fairmount", + "state_province": "Indiana", + "postal_code": "46928", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7654990941", + "website_url": "http://www.baddadbrewery.com", + "state": "Indiana", + "street": "407 W. Washington St. Ste. C" + }, + { + "id": "c1496ab2-788d-454c-b205-9e852e54f682", + "name": "Bad Habit Brewing Company", + "brewery_type": "micro", + "address_1": "15 E Minnesota St Ste 108", + "address_2": null, + "address_3": null, + "city": "Saint Joseph", + "state_province": "Minnesota", + "postal_code": "56374-4691", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3204024442", + "website_url": "http://www.badhabitbeer.com", + "state": "Minnesota", + "street": "15 E Minnesota St Ste 108" + }, + { + "id": "80ed402e-9340-4b10-a478-3d8ed0af93b5", + "name": "Bad Idea Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Spring Hill", + "state_province": "Tennessee", + "postal_code": "37174-2895", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.badideabrewing.com", + "state": "Tennessee", + "street": null + }, + { + "id": "bbda5eb0-95cd-4b87-88ac-7b0e2bd01c48", + "name": "Bad Jimmy's Brewing Co", + "brewery_type": "closed", + "address_1": "4358B Leary Way NW", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98107-4554", + "country": "United States", + "longitude": -122.3653569, + "latitude": 47.66133224, + "phone": "2067891548", + "website_url": "http://www.badjimmysbrewingco.com", + "state": "Washington", + "street": "4358B Leary Way NW" + }, + { + "id": "0efdefd9-f325-479d-a0e7-dc9bf50b35e4", + "name": "Bad Joker Brewing Company", + "brewery_type": "micro", + "address_1": "830 Powerhouse Dr", + "address_2": null, + "address_3": null, + "city": "Rock Springs", + "state_province": "Wyoming", + "postal_code": "82901-5494", + "country": "United States", + "longitude": -109.20665402714, + "latitude": 41.59874122433, + "phone": "3075225824", + "website_url": "https://bad-joker-brewing-company.business.site", + "state": "Wyoming", + "street": "830 Powerhouse Dr" + }, + { + "id": "7ecfcf55-8bc1-4744-9a2c-7feaa99290b0", + "name": "Bad Lab Beer Co.", + "brewery_type": "closed", + "address_1": "460 High St", + "address_2": null, + "address_3": null, + "city": "Somersworth", + "state_province": "New Hampshire", + "postal_code": "03878-1012", + "country": "United States", + "longitude": -70.88353777, + "latitude": 43.22651432, + "phone": "6033192436", + "website_url": "http://www.badlabbeer.com", + "state": "New Hampshire", + "street": "460 High St" + }, + { + "id": "007b572b-cb61-478b-aa08-2966a1a028d5", + "name": "Bad Martha Farmer's Brewery", + "brewery_type": "brewpub", + "address_1": "270 Upper Main St", + "address_2": null, + "address_3": null, + "city": "Edgartown", + "state_province": "Massachusetts", + "postal_code": "02539-", + "country": "United States", + "longitude": -70.52732, + "latitude": 41.394402, + "phone": "5089394415", + "website_url": "http://www.badmarthabeer.com", + "state": "Massachusetts", + "street": "270 Upper Main St" + }, + { + "id": "7e470330-e32a-42aa-8d9b-db15529b8faa", + "name": "Bad Shepherd Beer Company", + "brewery_type": "brewpub", + "address_1": "702 Quarrier St", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "West Virginia", + "postal_code": "25301-2627", + "country": "United States", + "longitude": -81.63612015, + "latitude": 38.35094943, + "phone": "3045527569", + "website_url": "http://www.blacksheepwv.com", + "state": "West Virginia", + "street": "702 Quarrier St" + }, + { + "id": "9a296fcc-818b-4f73-88a4-a47dadc53a39", + "name": "Bad Shepherd Brewing Co", + "brewery_type": "micro", + "address_1": "386 Reserve Road", + "address_2": null, + "address_3": null, + "city": "Cheltenham", + "state_province": "VIC", + "postal_code": "3192", + "country": "Australia", + "longitude": 145.0390473, + "latitude": -37.9566857, + "phone": "+61 3 8555 3175", + "website_url": "http://www.badshepherd.com.au/", + "state": "VIC", + "street": "386 Reserve Road" + }, + { + "id": "7d84d498-dd3a-40ac-b920-5ec914defc24", + "name": "Bad Shepherd Brewing Co.", + "brewery_type": "micro", + "address_1": "386 Reserve Road", + "address_2": null, + "address_3": null, + "city": "Cheltenham", + "state_province": "VIC", + "postal_code": "3192", + "country": "Australia", + "longitude": 145.0390473, + "latitude": -37.9566857, + "phone": "+61 3 8555 3175", + "website_url": "http://www.badshepherd.com.au/", + "state": "VIC", + "street": "386 Reserve Road" + }, + { + "id": "ccb3350f-eade-47d0-8fa7-351d20ead048", + "name": "Bad Tom Smith Brewing", + "brewery_type": "micro", + "address_1": "4720 Eastern Ave", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45226-1893", + "country": "United States", + "longitude": -84.41803086, + "latitude": 39.11995755, + "phone": "5138714677", + "website_url": "http://www.badtomsmithbrewing.com", + "state": "Ohio", + "street": "4720 Eastern Ave" + }, + { + "id": "1630747e-8c36-4a34-9531-02d6b5ac2a28", + "name": "Bad Tom Smith Brewing", + "brewery_type": "brewpub", + "address_1": "1836 W 25th St", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44113-3142", + "country": "United States", + "longitude": -81.7051638, + "latitude": 41.4861772, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": "1836 W 25th St" + }, + { + "id": "ac773861-5642-46b6-98c5-ad065ee9b4df", + "name": "Bad Water Brewing", + "brewery_type": "contract", + "address_1": "4216 N Brown Ave", + "address_2": null, + "address_3": null, + "city": "Scottsdale", + "state_province": "Arizona", + "postal_code": "85251-3914", + "country": "United States", + "longitude": -111.9244743, + "latitude": 33.49726157, + "phone": "5207459175", + "website_url": "http://www.badwaterbrewing.com", + "state": "Arizona", + "street": "4216 N Brown Ave" + }, + { + "id": "6f9649a1-b449-4542-8f23-837bec41f649", + "name": "Bad Weather Brewing LLC", + "brewery_type": "micro", + "address_1": "414 7th St W", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55102-2733", + "country": "United States", + "longitude": -93.1655001, + "latitude": 44.9040455, + "phone": "6512076627", + "website_url": "http://www.badweatherbrewery.com", + "state": "Minnesota", + "street": "414 7th St W" + }, + { + "id": "1937d9f8-9bc7-4a32-b04c-642879b8aa00", + "name": "Badass Backyard Brewing", + "brewery_type": "micro", + "address_1": "1415 N Argonne Rd", + "address_2": null, + "address_3": null, + "city": "Spokane Valley", + "state_province": "Washington", + "postal_code": "99212-2685", + "country": "United States", + "longitude": -117.282919, + "latitude": 47.66990394, + "phone": "5092423225", + "website_url": "http://badassbackyardbrewing.com", + "state": "Washington", + "street": "1415 N Argonne Rd" + }, + { + "id": "cdc43a52-ef7a-4907-bb8e-300416c03f01", + "name": "Badass Brews", + "brewery_type": "taproom", + "address_1": "98 N 1st E St", + "address_2": null, + "address_3": null, + "city": "Green River", + "state_province": "Wyoming", + "postal_code": "82935-4216", + "country": "United States", + "longitude": -109.46636513206, + "latitude": 41.528514045356, + "phone": "13078716737", + "website_url": "https://www.facebook.com/profile.php?id=100088288374921&mibextid=hIlR13", + "state": "Wyoming", + "street": "98 N 1st E St" + }, + { + "id": "d85636df-f559-4277-ab0c-c3ddf3853c4e", + "name": "Badger Hill Brewing", + "brewery_type": "micro", + "address_1": "4571 Valley Industrial Blvd S Ste 500", + "address_2": null, + "address_3": null, + "city": "Shakopee", + "state_province": "Minnesota", + "postal_code": "55379-1846", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6123884479", + "website_url": "http://www.badgerhillbrewing.com", + "state": "Minnesota", + "street": "4571 Valley Industrial Blvd S Ste 500" + }, + { + "id": "4f49473d-22aa-4f44-b69c-2d7f95d76abd", + "name": "Badger Mountain Brewing", + "brewery_type": "closed", + "address_1": "1 Orondo Ave", + "address_2": null, + "address_3": null, + "city": "Wenatchee", + "state_province": "Washington", + "postal_code": "98801-2206", + "country": "United States", + "longitude": -120.309353, + "latitude": 47.423747, + "phone": "5098882234", + "website_url": "http://www.badgermountainbrewing.com", + "state": "Washington", + "street": "1 Orondo Ave" + }, + { + "id": "71857398-4e1c-4540-9ddb-36388193c880", + "name": "Badger State Brewing Company", + "brewery_type": "micro", + "address_1": "990 Tony Canadeo Run", + "address_2": null, + "address_3": null, + "city": "Green Bay", + "state_province": "Wisconsin", + "postal_code": "54304-3762", + "country": "United States", + "longitude": -88.05136473, + "latitude": 44.49669718, + "phone": "9205435320", + "website_url": "http://www.badgerstatebrewing.com", + "state": "Wisconsin", + "street": "990 Tony Canadeo Run" + }, + { + "id": "f0507649-6549-42d8-b8d7-c11e17ece27f", + "name": "Badlands Brewery", + "brewery_type": "micro", + "address_1": "153 Summer Street", + "address_2": null, + "address_3": null, + "city": "Orange", + "state_province": "NSW", + "postal_code": "2800", + "country": "Australia", + "longitude": 149.0974307, + "latitude": -33.2825557, + "phone": "+61 421 455 325", + "website_url": "https://www.badlandsbrewery.com.au/", + "state": "NSW", + "street": "153 Summer Street" + }, + { + "id": "393816b0-7f91-450d-b65a-7f99f5cc8ae7", + "name": "BADSONS Beer Co", + "brewery_type": "micro", + "address_1": "251 Roosevelt Dr", + "address_2": null, + "address_3": null, + "city": "Derby", + "state_province": "Connecticut", + "postal_code": "06418-1665", + "country": "United States", + "longitude": -73.1322771, + "latitude": 41.3513647, + "phone": "2033082654", + "website_url": "http://www.badsoons.com", + "state": "Connecticut", + "street": "251 Roosevelt Dr" + }, + { + "id": "c4459528-06a6-4f7b-a4a4-be62a1fbd420", + "name": "BadWolf Brewing Company", + "brewery_type": "micro", + "address_1": "8420 Kao Cir", + "address_2": null, + "address_3": null, + "city": "Manassas", + "state_province": "Virginia", + "postal_code": "20110-1728", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7034792305", + "website_url": "http://www.badwolfbrewingcompany.com", + "state": "Virginia", + "street": "8420 Kao Cir" + }, + { + "id": "d42aade0-cd64-4ce2-a79d-4360413d3955", + "name": "BadWolf Brewing Company", + "brewery_type": "micro", + "address_1": "9776 Center St", + "address_2": null, + "address_3": null, + "city": "Manassas", + "state_province": "Virginia", + "postal_code": "20110-4128", + "country": "United States", + "longitude": -77.48972051, + "latitude": 38.75356183, + "phone": "5713589774", + "website_url": "http://www.badwolfbrewingcompany.com", + "state": "Virginia", + "street": "9776 Center St" + }, + { + "id": "e25d20e1-1700-45a6-b236-9eb6d01a9434", + "name": "Baere Brewing Company", + "brewery_type": "micro", + "address_1": "320 Broadway, Unit E", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80203-3955", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9709014810", + "website_url": "http://www.baerebrewing.com", + "state": "Colorado", + "street": "320 Broadway, Unit E" + }, + { + "id": "10ad1074-00f1-4731-9154-878dafcb58a9", + "name": "Baerlic Brewing Co", + "brewery_type": "micro", + "address_1": "2235 SE 11th Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97214-5303", + "country": "United States", + "longitude": -122.6550828, + "latitude": 45.50680595, + "phone": "5034779418", + "website_url": "http://www.baerlicbrewing.com", + "state": "Oregon", + "street": "2235 SE 11th Ave" + }, + { + "id": "a79c77fa-dd4c-4e3f-bf34-c50ae8032f5c", + "name": "Baffin Brewing Co", + "brewery_type": "micro", + "address_1": "25113 Jefferson Ave", + "address_2": null, + "address_3": null, + "city": "Saint Clair Shores", + "state_province": "Michigan", + "postal_code": "48081-2303", + "country": "United States", + "longitude": -82.888964, + "latitude": 42.472227, + "phone": "5862187990", + "website_url": "http://baffinbrewing.com", + "state": "Michigan", + "street": "25113 Jefferson Ave" + }, + { + "id": "62c3eba7-bba3-4ab5-aa14-9b049415c3df", + "name": "Bag and Kettle, The", + "brewery_type": "brewpub", + "address_1": "9000 Main St Apt 21", + "address_2": null, + "address_3": null, + "city": "Carrabassett Valley", + "state_province": "Maine", + "postal_code": "04947-6808", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2072372451", + "website_url": "http://www.thebagandkettle.com", + "state": "Maine", + "street": "9000 Main St Apt 21" + }, + { + "id": "f167edfa-21ec-466a-89dd-b78ef6037c55", + "name": "Bagby Beer Company", + "brewery_type": "brewpub", + "address_1": "601 S Coast Hwy", + "address_2": null, + "address_3": null, + "city": "Oceanside", + "state_province": "California", + "postal_code": "92054-4120", + "country": "United States", + "longitude": -117.373847, + "latitude": 33.189591, + "phone": "7602709075", + "website_url": "http://www.bagbybeer.com", + "state": "California", + "street": "601 S Coast Hwy" + }, + { + "id": "a715d721-e382-45e3-a035-18edf1dee861", + "name": "Baileson Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "2322 Bissonnet St", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77005-1512", + "country": "United States", + "longitude": -95.41337465, + "latitude": 29.72562404, + "phone": "8325169828", + "website_url": "http://www.bailesonbrewing.com", + "state": "Texas", + "street": "2322 Bissonnet St" + }, + { + "id": "967cebda-71cb-487d-b4b9-c0640cfa3664", + "name": "Bailey Brewing Co.", + "brewery_type": "micro", + "address_1": "Park Street", + "address_2": null, + "address_3": null, + "city": "Henley Brook", + "state_province": "WA", + "postal_code": "6055", + "country": "Australia", + "longitude": 115.9994362, + "latitude": -31.8129741, + "phone": "+61 8 6192 1830", + "website_url": "https://www.baileybrewingco.com.au/", + "state": "WA", + "street": "Park Street" + }, + { + "id": "fcd34248-fb3f-410e-9550-31f71e91764f", + "name": "Bainbridge Brewing", + "brewery_type": "micro", + "address_1": "9415 Coppertop Loop NE Ste 104", + "address_2": null, + "address_3": null, + "city": "Bainbridge Island", + "state_province": "Washington", + "postal_code": "98110-3339", + "country": "United States", + "longitude": -122.5251446, + "latitude": 47.64937373, + "phone": "2064514646", + "website_url": "http://www.bainbridgebeer.com", + "state": "Washington", + "street": "9415 Coppertop Loop NE Ste 104" + }, + { + "id": "f08b4937-45cd-45cc-bd0f-93d84f392d86", + "name": "Bainbridge Brewing Alehouse", + "brewery_type": "brewpub", + "address_1": "500 Winslow Way E #110", + "address_2": null, + "address_3": null, + "city": "Bainbridge Island", + "state_province": "Washington", + "postal_code": "98110", + "country": "United States", + "longitude": -122.5145398, + "latitude": 47.62624505, + "phone": "2063176986", + "website_url": "http://www.bainbridgebeer.com", + "state": "Washington", + "street": "500 Winslow Way E #110" + }, + { + "id": "19de43df-8293-4823-b8aa-2dfb285924e8", + "name": "Baithouse Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sandusky", + "state_province": "Ohio", + "postal_code": "44870", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4193665372", + "website_url": "http://www.baithousebrewery.com", + "state": "Ohio", + "street": null + }, + { + "id": "6413df9d-206d-409a-bf5a-405c4db6724e", + "name": "Baker City Brewing Co", + "brewery_type": "micro", + "address_1": "2200 Main Street", + "address_2": null, + "address_3": null, + "city": "Baker City", + "state_province": "Oregon", + "postal_code": "97814", + "country": "United States", + "longitude": -117.8293471, + "latitude": 44.77928865, + "phone": "5415232337", + "website_url": "http://www.barleybrowns.com", + "state": "Oregon", + "street": "2200 Main Street" + }, + { + "id": "2f4107b2-90e6-422e-876b-6578924206bb", + "name": "BAKFISH Brewing Company", + "brewery_type": "micro", + "address_1": "1231 Broadway St", + "address_2": null, + "address_3": null, + "city": "Pearland", + "state_province": "Texas", + "postal_code": "77581-6303", + "country": "United States", + "longitude": -95.4174149, + "latitude": 29.5551351, + "phone": "2819938658", + "website_url": "http://www.bakfishbrewing.com", + "state": "Texas", + "street": "1231 Broadway St" + }, + { + "id": "ca101b8b-4b59-4298-a163-e5559e72358a", + "name": "Bald Man Brewing Company", + "brewery_type": "micro", + "address_1": "2020 Silver Bell Rd Ste 25", + "address_2": null, + "address_3": null, + "city": "Eagan", + "state_province": "Minnesota", + "postal_code": "55122-1030", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6516003164", + "website_url": "http://www.BaldManBrewing.com", + "state": "Minnesota", + "street": "2020 Silver Bell Rd Ste 25" + }, + { + "id": "4c61ceb1-4256-4307-b538-5629a8613208", + "name": "Bald Top Brewing Company", + "brewery_type": "micro", + "address_1": "1830 Thrift Rd", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Virginia", + "postal_code": "22727-2843", + "country": "United States", + "longitude": -78.2625296, + "latitude": 38.3772921, + "phone": "5409991830", + "website_url": "http://www.baldtopbrewing.com", + "state": "Virginia", + "street": "1830 Thrift Rd" + }, + { + "id": "47db24a0-64ed-4311-b59a-7e3b0183ae2b", + "name": "Bale Breaker & Yonder Cider Taproom", + "brewery_type": "taproom", + "address_1": "826 NW 49th St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98107-3614", + "country": "United States", + "longitude": -122.367488, + "latitude": 47.664897, + "phone": "5095577668", + "website_url": "https://www.bbycballard.com/", + "state": "Washington", + "street": "826 NW 49th St" + }, + { + "id": "72b7fb2e-ebb2-4f46-8c85-758c6707d42a", + "name": "Bale Breaker Brewing Company", + "brewery_type": "regional", + "address_1": "1801 Birchfield Rd", + "address_2": null, + "address_3": null, + "city": "Yakima", + "state_province": "Washington", + "postal_code": "98901-9577", + "country": "United States", + "longitude": -120.435573, + "latitude": 46.57685541, + "phone": "5094244000", + "website_url": "http://www.balebreaker.com", + "state": "Washington", + "street": "1801 Birchfield Rd" + }, + { + "id": "9d58821d-291a-4258-82b2-bb7f97f5df63", + "name": "Baleen Brewing Co.", + "brewery_type": "micro", + "address_1": "884 Mizzen Ln #9462", + "address_2": null, + "address_3": null, + "city": "Ketchikan", + "state_province": "Alaska", + "postal_code": "99901", + "country": "United States", + "longitude": -131.817681, + "latitude": 55.472907, + "phone": "9072207492", + "website_url": "https://www.baleenbrewing.com", + "state": "Alaska", + "street": "884 Mizzen Ln #9462" + }, + { + "id": "4cee6968-b00d-4f1f-afd2-d6d54ef9dd89", + "name": "Balgowan Brewery", + "brewery_type": "micro", + "address_1": "Currys Post Road", + "address_2": " off R103", + "address_3": null, + "city": "Balgowan", + "state_province": "KwaZulu-Natal", + "postal_code": "3275", + "country": "South Africa", + "longitude": 30.0135, + "latitude": -29.4217, + "phone": "+27 79 362 5818", + "website_url": null, + "state": "KwaZulu-Natal", + "street": "Currys Post Road" + }, + { + "id": "c879d0a8-e06e-45f7-8479-4c129119af47", + "name": "Ballad Brewing", + "brewery_type": "micro", + "address_1": "600 Craghead St", + "address_2": null, + "address_3": null, + "city": "Danville", + "state_province": "Virginia", + "postal_code": "24541-1504", + "country": "United States", + "longitude": -79.386371, + "latitude": 36.584786, + "phone": "8049250109", + "website_url": "http://www.balladbrewing.com", + "state": "Virginia", + "street": "600 Craghead St" + }, + { + "id": "3c4eab56-1643-4204-ab89-2ce01f6b5bf7", + "name": "Ballast Point Brewing Co / Home Brew Mart", + "brewery_type": "large", + "address_1": "5401 Linda Vista Rd Ste 406", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92110-2402", + "country": "United States", + "longitude": -117.1953344, + "latitude": 32.76692137, + "phone": "6198517681", + "website_url": "http://www.ballastpoint.com", + "state": "California", + "street": "5401 Linda Vista Rd Ste 406" + }, + { + "id": "38871a7b-b304-459b-aa24-282321967048", + "name": "Ballast Point Brewing Company", + "brewery_type": "large", + "address_1": "555 International Pkwy", + "address_2": null, + "address_3": null, + "city": "Daleville", + "state_province": "Virginia", + "postal_code": "24083-3028", + "country": "United States", + "longitude": -79.91380298, + "latitude": 37.43575624, + "phone": "5405913059", + "website_url": null, + "state": "Virginia", + "street": "555 International Pkwy" + }, + { + "id": "1aefb103-ced0-49cb-96c2-b65a2222fb3d", + "name": "Ballast Point Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60607", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Illinois", + "street": null + }, + { + "id": "5794a61e-1fa2-45bd-b317-287ca186b919", + "name": "Ballast Point Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92802-2294", + "country": "United States", + "longitude": -117.911732, + "latitude": 33.8347516, + "phone": null, + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "60076124-a2a2-40e7-9e4f-e73e2429777a", + "name": "Ballast Point Brewing Company", + "brewery_type": "large", + "address_1": "110 N Marina Dr", + "address_2": null, + "address_3": null, + "city": "Long Beach", + "state_province": "California", + "postal_code": "90803-4601", + "country": "United States", + "longitude": -118.114751, + "latitude": 33.7464176, + "phone": "8586952739", + "website_url": "http://www.ballastpoint.com", + "state": "California", + "street": "110 N Marina Dr" + }, + { + "id": "0cbb2117-5968-4d0d-a0fd-9ee7c7f53e31", + "name": "Ballast Point Brewing Company", + "brewery_type": "large", + "address_1": "9045 Carroll Way", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92121-2405", + "country": "United States", + "longitude": -117.1587251, + "latitude": 32.88798083, + "phone": "8586952739", + "website_url": "http://www.ballastpoint.com", + "state": "California", + "street": "9045 Carroll Way" + }, + { + "id": "94fe77de-a7d7-42d4-a076-687e1fdaeec4", + "name": "Ballast Point Brewing Company", + "brewery_type": "large", + "address_1": "7606 Trade St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92121-2405", + "country": "United States", + "longitude": -117.157081, + "latitude": 32.889641, + "phone": "8586952739", + "website_url": null, + "state": "California", + "street": "7606 Trade St" + }, + { + "id": "786c56e4-c533-4181-8aec-ec976a7bde9f", + "name": "Ballast Point Brewing Company - Little Italy", + "brewery_type": "large", + "address_1": "2215 India St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92101-1725", + "country": "United States", + "longitude": -117.169738, + "latitude": 32.727777, + "phone": "6192557213", + "website_url": "http://www.ballastpoint.com", + "state": "California", + "street": "2215 India St" + }, + { + "id": "a0cabad3-837d-40ce-aa0a-dbd689ec216f", + "name": "Ballistic Beer Co", + "brewery_type": "micro", + "address_1": "53-55 McCarthy Road", + "address_2": null, + "address_3": null, + "city": "Salisbury", + "state_province": "QLD", + "postal_code": "4107", + "country": "Australia", + "longitude": 153.0315574, + "latitude": -27.548333, + "phone": "+61 7 3277 6656", + "website_url": "https://ballisticbeer.com/", + "state": "QLD", + "street": "53-55 McCarthy Road" + }, + { + "id": "8a99be33-4ae4-451d-b8e4-01267db1d10d", + "name": "Ballistic Beer Co.", + "brewery_type": "micro", + "address_1": "53-55 McCarthy Road", + "address_2": null, + "address_3": null, + "city": "Salisbury", + "state_province": "QLD", + "postal_code": "4107", + "country": "Australia", + "longitude": 153.0315574, + "latitude": -27.548333, + "phone": "+61 7 3277 6656", + "website_url": "https://ballisticbeer.com/", + "state": "QLD", + "street": "53-55 McCarthy Road" + }, + { + "id": "5598ed95-9b3e-40d4-bfdf-5d22fef4868d", + "name": "Ballito Brewing Company", + "brewery_type": "micro", + "address_1": "8 Coconut Grove", + "address_2": " Shaka's Rock Road", + "address_3": null, + "city": "Ballito", + "state_province": "KwaZulu-Natal", + "postal_code": "4420", + "country": "South Africa", + "longitude": 31.2131, + "latitude": -29.5204, + "phone": "+27 32 946 1902", + "website_url": "https://www.ballitobrewingcompany.co.za/", + "state": "KwaZulu-Natal", + "street": "8 Coconut Grove" + }, + { + "id": "6b42d56c-67bb-47e1-b856-01d87b414a14", + "name": "Ballykilcavan Brewing Company", + "brewery_type": "micro", + "address_1": "Unnamed Street", + "address_2": "Ballykilcavan", + "address_3": null, + "city": "Stradbally", + "state_province": "Laois", + "postal_code": "R93 X3X8", + "country": "Ireland", + "longitude": -7.115267515, + "latitude": 53.01800718, + "phone": null, + "website_url": "https://www.ballykilcavan.com/", + "state": "Laois", + "street": "Unnamed Street" + }, + { + "id": "cb8d7ce9-114c-44b6-91de-45ad0cd2285f", + "name": "Balsam Falls Brewing", + "brewery_type": "micro", + "address_1": "506 W Main St", + "address_2": null, + "address_3": null, + "city": "Sylva", + "state_province": "North Carolina", + "postal_code": "28779-5544", + "country": "United States", + "longitude": -83.2218237, + "latitude": 35.3737065, + "phone": "8286311987", + "website_url": null, + "state": "North Carolina", + "street": "506 W Main St" + }, + { + "id": "a85f70a5-1b54-43ba-8ab3-261e20f8d570", + "name": "Balter Beerworks", + "brewery_type": "brewpub", + "address_1": "100 S Broadway St", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37902-1901", + "country": "United States", + "longitude": -83.92432, + "latitude": 35.96654, + "phone": "8659995015", + "website_url": "http://www.balterbeerworks.com", + "state": "Tennessee", + "street": "100 S Broadway St" + }, + { + "id": "b2e796bf-300d-494d-946e-994cfe05782f", + "name": "Balter Brewing", + "brewery_type": "micro", + "address_1": "14 Traders Way", + "address_2": null, + "address_3": null, + "city": "Currumbin Waters", + "state_province": "QLD", + "postal_code": "4223", + "country": "Australia", + "longitude": 153.470668, + "latitude": -28.142652, + "phone": "+61 7 5525 6916", + "website_url": "https://www.balter.com.au/tap-room/about?utm_source=google&utm_medium=organic&utm_campaign=gmb", + "state": "QLD", + "street": "14 Traders Way" + }, + { + "id": "e47aa97d-b7c0-4a00-b085-b1e7240e5080", + "name": "Balter Brewing Company", + "brewery_type": "large", + "address_1": "14 Traders Way", + "address_2": null, + "address_3": null, + "city": "Currumbin Waters", + "state_province": "QLD", + "postal_code": "4223", + "country": "Australia", + "longitude": 153.470668, + "latitude": -28.142652, + "phone": "+61 7 5525 6916", + "website_url": "https://www.balter.com.au/tap-room/about?utm_source=google&utm_medium=organic&utm_campaign=gmb", + "state": "QLD", + "street": "14 Traders Way" + }, + { + "id": "17d563f1-e620-4a74-8d39-3486312454f2", + "name": "Baltimore Washington Beer Works", + "brewery_type": "contract", + "address_1": "2500 Grays Rd", + "address_2": null, + "address_3": null, + "city": "Dundalk", + "state_province": "Maryland", + "postal_code": "21222", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4438476223", + "website_url": "http://www.ravenbeer.com", + "state": "Maryland", + "street": "2500 Grays Rd" + }, + { + "id": "4b2cb700-2a42-4a22-8811-b15879b6b401", + "name": "Bam Entertainment Center", + "brewery_type": "brewpub", + "address_1": "478 E 16th St", + "address_2": null, + "address_3": null, + "city": "Holland", + "state_province": "Michigan", + "postal_code": "49423-3793", + "country": "United States", + "longitude": -86.08555156, + "latitude": 42.7812873, + "phone": "6163927086", + "website_url": "http://www.gobamgo.com", + "state": "Michigan", + "street": "478 E 16th St" + }, + { + "id": "2b725797-9b61-4bf9-bb7f-85127e955905", + "name": "Band Of Bohemia", + "brewery_type": "brewpub", + "address_1": "4710 N Ravenswood Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60640-4408", + "country": "United States", + "longitude": -87.6750827, + "latitude": 41.9675954, + "phone": "7732714710", + "website_url": "http://bandofbohemia.com", + "state": "Illinois", + "street": "4710 N Ravenswood Ave" + }, + { + "id": "063107cd-7134-41d9-b44e-f75439937878", + "name": "Band of Brothers Brewing Company", + "brewery_type": "micro", + "address_1": "1605 23rd Ave", + "address_2": null, + "address_3": null, + "city": "Tuscaloosa", + "state_province": "Alabama", + "postal_code": "35401-4653", + "country": "United States", + "longitude": -87.56215513, + "latitude": 33.19849071, + "phone": "2052665137", + "website_url": "http://www.bandofbrosbrewing.com", + "state": "Alabama", + "street": "1605 23rd Ave" + }, + { + "id": "56be2bfb-6de2-4c08-b707-4e5a9e27005c", + "name": "Banded Brewing Company", + "brewery_type": "micro", + "address_1": "32 Main St. Bldg 13-W Ste 102", + "address_2": null, + "address_3": null, + "city": "Biddeford", + "state_province": "Maine", + "postal_code": "04005-5145", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2076021561", + "website_url": "http://www.bandedhorn.com", + "state": "Maine", + "street": "32 Main St. Bldg 13-W Ste 102" + }, + { + "id": "2b5fbb61-2e0b-42ec-8d68-dcc62fe244e9", + "name": "Banded Oak Brewing Company", + "brewery_type": "brewpub", + "address_1": "470 N Broadway", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80203-3404", + "country": "United States", + "longitude": -104.9874187, + "latitude": 39.7282897, + "phone": "7204798033", + "website_url": "http://Bandedoakbrewing.com", + "state": "Colorado", + "street": "470 N Broadway" + }, + { + "id": "2d0bf6d8-1aad-42f4-8553-f78c7b90e1fd", + "name": "Bandera Ale Project, LLC", + "brewery_type": "micro", + "address_1": "3540 State Highway 16 S Ste 2A", + "address_2": null, + "address_3": null, + "city": "Bandera", + "state_province": "Texas", + "postal_code": "78003-3561", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8305224226", + "website_url": "http://www.banderabrewery.com", + "state": "Texas", + "street": "3540 State Highway 16 S Ste 2A" + }, + { + "id": "29297833-9297-43fe-a9f4-4a9437a405c1", + "name": "Bandit Brewing Co", + "brewery_type": "micro", + "address_1": "610 N 1st St Ste 5-228", + "address_2": null, + "address_3": null, + "city": "Hamilton", + "state_province": "Montana", + "postal_code": "59840-2149", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4066466003", + "website_url": "http://www.banditbeer.com", + "state": "Montana", + "street": "610 N 1st St Ste 5-228" + }, + { + "id": "3063b641-c33f-492c-bcac-f0b591221abf", + "name": "Bandon Brewing Company", + "brewery_type": "brewpub", + "address_1": "395 2nd St SE", + "address_2": null, + "address_3": null, + "city": "Bandon", + "state_province": "Oregon", + "postal_code": "97411-9605", + "country": "United States", + "longitude": -124.4122494, + "latitude": 43.1191572, + "phone": "5413473911", + "website_url": "http://www.bandonbrewingco.com", + "state": "Oregon", + "street": "395 2nd St SE" + }, + { + "id": "299ebba1-6bb3-4998-b4a5-e0f4fad4c443", + "name": "Bandwagon Brewery", + "brewery_type": "micro", + "address_1": "3582 West Ave", + "address_2": null, + "address_3": null, + "city": "Interlaken", + "state_province": "New York", + "postal_code": "14847", + "country": "United States", + "longitude": -76.7278241, + "latitude": 42.61661956, + "phone": "6072295608", + "website_url": "http://www.bandwagonbeer.com", + "state": "New York", + "street": "3582 West Ave" + }, + { + "id": "d2af1d0e-cc9d-4c26-90a0-f768b9cfb344", + "name": "Bang Brewing", + "brewery_type": "micro", + "address_1": "2320 Capp Rd", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55114-1251", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6512432264", + "website_url": "http://www.bangbrewing.com", + "state": "Minnesota", + "street": "2320 Capp Rd" + }, + { + "id": "6c11ccfe-9941-4c48-acc6-75217efabbce", + "name": "Bang the Drum Brewery", + "brewery_type": "micro", + "address_1": "950 Orcutt Rd", + "address_2": null, + "address_3": null, + "city": "San Luis Obispo", + "state_province": "California", + "postal_code": "93401-6740", + "country": "United States", + "longitude": -120.6452338, + "latitude": 35.2615498, + "phone": "8587762973", + "website_url": "http://www.bangthedrumbrewery.com", + "state": "California", + "street": "950 Orcutt Rd" + }, + { + "id": "cb33e61e-48cf-433e-96cd-7c336c6ef8bf", + "name": "Banger Brewing Co", + "brewery_type": "micro", + "address_1": "450 Fremont St Ste 135", + "address_2": null, + "address_3": null, + "city": "Las Vegas", + "state_province": "Nevada", + "postal_code": "89101-5649", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7024562739", + "website_url": "http://www.bangerbrewing.com", + "state": "Nevada", + "street": "450 Fremont St Ste 135" + }, + { + "id": "e049fe2d-95ad-4c99-8c93-439f39339b60", + "name": "Bangin' Banjo Brewing Company", + "brewery_type": "micro", + "address_1": "3200 NW 23rd Ave Ste 500", + "address_2": null, + "address_3": null, + "city": "Pompano Beach", + "state_province": "Florida", + "postal_code": "33069-5909", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9549783113", + "website_url": "http://www.banginbanjobrewing.com", + "state": "Florida", + "street": "3200 NW 23rd Ave Ste 500" + }, + { + "id": "e8a8053c-22a8-4f42-90e0-5d6474477a10", + "name": "Bangor Beer Co.", + "brewery_type": "brewpub", + "address_1": "330 Bangor Mall Blvd", + "address_2": null, + "address_3": null, + "city": "Bangor", + "state_province": "Maine", + "postal_code": "04401-3644", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2079476605", + "website_url": "http://www.bangorbeerco.com", + "state": "Maine", + "street": "330 Bangor Mall Blvd" + }, + { + "id": "5d408c7c-fb56-4012-bd83-3471f43ffc2f", + "name": "Bangor Trust Brewing", + "brewery_type": "brewpub", + "address_1": "15 Broadway", + "address_2": null, + "address_3": null, + "city": "Bangor", + "state_province": "Pennsylvania", + "postal_code": "18013-2601", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6104523232", + "website_url": "http://bangortrustbrewing.com", + "state": "Pennsylvania", + "street": "15 Broadway" + }, + { + "id": "9e12b6a6-9445-4a29-818c-4b96dbd30f55", + "name": "Banjo Brewing", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fayetteville", + "state_province": "West Virginia", + "postal_code": "25840", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3042164231", + "website_url": null, + "state": "West Virginia", + "street": null + }, + { + "id": "133a1850-eabe-4a10-95dc-827ae90965ee", + "name": "Bank Brewing Co", + "brewery_type": "micro", + "address_1": "218 N Main St", + "address_2": null, + "address_3": null, + "city": "Hendricks", + "state_province": "Minnesota", + "postal_code": "56136-9501", + "country": "United States", + "longitude": -96.42581655, + "latitude": 44.50839827, + "phone": "6123092513", + "website_url": "http://www.bankbrewing.com", + "state": "Minnesota", + "street": "218 N Main St" + }, + { + "id": "a8a4b78e-6e6c-4c93-a1bb-e364353f25ce", + "name": "Bankhead Brewing Company", + "brewery_type": "brewpub", + "address_1": "3840 Main St", + "address_2": null, + "address_3": null, + "city": "Rowlett", + "state_province": "Texas", + "postal_code": "75088-5073", + "country": "United States", + "longitude": -96.56610883, + "latitude": 32.9029137, + "phone": "2143847953", + "website_url": "http://www.bankheadbrewing.com", + "state": "Texas", + "street": "3840 Main St" + }, + { + "id": "6865f9b6-b99a-4d4c-a12a-824924ac27ea", + "name": "Banning's Inc", + "brewery_type": "micro", + "address_1": "620 Water St", + "address_2": null, + "address_3": null, + "city": "Summersville", + "state_province": "West Virginia", + "postal_code": "26651-1453", + "country": "United States", + "longitude": -80.85147552, + "latitude": 38.281623, + "phone": "3046196972", + "website_url": null, + "state": "West Virginia", + "street": "620 Water St" + }, + { + "id": "38ec976b-9832-425c-818e-7843b722acec", + "name": "Bar 3 BBQ and Brewing", + "brewery_type": "brewpub", + "address_1": "100 S Broadway", + "address_2": null, + "address_3": null, + "city": "Belgrade", + "state_province": "Montana", + "postal_code": "59714-3909", + "country": "United States", + "longitude": -111.1770268, + "latitude": 45.7751537, + "phone": "4063889182", + "website_url": "http://www.bar3bbq.com", + "state": "Montana", + "street": "100 S Broadway" + }, + { + "id": "ddccedb0-12d1-442c-bd66-3c2fe9b0fe80", + "name": "Bar D Brew House", + "brewery_type": "brewpub", + "address_1": "213 N High St", + "address_2": null, + "address_3": null, + "city": "San Saba", + "state_province": "Texas", + "postal_code": "76877-3533", + "country": "United States", + "longitude": -98.71854917, + "latitude": 31.19678472, + "phone": "3253726100", + "website_url": "http://www.bardbrewhouse.com", + "state": "Texas", + "street": "213 N High St" + }, + { + "id": "a834c4b5-4852-4887-aa6f-c872dfc10824", + "name": "Bar Hygge / Brewery Techne", + "brewery_type": "brewpub", + "address_1": "1720 Fairmount Ave", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19130-2858", + "country": "United States", + "longitude": -75.16567302, + "latitude": 39.96707286, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": "1720 Fairmount Ave" + }, + { + "id": "8a28140f-79c5-493b-a9b7-3a494c9449fc", + "name": "Bar Room", + "brewery_type": "bar", + "address_1": "899 East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "459102", + "country": "Singapore", + "longitude": 1.3128500369078, + "latitude": 103.9241232, + "phone": "+65 9265 2461", + "website_url": null, + "state": "Singapore", + "street": "899 East Coast Road" + }, + { + "id": "08fffdf5-41f6-4445-a9a5-63d4927dc366", + "name": "Baranof Island Brewing Co", + "brewery_type": "closed", + "address_1": "1209 Sawmill Creek Rd Ste A", + "address_2": null, + "address_3": null, + "city": "Sitka", + "state_province": "Alaska", + "postal_code": "99835-9759", + "country": "United States", + "longitude": -135.309951, + "latitude": 57.049586, + "phone": "9077472739", + "website_url": "http://www.baranofislandbrewing.com", + "state": "Alaska", + "street": "1209 Sawmill Creek Rd Ste A" + }, + { + "id": "2f2b9e28-3550-4e57-80bf-4fa388200ed7", + "name": "Barbarian Brewing - Downtown Taproom", + "brewery_type": "micro", + "address_1": "1022 W Main St", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83702-5705", + "country": "United States", + "longitude": -116.206883, + "latitude": 43.618407, + "phone": "2083872739", + "website_url": "https://barbarianbrewing.com", + "state": "Idaho", + "street": "1022 W Main St" + }, + { + "id": "056acce6-7847-43f3-9a24-c32ee66ae805", + "name": "Barbarian Brewing - Garden City", + "brewery_type": "micro", + "address_1": "5270 W Chinden Blvd", + "address_2": null, + "address_3": null, + "city": "Garden City", + "state_province": "Idaho", + "postal_code": "83714-1457", + "country": "United States", + "longitude": -116.272141, + "latitude": 43.646318, + "phone": "2083872739", + "website_url": "http://www.barbarianbrewing.com", + "state": "Idaho", + "street": "5270 W Chinden Blvd" + }, + { + "id": "7cdb5832-f9fb-421c-b94c-3989c6240894", + "name": "Bard's Brewery, LLC", + "brewery_type": "proprietor", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lees Summit", + "state_province": "Missouri", + "postal_code": "64063-0905", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8167281707", + "website_url": "http://www.bardsbeer.com", + "state": "Missouri", + "street": null + }, + { + "id": "9ae35285-00ed-4066-963c-8bfad2d16c29", + "name": "Bardic Brewing and Cider", + "brewery_type": "micro", + "address_1": "15412 E Sprague Ave #14", + "address_2": null, + "address_3": null, + "city": "Spokane Valley", + "state_province": "Washington", + "postal_code": "99037", + "country": "United States", + "longitude": -117.1984519, + "latitude": 47.65665159, + "phone": "5097236105", + "website_url": "https://bardicbrewing.com", + "state": "Washington", + "street": "15412 E Sprague Ave #14" + }, + { + "id": "082f06b4-93bc-4683-9223-5b64103413e8", + "name": "Bardo Brewpub", + "brewery_type": "micro", + "address_1": "25 Potomac Ave SE", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "District of Columbia", + "postal_code": "20003-3670", + "country": "United States", + "longitude": -77.00658302, + "latitude": 38.87165373, + "phone": "7622337070", + "website_url": "http://www.bardo.beer", + "state": "District of Columbia", + "street": "25 Potomac Ave SE" + }, + { + "id": "7574d2fa-b21c-48df-a206-8ea36cbc8229", + "name": "Bardwell Winery and Brewery", + "brewery_type": "micro", + "address_1": "716 N High St", + "address_2": null, + "address_3": null, + "city": "Mount Orab", + "state_province": "Ohio", + "postal_code": "45154", + "country": "United States", + "longitude": -83.9209789, + "latitude": 39.0419795, + "phone": null, + "website_url": "http://www.bardwellwinery.com", + "state": "Ohio", + "street": "716 N High St" + }, + { + "id": "df0ca5e9-9372-4516-a191-e6bfe4c466b0", + "name": "Bare Arms Brewing", + "brewery_type": "micro", + "address_1": "2515 La Salle Ave", + "address_2": null, + "address_3": null, + "city": "Waco", + "state_province": "Texas", + "postal_code": "76706-3929", + "country": "United States", + "longitude": -97.13081959, + "latitude": 31.52488462, + "phone": "2547598480", + "website_url": "http://www.barearmsbrewing.com", + "state": "Texas", + "street": "2515 La Salle Ave" + }, + { + "id": "32d22f8c-1a9a-45ea-a8b0-daf3a002fb5b", + "name": "Bare Bones Brewery", + "brewery_type": "brewpub", + "address_1": "4362 County Rd S", + "address_2": null, + "address_3": null, + "city": "Oshkosh", + "state_province": "Wisconsin", + "postal_code": "54904-9575", + "country": "United States", + "longitude": -88.59075354, + "latitude": 44.07856457, + "phone": "9207448045", + "website_url": "http://www.barebonesbrewery.us", + "state": "Wisconsin", + "street": "4362 County Rd S" + }, + { + "id": "eaccdf46-40c0-4a05-a4b8-680f0e38f913", + "name": "Bare Hands Brewery", + "brewery_type": "micro", + "address_1": "12804 Sandy Ct", + "address_2": null, + "address_3": null, + "city": "Granger", + "state_province": "Indiana", + "postal_code": "46530-4309", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5742772258", + "website_url": "http://www.barehandsbrewbrewery.com", + "state": "Indiana", + "street": "12804 Sandy Ct" + }, + { + "id": "97ca045f-aa1a-429e-bd93-7461954b20fc", + "name": "Barebottle Brewing Company", + "brewery_type": "micro", + "address_1": "1525 Cortland Ave", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94110-5714", + "country": "United States", + "longitude": -122.4090405, + "latitude": 37.74000915, + "phone": "4159268617", + "website_url": "http://www.barebottlebeer.com", + "state": "California", + "street": "1525 Cortland Ave" + }, + { + "id": "1c1fec67-f169-4646-b4d4-aeda1643fafb", + "name": "BareWolf Brewing", + "brewery_type": "micro", + "address_1": "12 Oakland St", + "address_2": null, + "address_3": null, + "city": "Amesbury", + "state_province": "Massachusetts", + "postal_code": "01913", + "country": "United States", + "longitude": -70.92336518, + "latitude": 42.85606929, + "phone": "9783906540", + "website_url": "http://www.barewolfbrewing.com", + "state": "Massachusetts", + "street": "12 Oakland St" + }, + { + "id": "87bfdb36-616c-455d-a2f8-a8dbd7408588", + "name": "Barhop Brewing", + "brewery_type": "brewpub", + "address_1": "124 W Railroad Ave", + "address_2": null, + "address_3": null, + "city": "Port Angeles", + "state_province": "Washington", + "postal_code": "98362-2621", + "country": "United States", + "longitude": -123.4332787, + "latitude": 48.12098065, + "phone": "3604605155", + "website_url": "http://www.barhopbrewing.com", + "state": "Washington", + "street": "124 W Railroad Ave" + }, + { + "id": "97af6f98-8ef7-4ad9-af77-6b5eaec076d2", + "name": "Barhop Sequim", + "brewery_type": "brewpub", + "address_1": "845 Washington St", + "address_2": null, + "address_3": null, + "city": "Sequim", + "state_province": "Washington", + "postal_code": "98382-3521", + "country": "United States", + "longitude": -123.12332549986, + "latitude": 48.078925671614, + "phone": "3604774257", + "website_url": "https://barhopbrewing.com/barhop-sequim", + "state": "Washington", + "street": "845 Washington St" + }, + { + "id": "de70c697-36e2-4f30-9c08-f15fbca43bc8", + "name": "Bark Brewing Company", + "brewery_type": "brewpub", + "address_1": "3021 Spring Garden St", + "address_2": null, + "address_3": null, + "city": "Greensboro", + "state_province": "North Carolina", + "postal_code": "27403-1968", + "country": "United States", + "longitude": -79.84360434, + "latitude": 36.06201036, + "phone": "3368561406", + "website_url": "http://barkbrewingcompany.com", + "state": "North Carolina", + "street": "3021 Spring Garden St" + }, + { + "id": "c51c96f4-d444-4e83-b332-924d7811d236", + "name": "BarkEater Craft Brewery", + "brewery_type": "proprietor", + "address_1": "5411 Shady Ave", + "address_2": null, + "address_3": null, + "city": "Lowville", + "state_province": "New York", + "postal_code": "13367-1601", + "country": "United States", + "longitude": -75.4867252, + "latitude": 43.7874658, + "phone": "3157758959", + "website_url": "http://www.barkeaterbrew.com", + "state": "New York", + "street": "5411 Shady Ave" + }, + { + "id": "2c58a683-787e-4d26-a7f0-e12e31b36e74", + "name": "Barking Armadillo Brewing", + "brewery_type": "micro", + "address_1": "507 River Bend", + "address_2": null, + "address_3": null, + "city": "Georgetown", + "state_province": "Texas", + "postal_code": "78723-3342", + "country": "United States", + "longitude": -97.6932487, + "latitude": 30.6608114, + "phone": "512-240-5137", + "website_url": "http://www.barkingarmadillo.com/", + "state": "Texas", + "street": "507 River Bend" + }, + { + "id": "4e51c656-001a-4f64-9fcd-0edc5b8e6669", + "name": "Barking Duck Brewing Company", + "brewery_type": "micro", + "address_1": "4400 Morris Park Dr Ste R", + "address_2": null, + "address_3": null, + "city": "Mint Hill", + "state_province": "North Carolina", + "postal_code": "28227-9269", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9809386300", + "website_url": "http://www.barkingduckbrew.com", + "state": "North Carolina", + "street": "4400 Morris Park Dr Ste R" + }, + { + "id": "63e51e47-8ece-4348-bdbc-313f2d8be6e2", + "name": "Barley and Hops Grill", + "brewery_type": "brewpub", + "address_1": "5473 Urbana Pike", + "address_2": null, + "address_3": null, + "city": "Frederick", + "state_province": "Maryland", + "postal_code": "21704-7275", + "country": "United States", + "longitude": -77.3995969, + "latitude": 39.38204685, + "phone": "3016685555", + "website_url": "http://www.barleyandhops.net", + "state": "Maryland", + "street": "5473 Urbana Pike" + }, + { + "id": "7466d420-8ee9-41b1-8794-f9618df77361", + "name": "Barley Boys Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Omaha", + "state_province": "Nebraska", + "postal_code": "68144-1922", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4025986096", + "website_url": "http://www.barleyboysbrewery.com", + "state": "Nebraska", + "street": null + }, + { + "id": "3f876682-7dcf-4465-8880-63253506e3e4", + "name": "Barley Brothers Brewery", + "brewery_type": "brewpub", + "address_1": "1425 McCulloch Blvd N", + "address_2": null, + "address_3": null, + "city": "Lake Havasu City", + "state_province": "Arizona", + "postal_code": "86403-6597", + "country": "United States", + "longitude": -114.3206399, + "latitude": 34.4770677, + "phone": "9285057837", + "website_url": "http://www.barleybrothers.com", + "state": "Arizona", + "street": "1425 McCulloch Blvd N" + }, + { + "id": "7a470fd0-dc8f-4324-9c42-dd1428488f7d", + "name": "Barley Browns Brewpub", + "brewery_type": "micro", + "address_1": "2190 Main St", + "address_2": null, + "address_3": null, + "city": "Baker City", + "state_province": "Oregon", + "postal_code": "97814-2655", + "country": "United States", + "longitude": -117.8294962, + "latitude": 44.7787802, + "phone": "5415234266", + "website_url": "http://www.barleybrowns.com", + "state": "Oregon", + "street": "2190 Main St" + }, + { + "id": "6267a2b4-289e-4720-8baf-6ab825f30380", + "name": "Barley Creek Brewing Co", + "brewery_type": "brewpub", + "address_1": "1774 Sullivan Trl", + "address_2": null, + "address_3": null, + "city": "Tannersville", + "state_province": "Pennsylvania", + "postal_code": "18372-7893", + "country": "United States", + "longitude": -75.32890575, + "latitude": 41.05236395, + "phone": "5706299399", + "website_url": "http://www.barleycreek.com", + "state": "Pennsylvania", + "street": "1774 Sullivan Trl" + }, + { + "id": "fbb7714c-4583-4d4d-96f4-369b4515476d", + "name": "Barley Forge Brewing", + "brewery_type": "closed", + "address_1": "2957 Randolph Ave Ste B", + "address_2": null, + "address_3": null, + "city": "Costa Mesa", + "state_province": "California", + "postal_code": "92626-4375", + "country": "United States", + "longitude": -117.8880183, + "latitude": 33.67903294, + "phone": "7146412084", + "website_url": "http://www.barleyforge.com", + "state": "California", + "street": "2957 Randolph Ave Ste B" + }, + { + "id": "fa5848d1-fd69-401e-b5ec-a59321e631b4", + "name": "Barley Head Brewery", + "brewery_type": "micro", + "address_1": "12 Water St 1A", + "address_2": null, + "address_3": null, + "city": "Mystic", + "state_province": "Connecticut", + "postal_code": "06355", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.barleyheadbrewery.com", + "state": "Connecticut", + "street": "12 Water St 1A" + }, + { + "id": "ee28a49f-8069-428c-a379-c4121d710821", + "name": "Barley Island Brewing Co", + "brewery_type": "brewpub", + "address_1": "639 E Conner St", + "address_2": null, + "address_3": null, + "city": "Noblesville", + "state_province": "Indiana", + "postal_code": "46060-2532", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3177705280", + "website_url": "http://www.barleyisland.com", + "state": "Indiana", + "street": "639 E Conner St" + }, + { + "id": "5e10fcfc-9724-4622-a95d-da266c8628ee", + "name": "Barley Johns Brewpub", + "brewery_type": "closed", + "address_1": "1280 Madison Ave", + "address_2": null, + "address_3": null, + "city": "New Richmond", + "state_province": "Wisconsin", + "postal_code": "54017-2236", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7152464677", + "website_url": "http://www.barleyjohnsbrewery.com", + "state": "Wisconsin", + "street": "1280 Madison Ave" + }, + { + "id": "050945b3-143d-4c19-976d-be130c5b9628", + "name": "Barley Johns Brewpub", + "brewery_type": "brewpub", + "address_1": "781 Old Highway 8 SW", + "address_2": null, + "address_3": null, + "city": "New Brighton", + "state_province": "Minnesota", + "postal_code": "55112-7735", + "country": "United States", + "longitude": -93.1984831, + "latitude": 45.0366982, + "phone": "6516364670", + "website_url": "http://www.barleyjohns.com", + "state": "Minnesota", + "street": "781 Old Highway 8 SW" + }, + { + "id": "ddc78de1-9059-45e3-9c38-65e714a96062", + "name": "Barley Naked Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Stafford", + "state_province": "Virginia", + "postal_code": "22554", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5406234475", + "website_url": "http://www.barleynaked.com", + "state": "Virginia", + "street": null + }, + { + "id": "332c432f-b52b-4d3d-a5c9-8b3d4a31976f", + "name": "Barley POP! Brewing", + "brewery_type": "nano", + "address_1": "1208 10th St Ste C", + "address_2": null, + "address_3": null, + "city": "Snohomish", + "state_province": "Washington", + "postal_code": "98290-2099", + "country": "United States", + "longitude": -122.096741, + "latitude": 47.924313, + "phone": "3606106843", + "website_url": "https://www.barleypopbeer.com", + "state": "Washington", + "street": "1208 10th St Ste C" + }, + { + "id": "947934b7-b0e7-4eee-81cc-8efabbfe32f7", + "name": "Barley Sprouts Brewery", + "brewery_type": "brewpub", + "address_1": "639 SE 223rd Ave", + "address_2": null, + "address_3": null, + "city": "Gresham", + "state_province": "Oregon", + "postal_code": "97030-2509", + "country": "United States", + "longitude": -122.4339039, + "latitude": 45.51805087, + "phone": "5037586464", + "website_url": "http://www.capturedbyporches.com", + "state": "Oregon", + "street": "639 SE 223rd Ave" + }, + { + "id": "80683fda-c79f-4dc1-941a-a2b4165487fe", + "name": "Barley's Brewing Company (Ale House No. 1)", + "brewery_type": "brewpub", + "address_1": "467 N High St", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43215-2007", + "country": "United States", + "longitude": -83.0027669, + "latitude": 39.9719408, + "phone": "6142282537", + "website_url": "http://www.barleysbrewing.com", + "state": "Ohio", + "street": "467 N High St" + }, + { + "id": "10b2fbe8-9fc3-46f8-aaa9-d61bc19dffa8", + "name": "Barley's Casino and Brewing Co", + "brewery_type": "brewpub", + "address_1": "4500 E Sunset Rd Ste 30", + "address_2": null, + "address_3": null, + "city": "Henderson", + "state_province": "Nevada", + "postal_code": "89014-2253", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7024582739", + "website_url": "http://www.wildfire.sclv.com/barleys", + "state": "Nevada", + "street": "4500 E Sunset Rd Ste 30" + }, + { + "id": "c4ed1b9c-3e81-4419-bc5b-789c3f4f53e8", + "name": "Barlows Brewery", + "brewery_type": "closed", + "address_1": "705 SE Park Crest Ave Suite D430", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98683", + "country": "United States", + "longitude": -122.5216242, + "latitude": 45.6177956, + "phone": "3608593795", + "website_url": "https://www.barlowsbrewery.com", + "state": "Washington", + "street": "705 SE Park Crest Ave Suite D430" + }, + { + "id": "9e1dfd14-4289-47ec-9362-362b7f8ed000", + "name": "BarmHaus Brewing Co", + "brewery_type": "closed", + "address_1": "3782 Winding Creek Ln", + "address_2": null, + "address_3": null, + "city": "Garden Valley", + "state_province": "California", + "postal_code": "95633-9773", + "country": "United States", + "longitude": -120.8784951, + "latitude": 38.8402775, + "phone": "5304440478", + "website_url": "http://barmhausco.com", + "state": "California", + "street": "3782 Winding Creek Ln" + }, + { + "id": "545b51b8-caf4-4c63-aea4-48910ddef4c7", + "name": "Barn Brewers", + "brewery_type": "brewpub", + "address_1": "114 N Main St", + "address_2": null, + "address_3": null, + "city": "Lawton", + "state_province": "Michigan", + "postal_code": "49065-8634", + "country": "United States", + "longitude": -85.84966443, + "latitude": 42.16834814, + "phone": "2692990482", + "website_url": "http://www.barnbrewersbrewery.com", + "state": "Michigan", + "street": "114 N Main St" + }, + { + "id": "bfb84336-c1e4-48e9-9d05-4a412b60e967", + "name": "Barn Brewery", + "brewery_type": "micro", + "address_1": "2850 El Cajon Blvd Ste 3", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92104-1389", + "country": "United States", + "longitude": -117.1324165, + "latitude": 32.75568723, + "phone": "6199558228", + "website_url": "http://www.thebarnbrew.com", + "state": "California", + "street": "2850 El Cajon Blvd Ste 3" + }, + { + "id": "e468fc97-eef9-4067-9f20-2df846d8ca5b", + "name": "Barn Door Brewing", + "brewery_type": "micro", + "address_1": "1174 SW Highway 99W", + "address_2": null, + "address_3": null, + "city": "Dundee", + "state_province": "Oregon", + "postal_code": "97115", + "country": "United States", + "longitude": -123.0146104, + "latitude": 45.27424538, + "phone": "9718328054", + "website_url": "http://www.barndoorbrewing.com", + "state": "Oregon", + "street": "1174 SW Highway 99W" + }, + { + "id": "976cb1b1-2e1d-4b63-b8cc-003104c9af21", + "name": "Barn Town Brewing Co.", + "brewery_type": "brewpub", + "address_1": "9500 SE University Ave #1110", + "address_2": null, + "address_3": null, + "city": "West Des Moines", + "state_province": "Iowa", + "postal_code": "50266-1888", + "country": "United States", + "longitude": -93.8385143, + "latitude": 41.5996472, + "phone": "5159786767", + "website_url": null, + "state": "Iowa", + "street": "9500 SE University Ave #1110" + }, + { + "id": "5edc486d-03b2-4fe1-a794-e0a972e21bf6", + "name": "Barnaby Brewing Company", + "brewery_type": "micro", + "address_1": "165 Shattuck Way", + "address_2": null, + "address_3": null, + "city": "Juneau", + "state_province": "Alaska", + "postal_code": "99801", + "country": "United States", + "longitude": -134.405962, + "latitude": 58.300314, + "phone": "9074190916", + "website_url": "http://www.barnabybrew.com", + "state": "Alaska", + "street": "165 Shattuck Way" + }, + { + "id": "57cf86a1-3d0e-4ac7-8f50-b0bae8e34d9c", + "name": "Barnett and Son Brewing Company", + "brewery_type": "micro", + "address_1": "18425 Pony Express Dr Unit 125", + "address_2": null, + "address_3": null, + "city": "Parker", + "state_province": "Colorado", + "postal_code": "80134-9605", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7204200462", + "website_url": null, + "state": "Colorado", + "street": "18425 Pony Express Dr Unit 125" + }, + { + "id": "23ff0148-df41-45fd-9f11-feaf313ef149", + "name": "Barnhouse Brewery", + "brewery_type": "brewpub", + "address_1": "43271 Spinks Ferry Rd", + "address_2": null, + "address_3": null, + "city": "Leesburg", + "state_province": "Virginia", + "postal_code": "20176-5629", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7036758480", + "website_url": "http://www.barnhousebrewery.com", + "state": "Virginia", + "street": "43271 Spinks Ferry Rd" + }, + { + "id": "f2b298d8-a498-41bc-9321-770e03376866", + "name": "Barnshed Brewing", + "brewery_type": "micro", + "address_1": "100 Lauman Ln", + "address_2": null, + "address_3": null, + "city": "Hicksville", + "state_province": "New York", + "postal_code": "11801-6574", + "country": "United States", + "longitude": -73.50094256, + "latitude": 40.74420335, + "phone": "5163766514", + "website_url": "http://www.barnshedbrewing.com", + "state": "New York", + "street": "100 Lauman Ln" + }, + { + "id": "c6c6e790-345d-4f46-90e3-6264d4962e1d", + "name": "Barnstable Brewing", + "brewery_type": "micro", + "address_1": "485 W Main St", + "address_2": null, + "address_3": null, + "city": "Hyannis", + "state_province": "Massachusetts", + "postal_code": "02601-3644", + "country": "United States", + "longitude": -70.31159594, + "latitude": 41.64913517, + "phone": "7744706989", + "website_url": "http://www.barnstablebrewing.com", + "state": "Massachusetts", + "street": "485 W Main St" + }, + { + "id": "54222b6c-3be1-4bf2-95b7-5085f07a6461", + "name": "Barnstar Brewing", + "brewery_type": "micro", + "address_1": "4050 North Tonto Road (Forest Service Rd.102)", + "address_2": null, + "address_3": null, + "city": "Skull Valley", + "state_province": "Arizona", + "postal_code": "86338", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9284422337", + "website_url": "http://www.barnstarbrew.com", + "state": "Arizona", + "street": "4050 North Tonto Road (Forest Service Rd.102)" + }, + { + "id": "11903890-96c3-4019-b526-6bb0eea6c08c", + "name": "Barona Brewing Company", + "brewery_type": "micro", + "address_1": "EM1036-1 2", + "address_2": null, + "address_3": null, + "city": "Santo António das Areias", + "state_province": "Portalegre", + "postal_code": "7330-215", + "country": "Portugal", + "longitude": -7.3376936047272, + "latitude": 39.437678925612, + "phone": "+351 21 468 2661", + "website_url": "https://www.cervejabarona.pt/", + "state": "Portalegre", + "street": "EM1036-1 2" + }, + { + "id": "8e3da0ab-cbfe-4264-a7d3-0fbcd697e64c", + "name": "Barossa Valley Brewing", + "brewery_type": "micro", + "address_1": "2A Murray Street", + "address_2": null, + "address_3": null, + "city": "Tanunda", + "state_province": "SA", + "postal_code": "5352", + "country": "Australia", + "longitude": 138.949246, + "latitude": -34.5298193, + "phone": "+61 8 8563 0696", + "website_url": "http://www.bvbeer.com.au/", + "state": "SA", + "street": "2A Murray Street" + }, + { + "id": "3a2f762e-be48-4caf-ba77-d9253f50182a", + "name": "Barrage Brewing Co", + "brewery_type": "micro", + "address_1": "32 Allen Blvd Ste E", + "address_2": null, + "address_3": null, + "city": "Farmingdale", + "state_province": "New York", + "postal_code": "11735-5625", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6313357941", + "website_url": "http://www.barragebrewing.com", + "state": "New York", + "street": "32 Allen Blvd Ste E" + }, + { + "id": "225795a5-5470-4864-99f9-6310f40bb4bb", + "name": "Barrel 41 Brewing Co", + "brewery_type": "brewpub", + "address_1": "1132 S. Commercial St.", + "address_2": null, + "address_3": null, + "city": "Neenah", + "state_province": "Wisconsin", + "postal_code": "54956", + "country": "United States", + "longitude": -88.4642861, + "latitude": 44.16805, + "phone": "9205584021", + "website_url": "https://www.barrel41.com/", + "state": "Wisconsin", + "street": "1132 S. Commercial St." + }, + { + "id": "4fc60749-c0d0-4f94-ab92-e5bf566d455e", + "name": "Barrel and Beam", + "brewery_type": "micro", + "address_1": "260 Northwoods RD", + "address_2": null, + "address_3": null, + "city": "Marquette", + "state_province": "Michigan", + "postal_code": "49855", + "country": "United States", + "longitude": -87.4722168, + "latitude": 46.54578, + "phone": "9062732559", + "website_url": "http://www.barrelandbeam.com", + "state": "Michigan", + "street": "260 Northwoods RD" + }, + { + "id": "d605f25e-f132-4c42-94cb-0ec7fc4fe50c", + "name": "Barrel Assembly", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78751-3019", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "15124236579", + "website_url": "http://www.barrelassembly.com", + "state": "Texas", + "street": null + }, + { + "id": "75a66bb0-838f-4e86-adca-03c784fbda72", + "name": "Barrel Brothers Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "399 Business Park Ct. #506", + "address_2": null, + "address_3": null, + "city": "Windsor", + "state_province": "California", + "postal_code": "95492", + "country": "United States", + "longitude": -122.784706, + "latitude": 38.52824916, + "phone": "7076969487", + "website_url": "http://www.barrelbrothersbrewing.com", + "state": "California", + "street": "399 Business Park Ct. #506" + }, + { + "id": "0a857a91-0b76-4850-9594-08938b756d99", + "name": "Barrel Culture Brewing And Blending", + "brewery_type": "proprietor", + "address_1": "4913 S Alston Ave", + "address_2": null, + "address_3": null, + "city": "Durham", + "state_province": "North Carolina", + "postal_code": "27713-4424", + "country": "United States", + "longitude": -78.88891655, + "latitude": 35.89445737, + "phone": null, + "website_url": null, + "state": "North Carolina", + "street": "4913 S Alston Ave" + }, + { + "id": "2907b143-57b4-49ec-aa41-07df64d1e14b", + "name": "Barrel Dog Brewing", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Evergreen", + "state_province": "Colorado", + "postal_code": "80439", + "country": "United States", + "longitude": -105.321458, + "latitude": 39.6361637, + "phone": "5599176846", + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "c13feda5-f313-4dfb-be56-07cb89d5f090", + "name": "Barrel Harbor Brewing Co.", + "brewery_type": "micro", + "address_1": "2575 Pioneer Ave Ste 104", + "address_2": null, + "address_3": null, + "city": "Vista", + "state_province": "California", + "postal_code": "92081-8450", + "country": "United States", + "longitude": -117.221385, + "latitude": 33.14879, + "phone": "7607343949", + "website_url": "http://www.barrelharborbrewing.com", + "state": "California", + "street": "2575 Pioneer Ave Ste 104" + }, + { + "id": "26615b1f-85a5-425c-bfc9-3ed0422329db", + "name": "Barrel Head Brewhouse", + "brewery_type": "brewpub", + "address_1": "1785 Fulton St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94117-1202", + "country": "United States", + "longitude": -122.4461033, + "latitude": 37.77576514, + "phone": "4154166989", + "website_url": "http://www.barrelheadsf.com", + "state": "California", + "street": "1785 Fulton St" + }, + { + "id": "2949226a-b599-4e47-9c00-5e19012dd22b", + "name": "Barrel House Z", + "brewery_type": "micro", + "address_1": "95 Woodrock Rd", + "address_2": null, + "address_3": null, + "city": "Weymouth", + "state_province": "Massachusetts", + "postal_code": "02189-2335", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3392017888", + "website_url": "http://www.barrelhousez.net", + "state": "Massachusetts", + "street": "95 Woodrock Rd" + }, + { + "id": "c7d72e4c-452f-4218-a12d-f14abd400565", + "name": "Barrel Mountain Brewing", + "brewery_type": "micro", + "address_1": "607 E Main St", + "address_2": null, + "address_3": null, + "city": "Battle Ground", + "state_province": "Washington", + "postal_code": "98604-4887", + "country": "United States", + "longitude": -122.5309307, + "latitude": 45.7808639, + "phone": "3603428111", + "website_url": "http://www.barrelmountainbrewing.com", + "state": "Washington", + "street": "607 E Main St" + }, + { + "id": "60a0a684-e559-4865-ac34-561f9a0affeb", + "name": "Barrel Oak Farm Taphouse", + "brewery_type": "micro", + "address_1": "3623 Grove Ln", + "address_2": null, + "address_3": null, + "city": "Delaplane", + "state_province": "Virginia", + "postal_code": "20144-2226", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5403646402", + "website_url": "http://www.barreloak.com", + "state": "Virginia", + "street": "3623 Grove Ln" + }, + { + "id": "4eb9962b-708d-4221-9eee-f68e2abead7a", + "name": "Barrel of Monks Brewing", + "brewery_type": "micro", + "address_1": "1141 S Rogers Cir Ste 5", + "address_2": null, + "address_3": null, + "city": "Boca Raton", + "state_province": "Florida", + "postal_code": "33487-2789", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5615101253", + "website_url": "http://www.barrelofmonks.com", + "state": "Florida", + "street": "1141 S Rogers Cir Ste 5" + }, + { + "id": "e11f74dd-00c9-4b81-b284-879dc08f3132", + "name": "Barrel Theory Beer Company", + "brewery_type": "micro", + "address_1": "248 7th St E", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55101-2349", + "country": "United States", + "longitude": -93.08803482, + "latitude": 44.95106551, + "phone": "6516003422", + "website_url": "http://www.barreltheory.com", + "state": "Minnesota", + "street": "248 7th St E" + }, + { + "id": "6ea2ecc3-d933-4c8d-852c-f20db3b19976", + "name": "Barreled Souls Brewing Company LLC", + "brewery_type": "micro", + "address_1": "743 Portland Rd", + "address_2": null, + "address_3": null, + "city": "Saco", + "state_province": "Maine", + "postal_code": "04072-9005", + "country": "United States", + "longitude": -70.405728, + "latitude": 43.553358, + "phone": "2076026439", + "website_url": "http://www.barreledsouls.com", + "state": "Maine", + "street": "743 Portland Rd" + }, + { + "id": "9bf73e25-63d1-48df-a3b8-f916d9f9edeb", + "name": "Barrelhead Brewery", + "brewery_type": "micro", + "address_1": "2 Fairview Strand", + "address_2": "Ballybough", + "address_3": "Dublin 3", + "city": "Dublin", + "state_province": "Dublin", + "postal_code": "D03 R8P3", + "country": "Ireland", + "longitude": -6.2400171, + "latitude": 53.3625745, + "phone": "353879900914", + "website_url": "https://barrelheadbrewery.com/", + "state": "Dublin", + "street": "2 Fairview Strand" + }, + { + "id": "fcac3d27-e6e5-4249-821b-15a0306895bb", + "name": "Barrelhouse Brewing", + "brewery_type": "micro", + "address_1": "3055 Limestone Way", + "address_2": null, + "address_3": null, + "city": "Paso Robles", + "state_province": "California", + "postal_code": "93446-5988", + "country": "United States", + "longitude": -120.6911529, + "latitude": 35.5762216, + "phone": "8052961128", + "website_url": "http://www.barrelhousebrewing.com", + "state": "California", + "street": "3055 Limestone Way" + }, + { + "id": "ace9df76-b786-4d17-9be9-33a009f48ba2", + "name": "Barrels & Bottles Brewery", + "brewery_type": "brewpub", + "address_1": "600 12th St Ste 160", + "address_2": null, + "address_3": null, + "city": "Golden", + "state_province": "Colorado", + "postal_code": "80401-6145", + "country": "United States", + "longitude": -105.2202098, + "latitude": 39.7562107, + "phone": "7203283643", + "website_url": "http://www.barrelsbottles.com", + "state": "Colorado", + "street": "600 12th St Ste 160" + }, + { + "id": "bd4c1883-0fa4-4ebf-84a5-750eeccb7546", + "name": "Barrie Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Gainesville", + "state_province": "Florida", + "postal_code": "32607-4807", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "a6704545-a3ff-4e4d-a458-90979968fe1c", + "name": "Barrier Brewing Co", + "brewery_type": "micro", + "address_1": "3001 New St Ste A2", + "address_2": null, + "address_3": null, + "city": "Oceanside", + "state_province": "New York", + "postal_code": "11572-2747", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5165941028", + "website_url": "http://www.barrierbrewing.com", + "state": "New York", + "street": "3001 New St Ste A2" + }, + { + "id": "d92bd59c-e6ad-4311-90a0-ff2c7fa721ee", + "name": "Barrington Brewery and Restaurant", + "brewery_type": "brewpub", + "address_1": "420 Stockbridge Rd Ste 4", + "address_2": null, + "address_3": null, + "city": "Great Barrington", + "state_province": "Massachusetts", + "postal_code": "01230-9512", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4135288282", + "website_url": "http://www.barringtonbrewery.net", + "state": "Massachusetts", + "street": "420 Stockbridge Rd Ste 4" + }, + { + "id": "40c40840-a67e-42c5-9393-71c82bead0da", + "name": "Barrington’s Craft Brewery", + "brewery_type": "brewpub", + "address_1": "Barrington's", + "address_2": "Piesang Valley Road", + "address_3": null, + "city": "Plettenberg Bay", + "state_province": "Western Cape", + "postal_code": "6600", + "country": "South Africa", + "longitude": 23.3564, + "latitude": -34.0521, + "phone": "+27 44 050 3767", + "website_url": "https://barringtonsplett.co.za/", + "state": "Western Cape", + "street": "Barrington's" + }, + { + "id": "01f591c5-3a87-4685-af4f-c4e9fccb3a47", + "name": "Barrio Brewing Co", + "brewery_type": "micro", + "address_1": "800 E 16th St", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85719-6603", + "country": "United States", + "longitude": -110.959665, + "latitude": 32.214613, + "phone": "5207912739", + "website_url": "http://www.barriobrewing.co", + "state": "Arizona", + "street": "800 E 16th St" + }, + { + "id": "8000063a-f3ac-41e0-8c1d-ad58ba3ad562", + "name": "Barrow Brewing Company", + "brewery_type": "micro", + "address_1": "108 Royal St", + "address_2": null, + "address_3": null, + "city": "Salado", + "state_province": "Texas", + "postal_code": "76571", + "country": "United States", + "longitude": -97.53703133, + "latitude": 30.94295989, + "phone": "2549473544", + "website_url": "http://www.barrowbrewing.com", + "state": "Texas", + "street": "108 Royal St" + }, + { + "id": "ed597116-57e6-472c-8cd1-41d2915d6544", + "name": "Barsideous Brewing Co", + "brewery_type": "brewpub", + "address_1": "644 S Main St", + "address_2": null, + "address_3": null, + "city": "Lebanon", + "state_province": "Oregon", + "postal_code": "97355-3337", + "country": "United States", + "longitude": -122.9070824, + "latitude": 44.5247777, + "phone": "5415701789", + "website_url": "http://www.barsideousbrewing.com", + "state": "Oregon", + "street": "644 S Main St" + }, + { + "id": "481b46b4-5731-45cb-a1b9-f773c55b8372", + "name": "Bartlett Hall", + "brewery_type": "brewpub", + "address_1": "242 Ofarrell St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94102-2119", + "country": "United States", + "longitude": -122.4087293, + "latitude": 37.78640638, + "phone": "4154334332", + "website_url": "http://www.bartletthall.com", + "state": "California", + "street": "242 Ofarrell St" + }, + { + "id": "d73def5b-b039-4331-98b7-d84bd8a18a64", + "name": "Bascule Brewery And Public House", + "brewery_type": "micro", + "address_1": "1397 Colorado Ave", + "address_2": null, + "address_3": null, + "city": "Lorain", + "state_province": "Ohio", + "postal_code": "44052-3377", + "country": "United States", + "longitude": -82.15710792, + "latitude": 41.46560548, + "phone": null, + "website_url": "http://www.basculebrewingcompany.com", + "state": "Ohio", + "street": "1397 Colorado Ave" + }, + { + "id": "c4e818fa-6abc-440b-bdb5-c8172bb5fbd8", + "name": "Base Camp Brewing Co", + "brewery_type": "micro", + "address_1": "930 SE Oak St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97214-1307", + "country": "United States", + "longitude": -122.6561108, + "latitude": 45.5198818, + "phone": "5034777479", + "website_url": "http://www.basecampbrewingco.com", + "state": "Oregon", + "street": "930 SE Oak St" + }, + { + "id": "1d7e5d18-1159-4ff0-ae9a-eb00af7d14cb", + "name": "Basecamp Brewing", + "brewery_type": "brewpub", + "address_1": "25 S Mountain Rd", + "address_2": null, + "address_3": null, + "city": "Lincoln", + "state_province": "New Hampshire", + "postal_code": "03251-4268", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6037457290", + "website_url": "http://www.onelovebrewery.com", + "state": "New Hampshire", + "street": "25 S Mountain Rd" + }, + { + "id": "4a9101f6-a7eb-461c-95c9-a0ce6bffdaeb", + "name": "Basement Brewers of Texas", + "brewery_type": "micro", + "address_1": "521 Clay St", + "address_2": null, + "address_3": null, + "city": "Kerrville", + "state_province": "Texas", + "postal_code": "78028-4525", + "country": "United States", + "longitude": -99.1392822, + "latitude": 30.05042839, + "phone": "8309555073", + "website_url": "http://www.basementbrewersoftexas.com", + "state": "Texas", + "street": "521 Clay St" + }, + { + "id": "101d5ecf-137f-4ee6-8fa6-c7e0fcced52c", + "name": "Basement Brewhouse", + "brewery_type": "micro", + "address_1": "8 Greenfield Parade", + "address_2": null, + "address_3": null, + "city": "Bankstown", + "state_province": "NSW", + "postal_code": "2200", + "country": "Australia", + "longitude": 151.0334231, + "latitude": -33.9199158, + "phone": "+61 2 9722 9888", + "website_url": "http://www.bankstownsports.com/brewhouse", + "state": "NSW", + "street": "8 Greenfield Parade" + }, + { + "id": "c9df8aa5-3a45-42fb-bac7-731e8aed32cb", + "name": "Basic City Beer Co.", + "brewery_type": "micro", + "address_1": "1010 E Main St", + "address_2": null, + "address_3": null, + "city": "Waynesboro", + "state_province": "Virginia", + "postal_code": "22980-5855", + "country": "United States", + "longitude": -78.87398588, + "latitude": 38.0644451, + "phone": "8162713211", + "website_url": "http://www.basiccitybeer.com", + "state": "Virginia", + "street": "1010 E Main St" + }, + { + "id": "1e03e945-7418-4d87-9e61-ca95542a4580", + "name": "Basic City Beer Co. (Southside RVA)", + "brewery_type": "micro", + "address_1": "212 W 6th St", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23224", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8044474735", + "website_url": "https://www.basiccitybeer.com/rva-map", + "state": "Virginia", + "street": "212 W 6th St" + }, + { + "id": "4d515475-dfce-446d-bf21-62a12a4021c3", + "name": "Basket Case Brewing Co", + "brewery_type": "brewpub", + "address_1": "1340 Mill St", + "address_2": null, + "address_3": null, + "city": "Jasper", + "state_province": "Indiana", + "postal_code": "47546-2310", + "country": "United States", + "longitude": -86.92850063, + "latitude": 38.39736355, + "phone": "8124824345", + "website_url": "http://www.basketcasebeer.com", + "state": "Indiana", + "street": "1340 Mill St" + }, + { + "id": "3be1e4b7-54d8-42f2-a49f-30a38b452570", + "name": "Basset Breweries", + "brewery_type": "micro", + "address_1": "57 Club Lane", + "address_2": null, + "address_3": null, + "city": "Pennington", + "state_province": "KwaZulu-Natal", + "postal_code": "4184", + "country": "South Africa", + "longitude": 30.6865, + "latitude": -30.3876, + "phone": "+27 82 822 4434", + "website_url": "https://www.bassetbreweries.co.za/", + "state": "KwaZulu-Natal", + "street": "57 Club Lane" + }, + { + "id": "66e4ffa1-88da-4a41-8bf3-fea86dbcaada", + "name": "Bastard Brothers Brewing Company", + "brewery_type": "micro", + "address_1": "2114 Penta Dr", + "address_2": null, + "address_3": null, + "city": "High Ridge", + "state_province": "Missouri", + "postal_code": "63049-2684", + "country": "United States", + "longitude": -90.503349, + "latitude": 38.48282, + "phone": "3145203401", + "website_url": "http://www.bastardbrothersbrewery.com", + "state": "Missouri", + "street": "2114 Penta Dr" + }, + { + "id": "469e0667-cecc-4e07-b27c-443a187baf51", + "name": "Bastet Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33613-1254", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.bastetbrewing.com", + "state": "Florida", + "street": null + }, + { + "id": "52f98458-5a40-43bc-88f7-f6dbc6b4cc95", + "name": "Bastion Brewing Company", + "brewery_type": "brewpub", + "address_1": "12529 Christianson Rd", + "address_2": null, + "address_3": null, + "city": "Anacortes", + "state_province": "Washington", + "postal_code": "98221-8682", + "country": "United States", + "longitude": -122.5708729, + "latitude": 48.46080506, + "phone": "3603991614", + "website_url": "http://www.bastionbrewingcompany.com", + "state": "Washington", + "street": "12529 Christianson Rd" + }, + { + "id": "e48f036b-e371-4e7e-b78f-08a976dc26db", + "name": "Bastone Brewery", + "brewery_type": "brewpub", + "address_1": "419 S Main St", + "address_2": null, + "address_3": null, + "city": "Royal Oak", + "state_province": "Michigan", + "postal_code": "48067-2615", + "country": "United States", + "longitude": -83.1440578, + "latitude": 42.4836283, + "phone": "2485446250", + "website_url": "http://www.bastone.net/br/bastone-brewery", + "state": "Michigan", + "street": "419 S Main St" + }, + { + "id": "e9ce69e2-13cf-48bd-81e2-10235db692aa", + "name": "Batch Brewing Co", + "brewery_type": "brewpub", + "address_1": "1400 Porter St", + "address_2": null, + "address_3": null, + "city": "Detroit", + "state_province": "Michigan", + "postal_code": "48216-1934", + "country": "United States", + "longitude": -83.088689, + "latitude": 42.3184806, + "phone": "3133388008", + "website_url": "http://www.BatchBrewingCompany.com", + "state": "Michigan", + "street": "1400 Porter St" + }, + { + "id": "a8fae596-9e28-4451-a881-2d44c33df418", + "name": "Batch Brewing Co", + "brewery_type": "micro", + "address_1": "44 Sydenham Road", + "address_2": null, + "address_3": null, + "city": "Marrickville", + "state_province": "NSW", + "postal_code": "2204", + "country": "Australia", + "longitude": 151.1648777, + "latitude": -33.9118045, + "phone": "+61 2 9550 5432", + "website_url": "http://www.batchbrewingco.com.au/", + "state": "NSW", + "street": "44 Sydenham Road" + }, + { + "id": "208f49b8-d747-4197-a6bc-234da030a523", + "name": "Batch Brewing Co.", + "brewery_type": "micro", + "address_1": "44 Sydenham Road", + "address_2": null, + "address_3": null, + "city": "Marrickville", + "state_province": "NSW", + "postal_code": "2204", + "country": "Australia", + "longitude": 151.1648777, + "latitude": -33.9118045, + "phone": "+61 2 9550 5432", + "website_url": "http://www.batchbrewingco.com.au/", + "state": "NSW", + "street": "44 Sydenham Road" + }, + { + "id": "a151f905-61b7-4be5-8ea9-4d2a121a3980", + "name": "Batch Brewing Company", + "brewery_type": "micro", + "address_1": "44 Sydenham Road", + "address_2": null, + "address_3": null, + "city": "Marrickville", + "state_province": "NSW", + "postal_code": "2204", + "country": "Australia", + "longitude": 151.1648777, + "latitude": -33.9118045, + "phone": "+61 2 9550 5432", + "website_url": "http://www.batchbrewingco.com.au/", + "state": "NSW", + "street": "44 Sydenham Road" + }, + { + "id": "a0fe534d-c9f1-4232-88cd-b918d16952d8", + "name": "Batch Craft Beer and Kolaches", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78723", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5124013025", + "website_url": "http://www.batchatx.com", + "state": "Texas", + "street": null + }, + { + "id": "b9371de8-5c61-41c2-b2dd-9d4f5fd6eae7", + "name": "Bath Brewing Company", + "brewery_type": "brewpub", + "address_1": "141 Front St", + "address_2": null, + "address_3": null, + "city": "Bath", + "state_province": "Maine", + "postal_code": "04530", + "country": "United States", + "longitude": -69.81414593, + "latitude": 43.91408541, + "phone": "2075603389", + "website_url": "http://www.bathbrewing.com", + "state": "Maine", + "street": "141 Front St" + }, + { + "id": "7166c5a7-c772-44de-b0e1-fea41d5b4368", + "name": "Bathtub Row Brewing Co-op", + "brewery_type": "micro", + "address_1": "163 Central Park Sq", + "address_2": null, + "address_3": null, + "city": "Los Alamos", + "state_province": "New Mexico", + "postal_code": "87544-4029", + "country": "United States", + "longitude": -106.3007594, + "latitude": 35.8839054, + "phone": "5055008381", + "website_url": null, + "state": "New Mexico", + "street": "163 Central Park Sq" + }, + { + "id": "8fa5ceba-e668-479e-9eb6-792be566eff2", + "name": "Battered Boar Brewing Co", + "brewery_type": "micro", + "address_1": "14700 Metro Plaza Blvd Ste F", + "address_2": null, + "address_3": null, + "city": "Edmond", + "state_province": "Oklahoma", + "postal_code": "73013-1991", + "country": "United States", + "longitude": -97.50849, + "latitude": 35.619996, + "phone": "4052545000", + "website_url": "http://www.batteredboar.com", + "state": "Oklahoma", + "street": "14700 Metro Plaza Blvd Ste F" + }, + { + "id": "5d9e917f-4b58-41bf-9acb-a4d06fcacba5", + "name": "Battery Steele Brewing", + "brewery_type": "micro", + "address_1": "1 Industrial Way Ste 12", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04103-1072", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.batterysteele.com", + "state": "Maine", + "street": "1 Industrial Way Ste 12" + }, + { + "id": "b630a613-c4e9-4d35-a437-beef57df6fd7", + "name": "Battle Born® Beer", + "brewery_type": "contract", + "address_1": "100 N Arlington Ave Ste 100", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89501-1233", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8183173128", + "website_url": "http://battleborn.beer", + "state": "Nevada", + "street": "100 N Arlington Ave Ste 100" + }, + { + "id": "ef48afa5-9ac1-439c-851d-0fb04b43786f", + "name": "Battle Brewery", + "brewery_type": "micro", + "address_1": "North Trade Road", + "address_2": null, + "address_3": null, + "city": "Battle", + "state_province": "East Sussex", + "postal_code": "TN33 0HN", + "country": "England", + "longitude": 0.457425, + "latitude": 50.916346, + "phone": "1424772838", + "website_url": "http://battlebrewery.co.uk/", + "state": "East Sussex", + "street": "North Trade Road" + }, + { + "id": "ee894df8-970e-4fcd-96fd-56a385f03aab", + "name": "Battle Hill Brewing Company", + "brewery_type": "micro", + "address_1": "4 Charles Street", + "address_2": null, + "address_3": null, + "city": "Fort Ann", + "state_province": "New York", + "postal_code": "12827", + "country": "United States", + "longitude": -73.48739346, + "latitude": 43.41676935, + "phone": "5186391033", + "website_url": "http://www.battlehillbrewing.com", + "state": "New York", + "street": "4 Charles Street" + }, + { + "id": "247f6183-0e55-4613-bd72-06d88eee5fed", + "name": "Battle Mountain Brewing Co", + "brewery_type": "brewpub", + "address_1": "330 Third St", + "address_2": null, + "address_3": null, + "city": "Castle Rock", + "state_province": "Colorado", + "postal_code": "80104", + "country": "United States", + "longitude": -104.859545, + "latitude": 39.3721413, + "phone": "7202871961", + "website_url": "https://www.battlemountaincr.com", + "state": "Colorado", + "street": "330 Third St" + }, + { + "id": "bbacaa05-6e27-4383-8e2d-f36e3f52b8d5", + "name": "Battle Road Brewing Co", + "brewery_type": "micro", + "address_1": "5 Clock Tower Pl", + "address_2": null, + "address_3": null, + "city": "Maynard", + "state_province": "Massachusetts", + "postal_code": "01754-2530", + "country": "United States", + "longitude": -71.45416113, + "latitude": 42.43001225, + "phone": "9782985229", + "website_url": "http://www.battleroadbh.com", + "state": "Massachusetts", + "street": "5 Clock Tower Pl" + }, + { + "id": "b5857838-ef52-47ed-b4e4-849a321374eb", + "name": "Battlefield Brew Works", + "brewery_type": "brewpub", + "address_1": "248 Hunterstown Rd", + "address_2": null, + "address_3": null, + "city": "Gettysburg", + "state_province": "Pennsylvania", + "postal_code": "17325-7840", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7173982907", + "website_url": "http://www.battlefieldbrewworks.com", + "state": "Pennsylvania", + "street": "248 Hunterstown Rd" + }, + { + "id": "aa5a338a-a6ac-46d1-9fb1-d376df65e0bb", + "name": "Battlefield Brewing Co", + "brewery_type": "brewpub", + "address_1": "4187 Plank Rd", + "address_2": null, + "address_3": null, + "city": "Fredericksburg", + "state_province": "Virginia", + "postal_code": "22407-4896", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5407852164", + "website_url": null, + "state": "Virginia", + "street": "4187 Plank Rd" + }, + { + "id": "cbe608f9-a825-478c-bdab-ef2359ab53c5", + "name": "BattleHops Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Katy", + "state_province": "Texas", + "postal_code": "77494", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8323245284", + "website_url": "http://www.battlehopsbrewing.com", + "state": "Texas", + "street": null + }, + { + "id": "a3d48843-21ee-44be-9f51-d83784bf12f7", + "name": "Battlemage Brewing Co", + "brewery_type": "micro", + "address_1": "2870 Scott St Ste 102", + "address_2": null, + "address_3": null, + "city": "Vista", + "state_province": "California", + "postal_code": "92081-8556", + "country": "United States", + "longitude": -117.227634, + "latitude": 33.140153, + "phone": "7602166425", + "website_url": "http://www.battlemagebrewing.com", + "state": "California", + "street": "2870 Scott St Ste 102" + }, + { + "id": "299656e1-ccc9-4659-8fe8-e62b86be62eb", + "name": "Batzen", + "brewery_type": "regional", + "address_1": "Via Andreas Hofer 30", + "address_2": null, + "address_3": null, + "city": "Bolzano", + "state_province": "Bolzano", + "postal_code": "39100", + "country": "Italy", + "longitude": 46.501855459782, + "latitude": 11.357376358549, + "phone": "+39 0471 050 950", + "website_url": "https://www.batzen.it/brauerei/", + "state": "Bolzano", + "street": "Via Andreas Hofer 30" + }, + { + "id": "45bf9811-0d89-40c3-a020-2d2638a0c932", + "name": "Bauhaus Brew Labs", + "brewery_type": "micro", + "address_1": "1315 Tyler St NE", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55413-1530", + "country": "United States", + "longitude": -93.237365, + "latitude": 45.042082, + "phone": "6122976911", + "website_url": "http://bauhausbrewlabs.com", + "state": "Minnesota", + "street": "1315 Tyler St NE" + }, + { + "id": "e5b27570-2203-47b4-b92a-92e8eb46a4f8", + "name": "Bavarian Bierhaus", + "brewery_type": "brewpub", + "address_1": "700 W Lexington Blvd", + "address_2": null, + "address_3": null, + "city": "Glendale", + "state_province": "Wisconsin", + "postal_code": "53217-4912", + "country": "United States", + "longitude": -87.91923009, + "latitude": 43.11415845, + "phone": "4142367000", + "website_url": "http://www.thebavarianbierhaus.com", + "state": "Wisconsin", + "street": "700 W Lexington Blvd" + }, + { + "id": "f5d36db3-999a-49b8-84e0-7416f86bd23a", + "name": "Bavarian Brothers Brewing", + "brewery_type": "brewpub", + "address_1": "164 Shepherd Grade Rd", + "address_2": null, + "address_3": null, + "city": "Shepherdstown", + "state_province": "West Virginia", + "postal_code": "25443-4601", + "country": "United States", + "longitude": -77.804886, + "latitude": 39.436699, + "phone": "3048762551", + "website_url": null, + "state": "West Virginia", + "street": "164 Shepherd Grade Rd" + }, + { + "id": "9c9033e3-8657-4d05-af18-5bc1d3077810", + "name": "Bawden Street Brewing Company", + "brewery_type": "micro", + "address_1": "325 Bawden St", + "address_2": null, + "address_3": null, + "city": "Ketchikan", + "state_province": "Alaska", + "postal_code": "99901", + "country": "United States", + "longitude": -131.644822, + "latitude": 55.34321, + "phone": "9072254722", + "website_url": "https://www.facebook.com/bawdenstreetbrewing", + "state": "Alaska", + "street": "325 Bawden St" + }, + { + "id": "8fb49b63-7bf4-489e-ab18-bf77a99dfc34", + "name": "Baxter Brewing Co, LLC", + "brewery_type": "regional", + "address_1": "130 Mill St", + "address_2": null, + "address_3": null, + "city": "Lewiston", + "state_province": "Maine", + "postal_code": "04240-7774", + "country": "United States", + "longitude": -70.219607, + "latitude": 44.09567728, + "phone": "2073336769", + "website_url": "http://www.baxterbrewing.com", + "state": "Maine", + "street": "130 Mill St" + }, + { + "id": "b39a23d8-56f2-48a3-b505-3f460935ec54", + "name": "Bay Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "Florida", + "postal_code": "33130-3488", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "18134763767", + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "decc7931-94cf-4acb-badc-4b3ab00736be", + "name": "Bay Bridge Brewing Co", + "brewery_type": "micro", + "address_1": "688 Marsat Ct Ste B", + "address_2": null, + "address_3": null, + "city": "Chula Vista", + "state_province": "California", + "postal_code": "91911-4697", + "country": "United States", + "longitude": -117.0830312, + "latitude": 32.601264, + "phone": "6199347371", + "website_url": "http://www.baybridgebrewing.com", + "state": "California", + "street": "688 Marsat Ct Ste B" + }, + { + "id": "ee153c57-00c1-4321-8ae7-473a3cb65fa2", + "name": "Bay City Brewing Co.", + "brewery_type": "micro", + "address_1": "3760 Hancock St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92110", + "country": "United States", + "longitude": -117.2117833, + "latitude": 32.7580759, + "phone": "6197274926", + "website_url": "http://www.baycitybrewingco.com", + "state": "California", + "street": "3760 Hancock St" + }, + { + "id": "f954ebc8-030d-4bd7-9685-1ffd34ac3001", + "name": "Bay Road Brewing", + "brewery_type": "micro", + "address_1": "89 Donnison Street", + "address_2": null, + "address_3": null, + "city": "Gosford", + "state_province": "NSW", + "postal_code": "2250", + "country": "Australia", + "longitude": 151.3399984, + "latitude": -33.4269598, + "phone": "+61 2 4322 3046", + "website_url": "http://www.bayrdbrewing.com.au/", + "state": "NSW", + "street": "89 Donnison Street" + }, + { + "id": "eb869777-2904-4e42-bff5-c3251b88735a", + "name": "Bay State Beer Company", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sturbridge", + "state_province": "Massachusetts", + "postal_code": "01566-1568", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6174130939", + "website_url": "http://www.baystatebeer.com", + "state": "Massachusetts", + "street": null + }, + { + "id": "ee95babd-8312-4f94-8c5a-a411c1dbd999", + "name": "Bayern Brewing Inc.", + "brewery_type": "micro", + "address_1": "1507 Montana St", + "address_2": null, + "address_3": null, + "city": "Missoula", + "state_province": "Montana", + "postal_code": "59801-1409", + "country": "United States", + "longitude": -114.0202088, + "latitude": 46.8725952, + "phone": "4067211482", + "website_url": "http://www.bayernbrewery.com", + "state": "Montana", + "street": "1507 Montana St" + }, + { + "id": "fa0b9910-a718-4a33-ace8-59e9def925f6", + "name": "Bayonet Cider Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15206-5111", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5134841943", + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "faabb5c6-fc44-4300-84cd-66f8af67e8fd", + "name": "Bayou Teche Brewing", + "brewery_type": "micro", + "address_1": "1002 Noth Lane", + "address_2": null, + "address_3": null, + "city": "Arnaudville", + "state_province": "Louisiana", + "postal_code": "70512", + "country": "United States", + "longitude": -91.925099, + "latitude": 30.391754, + "phone": "3377545122", + "website_url": "http://www.bayoutechebrewing.com", + "state": "Louisiana", + "street": "1002 Noth Lane" + }, + { + "id": "b6a77bad-f595-40f7-9741-ed4c63d804e1", + "name": "BBGB Brewery And Hop Farm", + "brewery_type": "brewpub", + "address_1": "2000 Orchard Rd", + "address_2": null, + "address_3": null, + "city": "North Aurora", + "state_province": "Illinois", + "postal_code": "60542-1674", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8479093072", + "website_url": "http://www.eathardware.com/", + "state": "Illinois", + "street": "2000 Orchard Rd" + }, + { + "id": "a30cdbff-d7d7-48b2-8aa1-90a25758ad02", + "name": "BDD Brewing Company", + "brewery_type": "micro", + "address_1": "1147 Falls Rd Ste 107", + "address_2": null, + "address_3": null, + "city": "Rocky Mount", + "state_province": "North Carolina", + "postal_code": "27804", + "country": "United States", + "longitude": -77.80208267, + "latitude": 35.958026, + "phone": "9196327551", + "website_url": null, + "state": "North Carolina", + "street": "1147 Falls Rd Ste 107" + }, + { + "id": "ad77c6d8-4801-47a3-b9a2-28cb708ba512", + "name": "Beach Cat Brewing", + "brewery_type": "micro", + "address_1": "7876 Birch Bay Dr #101", + "address_2": null, + "address_3": null, + "city": "Blaine", + "state_province": "Washington", + "postal_code": "98230", + "country": "United States", + "longitude": -122.7447863, + "latitude": 48.92831088, + "phone": "3603668065", + "website_url": "https://beachcatbrewing.com", + "state": "Washington", + "street": "7876 Birch Bay Dr #101" + }, + { + "id": "0585bea4-0b4b-4933-9770-df4c124618c7", + "name": "Beach Chalet Brewing Co", + "brewery_type": "brewpub", + "address_1": "1000 Great Hwy", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94121-3268", + "country": "United States", + "longitude": -122.502981, + "latitude": 37.7252994, + "phone": "4153868439", + "website_url": "http://www.beachchalet.com", + "state": "California", + "street": "1000 Great Hwy" + }, + { + "id": "2ba06f5f-f88d-472c-a281-cea7f32c7d36", + "name": "Beach Grease Beer Company", + "brewery_type": "micro", + "address_1": "1280 Activity Dr Ste B", + "address_2": null, + "address_3": null, + "city": "Vista", + "state_province": "California", + "postal_code": "92081", + "country": "United States", + "longitude": -117.219665, + "latitude": 33.14225042, + "phone": null, + "website_url": "http://www.beachgreasebeerco.com", + "state": "California", + "street": "1280 Activity Dr Ste B" + }, + { + "id": "864c6024-1ead-484f-9a4c-71572c000060", + "name": "Beach Haus Brewery", + "brewery_type": "micro", + "address_1": "801 Main St", + "address_2": null, + "address_3": null, + "city": "Belmar", + "state_province": "New Jersey", + "postal_code": "07719-2705", + "country": "United States", + "longitude": -74.0251959, + "latitude": 40.1812131, + "phone": "7322027782", + "website_url": "http://Www.beachhausbeer.com", + "state": "New Jersey", + "street": "801 Main St" + }, + { + "id": "827042d6-0920-484e-94ae-6f8ef520cd74", + "name": "BeachFly Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Indian Harbour Beach", + "state_province": "Florida", + "postal_code": "32937", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3214124900", + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "4f5f6278-99db-45cf-9ed3-72744cd475d4", + "name": "Beachside Brew Pub", + "brewery_type": "micro", + "address_1": "1368 Ocean Shore Blvd", + "address_2": null, + "address_3": null, + "city": "Ormond Beach", + "state_province": "Florida", + "postal_code": "32176-3630", + "country": "United States", + "longitude": -81.057048, + "latitude": 29.326634, + "phone": "3868465143", + "website_url": "http://www.beachsidebrewpub.com", + "state": "Florida", + "street": "1368 Ocean Shore Blvd" + }, + { + "id": "dfefae25-ded6-4109-b6ed-e494a393dc07", + "name": "Beachwood BBQ & Brewing", + "brewery_type": "brewpub", + "address_1": "210 E 3rd St Ste A", + "address_2": null, + "address_3": null, + "city": "Long Beach", + "state_province": "California", + "postal_code": "90802-3197", + "country": "United States", + "longitude": -118.1909007, + "latitude": 33.77017138, + "phone": "5624364020", + "website_url": "http://www.beachwoodbbq.com", + "state": "California", + "street": "210 E 3rd St Ste A" + }, + { + "id": "8a7df4b6-5ea6-4ca2-bb72-8b9813cb1e62", + "name": "Beachwood Blendery", + "brewery_type": "micro", + "address_1": "247 Long Beach Blvd", + "address_2": null, + "address_3": null, + "city": "Long Beach", + "state_province": "California", + "postal_code": "90802-3136", + "country": "United States", + "longitude": -118.1894715, + "latitude": 33.77015096, + "phone": null, + "website_url": "http://beachwoodbbq.com/blendery.html", + "state": "California", + "street": "247 Long Beach Blvd" + }, + { + "id": "67b706ab-6f63-4178-a09c-fdd2119b6b32", + "name": "Beachwood Brewing", + "brewery_type": "micro", + "address_1": "7631 Woodwind Dr Ste B", + "address_2": null, + "address_3": null, + "city": "Huntington Beach", + "state_province": "California", + "postal_code": "92647-7117", + "country": "United States", + "longitude": -117.9953281, + "latitude": 33.70446704, + "phone": "5103269575", + "website_url": "http://www.beachwoodbbq.com", + "state": "California", + "street": "7631 Woodwind Dr Ste B" + }, + { + "id": "8f3af559-423d-42c8-903e-fe45750307cb", + "name": "Beale St Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Memphis", + "state_province": "Tennessee", + "postal_code": "38104-6826", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9014917197", + "website_url": "http://www.bealestbrewing.com", + "state": "Tennessee", + "street": null + }, + { + "id": "797a05a9-52b7-4d53-b0fe-f89237eaffc5", + "name": "Beale's", + "brewery_type": "brewpub", + "address_1": "510 Grove St", + "address_2": null, + "address_3": null, + "city": "Bedford", + "state_province": "Virginia", + "postal_code": "24523", + "country": "United States", + "longitude": -79.51785, + "latitude": 37.33585, + "phone": null, + "website_url": "http://www.bealesbeer.com", + "state": "Virginia", + "street": "510 Grove St" + }, + { + "id": "81a41e48-68a4-4835-bf31-1d41fd16880a", + "name": "Beamish and Crawford (Heineken)", + "brewery_type": "large", + "address_1": "Leitrim Street", + "address_2": null, + "address_3": null, + "city": "Cork", + "state_province": "Cork", + "postal_code": "T23 VF78", + "country": "Ireland", + "longitude": -8.4750739, + "latitude": 51.9037117, + "phone": "353214503371", + "website_url": "http://beamish.ie/", + "state": "Cork", + "street": "Leitrim Street" + }, + { + "id": "5703ac6f-9a97-4529-b62e-7034433e0636", + "name": "Bear and Bramble Brewing Company", + "brewery_type": "micro", + "address_1": "10 Payson Ave # 1", + "address_2": null, + "address_3": null, + "city": "Easthampton", + "state_province": "Massachusetts", + "postal_code": "01027-2207", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Massachusetts", + "street": "10 Payson Ave # 1" + }, + { + "id": "70141f89-287c-496b-8379-bdef1a8f4d0d", + "name": "Bear Bones Beer", + "brewery_type": "micro", + "address_1": "2 Cottage St Ste 1", + "address_2": null, + "address_3": null, + "city": "Bridgton", + "state_province": "Maine", + "postal_code": "04009-1137", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2076478000", + "website_url": null, + "state": "Maine", + "street": "2 Cottage St Ste 1" + }, + { + "id": "25a5fef8-192f-4cd3-95b2-9d0a903354f5", + "name": "Bear Bones Beer", + "brewery_type": "micro", + "address_1": "43 Lisbon St", + "address_2": null, + "address_3": null, + "city": "Lewiston", + "state_province": "Maine", + "postal_code": "04240-7115", + "country": "United States", + "longitude": -70.09605519, + "latitude": 44.02012732, + "phone": "2072001324", + "website_url": "http://www.bearbonesbeer.com", + "state": "Maine", + "street": "43 Lisbon St" + }, + { + "id": "09e6754a-6a78-486d-8baf-e47ea63612f7", + "name": "Bear Chase Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Bluemont", + "state_province": "Virginia", + "postal_code": "20135", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Virginia", + "street": null + }, + { + "id": "c682b36a-29b9-429f-b109-e75251bb6cd8", + "name": "Bear Creek Brews", + "brewery_type": "micro", + "address_1": "10538 Nc 902 Hwy", + "address_2": null, + "address_3": null, + "city": "Bear Creek", + "state_province": "North Carolina", + "postal_code": "27207-9269", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9192003930", + "website_url": "http://www.bearcreekbrews.com", + "state": "North Carolina", + "street": "10538 Nc 902 Hwy" + }, + { + "id": "7ce869c5-a47a-4bab-ac9f-775ee05a0a2e", + "name": "Bear Island Brewing Company", + "brewery_type": "micro", + "address_1": "1620 N Liberty St", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83704-7739", + "country": "United States", + "longitude": -116.260854, + "latitude": 43.620592, + "phone": "2089082496", + "website_url": "http://www.bearislandbrewing.com", + "state": "Idaho", + "street": "1620 N Liberty St" + }, + { + "id": "c316f64a-b4d1-40f5-a5b3-65cc2498cbc5", + "name": "Bear Republic Brewing Co", + "brewery_type": "regional", + "address_1": "345 Healdsburg Ave", + "address_2": null, + "address_3": null, + "city": "Healdsburg", + "state_province": "California", + "postal_code": "95448-4105", + "country": "United States", + "longitude": -122.8713046, + "latitude": 38.6110317, + "phone": "7074332337", + "website_url": "http://www.bearrepublic.com", + "state": "California", + "street": "345 Healdsburg Ave" + }, + { + "id": "13209af8-ee4b-40f6-8396-17ecb6ff09ff", + "name": "Bear Republic Brewing Co - Production facility", + "brewery_type": "regional", + "address_1": "110 Sandholm Ln Ste 10", + "address_2": null, + "address_3": null, + "city": "Cloverdale", + "state_province": "California", + "postal_code": "95425-4439", + "country": "United States", + "longitude": -123.0108285, + "latitude": 38.78169817, + "phone": "7078942722", + "website_url": "http://www.bearrepublic.com", + "state": "California", + "street": "110 Sandholm Ln Ste 10" + }, + { + "id": "9d17cc50-aa5b-41a1-9aa7-2ae4dd82e743", + "name": "Bear Republic Brewing Co Pub & Restaurant - Lakeside", + "brewery_type": "brewpub", + "address_1": "5000 Roberts Lake Rd", + "address_2": null, + "address_3": null, + "city": "Rohnert Park", + "state_province": "California", + "postal_code": "94928", + "country": "United States", + "longitude": -122.7101405, + "latitude": 38.3649703, + "phone": "7075852722", + "website_url": "http://bearrepublic.com", + "state": "California", + "street": "5000 Roberts Lake Rd" + }, + { + "id": "05d9957f-92a7-4616-baeb-9f85fa170f22", + "name": "Bear Roots Brewing Company", + "brewery_type": "micro", + "address_1": "1213 S Santa Fe Ave", + "address_2": null, + "address_3": null, + "city": "Vista", + "state_province": "California", + "postal_code": "92083-7230", + "country": "United States", + "longitude": -117.226238, + "latitude": 33.188251, + "phone": "7607264204", + "website_url": "http://www.bearrootsbrewing.com", + "state": "California", + "street": "1213 S Santa Fe Ave" + }, + { + "id": "a24f319e-eb59-4658-b104-3437dbb34068", + "name": "Beara Brewing Co.", + "brewery_type": "micro", + "address_1": "2800 Lafayette Rd", + "address_2": null, + "address_3": null, + "city": "Portsmouth", + "state_province": "New Hampshire", + "postal_code": "03801-5915", + "country": "United States", + "longitude": -70.790732, + "latitude": 43.027935, + "phone": "3475780585", + "website_url": "http://www.bearairishbrew.com", + "state": "New Hampshire", + "street": "2800 Lafayette Rd" + }, + { + "id": "cfd1342e-ac6e-4c57-9d5c-c120c6d7468b", + "name": "Beard Engine Brewing Co", + "brewery_type": "micro", + "address_1": "208 Main St", + "address_2": null, + "address_3": null, + "city": "Alba", + "state_province": "Missouri", + "postal_code": "64830", + "country": "United States", + "longitude": -94.418276, + "latitude": 37.248046, + "phone": "4174830709", + "website_url": null, + "state": "Missouri", + "street": "208 Main St" + }, + { + "id": "3a8c6632-e9df-4d42-9adb-a2cb5c6863c8", + "name": "Bearded Fox Brewing Co.", + "brewery_type": "micro", + "address_1": "11729 Spring Cypress Rd Ste R", + "address_2": null, + "address_3": null, + "city": "Tomball", + "state_province": "Texas", + "postal_code": "77377-6063", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8327617928", + "website_url": "http://www.beardedfoxbrewing.com", + "state": "Texas", + "street": "11729 Spring Cypress Rd Ste R" + }, + { + "id": "667547fa-dcf1-4b05-9f59-53c6c7a24847", + "name": "Bearded Iris Brewing", + "brewery_type": "micro", + "address_1": "101 Van Buren St", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37208-1719", + "country": "United States", + "longitude": -86.786174, + "latitude": 36.181424, + "phone": "6159287988", + "website_url": "http://www.beardedirisbrewing.com", + "state": "Tennessee", + "street": "101 Van Buren St" + }, + { + "id": "6bece4ab-f1f5-487e-a326-150ee9487d0b", + "name": "Bearded Owl Brewing", + "brewery_type": "brewpub", + "address_1": "112 State St Ste 1A", + "address_2": null, + "address_3": null, + "city": "Peoria", + "state_province": "Illinois", + "postal_code": "61602-5121", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3093601980", + "website_url": null, + "state": "Illinois", + "street": "112 State St Ste 1A" + }, + { + "id": "b4e2e758-52bb-4745-b36a-6732aae2a4c2", + "name": "Beards Brewery", + "brewery_type": "brewpub", + "address_1": "215 E Lake St", + "address_2": null, + "address_3": null, + "city": "Petoskey", + "state_province": "Michigan", + "postal_code": "49770-2415", + "country": "United States", + "longitude": -84.95425838, + "latitude": 45.37533801, + "phone": "2317532221", + "website_url": "http://www.beardsbrewery.com", + "state": "Michigan", + "street": "215 E Lake St" + }, + { + "id": "882b9abc-a864-42f2-9cc3-f35286b0aaec", + "name": "Beards Brewery Production Facility", + "brewery_type": "micro", + "address_1": "6328 Ferry Ave", + "address_2": null, + "address_3": null, + "city": "Charlevoix", + "state_province": "Michigan", + "postal_code": "49720-9504", + "country": "United States", + "longitude": -85.249116, + "latitude": 45.304738, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "6328 Ferry Ave" + }, + { + "id": "9ba20e75-2968-42ad-b08d-8241c134deeb", + "name": "Beardslee Public House", + "brewery_type": "brewpub", + "address_1": "19116 Beardslee Blvd Ste 201", + "address_2": null, + "address_3": null, + "city": "Bothell", + "state_province": "Washington", + "postal_code": "98011-0202", + "country": "United States", + "longitude": -122.1914046, + "latitude": 47.7663209, + "phone": "4252861001", + "website_url": "https://beardsleeph.com", + "state": "Washington", + "street": "19116 Beardslee Blvd Ste 201" + }, + { + "id": "b534a072-f086-416b-bfce-3efdcba1784b", + "name": "Bearpaw River Brewing Co", + "brewery_type": "micro", + "address_1": "4605 E Palmer Wasilla Hwy", + "address_2": null, + "address_3": null, + "city": "Wasilla", + "state_province": "Alaska", + "postal_code": "99654-7679", + "country": "United States", + "longitude": -149.4127103, + "latitude": 61.5752695, + "phone": null, + "website_url": "http://bearpawriverbrewing.com", + "state": "Alaska", + "street": "4605 E Palmer Wasilla Hwy" + }, + { + "id": "a2a4f05a-7e2d-4b7c-a22f-45f90db7d334", + "name": "BearWaters Brewing Co", + "brewery_type": "brewpub", + "address_1": "101 Park St", + "address_2": null, + "address_3": null, + "city": "Canton", + "state_province": "North Carolina", + "postal_code": "28716-4319", + "country": "United States", + "longitude": -82.843001, + "latitude": 35.53137, + "phone": "8282734200", + "website_url": "http://www.bwbrewing.com", + "state": "North Carolina", + "street": "101 Park St" + }, + { + "id": "713bb4bb-a85b-490f-aae2-9d08fcdc094f", + "name": "Beaver Beer Co", + "brewery_type": "contract", + "address_1": "307 Greens Farms Rd", + "address_2": null, + "address_3": null, + "city": "Westport", + "state_province": "Connecticut", + "postal_code": "06880-6227", + "country": "United States", + "longitude": -73.311685, + "latitude": 41.12587, + "phone": null, + "website_url": "http://www.beaverbeer.com", + "state": "Connecticut", + "street": "307 Greens Farms Rd" + }, + { + "id": "112759fc-c374-4931-8624-0c487bd7820d", + "name": "Beaver Brewery", + "brewery_type": "micro", + "address_1": "14 Tang Street", + "address_2": "2", + "address_3": null, + "city": "Coconut Grove", + "state_province": "NT", + "postal_code": "810", + "country": "Australia", + "longitude": 130.8545911, + "latitude": -12.3997094, + "phone": "+61 412 089 948", + "website_url": "https://www.beaverbrewery.com.au/", + "state": "NT", + "street": "14 Tang Street" + }, + { + "id": "571e446c-b17d-40ba-98b1-a60daa9bb961", + "name": "Beaver Brewery At Mo's Place", + "brewery_type": "brewpub", + "address_1": "1908 Elm St", + "address_2": null, + "address_3": null, + "city": "Beaver", + "state_province": "Kansas", + "postal_code": "67525-9231", + "country": "United States", + "longitude": -98.667933, + "latitude": 38.639049, + "phone": "6205872350", + "website_url": "http://www.mosbrewpub.com", + "state": "Kansas", + "street": "1908 Elm St" + }, + { + "id": "c0b53d0f-5c81-435b-920d-a193e02e1b73", + "name": "Beaver Brewing Co", + "brewery_type": "brewpub", + "address_1": "1820 7th Ave", + "address_2": null, + "address_3": null, + "city": "Beaver Falls", + "state_province": "Pennsylvania", + "postal_code": "15010-4001", + "country": "United States", + "longitude": -80.3192793, + "latitude": 40.7650557, + "phone": null, + "website_url": "http://www.beaverbrewingcompany.com", + "state": "Pennsylvania", + "street": "1820 7th Ave" + }, + { + "id": "ef663619-6faa-4478-b754-c54f6f5cc823", + "name": "Beaver Creek Brewery", + "brewery_type": "micro", + "address_1": "104 W Oregon Ave", + "address_2": null, + "address_3": null, + "city": "Wibaux", + "state_province": "Montana", + "postal_code": "59353-8001", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4067952337", + "website_url": "http://www.beavercreekbrewery.com", + "state": "Montana", + "street": "104 W Oregon Ave" + }, + { + "id": "2ca3add8-8d9b-4195-a269-5cc0d4afcc07", + "name": "Beaver Island Brewing Company", + "brewery_type": "micro", + "address_1": "216 6th Ave S", + "address_2": null, + "address_3": null, + "city": "Saint Cloud", + "state_province": "Minnesota", + "postal_code": "56301-4304", + "country": "United States", + "longitude": -94.15733312, + "latitude": 45.5585455, + "phone": "3202535907", + "website_url": "http://www.beaverislandbrew.com", + "state": "Minnesota", + "street": "216 6th Ave S" + }, + { + "id": "92089237-a5bc-40cc-b7c8-b666f1db822a", + "name": "Beaver Street Brewery", + "brewery_type": "brewpub", + "address_1": "11 S Beaver St Ste 1", + "address_2": null, + "address_3": null, + "city": "Flagstaff", + "state_province": "Arizona", + "postal_code": "86001-5500", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9287790079", + "website_url": "http://www.beaverstreetbrewery.com", + "state": "Arizona", + "street": "11 S Beaver St Ste 1" + }, + { + "id": "4fc62fdf-21cf-4b30-9f08-f40ee4ffac46", + "name": "Beaverhead Brewing Co", + "brewery_type": "micro", + "address_1": "218 S Montana St", + "address_2": null, + "address_3": null, + "city": "Dillon", + "state_province": "Montana", + "postal_code": "59725-2438", + "country": "United States", + "longitude": -112.6396875, + "latitude": 45.21575351, + "phone": "4069880011", + "website_url": "http://www.beaverheadbeer.com", + "state": "Montana", + "street": "218 S Montana St" + }, + { + "id": "40b45277-e99b-4068-894b-b4fb9fbf987f", + "name": "Beavers Bend Brewery", + "brewery_type": "micro", + "address_1": "46 Coho Rd", + "address_2": null, + "address_3": null, + "city": "Broken Bow", + "state_province": "Oklahoma", + "postal_code": "74728-6765", + "country": "United States", + "longitude": -94.7595504, + "latitude": 34.1658072, + "phone": "5804943455", + "website_url": "http://www.beaversbendbrewery.com", + "state": "Oklahoma", + "street": "46 Coho Rd" + }, + { + "id": "0b77f859-3790-499b-9d8a-13cb628363d8", + "name": "Bedlam Brewery Ltd", + "brewery_type": "micro", + "address_1": "Plumpton Green", + "address_2": null, + "address_3": null, + "city": "Lewes", + "state_province": "East Sussex", + "postal_code": "BN7 3DH", + "country": "England", + "longitude": -0.068698, + "latitude": 50.948125, + "phone": "1273978015", + "website_url": "https://bedlambrewery.co.uk/", + "state": "East Sussex", + "street": "Plumpton Green" + }, + { + "id": "047d4126-a132-4123-8e9a-aba351f31031", + "name": "Bedlam Brewing LLC", + "brewery_type": "brewpub", + "address_1": "2303 N Augusta St", + "address_2": null, + "address_3": null, + "city": "Staunton", + "state_province": "Virginia", + "postal_code": "24401-2597", + "country": "United States", + "longitude": -79.05582568, + "latitude": 38.16800319, + "phone": "5402211305", + "website_url": "http://www.facebook.com/Bedlam-Brewing-536957559822021", + "state": "Virginia", + "street": "2303 N Augusta St" + }, + { + "id": "53d076da-4ee2-491f-9513-f2bee77c3688", + "name": "Bee's Knees Ale House", + "brewery_type": "brewpub", + "address_1": "106 W Jasper St", + "address_2": null, + "address_3": null, + "city": "Versailles", + "state_province": "Missouri", + "postal_code": "65084", + "country": "United States", + "longitude": -92.835774, + "latitude": 38.479374, + "phone": "5735392525", + "website_url": null, + "state": "Missouri", + "street": "106 W Jasper St" + }, + { + "id": "4e43ccbc-bc47-405d-a48b-1d928c5ca462", + "name": "Beech Mountain Brewing Company", + "brewery_type": "micro", + "address_1": "1007 Beech Mountain Pkwy", + "address_2": null, + "address_3": null, + "city": "Beech Mountain", + "state_province": "North Carolina", + "postal_code": "28604-8018", + "country": "United States", + "longitude": -81.873356, + "latitude": 36.16819584, + "phone": "8283872011", + "website_url": "http://www.beechmountainresort.com", + "state": "North Carolina", + "street": "1007 Beech Mountain Pkwy" + }, + { + "id": "a0adf1e8-ce6a-4c06-a605-434032d6fa18", + "name": "Beehive Basin Brewery", + "brewery_type": "micro", + "address_1": "245 Town Center Ave", + "address_2": null, + "address_3": null, + "city": "Big Sky", + "state_province": "Montana", + "postal_code": "59716", + "country": "United States", + "longitude": -111.3037009, + "latitude": 45.259632, + "phone": "4069957444", + "website_url": "http://www.beehivebasinbrewery.com", + "state": "Montana", + "street": "245 Town Center Ave" + }, + { + "id": "98b4c7f1-cdf7-465b-a41c-ab456bfd6a61", + "name": "Beer Army", + "brewery_type": "brewpub", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "New Bern", + "state_province": "North Carolina", + "postal_code": "28564-3051", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2522885814", + "website_url": null, + "state": "North Carolina", + "street": null + }, + { + "id": "d5fd0450-160c-444f-a9b3-e027aed21cf4", + "name": "Beer By Design Brewery", + "brewery_type": "contract", + "address_1": "11490 Jackson St", + "address_2": null, + "address_3": null, + "city": "Thornton", + "state_province": "Colorado", + "postal_code": "80233-2533", + "country": "United States", + "longitude": -104.9417886, + "latitude": 39.9285623, + "phone": "3035172202", + "website_url": "http://www.beerbydesign.com", + "state": "Colorado", + "street": "11490 Jackson St" + }, + { + "id": "4d71267a-d27f-4322-afc6-403e860fc107", + "name": "Beer Church Brewing Company", + "brewery_type": "contract", + "address_1": "24 S Whittaker St", + "address_2": null, + "address_3": null, + "city": "New Buffalo", + "state_province": "Michigan", + "postal_code": "49117-1820", + "country": "United States", + "longitude": -86.74311848, + "latitude": 41.79322148, + "phone": "2192413876", + "website_url": "http://www.beerchurchbrewing.com", + "state": "Michigan", + "street": "24 S Whittaker St" + }, + { + "id": "d137a8cd-c65a-42c7-b537-b6e98b46c7af", + "name": "Beer Engine", + "brewery_type": "micro", + "address_1": "107 Larrimore Ln", + "address_2": null, + "address_3": null, + "city": "Danville", + "state_province": "Kentucky", + "postal_code": "40422-1674", + "country": "United States", + "longitude": -84.771328, + "latitude": 37.6481, + "phone": "5024035680", + "website_url": "http://www.kybeerengine.com", + "state": "Kentucky", + "street": "107 Larrimore Ln" + }, + { + "id": "3477a416-4704-4a80-835b-adcb220c64bb", + "name": "Beer Fontaine", + "brewery_type": "micro", + "address_1": "1575B Botany Road", + "address_2": null, + "address_3": null, + "city": "Botany", + "state_province": "NSW", + "postal_code": "2019", + "country": "Australia", + "longitude": 151.2007962, + "latitude": -33.9524167, + "phone": "+61 2 7208 4486", + "website_url": "http://beerfontaine.com.au/", + "state": "NSW", + "street": "1575B Botany Road" + }, + { + "id": "2fd04e11-b782-40c8-9d56-49698bbf2afa", + "name": "Beer Garden Brewing", + "brewery_type": "micro", + "address_1": "28 London Street", + "address_2": null, + "address_3": null, + "city": "Port Lincoln", + "state_province": "SA", + "postal_code": "5606", + "country": "Australia", + "longitude": 135.8699779, + "latitude": -34.724806, + "phone": "+61 8 7530 1400", + "website_url": "http://www.portlincoln.beer/", + "state": "SA", + "street": "28 London Street" + }, + { + "id": "ccad31bf-f381-4f58-a204-993f59e3029f", + "name": "Beer Hound Brewery", + "brewery_type": "contract", + "address_1": "201 Waters Pl Apt 102", + "address_2": null, + "address_3": null, + "city": "Culpeper", + "state_province": "Virginia", + "postal_code": "22701-3102", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5403175327", + "website_url": null, + "state": "Virginia", + "street": "201 Waters Pl Apt 102" + }, + { + "id": "1bfba23f-2815-4f28-9d5d-37bca2306903", + "name": "Beer Is Good Brewing Company", + "brewery_type": "micro", + "address_1": "216 E Main", + "address_2": null, + "address_3": null, + "city": "Norman", + "state_province": "Oklahoma", + "postal_code": "73069", + "country": "United States", + "longitude": -97.4411294, + "latitude": 35.2216069, + "phone": "4058577080", + "website_url": "http://bigbrew.co", + "state": "Oklahoma", + "street": "216 E Main" + }, + { + "id": "bf244193-89cd-4321-906c-abda26f7199d", + "name": "Beer Lab HI", + "brewery_type": "micro", + "address_1": "1010 University Ave Ste B1", + "address_2": null, + "address_3": null, + "city": "Honolulu", + "state_province": "Hawaii", + "postal_code": "96826-1537", + "country": "United States", + "longitude": -157.8218784, + "latitude": 21.29214406, + "phone": "8088880913", + "website_url": "http://www.beerlabhi.com", + "state": "Hawaii", + "street": "1010 University Ave Ste B1" + }, + { + "id": "bb4ba62d-f718-46d1-929b-3a8b4e96b80c", + "name": "Beer Me Brewery", + "brewery_type": "brewpub", + "address_1": "Grand Parade", + "address_2": null, + "address_3": null, + "city": "Eastbourne", + "state_province": "East Sussex", + "postal_code": "BN21 3YN", + "country": "England", + "longitude": 0.291598, + "latitude": 50.767006, + "phone": "1323729967", + "website_url": "https://beermebrewery.co.uk/", + "state": "East Sussex", + "street": "Grand Parade" + }, + { + "id": "3c2c022b-b5c3-438e-b7fc-67b76b715f86", + "name": "Beer Naked Brewery", + "brewery_type": "brewpub", + "address_1": "7678 VT-RTE 9", + "address_2": null, + "address_3": null, + "city": "Marlboro", + "state_province": "Vermont", + "postal_code": "05344", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8024647702", + "website_url": "http://www.beernakedbrewery.com", + "state": "Vermont", + "street": "7678 VT-RTE 9" + }, + { + "id": "a8a27ab9-3403-4fa9-a852-ceb6fe938af4", + "name": "Beer On Earth", + "brewery_type": "micro", + "address_1": "425 W Fountain St #104", + "address_2": null, + "address_3": null, + "city": "Providence", + "state_province": "Rhode Island", + "postal_code": "02903", + "country": "United States", + "longitude": -71.4238514, + "latitude": 41.8189698, + "phone": "4018850580", + "website_url": "http://www.beeronearth.com", + "state": "Rhode Island", + "street": "425 W Fountain St #104" + }, + { + "id": "7aa429f1-a3c8-4ff8-b2c3-18a451dee621", + "name": "Beer Religion", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Winter Park", + "state_province": "Florida", + "postal_code": "32792-5111", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "2d71ef89-cdf4-4e5a-b862-14aca5e47c93", + "name": "Beer Research Institute, The", + "brewery_type": "brewpub", + "address_1": "1641 S Stateley Dr Ste 104", + "address_2": null, + "address_3": null, + "city": "Mesa", + "state_province": "Arizona", + "postal_code": "85204", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4808922020", + "website_url": "http://www.bri.beer", + "state": "Arizona", + "street": "1641 S Stateley Dr Ste 104" + }, + { + "id": "3e53001e-282d-4c9e-970e-0dfc10173651", + "name": "Beer stand MARCA", + "brewery_type": "brewpub", + "address_1": "1-1-14 Sangenyanishi", + "address_2": null, + "address_3": null, + "city": "Osaka", + "state_province": "Osaka", + "postal_code": "551-0001", + "country": "Japan", + "longitude": 135.4799445, + "latitude": 34.66768998, + "phone": "818021106099", + "website_url": "https://beermarca.jp/", + "state": "Osaka", + "street": "1-1-14 Sangenyanishi" + }, + { + "id": "0d1319b0-3903-4e0d-88a1-7994da395a3c", + "name": "Beer Thug Brewing Company", + "brewery_type": "micro", + "address_1": "4400 Gage Ave", + "address_2": null, + "address_3": null, + "city": "Bell", + "state_province": "California", + "postal_code": "90201", + "country": "United States", + "longitude": -118.18860164471, + "latitude": 33.978161447335, + "phone": "2133068955", + "website_url": "https://www.beerthugbrew.com/", + "state": "California", + "street": "4400 Gage Ave" + }, + { + "id": "36e42b14-6bb0-4bba-b9d4-662def2778a6", + "name": "Beer Tree Brew Co", + "brewery_type": "micro", + "address_1": "197 Rte 369", + "address_2": null, + "address_3": null, + "city": "Port Crane", + "state_province": "New York", + "postal_code": "13833", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.beertreebrew.com", + "state": "New York", + "street": "197 Rte 369" + }, + { + "id": "b2acd8dd-3606-4794-bddb-db8e476f5ef2", + "name": "Beer Valley Brewing Co", + "brewery_type": "micro", + "address_1": "937 SE 12th Ave", + "address_2": null, + "address_3": null, + "city": "Ontario", + "state_province": "Oregon", + "postal_code": "97914-4473", + "country": "United States", + "longitude": -116.9539806, + "latitude": 44.01504307, + "phone": "5418819088", + "website_url": "http://www.beervalleybrewing.com", + "state": "Oregon", + "street": "937 SE 12th Ave" + }, + { + "id": "cbce47ad-2da8-4de9-806f-9c8e3fb39f76", + "name": "Beerded Brothers Brewing", + "brewery_type": "closed", + "address_1": "106 W 6th St", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98660", + "country": "United States", + "longitude": -122.6718911, + "latitude": 45.62576802, + "phone": "3606065806", + "website_url": "http://www.beerdedbrothers.net", + "state": "Washington", + "street": "106 W 6th St" + }, + { + "id": "25ba48be-b514-4a04-9278-96dd6192e172", + "name": "Beerfarm", + "brewery_type": "micro", + "address_1": "177 Gale Road", + "address_2": null, + "address_3": null, + "city": "Metricup", + "state_province": "WA", + "postal_code": "6280", + "country": "Australia", + "longitude": 115.1491063, + "latitude": -33.7866894, + "phone": "+61 8 9755 7177", + "website_url": "http://www.beerfarm.com.au/", + "state": "WA", + "street": "177 Gale Road" + }, + { + "id": "09c40072-dae9-445b-a8e5-574ac4c9371a", + "name": "Beerfoot Beach Bar", + "brewery_type": "micro", + "address_1": "2816 Avenue R 1/2", + "address_2": null, + "address_3": null, + "city": "Galveston", + "state_province": "Texas", + "postal_code": "77550-7742", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4097622337", + "website_url": "http://www.yagaspresents.com/beerfoot/index.html", + "state": "Texas", + "street": "2816 Avenue R 1/2" + }, + { + "id": "01883283-4a13-4857-9aad-e06298863ff3", + "name": "Begyle Brewing", + "brewery_type": "micro", + "address_1": "1800 W Cuyler Ave Ste 1E", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60613-3892", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7736616963", + "website_url": "http://www.begylebrewing.com", + "state": "Illinois", + "street": "1800 W Cuyler Ave Ste 1E" + }, + { + "id": "8617a78e-e352-479d-adfd-8c1cb2aef36a", + "name": "Belching Beaver Brewery", + "brewery_type": "regional", + "address_1": "1334 Rocky Point Dr", + "address_2": null, + "address_3": null, + "city": "Oceanside", + "state_province": "California", + "postal_code": "92056-5864", + "country": "United States", + "longitude": -117.292416, + "latitude": 33.2139275, + "phone": "7607321415", + "website_url": null, + "state": "California", + "street": "1334 Rocky Point Dr" + }, + { + "id": "a349e5e8-16d6-47e1-8c62-4403a2709927", + "name": "Belching Beaver Brewery Tavern & Grill", + "brewery_type": "brewpub", + "address_1": "302 E Broadway", + "address_2": null, + "address_3": null, + "city": "Vista", + "state_province": "California", + "postal_code": "92084-6020", + "country": "United States", + "longitude": -117.241029, + "latitude": 33.2021182, + "phone": "7605995832", + "website_url": null, + "state": "California", + "street": "302 E Broadway" + }, + { + "id": "93cacbb3-3e6b-47a9-a446-43ad639e6762", + "name": "Belching Beaver Brewery Vista", + "brewery_type": "micro", + "address_1": "980 Park Center Dr Ste A", + "address_2": null, + "address_3": null, + "city": "Vista", + "state_province": "California", + "postal_code": "92081-8351", + "country": "United States", + "longitude": -117.2410328, + "latitude": 33.20215305, + "phone": "7605995832", + "website_url": "http://www.belchingbeaver.com", + "state": "California", + "street": "980 Park Center Dr Ste A" + }, + { + "id": "c351a7a3-6003-4573-962c-16d51a56bd53", + "name": "Belding Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Belding", + "state_province": "Michigan", + "postal_code": "48809-1678", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6163086285", + "website_url": null, + "state": "Michigan", + "street": null + }, + { + "id": "ebb8c392-eddb-44c8-9561-44f9186b8518", + "name": "Belfast Bay Brewing Co", + "brewery_type": "contract", + "address_1": "100 Searsport Ave", + "address_2": null, + "address_3": null, + "city": "Belfast", + "state_province": "Maine", + "postal_code": "04915-7221", + "country": "United States", + "longitude": -68.9880177, + "latitude": 44.4309432, + "phone": "2074608654", + "website_url": "http://www.belfastbaybrewing.com", + "state": "Maine", + "street": "100 Searsport Ave" + }, + { + "id": "20ebe2cc-2803-4085-aada-cc38ea1a1f74", + "name": "Belford Brewing Company", + "brewery_type": "micro", + "address_1": "84 Leonardville Rd", + "address_2": null, + "address_3": null, + "city": "Belford", + "state_province": "New Jersey", + "postal_code": "07718-1144", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7327697168", + "website_url": "http://www.belfordbrewing.com", + "state": "New Jersey", + "street": "84 Leonardville Rd" + }, + { + "id": "43fd7230-116c-4c72-a9d3-5bd96411c362", + "name": "Belgian Mare Brewery", + "brewery_type": "closed", + "address_1": "207 Gilsum Mine Rd", + "address_2": null, + "address_3": null, + "city": "Alstead", + "state_province": "New Hampshire", + "postal_code": "03602-3915", + "country": "United States", + "longitude": -72.28542213, + "latitude": 43.10984838, + "phone": "6038357801", + "website_url": "http://www.belgianmare.com", + "state": "New Hampshire", + "street": "207 Gilsum Mine Rd" + }, + { + "id": "753c642c-4239-427f-a7e1-7c8d2d4f28e3", + "name": "Bell's Brewery, Inc", + "brewery_type": "regional", + "address_1": "8938 Krum Ave", + "address_2": null, + "address_3": null, + "city": "Galesburg", + "state_province": "Michigan", + "postal_code": "49053-9558", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2693822338", + "website_url": "http://www.bellsbeer.com", + "state": "Michigan", + "street": "8938 Krum Ave" + }, + { + "id": "ddb10d3b-41f8-4a89-a91a-5e751230f8ec", + "name": "Bell's Eccentric Cafe", + "brewery_type": "brewpub", + "address_1": "355 E Kalamazoo Ave", + "address_2": null, + "address_3": null, + "city": "Kalamazoo", + "state_province": "Michigan", + "postal_code": "49007-3807", + "country": "United States", + "longitude": -85.57887292, + "latitude": 42.29491555, + "phone": "2693822332", + "website_url": "http://www.bellsbeer.com", + "state": "Michigan", + "street": "355 E Kalamazoo Ave" + }, + { + "id": "767cf890-0184-4c32-afd8-0260ce1a0f0b", + "name": "Bella Casa Di Vino", + "brewery_type": "brewpub", + "address_1": "201 N Riverside Ave", + "address_2": null, + "address_3": null, + "city": "Saint Clair", + "state_province": "Michigan", + "postal_code": "48079-5491", + "country": "United States", + "longitude": -82.48591, + "latitude": 42.823895, + "phone": "8103261212", + "website_url": "http://www.suescoffeehouse.com", + "state": "Michigan", + "street": "201 N Riverside Ave" + }, + { + "id": "5ce26e95-3deb-4b79-be7d-3d7962abc3f3", + "name": "Belle Isle Restaurant and Brewing Co", + "brewery_type": "brewpub", + "address_1": "1900 NW Expressway Ste 44", + "address_2": null, + "address_3": null, + "city": "Oklahoma City", + "state_province": "Oklahoma", + "postal_code": "73118-1832", + "country": "United States", + "longitude": -97.545912, + "latitude": 35.522258, + "phone": "4058401911", + "website_url": "http://www.belleislerestaurant.com", + "state": "Oklahoma", + "street": "1900 NW Expressway Ste 44" + }, + { + "id": "262a1ab1-6ea6-445e-bd22-5d56d3877287", + "name": "Bellefonte Brewing Co", + "brewery_type": "micro", + "address_1": "3605 Old Capitol Trl Unit C7/C8", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "Delaware", + "postal_code": "19808-6043", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3025401055", + "website_url": "http://www.bellefontebrewingco.com", + "state": "Delaware", + "street": "3605 Old Capitol Trl Unit C7/C8" + }, + { + "id": "098131e3-d4fb-4b66-b969-525867ea43e8", + "name": "Bellevue Brewing Spring District Brewpub", + "brewery_type": "brewpub", + "address_1": "12190 NE District Way", + "address_2": null, + "address_3": null, + "city": "Bellevue", + "state_province": "Washington", + "postal_code": "98005", + "country": "United States", + "longitude": -122.1777366164, + "latitude": 47.621516191743, + "phone": "4254978686", + "website_url": "http://www.bellevuebrewing.com", + "state": "Washington", + "street": "12190 NE District Way" + }, + { + "id": "d91eef0b-b1b1-40f8-9895-b92c6e865027", + "name": "Bellport Brewing Company", + "brewery_type": "proprietor", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Rocky Point", + "state_province": "New York", + "postal_code": "11778-8986", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6319094457", + "website_url": "http://www.bellportbrewing.com", + "state": "New York", + "street": null + }, + { + "id": "d88e48bb-6bc9-46a6-a91f-56ec550e3262", + "name": "Bells Beach Brewing", + "brewery_type": "micro", + "address_1": "22 Baines Crescent", + "address_2": "Shed 2", + "address_3": null, + "city": "Torquay", + "state_province": "VIC", + "postal_code": "3228", + "country": "Australia", + "longitude": 144.3143953, + "latitude": -38.326986, + "phone": "+61 3 7019 8161", + "website_url": "http://www.bellsbeachbrewing.com/", + "state": "VIC", + "street": "22 Baines Crescent" + }, + { + "id": "6c1b68ee-5a2c-4572-9412-aa97f5c174f6", + "name": "Belltown Brewery", + "brewery_type": "closed", + "address_1": "200 Bell St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98121-1716", + "country": "United States", + "longitude": -122.3456669, + "latitude": 47.6142953, + "phone": "2064857233", + "website_url": "http://www.belltownbrewingseattle.com", + "state": "Washington", + "street": "200 Bell St" + }, + { + "id": "7258dd32-e31a-42a1-ad47-68b29e59bfef", + "name": "Bellwether Brewing Co", + "brewery_type": "micro", + "address_1": "2019 N Monroe St", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99205-4542", + "country": "United States", + "longitude": -117.4265497, + "latitude": 47.67645574, + "phone": "5092808345", + "website_url": "http://www.bellwetherbrewing.net", + "state": "Washington", + "street": "2019 N Monroe St" + }, + { + "id": "3a6fa1f2-5baa-48b0-ab62-17580ee59c80", + "name": "Belly Love Brewing Company", + "brewery_type": "brewpub", + "address_1": "725 E Main St", + "address_2": null, + "address_3": null, + "city": "Purcellville", + "state_province": "Virginia", + "postal_code": "20132-3178", + "country": "United States", + "longitude": -77.7015903, + "latitude": 39.1364247, + "phone": "5404413159", + "website_url": "http://www.bellylovebrewing.com", + "state": "Virginia", + "street": "725 E Main St" + }, + { + "id": "1fcbc3b2-91be-4668-9519-e0ec141e1ec6", + "name": "Belly Up Beer Company", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Western Springs", + "state_province": "Illinois", + "postal_code": "60558", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7088379762", + "website_url": "http://www.bellyupbeer.com", + "state": "Illinois", + "street": null + }, + { + "id": "b5c1920a-6015-4f9e-9ba6-58e654fe2138", + "name": "Belmont Brewing Co", + "brewery_type": "brewpub", + "address_1": "25 39th Pl", + "address_2": null, + "address_3": null, + "city": "Long Beach", + "state_province": "California", + "postal_code": "90803-2806", + "country": "United States", + "longitude": -118.1480454, + "latitude": 33.759551, + "phone": "5624333891", + "website_url": "http://www.belmontbrewing.com", + "state": "California", + "street": "25 39th Pl" + }, + { + "id": "0825c760-b25e-4d4d-ac6f-67498bffe8f6", + "name": "Below the Radar Brewing Co", + "brewery_type": "brewpub", + "address_1": "220 Holmes Ave NE", + "address_2": null, + "address_3": null, + "city": "Huntsville", + "state_province": "Alabama", + "postal_code": "35801-4837", + "country": "United States", + "longitude": -86.58583931, + "latitude": 34.73272365, + "phone": "2564696617", + "website_url": "http://www.btrbrew.com", + "state": "Alabama", + "street": "220 Holmes Ave NE" + }, + { + "id": "3e8bc011-fde9-480c-aed4-b1aa9a99fa57", + "name": "Beltway Brewing Company", + "brewery_type": "micro", + "address_1": "22620 Davis Dr Ste 110", + "address_2": null, + "address_3": null, + "city": "Sterling", + "state_province": "Virginia", + "postal_code": "20164-4470", + "country": "United States", + "longitude": -77.4172876, + "latitude": 38.9914289, + "phone": "5719892739", + "website_url": "http://www.beltwaybrewco.com", + "state": "Virginia", + "street": "22620 Davis Dr Ste 110" + }, + { + "id": "e99c9fda-b861-4dc4-99bb-58b685654f4f", + "name": "Bemidji Brewing Company", + "brewery_type": "brewpub", + "address_1": "211 America Ave NW", + "address_2": null, + "address_3": null, + "city": "Bemidji", + "state_province": "Minnesota", + "postal_code": "56601-3176", + "country": "United States", + "longitude": -94.88482747, + "latitude": 47.4699022, + "phone": "2184447011", + "website_url": "http://www.bemidjibeer.com", + "state": "Minnesota", + "street": "211 America Ave NW" + }, + { + "id": "80fb35c8-eef8-49f7-8d97-ed0a432d52c3", + "name": "Ben's Brewing Station", + "brewery_type": "micro", + "address_1": "719 Walnut Street", + "address_2": null, + "address_3": null, + "city": "Yankton", + "state_province": "South Dakota", + "postal_code": "57078-3542", + "country": "United States", + "longitude": -97.39428007, + "latitude": 42.8771861, + "phone": "6056619090", + "website_url": "http://www.bensbrewing.shop", + "state": "South Dakota", + "street": "719 Walnut Street" + }, + { + "id": "db8a8a89-3084-4632-8215-36c9446426b5", + "name": "Ben's Tune-Up / Ben's Beer", + "brewery_type": "brewpub", + "address_1": "195 Hilliard Ave", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28801-3616", + "country": "United States", + "longitude": -82.5557931, + "latitude": 35.5912756, + "phone": "8284247580", + "website_url": "http://www.benstuneup.com", + "state": "North Carolina", + "street": "195 Hilliard Ave" + }, + { + "id": "ef1075c7-0384-4bfe-8034-2ba2e99a5a0c", + "name": "Benchmark Brewing Co", + "brewery_type": "closed", + "address_1": "6190 Fairmount Ave Ste G", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92120-3428", + "country": "United States", + "longitude": -117.1020694, + "latitude": 32.78737066, + "phone": "6197952911", + "website_url": "http://www.benchmarkbrewing.com", + "state": "California", + "street": "6190 Fairmount Ave Ste G" + }, + { + "id": "b644eedc-dda5-49a4-b05f-8baed4791d41", + "name": "Benchtop Brewing Company", + "brewery_type": "micro", + "address_1": "1129 Boissevain Ave", + "address_2": null, + "address_3": null, + "city": "Norfolk", + "state_province": "Virginia", + "postal_code": "23507-1401", + "country": "United States", + "longitude": -76.30742245, + "latitude": 36.86493389, + "phone": "7573219482", + "website_url": "http://www.benchtopbrewing.com", + "state": "Virginia", + "street": "1129 Boissevain Ave" + }, + { + "id": "66d441d7-df24-4f32-83be-9a80d9d63951", + "name": "Bend Brewing Co", + "brewery_type": "brewpub", + "address_1": "1019 NW Brooks St", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97703-2018", + "country": "United States", + "longitude": -121.3139312, + "latitude": 44.06051115, + "phone": "5413831599", + "website_url": "http://www.bendbrewingco.com", + "state": "Oregon", + "street": "1019 NW Brooks St" + }, + { + "id": "58d75aca-9aef-48d1-b81a-0d085c4f4da5", + "name": "Bend Brewing High Desert", + "brewery_type": "closed", + "address_1": "20650 NE High Desert Lane", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97701", + "country": "United States", + "longitude": -121.2914842, + "latitude": 44.08727607, + "phone": "5413831599", + "website_url": null, + "state": "Oregon", + "street": "20650 NE High Desert Lane" + }, + { + "id": "39e157a0-d45a-486e-b23e-17010910d1f1", + "name": "Bendigo Brewing", + "brewery_type": "micro", + "address_1": "25 Farmer Lane", + "address_2": null, + "address_3": null, + "city": "Bendigo", + "state_province": "VIC", + "postal_code": "3550", + "country": "Australia", + "longitude": 144.2833465, + "latitude": -36.7554722, + "phone": "+61 429 232 928", + "website_url": "https://www.bendigobrewing.com.au/", + "state": "VIC", + "street": "25 Farmer Lane" + }, + { + "id": "2740427b-cb76-4b45-bb8d-364e82541041", + "name": "Benford Brewing Co.", + "brewery_type": "micro", + "address_1": "2271 Boxcar Rd", + "address_2": null, + "address_3": null, + "city": "Lancaster", + "state_province": "South Carolina", + "postal_code": "29720-9443", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "South Carolina", + "street": "2271 Boxcar Rd" + }, + { + "id": "71531995-c5a9-42fc-8e1e-04b3b57f13b5", + "name": "Bengal Brewing, LLC.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Spring Lake Park", + "state_province": "Minnesota", + "postal_code": "55432-2802", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6125188146", + "website_url": "http://www.BengalBrewingLLC.com", + "state": "Minnesota", + "street": null + }, + { + "id": "903f91f9-2c57-4909-87f7-fa268e44d454", + "name": "Benjamin Beer Co", + "brewery_type": "closed", + "address_1": "507 6th St", + "address_2": null, + "address_3": null, + "city": "Racine", + "state_province": "Wisconsin", + "postal_code": "53403-1117", + "country": "United States", + "longitude": -87.78630172, + "latitude": 42.72641512, + "phone": "2625832034", + "website_url": "http://www.benjaminbeer.com", + "state": "Wisconsin", + "street": "507 6th St" + }, + { + "id": "74266e58-c60c-4eed-bb2a-e582ac87c18c", + "name": "Bennidito's Brewpub", + "brewery_type": "brewpub", + "address_1": "1909 E Sprague Ave", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99202-3120", + "country": "United States", + "longitude": -117.2178526, + "latitude": 47.6571208, + "phone": "5092905018", + "website_url": "http://www.benniditosbrewpub.com", + "state": "Washington", + "street": "1909 E Sprague Ave" + }, + { + "id": "d20b7fb9-43a2-4ee6-bc77-46a26866cbfa", + "name": "Benny Boy Brewing", + "brewery_type": "micro", + "address_1": "1821 Daly St", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90031", + "country": "United States", + "longitude": -118.21606709577, + "latitude": 34.064259318212, + "phone": null, + "website_url": "https://bennyboybrewing.com/", + "state": "California", + "street": "1821 Daly St" + }, + { + "id": "709f000d-826d-45e8-ab4f-c89137a58790", + "name": "Benny Brewing Co.", + "brewery_type": "micro", + "address_1": "1429 Sans Souci Pkwy", + "address_2": null, + "address_3": null, + "city": "Wilkes Barre", + "state_province": "Pennsylvania", + "postal_code": "18706-6025", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5702356995", + "website_url": "http://www.martysblueroom.com", + "state": "Pennsylvania", + "street": "1429 Sans Souci Pkwy" + }, + { + "id": "d19a5bc3-75b2-4119-b18d-fec643a1a3bc", + "name": "Benoit-Casper Brewing", + "brewery_type": "micro", + "address_1": "1201 Pennsylvania Ave Ste E", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "California", + "postal_code": "94801-2300", + "country": "United States", + "longitude": -122.3578637, + "latitude": 37.94244029, + "phone": "4086953449", + "website_url": "http://www.bcbrewing.com", + "state": "California", + "street": "1201 Pennsylvania Ave Ste E" + }, + { + "id": "c74f06ec-3978-451b-88b4-92d813b11903", + "name": "Benson Brewery", + "brewery_type": "brewpub", + "address_1": "6059 Maple St", + "address_2": null, + "address_3": null, + "city": "Omaha", + "state_province": "Nebraska", + "postal_code": "68104-4050", + "country": "United States", + "longitude": -96.00634511, + "latitude": 41.28489756, + "phone": "4029348668", + "website_url": "http://www.bensonbrewery.com", + "state": "Nebraska", + "street": "6059 Maple St" + }, + { + "id": "67b57b32-f216-4506-86eb-6ffd5ce23a00", + "name": "Benson Brothers Brewing", + "brewery_type": "micro", + "address_1": "18 Translink Drive", + "address_2": null, + "address_3": null, + "city": "Keilor Park", + "state_province": "VIC", + "postal_code": "3042", + "country": "Australia", + "longitude": 144.848697, + "latitude": -37.7224426, + "phone": "+61 3 9336 7077", + "website_url": "https://www.thebeerfactory.net.au/?utm_source=Google&utm_medium=Organic&utm_campaign=GMB", + "state": "VIC", + "street": "18 Translink Drive" + }, + { + "id": "82a77cad-f8b2-42ed-9427-ba12789ff73f", + "name": "Bent Barley Brewing Co", + "brewery_type": "micro", + "address_1": "15416 E Orchard Rd", + "address_2": null, + "address_3": null, + "city": "Centennial", + "state_province": "Colorado", + "postal_code": "80016", + "country": "United States", + "longitude": -104.8095432, + "latitude": 39.6101371, + "phone": "3036906311", + "website_url": "https://www.bentbarley.com/", + "state": "Colorado", + "street": "15416 E Orchard Rd" + }, + { + "id": "d246dbd2-5991-48f5-9e47-3bca8b6027f0", + "name": "Bent Bine Brew Co. LLC", + "brewery_type": "brewpub", + "address_1": "23297 WA-3", + "address_2": null, + "address_3": null, + "city": "Belfair", + "state_province": "Washington", + "postal_code": "98394", + "country": "United States", + "longitude": -122.83223, + "latitude": 47.445115, + "phone": "8142739379", + "website_url": "http://www.bentbine.com", + "state": "Washington", + "street": "23297 WA-3" + }, + { + "id": "449a1e99-45aa-40d0-a3a8-d825919641d6", + "name": "Bent Brewstillery", + "brewery_type": "micro", + "address_1": "1744 Terrace Dr", + "address_2": null, + "address_3": null, + "city": "Roseville", + "state_province": "Minnesota", + "postal_code": "55113-1315", + "country": "United States", + "longitude": -93.17364906, + "latitude": 45.02557829, + "phone": "8448792368", + "website_url": "http://www.bentbrewstillery.com", + "state": "Minnesota", + "street": "1744 Terrace Dr" + }, + { + "id": "11a4731f-5d28-410a-b5fe-a2302ea49e84", + "name": "Bent Bridge Brewing", + "brewery_type": "micro", + "address_1": "141 Nicholson Street", + "address_2": "137", + "address_3": null, + "city": "Brunswick East", + "state_province": "VIC", + "postal_code": "3057", + "country": "Australia", + "longitude": 144.9793033, + "latitude": -37.7716941, + "phone": "+61 3 9967 5232", + "website_url": "http://www.bridgeroadbrewers.com.au/", + "state": "VIC", + "street": "141 Nicholson Street" + }, + { + "id": "f4431225-2c10-4479-9ece-0090a958c1c1", + "name": "Bent Hill Brewery", + "brewery_type": "micro", + "address_1": "1972 Bent Hill Rd", + "address_2": null, + "address_3": null, + "city": "Randolph", + "state_province": "Vermont", + "postal_code": "05060-8833", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8022491125", + "website_url": "http://www.benthilbrewery.com", + "state": "Vermont", + "street": "1972 Bent Hill Rd" + }, + { + "id": "bdd49c54-8f0c-4e5f-8757-802bed30d8c9", + "name": "Bent Kettle Brewing Company", + "brewery_type": "closed", + "address_1": "1507 Montclair Pl", + "address_2": null, + "address_3": null, + "city": "Fort Atkinson", + "state_province": "Wisconsin", + "postal_code": "53538-3102", + "country": "United States", + "longitude": -88.861232, + "latitude": 42.9348495, + "phone": "9203909038", + "website_url": "http://www.bentkettle.com", + "state": "Wisconsin", + "street": "1507 Montclair Pl" + }, + { + "id": "8b43bd7c-41f0-4865-a9cf-0d82a7b53dcb", + "name": "Bent Paddle Brewing Co", + "brewery_type": "regional", + "address_1": "1912 W Michigan St", + "address_2": null, + "address_3": null, + "city": "Duluth", + "state_province": "Minnesota", + "postal_code": "55806-2135", + "country": "United States", + "longitude": -92.1219171, + "latitude": 46.7676912, + "phone": "2182792722", + "website_url": "http://www.bentpaddlebrewing.com", + "state": "Minnesota", + "street": "1912 W Michigan St" + }, + { + "id": "5e6cbfb1-f958-47d5-9a19-d8a639216888", + "name": "Bent River Brewing Co", + "brewery_type": "brewpub", + "address_1": "500 Jefferson St", + "address_2": null, + "address_3": null, + "city": "Burlington", + "state_province": "Iowa", + "postal_code": "52601", + "country": "United States", + "longitude": -91.1052085, + "latitude": 40.8106128, + "phone": "3192092773", + "website_url": "http://www.burlingtonbentriver.com", + "state": "Iowa", + "street": "500 Jefferson St" + }, + { + "id": "457f03ac-e315-4d9a-9a66-f091e90698da", + "name": "Bent River Brewing Co", + "brewery_type": "brewpub", + "address_1": "1413 5th Ave", + "address_2": null, + "address_3": null, + "city": "Moline", + "state_province": "Illinois", + "postal_code": "61265-1335", + "country": "United States", + "longitude": -90.51736337, + "latitude": 41.50590516, + "phone": "3097972722", + "website_url": "http://www.bentriverbrewing.com", + "state": "Illinois", + "street": "1413 5th Ave" + }, + { + "id": "c542eae9-6b85-4583-84c4-cba24c0cd68c", + "name": "Bent River Brewing Co Production & Tasting Room", + "brewery_type": "micro", + "address_1": "512 24th St", + "address_2": null, + "address_3": null, + "city": "Rock Island", + "state_province": "Illinois", + "postal_code": "61201-8928", + "country": "United States", + "longitude": -90.5669283, + "latitude": 41.5076339, + "phone": "3092834811", + "website_url": "http://www.bentriverbrewery.com", + "state": "Illinois", + "street": "512 24th St" + }, + { + "id": "eeabc125-dc98-49cf-a9da-969ee820c348", + "name": "Bent Run Brewing Co", + "brewery_type": "brewpub", + "address_1": "5607 SR 957", + "address_2": null, + "address_3": null, + "city": "Lander", + "state_province": "Pennsylvania", + "postal_code": "16345", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8147578269", + "website_url": "http://www.bentrunbrewing.com", + "state": "Pennsylvania", + "street": "5607 SR 957" + }, + { + "id": "2daabc96-c1c4-4bbc-a784-a0720a5c96c3", + "name": "Bent Shovel Brewing", + "brewery_type": "micro", + "address_1": "21678 S Latourette Rd", + "address_2": null, + "address_3": null, + "city": "Oregon City", + "state_province": "Oregon", + "postal_code": "97045-9453", + "country": "United States", + "longitude": -122.421183, + "latitude": 45.37878928, + "phone": "5038980220", + "website_url": "http://www.bentshovelbrewing.com", + "state": "Oregon", + "street": "21678 S Latourette Rd" + }, + { + "id": "ec45b763-05a4-490d-8a78-956939c38c6e", + "name": "Bent Shovel Brewing", + "brewery_type": "micro", + "address_1": "20179 S Springwater Rd", + "address_2": "Estacada", + "address_3": null, + "city": "Oregon City", + "state_province": "Oregon", + "postal_code": "97023", + "country": "United States", + "longitude": -122.3922913, + "latitude": 45.31388797, + "phone": "5038980220", + "website_url": "http://www.bentshovelbrewing.com", + "state": "Oregon", + "street": "20179 S Springwater Rd" + }, + { + "id": "05d4fc7f-58bc-4cc0-b5f8-c6829b0f6d86", + "name": "Bent Water Brewing Company", + "brewery_type": "micro", + "address_1": "180 Commercial St Ste 18", + "address_2": null, + "address_3": null, + "city": "Lynn", + "state_province": "Massachusetts", + "postal_code": "01905-3058", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.bentwaterbrewing.com", + "state": "Massachusetts", + "street": "180 Commercial St Ste 18" + }, + { + "id": "247d83f9-7df3-4842-afd7-4104946fb455", + "name": "Bentonville Brewing Co", + "brewery_type": "micro", + "address_1": "1700 S 1st St", + "address_2": null, + "address_3": null, + "city": "Rogers", + "state_province": "Arkansas", + "postal_code": "72756-5923", + "country": "United States", + "longitude": -94.1178372, + "latitude": 36.3168272, + "phone": "4799037330", + "website_url": "http://www.bentonvillebrewing.com", + "state": "Arkansas", + "street": "1700 S 1st St" + }, + { + "id": "f8f12185-fa7e-4442-a54c-d95544033a91", + "name": "Bentspoke Brewing Co", + "brewery_type": "micro", + "address_1": "38 Mort Street", + "address_2": "48", + "address_3": null, + "city": "Braddon", + "state_province": "ACT", + "postal_code": "2612", + "country": "Australia", + "longitude": 149.1320159, + "latitude": -35.2730566, + "phone": "+61 2 6257 5220", + "website_url": "http://www.bentspokebrewing.com.au/", + "state": "ACT", + "street": "38 Mort Street" + }, + { + "id": "b3b6361d-6cc8-43a7-9d36-23537e4bbf33", + "name": "BentSpoke Brewing Co.", + "brewery_type": "micro", + "address_1": "38 Mort Street", + "address_2": "48", + "address_3": null, + "city": "Braddon", + "state_province": "ACT", + "postal_code": "2612", + "country": "Australia", + "longitude": 149.1320159, + "latitude": -35.2730566, + "phone": "+61 2 6257 5220", + "website_url": "http://www.bentspokebrewing.com.au/", + "state": "ACT", + "street": "38 Mort Street" + }, + { + "id": "97ad3cff-f0ad-4ba3-94cd-f150d79c788d", + "name": "Berchman's Brewing Company", + "brewery_type": "closed", + "address_1": "25 N Front St Ste 2", + "address_2": null, + "address_3": null, + "city": "Yakima", + "state_province": "Washington", + "postal_code": "98901-2648", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5099521058", + "website_url": "http://berchmansbrewingcompany.com", + "state": "Washington", + "street": "25 N Front St Ste 2" + }, + { + "id": "4b7fc8c9-464c-449f-9c6a-1ef990870184", + "name": "Berg River Brewery", + "brewery_type": "brewpub", + "address_1": "34-36", + "address_2": " Jan Van Riebeeck Drive", + "address_3": null, + "city": "Paarl", + "state_province": "Western Cape", + "postal_code": "7646", + "country": "South Africa", + "longitude": 18.9781, + "latitude": -33.7214, + "phone": "+27 21 872 1308", + "website_url": "https://www.bergriverbrewery.co.za/", + "state": "Western Cape", + "street": "34-36" + }, + { + "id": "dcf991c9-6692-4346-a52a-b6e9ff25520e", + "name": "Berkeley Springs Brewing Co", + "brewery_type": "brewpub", + "address_1": "110 Michigan Ln", + "address_2": null, + "address_3": null, + "city": "Berkeley Springs", + "state_province": "West Virginia", + "postal_code": "25411-3008", + "country": "United States", + "longitude": -78.271156, + "latitude": 39.576782, + "phone": "3042583369", + "website_url": "http://www.berkeleyspringsbrewingcompany.com", + "state": "West Virginia", + "street": "110 Michigan Ln" + }, + { + "id": "fdc796fe-ad16-4995-ad31-c7e896422d47", + "name": "Berkley Beer Company", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Berkley", + "state_province": "Massachusetts", + "postal_code": "02779-1101", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5083269954", + "website_url": "http://www.berkleybeer.com", + "state": "Massachusetts", + "street": null + }, + { + "id": "3cbbbfeb-a69b-4cea-be92-f7ae2808a1eb", + "name": "Berkshire Brewing Co Inc", + "brewery_type": "regional", + "address_1": "12 Railroad St", + "address_2": null, + "address_3": null, + "city": "South Deerfield", + "state_province": "Massachusetts", + "postal_code": "01373-0096", + "country": "United States", + "longitude": -72.61025086, + "latitude": 42.47779797, + "phone": "4136656600", + "website_url": "http://www.Berkshire-Brewing.com", + "state": "Massachusetts", + "street": "12 Railroad St" + }, + { + "id": "41962a71-dd2f-4aa8-9ec2-fd99dc0e684d", + "name": "Berlin Brewing Company", + "brewery_type": "micro", + "address_1": "220 S White Horse Pike", + "address_2": null, + "address_3": null, + "city": "Berlin", + "state_province": "New Jersey", + "postal_code": "08009-1902", + "country": "United States", + "longitude": -74.92998973, + "latitude": 39.79199228, + "phone": "8563362038", + "website_url": "http://www.berlinbrewco.com", + "state": "New Jersey", + "street": "220 S White Horse Pike" + }, + { + "id": "5e69d342-1efc-469e-bf8b-22d276c6d863", + "name": "Berlin Craft Beer Experience", + "brewery_type": "bar", + "address_1": "Reichenberger Str. 176", + "address_2": null, + "address_3": null, + "city": "Berlin", + "state_province": "Berlin", + "postal_code": "10999", + "country": "Germany", + "longitude": 52.4995161, + "latitude": 13.4168836, + "phone": "4915779216971", + "website_url": "http://www.berlincraftbeerexperience.com/", + "state": "Berlin", + "street": "Reichenberger Str. 176" + }, + { + "id": "c75eb363-ba15-4f96-a3cf-d6462867a4e3", + "name": "Berlin Craft Beer Experience", + "brewery_type": "bar", + "address_1": "Reichenberger Str. 176", + "address_2": null, + "address_3": null, + "city": "Berlin", + "state_province": "Berlin", + "postal_code": "10999", + "country": "Germany", + "longitude": 52.4995161, + "latitude": 13.4168836, + "phone": "4915779216971", + "website_url": "http://www.berlincraftbeerexperience.com/", + "state": "Berlin", + "street": "Reichenberger Str. 176" + }, + { + "id": "6540698e-cf27-41e2-8175-c810b172160e", + "name": "Berryessa Brewing Co", + "brewery_type": "micro", + "address_1": "27260 State Highway 128", + "address_2": null, + "address_3": null, + "city": "Winters", + "state_province": "California", + "postal_code": "95694-9066", + "country": "United States", + "longitude": -122.0032197, + "latitude": 38.51383288, + "phone": "5303042202", + "website_url": "http://www.berryessabrewingco.com", + "state": "California", + "street": "27260 State Highway 128" + }, + { + "id": "9e7c32bd-ac46-4e84-bfec-20a3be839c8e", + "name": "Berthoud Brewing Company", + "brewery_type": "micro", + "address_1": "450 S 8th St Unit B", + "address_2": null, + "address_3": null, + "city": "Berthoud", + "state_province": "Colorado", + "postal_code": "80513", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9705329850", + "website_url": "http://www.berthoudbrewing.com", + "state": "Colorado", + "street": "450 S 8th St Unit B" + }, + { + "id": "c495b454-6bbb-4f13-adb9-05d88e03136a", + "name": "Bertrams Salmon Valley Brewery", + "brewery_type": "brewpub", + "address_1": "535 Main St", + "address_2": null, + "address_3": null, + "city": "Salmon", + "state_province": "Idaho", + "postal_code": "83467-4246", + "country": "United States", + "longitude": -113.8932079, + "latitude": 45.1751978, + "phone": "2087563391", + "website_url": "http://salmonvalleybrewery.com", + "state": "Idaho", + "street": "535 Main St" + }, + { + "id": "6c10e5ba-1ebd-47b8-a4ce-c41603a6c662", + "name": "Berts Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Orange", + "state_province": "California", + "postal_code": "92867-6942", + "country": "United States", + "longitude": -117.8704931, + "latitude": 33.7500378, + "phone": "2069139711", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "8b33dd81-0c75-4be9-90c0-72d5ed79f436", + "name": "Berwick Brewing Co", + "brewery_type": "brewpub", + "address_1": "328 W Front St", + "address_2": null, + "address_3": null, + "city": "Berwick", + "state_province": "Pennsylvania", + "postal_code": "18603-4757", + "country": "United States", + "longitude": -76.2381632, + "latitude": 41.05243327, + "phone": "5707524313", + "website_url": "http://www.berwickbrewing.com", + "state": "Pennsylvania", + "street": "328 W Front St" + }, + { + "id": "b635b07f-9dba-4619-ac00-f17ca8313c43", + "name": "Bespoke Brewing Company", + "brewery_type": "brewpub", + "address_1": "242 Gap Rd", + "address_2": null, + "address_3": null, + "city": "Ronks", + "state_province": "Pennsylvania", + "postal_code": "17572", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7172882255", + "website_url": "https://www.bespokebrewingco.com", + "state": "Pennsylvania", + "street": "242 Gap Rd" + }, + { + "id": "6f148564-9296-4d6c-ac6b-44bad3765fd2", + "name": "Best of Hands Barrelhouse", + "brewery_type": "closed", + "address_1": "7500 35th Ave SW", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98126", + "country": "United States", + "longitude": -122.3763875, + "latitude": 47.53628883, + "phone": "2067081166", + "website_url": "https://www.bestofhandsbarrelhouse.com", + "state": "Washington", + "street": "7500 35th Ave SW" + }, + { + "id": "45e5c569-1abb-496c-a961-9d2f2686b2d3", + "name": "Bestens Brewery Ltd", + "brewery_type": "taproom", + "address_1": "Church Lane", + "address_2": null, + "address_3": null, + "city": "Horsham", + "state_province": "West Sussex", + "postal_code": "RH13 6LU", + "country": "England", + "longitude": -0.26049, + "latitude": 51.041848, + "phone": "1403892556", + "website_url": "https://www.bestensbrewery.co.uk/", + "state": "West Sussex", + "street": "Church Lane" + }, + { + "id": "8dcd6f88-53ee-4962-8558-bdaadade0da8", + "name": "Better Half Brewing", + "brewery_type": "closed", + "address_1": "59 North Main St", + "address_2": null, + "address_3": null, + "city": "Bristol", + "state_province": "Connecticut", + "postal_code": "06010", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8602617062", + "website_url": "https://www.betterhalfbrewing.com/", + "state": "Connecticut", + "street": "59 North Main St" + }, + { + "id": "c86f788e-63b2-44e6-a469-4b2e3a04ba22", + "name": "Bevel Craft Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97701-4924", + "country": "United States", + "longitude": -121.2917516, + "latitude": 44.04614868, + "phone": "8313451922", + "website_url": "http://www.bevelbeer.com", + "state": "Oregon", + "street": null + }, + { + "id": "957afb07-a6ff-4ba3-9288-820bf0e7b107", + "name": "Bewilder Brewing Co", + "brewery_type": "brewpub", + "address_1": "445 S 400 W", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84101-2202", + "country": "United States", + "longitude": -111.9017072, + "latitude": 40.7594039, + "phone": "3855283840", + "website_url": "https://bewilderbrewing.com", + "state": "Utah", + "street": "445 S 400 W" + }, + { + "id": "01e79aac-e955-4846-826e-1936e03bfd13", + "name": "Beyond The Mountain Brewing Company", + "brewery_type": "micro", + "address_1": "6035 Longbow Dr Unit 109", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301-3203", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7574072346", + "website_url": "http://www.btmbrewing.com", + "state": "Colorado", + "street": "6035 Longbow Dr Unit 109" + }, + { + "id": "e5fc6a44-a2f0-4c19-82a7-cb160e3a7a86", + "name": "Bhramari Brewhouse", + "brewery_type": "micro", + "address_1": "101 S Lexington Ave", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28801-3309", + "country": "United States", + "longitude": -82.55191879, + "latitude": 35.59166763, + "phone": "8282147981", + "website_url": "http://www.bhramaribrewing.com", + "state": "North Carolina", + "street": "101 S Lexington Ave" + }, + { + "id": "e29bb9cb-e459-4aab-b24d-390bc235f4b7", + "name": "Bias Brewing", + "brewery_type": "micro", + "address_1": "409 1st Ave E Ste B", + "address_2": null, + "address_3": null, + "city": "Kalispell", + "state_province": "Montana", + "postal_code": "59901", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4067303020", + "website_url": "http://www.biasbrewing.com", + "state": "Montana", + "street": "409 1st Ave E Ste B" + }, + { + "id": "540900b0-9813-4c05-8288-523a448081b0", + "name": "Bicheno Beer Co.", + "brewery_type": "micro", + "address_1": "57D Burgess Street", + "address_2": null, + "address_3": null, + "city": "Bicheno", + "state_province": "TAS", + "postal_code": "7215", + "country": "Australia", + "longitude": 148.3046867, + "latitude": -41.8759185, + "phone": null, + "website_url": "https://www.bichenobeer.com.au/", + "state": "TAS", + "street": "57D Burgess Street" + }, + { + "id": "e0b1ae5f-45b1-46fe-ab8a-891a802a5e2e", + "name": "Bicheno Brewing", + "brewery_type": "micro", + "address_1": "53a Burgess Street", + "address_2": null, + "address_3": null, + "city": "Bicheno", + "state_province": "TAS", + "postal_code": "7215", + "country": "Australia", + "longitude": 148.3043332, + "latitude": -41.8762315, + "phone": "+61 3 6375 1868", + "website_url": "https://www.bichenobrewing.com/", + "state": "TAS", + "street": "53a Burgess Street" + }, + { + "id": "0f7cb775-114f-4c6f-ad6b-4a3552568d91", + "name": "Bickerson's Brewhouse", + "brewery_type": "micro", + "address_1": "4710 NE 4th St #C105", + "address_2": null, + "address_3": null, + "city": "Renton", + "state_province": "Washington", + "postal_code": "98059", + "country": "United States", + "longitude": -122.1555405, + "latitude": 47.48904979, + "phone": "4254422347", + "website_url": "https://www.bickersonsbrewhouse.com", + "state": "Washington", + "street": "4710 NE 4th St #C105" + }, + { + "id": "11737bcc-a377-45ea-a0fd-8e2295429015", + "name": "Bier Brewery and Taproom", + "brewery_type": "micro", + "address_1": "5133 E 65th St", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46220-4816", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3176960200", + "website_url": "http://www.bierbrewery.com", + "state": "Indiana", + "street": "5133 E 65th St" + }, + { + "id": "6b5ae555-89e4-4363-baac-a21e3e93a5d1", + "name": "Bier Distillery", + "brewery_type": "micro", + "address_1": "5295 West River Dr NE Ste 100", + "address_2": null, + "address_3": null, + "city": "Comstock Park", + "state_province": "Michigan", + "postal_code": "49321-8030", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6168889746", + "website_url": "http://bierdistillery.com", + "state": "Michigan", + "street": "5295 West River Dr NE Ste 100" + }, + { + "id": "c6f9f271-cdbd-4342-b2dd-8399a3cd6670", + "name": "Bier One Brewing", + "brewery_type": "brewpub", + "address_1": "424 SW Coast Hwy", + "address_2": null, + "address_3": null, + "city": "Newport", + "state_province": "Oregon", + "postal_code": "97365-4930", + "country": "United States", + "longitude": -124.0572864, + "latitude": 44.6330765, + "phone": "5412654630", + "website_url": "http://www.bier-one.com", + "state": "Oregon", + "street": "424 SW Coast Hwy" + }, + { + "id": "4af8972b-a42f-43c7-a871-c28ba96f378a", + "name": "Biercamp", + "brewery_type": "brewpub", + "address_1": "1643 S State St", + "address_2": null, + "address_3": null, + "city": "Ann Arbor", + "state_province": "Michigan", + "postal_code": "48104-4302", + "country": "United States", + "longitude": -83.740111, + "latitude": 42.2586786, + "phone": "7349952437", + "website_url": "http://www.bier-camp.com", + "state": "Michigan", + "street": "1643 S State St" + }, + { + "id": "701239cb-5319-4d2e-92c1-129ab0b3b440", + "name": "Bière de la Plaine", + "brewery_type": "micro", + "address_1": "16 Rue Saint Pierre", + "address_2": null, + "address_3": null, + "city": "Marseille", + "state_province": "Bouche du Rhône", + "postal_code": "13006", + "country": "France", + "longitude": 5.38767154, + "latitude": 43.29366192, + "phone": "491473254", + "website_url": "https://brasseriedelaplaine.fr/", + "state": "Bouche du Rhône", + "street": "16 Rue Saint Pierre" + }, + { + "id": "71ed116d-2a0c-405f-9595-66b00f37030d", + "name": "Biere De Mac Brew Works", + "brewery_type": "micro", + "address_1": "14277 N Mackinaw Hwy", + "address_2": null, + "address_3": null, + "city": "Mackinaw City", + "state_province": "Michigan", + "postal_code": "49701-8622", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2314277007", + "website_url": "http://www.bieredemac.com", + "state": "Michigan", + "street": "14277 N Mackinaw Hwy" + }, + { + "id": "a7ea14a8-dc7d-4cd5-8314-7632451807fe", + "name": "Bierly Brewing @ Eats and Treats", + "brewery_type": "brewpub", + "address_1": "1644 Main St", + "address_2": null, + "address_3": null, + "city": "Philomath", + "state_province": "Oregon", + "postal_code": "97370-9237", + "country": "United States", + "longitude": -123.3625416, + "latitude": 44.539936, + "phone": "5412575126", + "website_url": null, + "state": "Oregon", + "street": "1644 Main St" + }, + { + "id": "c3d41248-80ed-4c14-8078-c100308e5450", + "name": "Bierstadt Lagerhaus", + "brewery_type": "brewpub", + "address_1": "2875 Blake St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80205-2210", + "country": "United States", + "longitude": -104.9838084, + "latitude": 39.7630094, + "phone": "7205707824", + "website_url": "http://www.bierstadtlager.com", + "state": "Colorado", + "street": "2875 Blake St" + }, + { + "id": "58bbeef3-65a9-4cdf-b2f3-0acb2c53f1f8", + "name": "BierWerks", + "brewery_type": "brewpub", + "address_1": "121 E. Midland Ave", + "address_2": null, + "address_3": null, + "city": "Woodland Park", + "state_province": "Colorado", + "postal_code": "80863", + "country": "United States", + "longitude": -105.0519462, + "latitude": 38.9941414, + "phone": "7196868100", + "website_url": "http://www.bierwerks.com", + "state": "Colorado", + "street": "121 E. Midland Ave" + }, + { + "id": "6baafd1a-3faf-41f6-bce8-7f9c223b2d1c", + "name": "Big Alice Brewing Company", + "brewery_type": "micro", + "address_1": "808 43rd Rd", + "address_2": null, + "address_3": null, + "city": "Long Island City", + "state_province": "New York", + "postal_code": "11101-6820", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3476882337", + "website_url": "http://www.bigalicebrewing.com", + "state": "New York", + "street": "808 43rd Rd" + }, + { + "id": "97bb99d6-94da-4f54-8fe7-9d7d7f102556", + "name": "Big Ash Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45244-3244", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5133079688", + "website_url": "http://www.BigAshBrewing.com", + "state": "Ohio", + "street": null + }, + { + "id": "03fe4348-0e01-446b-81af-dda8167284e8", + "name": "Big Axe Brewing Company", + "brewery_type": "brewpub", + "address_1": "25435 Main St", + "address_2": null, + "address_3": null, + "city": "Nisswa", + "state_province": "Minnesota", + "postal_code": "56468-5001", + "country": "United States", + "longitude": -94.2891095, + "latitude": 46.5199477, + "phone": "2189612337", + "website_url": "http://www.bigaxebrewing.com", + "state": "Minnesota", + "street": "25435 Main St" + }, + { + "id": "b9237ad4-42fd-43e1-a953-19fc451f9601", + "name": "Big Barn Brewing Co / Bodacious Berries Fruits and Brews", + "brewery_type": "micro", + "address_1": "16004 N Applewood Ln", + "address_2": null, + "address_3": null, + "city": "Mead", + "state_province": "Washington", + "postal_code": "99021-7818", + "country": "United States", + "longitude": -117.266079, + "latitude": 47.80652793, + "phone": "5097102961", + "website_url": "http://www.bigbarnbrewing.com", + "state": "Washington", + "street": "16004 N Applewood Ln" + }, + { + "id": "1dc47da7-faa4-498f-8e97-e83e74d1c79d", + "name": "Big Beach Brewing Company", + "brewery_type": "micro", + "address_1": "300 E 24th Ave", + "address_2": null, + "address_3": null, + "city": "Gulf Shores", + "state_province": "Alabama", + "postal_code": "36542-3104", + "country": "United States", + "longitude": -87.683039, + "latitude": 30.278051, + "phone": "2519482337", + "website_url": "http://www.bigbeachbrewing.com", + "state": "Alabama", + "street": "300 E 24th Ave" + }, + { + "id": "1a67833a-71e7-482e-9f85-9726583aceb7", + "name": "Big Bear Brewing Co", + "brewery_type": "brewpub", + "address_1": "1800 N University Dr", + "address_2": null, + "address_3": null, + "city": "Coral Springs", + "state_province": "Florida", + "postal_code": "33071-6031", + "country": "United States", + "longitude": -80.2505088, + "latitude": 26.2992083, + "phone": "9543415545", + "website_url": "http://www.bigbearbrewingco.com", + "state": "Florida", + "street": "1800 N University Dr" + }, + { + "id": "6ce0f40e-a10e-4dde-82a6-c51662b2fe09", + "name": "Big Bear Lake Brewing Co", + "brewery_type": "brewpub", + "address_1": "40827 Stone Rd", + "address_2": null, + "address_3": null, + "city": "Big Bear Lake", + "state_province": "California", + "postal_code": "92315", + "country": "United States", + "longitude": -116.9110287, + "latitude": 34.2425583, + "phone": "9098780283", + "website_url": "http://www.bblbc.com", + "state": "California", + "street": "40827 Stone Rd" + }, + { + "id": "08d14e79-430e-448f-a264-7bc200af83d5", + "name": "Big Bear Mountain Brewery", + "brewery_type": "brewpub", + "address_1": "40260 Big Bear Blvd", + "address_2": null, + "address_3": null, + "city": "Big Bear Lake", + "state_province": "California", + "postal_code": "92315", + "country": "United States", + "longitude": -116.923042, + "latitude": 34.23876062, + "phone": "9098662337", + "website_url": "http://www.mountainbrewery.com", + "state": "California", + "street": "40260 Big Bear Blvd" + }, + { + "id": "1b8be5f6-7f57-4a6e-830a-3d565e2e03d7", + "name": "Big Beaver Brewing Co", + "brewery_type": "micro", + "address_1": "2707 W Eisenhower Blvd Ste 9", + "address_2": null, + "address_3": null, + "city": "Loveland", + "state_province": "Colorado", + "postal_code": "80537-3141", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9708186064", + "website_url": "http://www.bigbeaverbrew.com", + "state": "Colorado", + "street": "2707 W Eisenhower Blvd Ste 9" + }, + { + "id": "5fe8f212-8c52-4183-85ff-687307298047", + "name": "Big Bend Brewing Co", + "brewery_type": "micro", + "address_1": "3401 W Highway 90", + "address_2": null, + "address_3": null, + "city": "Alpine", + "state_province": "Texas", + "postal_code": "79830-4127", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4328373700", + "website_url": "http://www.bigbendbrewing.com", + "state": "Texas", + "street": "3401 W Highway 90" + }, + { + "id": "d05957b0-56af-4e14-8e32-326fa3769253", + "name": "Big Block Brewing", + "brewery_type": "micro", + "address_1": "3310 E Lake Sammamish Pkwy SE", + "address_2": null, + "address_3": null, + "city": "Sammamish", + "state_province": "Washington", + "postal_code": "98075-7497", + "country": "United States", + "longitude": -122.07474, + "latitude": 47.57926212, + "phone": "4254570515", + "website_url": "https://www.bigblockbrewery.com/sammamish-taproom", + "state": "Washington", + "street": "3310 E Lake Sammamish Pkwy SE" + }, + { + "id": "67d3c520-42cb-481f-9256-dfb29c62c3b4", + "name": "Big Block Brewing - Carnation Taproom", + "brewery_type": "micro", + "address_1": "4534 Tolt Ave", + "address_2": null, + "address_3": null, + "city": "Carnation", + "state_province": "Washington", + "postal_code": "98014-7627", + "country": "United States", + "longitude": -121.9136604029, + "latitude": 47.648469887927, + "phone": "4255490018", + "website_url": "https://www.bigblockbrewery.com/carnation-taproom", + "state": "Washington", + "street": "4534 Tolt Ave" + }, + { + "id": "e4631ae5-8fbe-4576-8d03-cd284bec84cd", + "name": "Big Block Brewing - Redmond Taproom", + "brewery_type": "micro", + "address_1": "14950 NE 95th St", + "address_2": null, + "address_3": null, + "city": "Redmond", + "state_province": "Washington", + "postal_code": "98052-2500", + "country": "United States", + "longitude": -122.1410868, + "latitude": 47.68654123, + "phone": "4256583644", + "website_url": "https://www.bigblockbrewery.com/redmond-taproom", + "state": "Washington", + "street": "14950 NE 95th St" + }, + { + "id": "b9f816db-8d71-4be2-9370-5100c2b1257a", + "name": "Big Blue Brewing", + "brewery_type": "brewpub", + "address_1": "4721 SE 10th Pl", + "address_2": null, + "address_3": null, + "city": "Cape Coral", + "state_province": "Florida", + "postal_code": "33904-9168", + "country": "United States", + "longitude": -81.95242639, + "latitude": 26.56445895, + "phone": "9737693294", + "website_url": "http://www.bigbluebrewing.com", + "state": "Florida", + "street": "4721 SE 10th Pl" + }, + { + "id": "5071d551-c086-4480-a57f-d2dbfcd7fbcc", + "name": "Big Boiler Brewing", + "brewery_type": "brewpub", + "address_1": "318 E Main St", + "address_2": null, + "address_3": null, + "city": "Lowell", + "state_province": "Michigan", + "postal_code": "49331-1714", + "country": "United States", + "longitude": -85.33655351, + "latitude": 42.93462931, + "phone": "6169873155", + "website_url": "http://bigboilerbrewing.com", + "state": "Michigan", + "street": "318 E Main St" + }, + { + "id": "b1813df6-ffad-4604-b909-874bfb56e41b", + "name": "Big Boss Brewing Co", + "brewery_type": "micro", + "address_1": "1249 Wicker Dr Ste A", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27604-1683", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9198340045", + "website_url": "http://www.bigbossbrewing.com", + "state": "North Carolina", + "street": "1249 Wicker Dr Ste A" + }, + { + "id": "4dd9752b-954d-41fa-b899-c3e26aef7812", + "name": "Big Bottom Brewery", + "brewery_type": "micro", + "address_1": "6 Tristan Dr", + "address_2": null, + "address_3": null, + "city": "Dillsburg", + "state_province": "Pennsylvania", + "postal_code": "17019-1627", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7175028800", + "website_url": "http://www.facebook.com/bigbottombrewery", + "state": "Pennsylvania", + "street": "6 Tristan Dr" + }, + { + "id": "b203b9a5-a84a-461f-a64a-938adf44a7d4", + "name": "Big Cat Brewing Company", + "brewery_type": "brewpub", + "address_1": "8699 S Good Harbor Trl", + "address_2": null, + "address_3": null, + "city": "Cedar", + "state_province": "Michigan", + "postal_code": "49621-8580", + "country": "United States", + "longitude": -85.79311511, + "latitude": 44.85319287, + "phone": "2312282282", + "website_url": "http://www.bigcatbrewingco.com", + "state": "Michigan", + "street": "8699 S Good Harbor Trl" + }, + { + "id": "b2ad6e2c-1bdc-45df-a0bc-c8e075949e75", + "name": "Big Choice Brewing Co", + "brewery_type": "micro", + "address_1": "21 S 1st Ave", + "address_2": null, + "address_3": null, + "city": "Brighton", + "state_province": "Colorado", + "postal_code": "80601-1603", + "country": "United States", + "longitude": -104.822433, + "latitude": 39.98642943, + "phone": "3034692616", + "website_url": "http://www.bigchoicebrewing.com", + "state": "Colorado", + "street": "21 S 1st Ave" + }, + { + "id": "8c42a9fc-a6c9-4c26-a0d3-0bf8c94be918", + "name": "Big Data Brewing Company LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sterling", + "state_province": "Virginia", + "postal_code": "20165-7227", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5713088293", + "website_url": "http://www.bigdatabrewco.com/", + "state": "Virginia", + "street": null + }, + { + "id": "5db014b6-be92-4c4d-b95e-f5156550ad05", + "name": "Big Ditch Brewing Company", + "brewery_type": "micro", + "address_1": "55 E Huron St", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14203-1632", + "country": "United States", + "longitude": -78.8709352, + "latitude": 42.888031, + "phone": "7168545050", + "website_url": "http://www.bigditchbrewing.com", + "state": "New York", + "street": "55 E Huron St" + }, + { + "id": "2c048f27-d9fc-4117-ae9a-c3c79ea2470e", + "name": "Big Dog's Brewing Co", + "brewery_type": "brewpub", + "address_1": "4547 N Rancho Dr Ste A", + "address_2": null, + "address_3": null, + "city": "Las Vegas", + "state_province": "Nevada", + "postal_code": "89130-3432", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7023683715", + "website_url": "http://www.bigdogsbrews.com", + "state": "Nevada", + "street": "4547 N Rancho Dr Ste A" + }, + { + "id": "36840152-444d-4615-b422-752e0e0bf044", + "name": "Big Draft Brewing", + "brewery_type": "micro", + "address_1": "697 Main St E", + "address_2": null, + "address_3": null, + "city": "White Sulphur Springs", + "state_province": "West Virginia", + "postal_code": "24986-3003", + "country": "United States", + "longitude": -80.3001175, + "latitude": 37.7945598, + "phone": "3049152442", + "website_url": "https://bigdraftbrewing.com/", + "state": "West Virginia", + "street": "697 Main St E" + }, + { + "id": "0aff7bc2-29eb-4127-b80c-d5fc3e05274a", + "name": "Big Elm Brewing", + "brewery_type": "micro", + "address_1": "65 Silver St", + "address_2": null, + "address_3": null, + "city": "Sheffield", + "state_province": "Massachusetts", + "postal_code": "01257", + "country": "United States", + "longitude": -73.351236, + "latitude": 42.093595, + "phone": "4132292348", + "website_url": "http://www.bigelmbrewery.com", + "state": "Massachusetts", + "street": "65 Silver St" + }, + { + "id": "4e558cde-490f-4c49-b0c0-28d3abb9458b", + "name": "Big Frog Brewing Company", + "brewery_type": "micro", + "address_1": "2122 Dayton Blvd", + "address_2": null, + "address_3": null, + "city": "Red Bank", + "state_province": "Tennessee", + "postal_code": "37415-6414", + "country": "United States", + "longitude": -85.31017603, + "latitude": 35.0916037, + "phone": "4238039046", + "website_url": "http://www.bigfrogbrewery.com", + "state": "Tennessee", + "street": "2122 Dayton Blvd" + }, + { + "id": "b1040378-9992-4329-90d8-989fabdf5097", + "name": "Big Grove Brewery", + "brewery_type": "micro", + "address_1": "1225 S Gilbert St", + "address_2": null, + "address_3": null, + "city": "Iowa City", + "state_province": "Iowa", + "postal_code": "52240-4507", + "country": "United States", + "longitude": -91.53189828, + "latitude": 41.64713299, + "phone": "3195941891", + "website_url": "http://www.biggrovebrewery.com", + "state": "Iowa", + "street": "1225 S Gilbert St" + }, + { + "id": "7541c361-f556-481e-905f-172dab289cce", + "name": "Big Grove Brewery & Tap Room", + "brewery_type": "brewpub", + "address_1": "1225 S Gilbert St", + "address_2": null, + "address_3": null, + "city": "Iowa City", + "state_province": "Iowa", + "postal_code": "52240-4507", + "country": "United States", + "longitude": -91.53189828, + "latitude": 41.64713299, + "phone": "3196242337", + "website_url": null, + "state": "Iowa", + "street": "1225 S Gilbert St" + }, + { + "id": "f59742d0-8848-414d-a1e1-59b428315374", + "name": "Big Hart Brewing Company", + "brewery_type": "brewpub", + "address_1": "4086 W Polk Rd", + "address_2": null, + "address_3": null, + "city": "Hart", + "state_province": "Michigan", + "postal_code": "49420-8172", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2313018226", + "website_url": "http://www.bighartbrewing.com", + "state": "Michigan", + "street": "4086 W Polk Rd" + }, + { + "id": "eefcf946-59e2-4ad0-ac41-955cffa9f701", + "name": "Big Head Brewing Co.", + "brewery_type": "micro", + "address_1": "6204 W State St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53213-2906", + "country": "United States", + "longitude": -87.9201437, + "latitude": 43.0429687, + "phone": "6082359636", + "website_url": "http://www.bigheadbrewingco.com", + "state": "Wisconsin", + "street": "6204 W State St" + }, + { + "id": "f5a551d7-6af0-418e-bec2-0f16044bb3f2", + "name": "Big Horse Brewpub", + "brewery_type": "brewpub", + "address_1": "115 State St", + "address_2": null, + "address_3": null, + "city": "Hood River", + "state_province": "Oregon", + "postal_code": "97031-2315", + "country": "United States", + "longitude": -121.5120956, + "latitude": 45.7079528, + "phone": "5413864411", + "website_url": "http://www.bighorsebrewpub.com", + "state": "Oregon", + "street": "115 State St" + }, + { + "id": "f8f6a528-f887-48dd-a161-1ad325233a3e", + "name": "Big House Brew Pub", + "brewery_type": "brewpub", + "address_1": "11 S Palouse St", + "address_2": null, + "address_3": null, + "city": "Walla Walla", + "state_province": "Washington", + "postal_code": "99362-1925", + "country": "United States", + "longitude": -118.334839, + "latitude": 46.06937, + "phone": "5095222440", + "website_url": "https://www.bighousebrewpub.com", + "state": "Washington", + "street": "11 S Palouse St" + }, + { + "id": "dcc9cdb6-415f-4783-aa42-c5cfb7664dc6", + "name": "Big Inlet Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mayville", + "state_province": "New York", + "postal_code": "14757-9730", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7165737564", + "website_url": "http://www.biginletbrewing.com", + "state": "New York", + "street": null + }, + { + "id": "d2699492-6d8c-492d-a52d-e71342e717ca", + "name": "Big Island Brewhaus", + "brewery_type": "brewpub", + "address_1": "64-1066 Mamalahoa Hwy Unit 5", + "address_2": null, + "address_3": null, + "city": "Kamuela", + "state_province": "Hawaii", + "postal_code": "96743-7309", + "country": "United States", + "longitude": -155.661471, + "latitude": 20.025552, + "phone": "8088871717", + "website_url": "http://www.bigislandbrewhaus.com", + "state": "Hawaii", + "street": "64-1066 Mamalahoa Hwy Unit 5" + }, + { + "id": "4383b079-c8fe-49c0-9999-9ff23a8f4f8e", + "name": "Big Lake Brewing", + "brewery_type": "micro", + "address_1": "13 W 7th St", + "address_2": null, + "address_3": null, + "city": "Holland", + "state_province": "Michigan", + "postal_code": "49423-2821", + "country": "United States", + "longitude": -86.10791587, + "latitude": 42.79149405, + "phone": "6167968888", + "website_url": "http://www.biglakebrewing.com", + "state": "Michigan", + "street": "13 W 7th St" + }, + { + "id": "0a229c47-5c8f-46e8-bf5c-e9866e006341", + "name": "Big Lake Brewing Production Facility", + "brewery_type": "micro", + "address_1": "166 E 19th St", + "address_2": null, + "address_3": null, + "city": "Holland", + "state_province": "Michigan", + "postal_code": "49423-4230", + "country": "United States", + "longitude": -86.09988824, + "latitude": 42.78029471, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "166 E 19th St" + }, + { + "id": "4445772e-e9d6-41c3-80cd-d5f4b70e7825", + "name": "Big Leaf Brewing", + "brewery_type": "micro", + "address_1": "1320 Durkees Ferry Rd", + "address_2": null, + "address_3": null, + "city": "West Terre Haute", + "state_province": "Indiana", + "postal_code": "47885-9626", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8122812187", + "website_url": null, + "state": "Indiana", + "street": "1320 Durkees Ferry Rd" + }, + { + "id": "eccf5719-1dea-4661-b675-e862c8f3d475", + "name": "Big Lick Brewing Company", + "brewery_type": "micro", + "address_1": "409 Salem Ave SW", + "address_2": null, + "address_3": null, + "city": "Roanoke", + "state_province": "Virginia", + "postal_code": "24016", + "country": "United States", + "longitude": -79.94873144, + "latitude": 37.2724144, + "phone": "5405628383", + "website_url": "http://www.biglickbrewingco.com", + "state": "Virginia", + "street": "409 Salem Ave SW" + }, + { + "id": "98d91c43-a67c-446f-9a59-6398e4fa5281", + "name": "Big Little Brewing", + "brewery_type": "micro", + "address_1": "7 Kirrawee Road", + "address_2": null, + "address_3": null, + "city": "Gosford", + "state_province": "NSW", + "postal_code": "2250", + "country": "Australia", + "longitude": 151.3429875, + "latitude": -33.4113839, + "phone": "+61 494 192 303", + "website_url": "http://www.biglittlebrewing.com.au/", + "state": "NSW", + "street": "7 Kirrawee Road" + }, + { + "id": "36215801-9e64-49fa-9ad8-b80649d7de07", + "name": "Big Lost Meadery and Brewery", + "brewery_type": "micro", + "address_1": "105 Warren Ave", + "address_2": null, + "address_3": null, + "city": "Gillette", + "state_province": "Wyoming", + "postal_code": "82716-3727", + "country": "United States", + "longitude": -105.5046114, + "latitude": 44.2866583, + "phone": "3076708100", + "website_url": "http://www.biglostmeadery.com", + "state": "Wyoming", + "street": "105 Warren Ave" + }, + { + "id": "f00adb8d-12dc-45ef-852e-57d10d79f7ff", + "name": "Big Lug Canteen", + "brewery_type": "brewpub", + "address_1": "1435 E 86th St", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46240-1911", + "country": "United States", + "longitude": -86.079957, + "latitude": 39.912628, + "phone": null, + "website_url": null, + "state": "Indiana", + "street": "1435 E 86th St" + }, + { + "id": "13508268-325c-40ae-b1da-c7a4a295c6cb", + "name": "Big Muddy Brewing Co", + "brewery_type": "micro", + "address_1": "1430 N 7th St", + "address_2": null, + "address_3": null, + "city": "Murphysboro", + "state_province": "Illinois", + "postal_code": "62966-3938", + "country": "United States", + "longitude": -89.33204055, + "latitude": 37.78182292, + "phone": "6186848833", + "website_url": "http://www.bigmuddybrewing.com", + "state": "Illinois", + "street": "1430 N 7th St" + }, + { + "id": "11121ed7-befa-45c6-9e9a-500d4bbff5a4", + "name": "Big Niles Brewing Co.", + "brewery_type": "micro", + "address_1": "1A Mort Avenue", + "address_2": null, + "address_3": null, + "city": "Dalmeny", + "state_province": "NSW", + "postal_code": "2546", + "country": "Australia", + "longitude": 150.1102596, + "latitude": -36.1688167, + "phone": "+61 418 813 237", + "website_url": "https://www.bignilesbrewingco.com.au/", + "state": "NSW", + "street": "1A Mort Avenue" + }, + { + "id": "62b7e476-a41e-4d17-a57a-e3658fc9224c", + "name": "Big Rack Brew Haus", + "brewery_type": "micro", + "address_1": "2475 Hiatt Apple Trl", + "address_2": null, + "address_3": null, + "city": "Winterset", + "state_province": "Iowa", + "postal_code": "50273-8113", + "country": "United States", + "longitude": -93.923386, + "latitude": 41.286503, + "phone": null, + "website_url": "http://www.bigrackbrewhaus.com", + "state": "Iowa", + "street": "2475 Hiatt Apple Trl" + }, + { + "id": "068bdaad-c6e9-47b2-a3f8-fbdf24c059b6", + "name": "Big Rip Brewing Company", + "brewery_type": "micro", + "address_1": "216 E 9th Ave", + "address_2": null, + "address_3": null, + "city": "North Kansas City", + "state_province": "Missouri", + "postal_code": "64116-4315", + "country": "United States", + "longitude": -94.57786, + "latitude": 39.1261133, + "phone": "8168660747", + "website_url": "http://www.bigripbrewing.com", + "state": "Missouri", + "street": "216 E 9th Ave" + }, + { + "id": "8db35211-a4ca-44d7-a6dd-a31c3e2ead66", + "name": "Big River Brewery, LLC", + "brewery_type": "micro", + "address_1": "505 W Nolana Loop", + "address_2": null, + "address_3": null, + "city": "Pharr", + "state_province": "Texas", + "postal_code": "78577-8345", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9565661455", + "website_url": null, + "state": "Texas", + "street": "505 W Nolana Loop" + }, + { + "id": "002012b4-afef-4e35-95bf-56930dbc599e", + "name": "Big River Grille & Brewing Works - Chattanooga", + "brewery_type": "brewpub", + "address_1": "222 Broad St", + "address_2": null, + "address_3": null, + "city": "Chattanooga", + "state_province": "Tennessee", + "postal_code": "37402-1009", + "country": "United States", + "longitude": -85.31070875, + "latitude": 35.05387554, + "phone": "4232672739", + "website_url": "http://www.craftworksrestaurants.com", + "state": "Tennessee", + "street": "222 Broad St" + }, + { + "id": "077585a3-1bbb-46fa-90ac-6494765afc75", + "name": "Big River Grille & Brewing Works - Disney", + "brewery_type": "brewpub", + "address_1": "2101 Epcot Resorts Blvd", + "address_2": null, + "address_3": null, + "city": "Lake Buena Vista", + "state_province": "Florida", + "postal_code": "32830-8442", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4075600253", + "website_url": "http://www.craftworksrestaurants.com", + "state": "Florida", + "street": "2101 Epcot Resorts Blvd" + }, + { + "id": "f0570db4-92b3-4b86-8b98-9628d917ffcc", + "name": "Big Rock Chop House & Brewery", + "brewery_type": "contract", + "address_1": "245 S Eton St", + "address_2": null, + "address_3": null, + "city": "Birmingham", + "state_province": "Michigan", + "postal_code": "48009-6577", + "country": "United States", + "longitude": -83.19603911, + "latitude": 42.54693868, + "phone": "2486477774", + "website_url": "http://www.bigrockchophouse.com", + "state": "Michigan", + "street": "245 S Eton St" + }, + { + "id": "6f458334-b27f-4637-bbef-08902a118637", + "name": "Big Sexy Brewing Company", + "brewery_type": "micro", + "address_1": "5861 88th St Ste 800", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95828-1131", + "country": "United States", + "longitude": -121.3757237, + "latitude": 38.52149864, + "phone": "9163747332", + "website_url": "http://www.bigsexybrewing.com", + "state": "California", + "street": "5861 88th St Ste 800" + }, + { + "id": "e0c54ca2-410c-4279-86da-1c10b44e2f2b", + "name": "Big Shed Brewing Co", + "brewery_type": "micro", + "address_1": "1154 Old Port Road", + "address_2": null, + "address_3": null, + "city": "Royal Park", + "state_province": "SA", + "postal_code": "5014", + "country": "Australia", + "longitude": 138.5107437, + "latitude": -34.8649329, + "phone": "+61 8 8240 5037", + "website_url": "http://www.bigshed.beer/", + "state": "SA", + "street": "1154 Old Port Road" + }, + { + "id": "c0bc0f33-14bc-4a3c-b056-176cf994a79e", + "name": "Big Shed Brewing Concern", + "brewery_type": "micro", + "address_1": "1154 Old Port Road", + "address_2": null, + "address_3": null, + "city": "Royal Park", + "state_province": "SA", + "postal_code": "5014", + "country": "Australia", + "longitude": 138.5107437, + "latitude": -34.8649329, + "phone": "+61 8 8240 5037", + "website_url": "http://www.bigshed.beer/", + "state": "SA", + "street": "1154 Old Port Road" + }, + { + "id": "96e9ab03-28cd-4240-9ad6-5e49f716d1a0", + "name": "Big Sioux Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Humboldt", + "state_province": "South Dakota", + "postal_code": "57035-6106", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "South Dakota", + "street": null + }, + { + "id": "9f87a804-b9ce-4264-9cc1-c8f6edfdb83f", + "name": "Big Sky Brewing Co", + "brewery_type": "regional", + "address_1": "5417 Trumpeter Way", + "address_2": null, + "address_3": null, + "city": "Missoula", + "state_province": "Montana", + "postal_code": "59808-8680", + "country": "United States", + "longitude": -114.0730248, + "latitude": 46.9224156, + "phone": "4065492777", + "website_url": "http://www.bigskybrew.com", + "state": "Montana", + "street": "5417 Trumpeter Way" + }, + { + "id": "d5e9205f-ff1f-4cd2-9eec-2844197449f1", + "name": "Big Slide Brewery", + "brewery_type": "brewpub", + "address_1": "5686 Cascade Road", + "address_2": null, + "address_3": null, + "city": "Lake Placid", + "state_province": "New York", + "postal_code": "12946", + "country": "United States", + "longitude": -73.96977615, + "latitude": 44.26461237, + "phone": "5185237844", + "website_url": "http://www.bigslidebrewery.com", + "state": "New York", + "street": "5686 Cascade Road" + }, + { + "id": "20a11408-a1f1-408c-89c0-aef4faef79c4", + "name": "Big Storm Brewing", + "brewery_type": "micro", + "address_1": "839 Miramar St", + "address_2": null, + "address_3": null, + "city": "Cape Coral", + "state_province": "Florida", + "postal_code": "33904-9046", + "country": "United States", + "longitude": -81.9557454, + "latitude": 26.5609342, + "phone": null, + "website_url": null, + "state": "Florida", + "street": "839 Miramar St" + }, + { + "id": "881c39be-bb1c-4517-ad04-f6bd052fd74c", + "name": "Big Storm Brewing", + "brewery_type": "micro", + "address_1": "2330 Success Dr", + "address_2": null, + "address_3": null, + "city": "Odessa", + "state_province": "Florida", + "postal_code": "33556", + "country": "United States", + "longitude": -82.62618762, + "latitude": 28.19192178, + "phone": "7273762890", + "website_url": null, + "state": "Florida", + "street": "2330 Success Dr" + }, + { + "id": "491566c3-b7e2-42f6-a400-545ef0ceffdb", + "name": "Big Storm Brewing Co.", + "brewery_type": "micro", + "address_1": "12707 49th St N", + "address_2": null, + "address_3": null, + "city": "Clearwater", + "state_province": "Florida", + "postal_code": "33762-4604", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7274970666", + "website_url": "http://www.bigstormbrewery.com", + "state": "Florida", + "street": "12707 49th St N" + }, + { + "id": "9002d0c7-e0c1-4db2-ba73-fb31043ea41f", + "name": "Big Stump Brewing Company", + "brewery_type": "micro", + "address_1": "1716 L St", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95811-4024", + "country": "United States", + "longitude": -121.4263334, + "latitude": 38.68887875, + "phone": "9166687433", + "website_url": "http://www.bigstumpbrewco.com/", + "state": "California", + "street": "1716 L St" + }, + { + "id": "dc1b146d-741e-426b-8216-a65911e0f76a", + "name": "Big Texan Brewery", + "brewery_type": "brewpub", + "address_1": "7701 Interstate 40 Access Rd", + "address_2": null, + "address_3": null, + "city": "Amarillo", + "state_province": "Texas", + "postal_code": "79118-6915", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8063726000", + "website_url": "http://www.bigtexan.com", + "state": "Texas", + "street": "7701 Interstate 40 Access Rd" + }, + { + "id": "797e1d68-c1e1-478c-bc92-9561c7d951b5", + "name": "Big Thompson Brewery", + "brewery_type": "micro", + "address_1": "114 E 15th St", + "address_2": null, + "address_3": null, + "city": "Loveland", + "state_province": "Colorado", + "postal_code": "80538-3832", + "country": "United States", + "longitude": -105.0746687, + "latitude": 40.40811243, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "114 E 15th St" + }, + { + "id": "dc4706e6-80e6-4c6e-adc1-504f0711adbc", + "name": "Big Thorn Farm and Brewery", + "brewery_type": "micro", + "address_1": "14274 E 600 North Rd", + "address_2": null, + "address_3": null, + "city": "Georgetown", + "state_province": "Illinois", + "postal_code": "61846-7594", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2175970156", + "website_url": "http://www.bigthornfarm.com", + "state": "Illinois", + "street": "14274 E 600 North Rd" + }, + { + "id": "77e31ad7-17aa-4c92-9200-ab12888aaacd", + "name": "Big Timber Brewing", + "brewery_type": "micro", + "address_1": "1210 S Davis Ave", + "address_2": null, + "address_3": null, + "city": "Elkins", + "state_province": "West Virginia", + "postal_code": "26241-3437", + "country": "United States", + "longitude": -79.85143109, + "latitude": 38.91765609, + "phone": "3046375008", + "website_url": "http://www.bigtimberbrewing.com", + "state": "West Virginia", + "street": "1210 S Davis Ave" + }, + { + "id": "a1964010-0e7c-4bd0-9da1-1aef938faf44", + "name": "Big Time Brewery", + "brewery_type": "brewpub", + "address_1": "4133 University Way NE", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98105-6213", + "country": "United States", + "longitude": -122.3135759, + "latitude": 47.65785225, + "phone": "2065454509", + "website_url": "http://www.bigtimebrewery.com", + "state": "Washington", + "street": "4133 University Way NE" + }, + { + "id": "83b19e83-5855-4e53-88e4-987ab398d8ae", + "name": "Big Top Brewing Company", + "brewery_type": "micro", + "address_1": "6111 Porter Way Unit B", + "address_2": null, + "address_3": null, + "city": "Sarasota", + "state_province": "Florida", + "postal_code": "34232-6224", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://Bigtopbrewing.com", + "state": "Florida", + "street": "6111 Porter Way Unit B" + }, + { + "id": "04fdb76b-b189-4234-a26e-caa9a43d55f0", + "name": "Big Truck Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Parkton", + "state_province": "Maryland", + "postal_code": "21120-9004", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4436775451", + "website_url": "http://www.bigtruckfarms.com", + "state": "Maryland", + "street": null + }, + { + "id": "00eddf9c-e274-4d9a-8957-457e3ea570ac", + "name": "Big Tupper Brewing", + "brewery_type": "brewpub", + "address_1": "12 Cliff Ave", + "address_2": null, + "address_3": null, + "city": "Tupper Lake", + "state_province": "New York", + "postal_code": "12986-1719", + "country": "United States", + "longitude": -74.46576367, + "latitude": 44.223293, + "phone": "5183596350", + "website_url": "http://www.bigtupperbrewing.com", + "state": "New York", + "street": "12 Cliff Ave" + }, + { + "id": "76b27550-7e67-4aae-9e70-384e5c84bc79", + "name": "Big Ugly Brewing Co", + "brewery_type": "micro", + "address_1": "1296 Battlefield Blvd S", + "address_2": null, + "address_3": null, + "city": "Chesapeake", + "state_province": "Virginia", + "postal_code": "23322-4378", + "country": "United States", + "longitude": -76.22847989, + "latitude": 36.67862015, + "phone": "7576092739", + "website_url": "http://www.biguglybrewing.com", + "state": "Virginia", + "street": "1296 Battlefield Blvd S" + }, + { + "id": "e9e4c64c-bd3f-4c43-aab3-9b685f70d9b0", + "name": "Big Water Brewery", + "brewery_type": "micro", + "address_1": "24 Robie Rd", + "address_2": null, + "address_3": null, + "city": "Salisbury", + "state_province": "New Hampshire", + "postal_code": "03268-5423", + "country": "United States", + "longitude": -71.717004, + "latitude": 43.409129, + "phone": "6036486068", + "website_url": "http://www.bigwaterbrewery.net", + "state": "New Hampshire", + "street": "24 Robie Rd" + }, + { + "id": "fcae18a9-9809-487e-a8e8-21125010ce4a", + "name": "Big Wood Brewery", + "brewery_type": "micro", + "address_1": "2222 4th St Ste REAR", + "address_2": null, + "address_3": null, + "city": "White Bear Lake", + "state_province": "Minnesota", + "postal_code": "55110-3045", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6123602986", + "website_url": "http://www.bigwoodbrewery.com", + "state": "Minnesota", + "street": "2222 4th St Ste REAR" + }, + { + "id": "5a56a77e-507d-4fb8-b62d-31c48240d512", + "name": "Big Woods Brewery", + "brewery_type": "brewpub", + "address_1": "2222 4th Street", + "address_2": null, + "address_3": null, + "city": "White Bear Lake", + "state_province": "Minnesota", + "postal_code": "55110", + "country": "United States", + "longitude": -93.007108, + "latitude": 45.08530367, + "phone": "8139886000", + "website_url": "http://www.bigwoodsbeer.com", + "state": "Minnesota", + "street": "2222 4th Street" + }, + { + "id": "810dda02-89b0-44a0-a287-228109259314", + "name": "Big's BBQ Brewpub", + "brewery_type": "brewpub", + "address_1": "124 2nd Ave NW", + "address_2": null, + "address_3": null, + "city": "Mount Vernon", + "state_province": "Iowa", + "postal_code": "52314", + "country": "United States", + "longitude": -91.41772002, + "latitude": 41.92299939, + "phone": "3195351060", + "website_url": "http://www.bigsbbqmv.com", + "state": "Iowa", + "street": "124 2nd Ave NW" + }, + { + "id": "f62eed3c-818b-49a8-9aca-20ebe1793f23", + "name": "Bigelow Brewing Company", + "brewery_type": "brewpub", + "address_1": "473 Bigelow Hill Rd", + "address_2": null, + "address_3": null, + "city": "Skowhegan", + "state_province": "Maine", + "postal_code": "04976-5126", + "country": "United States", + "longitude": -69.72961613, + "latitude": 44.71991967, + "phone": "2073996262", + "website_url": "http://www.bigelowbrewing.com", + "state": "Maine", + "street": "473 Bigelow Hill Rd" + }, + { + "id": "2ebb8fea-f982-43a0-bc95-b0ac01ae3f99", + "name": "Bike Dog Brewing Co", + "brewery_type": "micro", + "address_1": "2534 Industrial Blvd Ste 110", + "address_2": null, + "address_3": null, + "city": "West Sacramento", + "state_province": "California", + "postal_code": "95691-3471", + "country": "United States", + "longitude": -121.5433734, + "latitude": 38.5660851, + "phone": null, + "website_url": null, + "state": "California", + "street": "2534 Industrial Blvd Ste 110" + }, + { + "id": "7d5db948-1fc5-45b6-a277-8d69a6352055", + "name": "Bike Rack Brewing Co", + "brewery_type": "micro", + "address_1": "410 SW A St Ste 6", + "address_2": null, + "address_3": null, + "city": "Bentonville", + "state_province": "Arkansas", + "postal_code": "72712-5839", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4792686648", + "website_url": "http://www.bikerackbrewing.com", + "state": "Arkansas", + "street": "410 SW A St Ste 6" + }, + { + "id": "8d77bca9-de55-47a3-93e1-a72290a39c08", + "name": "Bike Rack Brewing Co - 8th Street Market", + "brewery_type": "micro", + "address_1": "801 SE 8th St", + "address_2": null, + "address_3": null, + "city": "Bentonville", + "state_province": "Arkansas", + "postal_code": "72712-6409", + "country": "United States", + "longitude": -94.200584, + "latitude": 36.364069, + "phone": "4793196593", + "website_url": "http://www.bikerackbrewing.com", + "state": "Arkansas", + "street": "801 SE 8th St" + }, + { + "id": "40dbdacc-6531-4c83-8622-49758b82a052", + "name": "Bike TrAle Brewing", + "brewery_type": "micro", + "address_1": "101 Loudoun St SE", + "address_2": null, + "address_3": null, + "city": "Leesburg", + "state_province": "Virginia", + "postal_code": "20175-3106", + "country": "United States", + "longitude": -77.562422, + "latitude": 39.113418, + "phone": "5712930050", + "website_url": "http://www.BikeTrAleBrewing.com", + "state": "Virginia", + "street": "101 Loudoun St SE" + }, + { + "id": "ddad9761-9bd4-4dbd-a744-890c38eb61ac", + "name": "Biker Brew House", + "brewery_type": "micro", + "address_1": "5700 Interstate Blvd", + "address_2": null, + "address_3": null, + "city": "Austintown", + "state_province": "Ohio", + "postal_code": "44515-1170", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.bikerbrewhouse.com", + "state": "Ohio", + "street": "5700 Interstate Blvd" + }, + { + "id": "5e549a83-df46-462c-aa98-3bd6dd0e65fd", + "name": "Bilbo's Pizza and Brewery", + "brewery_type": "brewpub", + "address_1": "3307 Stadium Dr", + "address_2": null, + "address_3": null, + "city": "Kalamazoo", + "state_province": "Michigan", + "postal_code": "49008-1528", + "country": "United States", + "longitude": -85.63122494, + "latitude": 42.27160225, + "phone": "2693825544", + "website_url": "http://www.bilbospizza.com", + "state": "Michigan", + "street": "3307 Stadium Dr" + }, + { + "id": "2e6d6446-a752-4ed5-85dc-164d7bb799ba", + "name": "Bill's Brewing Co.", + "brewery_type": "brewpub", + "address_1": "4238 Market St.", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "North Carolina", + "postal_code": "28403", + "country": "United States", + "longitude": -77.892361, + "latitude": 34.242224, + "phone": "9107626333", + "website_url": "http://www.billsfrontporch.com", + "state": "North Carolina", + "street": "4238 Market St." + }, + { + "id": "76f46964-b68a-4156-8a61-dbd2e6acaacf", + "name": "Bill's Front Porch Pub and Brewery", + "brewery_type": "brewpub", + "address_1": "4238 Market St", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "North Carolina", + "postal_code": "28403-1409", + "country": "United States", + "longitude": -77.892361, + "latitude": 34.242224, + "phone": "9107626333", + "website_url": "http://www.billsfrontporch.com", + "state": "North Carolina", + "street": "4238 Market St" + }, + { + "id": "47a98559-734f-4475-ad82-f8bad6a69bf1", + "name": "Bill's Tavern and Brewhouse", + "brewery_type": "brewpub", + "address_1": "188 N Hemlock St", + "address_2": null, + "address_3": null, + "city": "Cannon Beach", + "state_province": "Oregon", + "postal_code": "97110-3037", + "country": "United States", + "longitude": -123.9610943, + "latitude": 45.89803615, + "phone": "5034362202", + "website_url": "http://www.billstavernandbrewhouse.com", + "state": "Oregon", + "street": "188 N Hemlock St" + }, + { + "id": "26e2db12-3e83-438b-9ed7-c43eb0fed1f9", + "name": "Billsburg Brewery", + "brewery_type": "micro", + "address_1": "2054 Jamestown Rd", + "address_2": null, + "address_3": null, + "city": "Williamsburg", + "state_province": "Virginia", + "postal_code": "23185-7911", + "country": "United States", + "longitude": -76.7129558, + "latitude": 37.2682365, + "phone": null, + "website_url": "http://www.billsburg.com", + "state": "Virginia", + "street": "2054 Jamestown Rd" + }, + { + "id": "dcebe21d-0595-42ae-b25f-f0e24b9c95d2", + "name": "Billycart Brewing", + "brewery_type": "micro", + "address_1": "65 Tolga Road", + "address_2": null, + "address_3": null, + "city": "Atherton", + "state_province": "QLD", + "postal_code": "4883", + "country": "Australia", + "longitude": 145.4760255, + "latitude": -17.2538481, + "phone": "+61 475 900 747", + "website_url": "http://www.billycartbrewing.com.au/", + "state": "QLD", + "street": "65 Tolga Road" + }, + { + "id": "d238261c-e421-4ee9-a530-2e661d417d62", + "name": "Biloba Brewing", + "brewery_type": "micro", + "address_1": "18720 Pleasant St Stop 4", + "address_2": null, + "address_3": null, + "city": "Brookfield", + "state_province": "Wisconsin", + "postal_code": "53045-3447", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2623095820", + "website_url": "http://www.bilobabrewing.com", + "state": "Wisconsin", + "street": "18720 Pleasant St Stop 4" + }, + { + "id": "c66e7af2-41c2-4e8b-b66d-32ea62e28d4f", + "name": "Biloxi Brewing Co", + "brewery_type": "micro", + "address_1": "186 Bohn St", + "address_2": null, + "address_3": null, + "city": "Biloxi", + "state_province": "Mississippi", + "postal_code": "39530-3812", + "country": "United States", + "longitude": -88.89361913, + "latitude": 30.3982915, + "phone": "2282731638", + "website_url": "http://www.biloxibrewing.com", + "state": "Mississippi", + "street": "186 Bohn St" + }, + { + "id": "d6457470-0a83-42eb-a3f9-9374f490b769", + "name": "Bilpin Cider", + "brewery_type": "micro", + "address_1": "2369 Bells Line of Road", + "address_2": null, + "address_3": null, + "city": "Bilpin", + "state_province": "NSW", + "postal_code": "2758", + "country": "Australia", + "longitude": 150.5299259, + "latitude": -33.5034269, + "phone": "+61 1300 245 746", + "website_url": "http://www.bilpincider.com/", + "state": "NSW", + "street": "2369 Bells Line of Road" + }, + { + "id": "6ccd6e8a-5d6c-4a5e-a285-57067d8b3a41", + "name": "Biltmore Brewing Company", + "brewery_type": "proprietor", + "address_1": "1 N Pack Sq C/O Biltmore Winery Estates", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28801-3462", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8004113812", + "website_url": "http://www.biltmore.com", + "state": "North Carolina", + "street": "1 N Pack Sq C/O Biltmore Winery Estates" + }, + { + "id": "aa7a58a8-b2af-4c19-a73b-7b803262bfad", + "name": "Bine Valley Brewing", + "brewery_type": "micro", + "address_1": "2027 25th St SE", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "Oregon", + "postal_code": "97302-1130", + "country": "United States", + "longitude": -123.0104248, + "latitude": 44.92083964, + "phone": "7602249889", + "website_url": "http://www.binebrews.com", + "state": "Oregon", + "street": "2027 25th St SE" + }, + { + "id": "5b64e8ae-f38a-4cf0-8d60-e3f0cf3c9572", + "name": "Binghamton Brewing Co", + "brewery_type": "micro", + "address_1": "15 Avenue B", + "address_2": null, + "address_3": null, + "city": "Johnson City", + "state_province": "New York", + "postal_code": "13790-2234", + "country": "United States", + "longitude": -75.95337584, + "latitude": 42.11473563, + "phone": "6072383448", + "website_url": "http://www.bingbrew.com", + "state": "New York", + "street": "15 Avenue B" + }, + { + "id": "106a32d5-54fd-4431-8406-0803aef87605", + "name": "Bingo Beer Company", + "brewery_type": "planning", + "address_1": "2900 W Broad St", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23230", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8043975226", + "website_url": "http://www.bingorva.com/", + "state": "Virginia", + "street": "2900 W Broad St" + }, + { + "id": "ffd991bf-fb26-470c-9167-77d54c1fd57b", + "name": "Birch's On the Lake", + "brewery_type": "brewpub", + "address_1": "1310 Wayzata Blvd", + "address_2": null, + "address_3": null, + "city": "Long Lake", + "state_province": "Minnesota", + "postal_code": "55356-8314", + "country": "United States", + "longitude": -93.55601814, + "latitude": 44.98493915, + "phone": "9524737373", + "website_url": "http://www.birchsrestaurantandbar.com", + "state": "Minnesota", + "street": "1310 Wayzata Blvd" + }, + { + "id": "16be946c-4c1b-415b-ac5d-05a5efe1429c", + "name": "Bircus Brewing", + "brewery_type": "micro", + "address_1": "322 Elm St", + "address_2": null, + "address_3": null, + "city": "Ludlow", + "state_province": "Kentucky", + "postal_code": "41016-1451", + "country": "United States", + "longitude": -84.54923129, + "latitude": 39.0935089, + "phone": "8593607757", + "website_url": "http://www.bircus.com", + "state": "Kentucky", + "street": "322 Elm St" + }, + { + "id": "0b8ab2be-1d15-4a60-8bd2-e526a6615567", + "name": "Bird Brain Brewing Company", + "brewery_type": "contract", + "address_1": "435 Nikki Ter SE", + "address_2": null, + "address_3": null, + "city": "Leesburg", + "state_province": "Virginia", + "postal_code": "20175-8962", + "country": "United States", + "longitude": -77.54348368, + "latitude": 39.09389489, + "phone": null, + "website_url": null, + "state": "Virginia", + "street": "435 Nikki Ter SE" + }, + { + "id": "88559f42-b68b-4ba9-963c-c15d13986a72", + "name": "Bird Nickel Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Easton", + "state_province": "Maryland", + "postal_code": "21601-3904", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4103106042", + "website_url": null, + "state": "Maryland", + "street": null + }, + { + "id": "817d37b5-07f0-4722-9b9d-d37e238a6fbe", + "name": "Bird Street Brewing", + "brewery_type": "micro", + "address_1": "242 Heinlen St", + "address_2": null, + "address_3": null, + "city": "Lemoore", + "state_province": "California", + "postal_code": "93245-2947", + "country": "United States", + "longitude": -119.784711, + "latitude": 36.30146756, + "phone": "5593094649", + "website_url": "http://www.birdstreetbrewing.com", + "state": "California", + "street": "242 Heinlen St" + }, + { + "id": "78cc5335-72ed-4756-8c08-b18c65ea3675", + "name": "Birdboy Brewing Co", + "brewery_type": "micro", + "address_1": "210 E Collins Rd", + "address_2": null, + "address_3": null, + "city": "Fort Wayne", + "state_province": "Indiana", + "postal_code": "46825-5304", + "country": "United States", + "longitude": -85.13900142, + "latitude": 41.12187792, + "phone": "2605795508", + "website_url": "http://www.birdboybrewing.com", + "state": "Indiana", + "street": "210 E Collins Rd" + }, + { + "id": "55cf083b-d2b1-4839-878f-730d1a00fc27", + "name": "BirdFish Brewing Co", + "brewery_type": "micro", + "address_1": "16 S Main St", + "address_2": null, + "address_3": null, + "city": "Columbiana", + "state_province": "Ohio", + "postal_code": "44408-1348", + "country": "United States", + "longitude": -80.69353036, + "latitude": 40.888487, + "phone": "3303339385", + "website_url": "http://www.birdfishbrew.com", + "state": "Ohio", + "street": "16 S Main St" + }, + { + "id": "b47dbcd6-1beb-434c-a9fb-3f8d88772800", + "name": "Birds Fly South Ale Project", + "brewery_type": "micro", + "address_1": "1320 Hampton Avenue Ext", + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "South Carolina", + "postal_code": "29601-1012", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8644128825", + "website_url": null, + "state": "South Carolina", + "street": "1320 Hampton Avenue Ext" + }, + { + "id": "2f8dee5a-fc6e-49f3-84de-20ca5580acd4", + "name": "Birdsong Brewing Co.", + "brewery_type": "micro", + "address_1": "1016 N Davidson St", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28206-3371", + "country": "United States", + "longitude": -80.82704272, + "latitude": 35.23060753, + "phone": "7043321810", + "website_url": "http://www.birdsongbrewing.com", + "state": "North Carolina", + "street": "1016 N Davidson St" + }, + { + "id": "10617c0b-c29a-4e60-bd3d-5e4d56649398", + "name": "BirdsView Brewing Co", + "brewery_type": "micro", + "address_1": "38302 State Route 20", + "address_2": null, + "address_3": null, + "city": "Concrete", + "state_province": "Washington", + "postal_code": "98237-9460", + "country": "United States", + "longitude": -121.7378167, + "latitude": 48.5357818, + "phone": "3608263406", + "website_url": "http://www.birdsviewbrewingcompany.com", + "state": "Washington", + "street": "38302 State Route 20" + }, + { + "id": "69bdb3dd-708a-430b-ac8c-5346f382f0d3", + "name": "Birgit", + "brewery_type": "beergarden", + "address_1": "Schleusenufer 3", + "address_2": null, + "address_3": null, + "city": "Berlin", + "state_province": "Berlin", + "postal_code": "10997", + "country": "Germany", + "longitude": 52.5093176, + "latitude": 13.4123414, + "phone": "491725746904", + "website_url": "https://www.birgit.club/", + "state": "Berlin", + "street": "Schleusenufer 3" + }, + { + "id": "91c3a9b6-22f3-42cc-814d-d9895dadb1af", + "name": "Birkenhead Brewery", + "brewery_type": "brewpub", + "address_1": "R326", + "address_2": null, + "address_3": null, + "city": "Stanford", + "state_province": "Western Cape", + "postal_code": "7210", + "country": "South Africa", + "longitude": 19.4682, + "latitude": -34.4265, + "phone": "+27 28 341 0183", + "website_url": "https://www.birkenhead.co.za/", + "state": "Western Cape", + "street": "R326" + }, + { + "id": "c1b16bee-8dc2-4b8f-ae1a-3f9134183d29", + "name": "Birmingham District Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Birmingham", + "state_province": "Alabama", + "postal_code": "35242-5651", + "country": "United States", + "longitude": -86.8024326, + "latitude": 33.5206824, + "phone": "6019380486", + "website_url": null, + "state": "Alabama", + "street": null + }, + { + "id": "ceabe2ed-e384-453c-a972-245ff8abc850", + "name": "Birravino", + "brewery_type": "brewpub", + "address_1": "183 Riverside Ave", + "address_2": null, + "address_3": null, + "city": "Red Bank", + "state_province": "New Jersey", + "postal_code": "07701-1015", + "country": "United States", + "longitude": -74.07536238, + "latitude": 40.35352565, + "phone": "7328425990", + "website_url": "http://www.birravino.com", + "state": "New Jersey", + "street": "183 Riverside Ave" + }, + { + "id": "aec527a2-0534-4252-86e0-56c621fc835d", + "name": "Birreria @ Eataly", + "brewery_type": "brewpub", + "address_1": "200 5th Ave Fl 14", + "address_2": null, + "address_3": null, + "city": "New York", + "state_province": "New York", + "postal_code": "10010-3302", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2125390204", + "website_url": "http://www.eatalyny.com", + "state": "New York", + "street": "200 5th Ave Fl 14" + }, + { + "id": "66cb7863-0a8f-49e0-96e5-d29ed5b69e86", + "name": "Birreria @ Eataly", + "brewery_type": "brewpub", + "address_1": "43 E Ohio St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60611-2701", + "country": "United States", + "longitude": -87.6262332, + "latitude": 41.89209845, + "phone": null, + "website_url": "http://www.eataly.com", + "state": "Illinois", + "street": "43 E Ohio St" + }, + { + "id": "27c38f61-cc1b-4e9c-baea-a55193ba486b", + "name": "Birthright Brewing Co.", + "brewery_type": "brewpub", + "address_1": "57 S Main St", + "address_2": null, + "address_3": null, + "city": "Nazareth", + "state_province": "Pennsylvania", + "postal_code": "18064-2037", + "country": "United States", + "longitude": -75.31224579, + "latitude": 40.74211365, + "phone": "6103652225", + "website_url": "http://www.birthrightbrewingco.com", + "state": "Pennsylvania", + "street": "57 S Main St" + }, + { + "id": "9baed18a-8f26-4e9a-a56f-280ced6d1d7a", + "name": "Biscayne Bay Brewing Co", + "brewery_type": "micro", + "address_1": "8000 NW 25th St Ste 500", + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "Florida", + "postal_code": "33122-1631", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Florida", + "street": "8000 NW 25th St Ste 500" + }, + { + "id": "105076f0-ca29-4fb5-8c91-73e1d7dbfb9d", + "name": "Bismarck Brewing", + "brewery_type": "brewpub", + "address_1": "1100 Canada Ave Suite 1", + "address_2": null, + "address_3": null, + "city": "Bismarck", + "state_province": "North Dakota", + "postal_code": "58503-1814", + "country": "United States", + "longitude": -100.7737552, + "latitude": 46.86270313, + "phone": null, + "website_url": "http://www.bismarckbrew.com", + "state": "North Dakota", + "street": "1100 Canada Ave Suite 1" + }, + { + "id": "7e37544f-5e87-4652-95db-e946e58ae9ed", + "name": "Bison Brewing Co", + "brewery_type": "contract", + "address_1": "1627 S 7th St", + "address_2": null, + "address_3": null, + "city": "San Jose", + "state_province": "California", + "postal_code": "95112-5932", + "country": "United States", + "longitude": -121.8665257, + "latitude": 37.31531409, + "phone": "5108125996", + "website_url": "http://bisonbrew.com", + "state": "California", + "street": "1627 S 7th St" + }, + { + "id": "9ca594a0-97b0-4bd5-a4fe-5b8ee789289f", + "name": "Bissell Brothers Brewing", + "brewery_type": "micro", + "address_1": "4 Thompsons Pt Ste 108", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04102-2639", + "country": "United States", + "longitude": -70.2904097, + "latitude": 43.6514062, + "phone": "2074233622", + "website_url": "http://www.bissellbrothers.com", + "state": "Maine", + "street": "4 Thompsons Pt Ste 108" + }, + { + "id": "77c019ef-bc30-40e4-aa2b-5c51ffa38453", + "name": "Bistronomy B2B Craft Brewery", + "brewery_type": "brewpub", + "address_1": "3118 Central Ave SE", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87106-2216", + "country": "United States", + "longitude": -106.6102147, + "latitude": 35.080354, + "phone": "5052622222", + "website_url": "http://www.bistronomyb2b.com", + "state": "New Mexico", + "street": "3118 Central Ave SE" + }, + { + "id": "3169d94b-9531-4639-8eea-54f94d72eace", + "name": "Bitter Brothers Brewing Co.", + "brewery_type": "micro", + "address_1": "4170 Morena Blvd Ste F", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92117-5252", + "country": "United States", + "longitude": -117.2202906, + "latitude": 32.81614831, + "phone": "6199616690", + "website_url": "http://www.bitterbrothers.com", + "state": "California", + "street": "4170 Morena Blvd Ste F" + }, + { + "id": "bfdbcc50-5bfa-443b-a2fa-586f433a28e0", + "name": "Bitter Creek Brewing Co", + "brewery_type": "closed", + "address_1": "604 Broadway St", + "address_2": null, + "address_3": null, + "city": "Rock Springs", + "state_province": "Wyoming", + "postal_code": "82901-6348", + "country": "United States", + "longitude": -109.2181243, + "latitude": 41.58683904, + "phone": "3073624782", + "website_url": "http://www.bittercreekbrewing.com", + "state": "Wyoming", + "street": "604 Broadway St" + }, + { + "id": "80dd3663-71f9-46db-811e-7b1610731542", + "name": "Bitter Old Fecker Rustic Ales", + "brewery_type": "micro", + "address_1": "12855 E Old US Hwy 12", + "address_2": null, + "address_3": null, + "city": "Chelsea", + "state_province": "Michigan", + "postal_code": "48118-9229", + "country": "United States", + "longitude": -83.98452281, + "latitude": 42.2995379, + "phone": "7344445201", + "website_url": null, + "state": "Michigan", + "street": "12855 E Old US Hwy 12" + }, + { + "id": "2f3d22a3-113e-424a-aed6-b8a2f2f785c2", + "name": "Bitter Root Brewing Co", + "brewery_type": "micro", + "address_1": "101 Marcus St", + "address_2": null, + "address_3": null, + "city": "Hamilton", + "state_province": "Montana", + "postal_code": "59840-2541", + "country": "United States", + "longitude": -114.1551946, + "latitude": 46.24733778, + "phone": "4063637468", + "website_url": "http://www.bitterrootbrewing.com", + "state": "Montana", + "street": "101 Marcus St" + }, + { + "id": "27812208-7d7b-4c77-b62a-bc405d6af897", + "name": "Bitter Sisters Brewing Company", + "brewery_type": "micro", + "address_1": "15103 Surveyor Blvd", + "address_2": null, + "address_3": null, + "city": "Addison", + "state_province": "Texas", + "postal_code": "75001-4316", + "country": "United States", + "longitude": -96.845846, + "latitude": 32.951222, + "phone": "9724790949", + "website_url": "http://www.bittersistersbrewery.com", + "state": "Texas", + "street": "15103 Surveyor Blvd" + }, + { + "id": "1946d91f-cffd-4794-9f88-4264b923f398", + "name": "Bittersweet Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "191 S Oak Park Blvd Ste 3", + "address_2": null, + "address_3": null, + "city": "Grover Beach", + "state_province": "California", + "postal_code": "93433-2265", + "country": "United States", + "longitude": -120.6088596, + "latitude": 35.12009944, + "phone": null, + "website_url": "http://www.bittersweetbrewing.com", + "state": "California", + "street": "191 S Oak Park Blvd Ste 3" + }, + { + "id": "3a53f072-1296-4003-ac65-cf269eb0ad9d", + "name": "Bizarre Brewing", + "brewery_type": "micro", + "address_1": "4441 26th Ave SW Ste A", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98199-1218", + "country": "United States", + "longitude": -122.390297, + "latitude": 47.660564, + "phone": null, + "website_url": "https://bizarrebrewing.com", + "state": "Washington", + "street": "4441 26th Ave SW Ste A" + }, + { + "id": "8f291173-eb33-4277-96a6-81a3a1b32709", + "name": "BJ's Brewhouse", + "brewery_type": "regional", + "address_1": "602 E Central Ave", + "address_2": null, + "address_3": null, + "city": "Temple", + "state_province": "Texas", + "postal_code": "76501-4319", + "country": "United States", + "longitude": -97.33525536, + "latitude": 31.09509964, + "phone": "7145002400", + "website_url": null, + "state": "Texas", + "street": "602 E Central Ave" + }, + { + "id": "57b4c49f-7c62-4f88-8027-deeb7aa29a99", + "name": "BJs Restaurant & Brewery - Boulder", + "brewery_type": "brewpub", + "address_1": "1690 28th St", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301-", + "country": "United States", + "longitude": -105.258512, + "latitude": 40.0291592, + "phone": "3034405200", + "website_url": "http://www.bjsrestaurants.com", + "state": "Colorado", + "street": "1690 28th St" + }, + { + "id": "b550667b-11ec-49f0-8609-071ca0395269", + "name": "BJs Restaurant & Brewery - Brea", + "brewery_type": "brewpub", + "address_1": "600 Brea Mall Dr", + "address_2": null, + "address_3": null, + "city": "Brea", + "state_province": "California", + "postal_code": "92821-5764", + "country": "United States", + "longitude": -117.8863245, + "latitude": 33.9152037, + "phone": "7149902095", + "website_url": "http://www.bjsrestaurants.com", + "state": "California", + "street": "600 Brea Mall Dr" + }, + { + "id": "a9888981-3b31-4cb8-80ec-83b4e089dc04", + "name": "BJs Restaurant & Brewery - Chandler", + "brewery_type": "brewpub", + "address_1": "3155 W Chandler Blvd", + "address_2": null, + "address_3": null, + "city": "Chandler", + "state_province": "Arizona", + "postal_code": "85226-5175", + "country": "United States", + "longitude": -111.911126, + "latitude": 33.3053455, + "phone": "4809170631", + "website_url": "http://www.bjsrestaurants.com", + "state": "Arizona", + "street": "3155 W Chandler Blvd" + }, + { + "id": "8fe53360-1c28-4c1a-8e98-49ff1966fc25", + "name": "BJs Restaurant & Brewery - Reno", + "brewery_type": "brewpub", + "address_1": "13999 S Virginia St", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89511-8917", + "country": "United States", + "longitude": -119.8122668, + "latitude": 39.5244083, + "phone": "7758537575", + "website_url": "http://www.bjsbrewhouse.com", + "state": "Nevada", + "street": "13999 S Virginia St" + }, + { + "id": "d4b77aea-a845-46b2-8f6e-b81378525c89", + "name": "BJs Restaurant & Brewery - West Covina", + "brewery_type": "brewpub", + "address_1": "2917 E Eastland Ctr Dr", + "address_2": null, + "address_3": null, + "city": "West Covina", + "state_province": "California", + "postal_code": "91791-1603", + "country": "United States", + "longitude": -117.8867988, + "latitude": 34.07298952, + "phone": "6268580054", + "website_url": "http://www.bjsrestaurants.com", + "state": "California", + "street": "2917 E Eastland Ctr Dr" + }, + { + "id": "283ac187-d4fb-4859-b536-3a4566d9631a", + "name": "BJs Restauraunt & Brewhouse", + "brewery_type": "brewpub", + "address_1": "4502 S. Steele St. Suite 1500", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98409-7277", + "country": "United States", + "longitude": -122.467515, + "latitude": 47.214875, + "phone": "2534721220", + "website_url": "https://www.bjsrestaurants.com/locations/wa/tacoma", + "state": "Washington", + "street": "4502 S. Steele St. Suite 1500" + }, + { + "id": "9e7959cb-8292-4892-aa10-6467c2b764b0", + "name": "BKS Artisan Ales", + "brewery_type": "micro", + "address_1": "633 E 63rd St #120", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64110", + "country": "United States", + "longitude": -94.493961, + "latitude": 39.010093, + "phone": "8166733027", + "website_url": "http://www.bksartisanales.com", + "state": "Missouri", + "street": "633 E 63rd St #120" + }, + { + "id": "e018afc5-b867-44d2-b3e6-9f54e66bc5c8", + "name": "Blü Dragonfly Brewing", + "brewery_type": "brewpub", + "address_1": "301 E 9th St # C", + "address_2": null, + "address_3": null, + "city": "Cimarron", + "state_province": "New Mexico", + "postal_code": "87714-4027", + "country": "United States", + "longitude": -104.914428, + "latitude": 36.511427, + "phone": "9186361095", + "website_url": null, + "state": "New Mexico", + "street": "301 E 9th St # C" + }, + { + "id": "64fd68cb-1304-41c8-b42d-0b5e801e7156", + "name": "Black Acre Brewing Co", + "brewery_type": "brewpub", + "address_1": "5632 E Washington St", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46219-6428", + "country": "United States", + "longitude": -86.1452662, + "latitude": 39.7668669, + "phone": "3177973316", + "website_url": "http://www.blackacrebrewing.com", + "state": "Indiana", + "street": "5632 E Washington St" + }, + { + "id": "6cab717d-2883-4869-ab9a-879f09319efb", + "name": "Black Beak Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80237-1907", + "country": "United States", + "longitude": -104.984696, + "latitude": 39.7391428, + "phone": "3032107836", + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "77c455db-9445-408f-8447-c4d28830edf9", + "name": "Black Bear Brewery", + "brewery_type": "micro", + "address_1": "19 Mill St Ste 4", + "address_2": null, + "address_3": null, + "city": "Orono", + "state_province": "Maine", + "postal_code": "04473-4095", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2078899123", + "website_url": "http://www.blackbearmicrobrew.com", + "state": "Maine", + "street": "19 Mill St Ste 4" + }, + { + "id": "2d1c4b89-4d44-4f47-8ea1-b11fdfc247bd", + "name": "Black Bottle Brewery", + "brewery_type": "brewpub", + "address_1": "1611 S College Ave Ste STE1609", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80525-1074", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9704932337", + "website_url": "http://www.blackbottlebrewery.com", + "state": "Colorado", + "street": "1611 S College Ave Ste STE1609" + }, + { + "id": "2210f791-ad13-445f-9b69-a8789e372b37", + "name": "Black Brewing Co", + "brewery_type": "micro", + "address_1": "3517 Caves Road", + "address_2": null, + "address_3": null, + "city": "Wilyabrup", + "state_province": "WA", + "postal_code": "6280", + "country": "Australia", + "longitude": 115.0310562, + "latitude": -33.7505266, + "phone": null, + "website_url": "https://blackbrewingco.com.au/?utm_source=google&utm_medium=organic&utm_campaign=gmb-wilyabrup", + "state": "WA", + "street": "3517 Caves Road" + }, + { + "id": "c616ab6b-bba4-4d23-b341-b325251f3420", + "name": "Black Bridge Brewery", + "brewery_type": "micro", + "address_1": "421 E Beale St", + "address_2": null, + "address_3": null, + "city": "Kingman", + "state_province": "Arizona", + "postal_code": "86401-5833", + "country": "United States", + "longitude": -114.051737, + "latitude": 35.1895877, + "phone": "9283773618", + "website_url": "http://www.blackbridgebrewery.com", + "state": "Arizona", + "street": "421 E Beale St" + }, + { + "id": "01a7842a-3139-475e-95e9-e5a671c236ef", + "name": "Black Cat Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80302", + "country": "United States", + "longitude": -105.2705456, + "latitude": 40.0149856, + "phone": null, + "website_url": "http://www.blackcatbrewing.com", + "state": "Colorado", + "street": null + }, + { + "id": "fd28030a-631f-410a-b426-9c67c29b3175", + "name": "Black Circle Brewing Co", + "brewery_type": "micro", + "address_1": "2201 E 46th St", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46205", + "country": "United States", + "longitude": -86.123944, + "latitude": 39.8398813, + "phone": "3174260143", + "website_url": "http://www.blackcirclebrewing.com", + "state": "Indiana", + "street": "2201 E 46th St" + }, + { + "id": "7f459973-0ae7-40d5-825c-a6eaa6f3843a", + "name": "Black Cloister Brewing Co", + "brewery_type": "brewpub", + "address_1": "619 Monroe St", + "address_2": null, + "address_3": null, + "city": "Toledo", + "state_province": "Ohio", + "postal_code": "43604-1015", + "country": "United States", + "longitude": -83.5399665, + "latitude": 41.6499863, + "phone": "4192141500", + "website_url": "http://www.blackcloister.com", + "state": "Ohio", + "street": "619 Monroe St" + }, + { + "id": "962e31a8-5230-4bf5-a006-cceed47b46bf", + "name": "Black Cock Brewing Company", + "brewery_type": "micro", + "address_1": "1444 N Batavia St", + "address_2": null, + "address_3": null, + "city": "Orange", + "state_province": "California", + "postal_code": "92867-3505", + "country": "United States", + "longitude": -117.8620026, + "latitude": 33.8274902, + "phone": "7147448410", + "website_url": null, + "state": "California", + "street": "1444 N Batavia St" + }, + { + "id": "68534594-0610-4e38-93fa-b8a9e76941c6", + "name": "Black Creek Brewery", + "brewery_type": "micro", + "address_1": "111 Depot St", + "address_2": null, + "address_3": null, + "city": "Roxboro", + "state_province": "North Carolina", + "postal_code": "27573-5503", + "country": "United States", + "longitude": -78.98146367, + "latitude": 36.39362085, + "phone": "9195244319", + "website_url": null, + "state": "North Carolina", + "street": "111 Depot St" + }, + { + "id": "5a534132-ae7b-462d-b58e-58e7c2d3e785", + "name": "Black Dog Brewing Co", + "brewery_type": "micro", + "address_1": "339 Booth Road", + "address_2": null, + "address_3": null, + "city": "Taminick", + "state_province": "VIC", + "postal_code": "3675", + "country": "Australia", + "longitude": 146.183609, + "latitude": -36.3745155, + "phone": "+61 3 5766 2282", + "website_url": "http://blackdogbrewery.com.au/", + "state": "VIC", + "street": "339 Booth Road" + }, + { + "id": "73174f3a-40c5-49c4-8394-1a913831f14d", + "name": "Black Donkey Brewing", + "brewery_type": "micro", + "address_1": "Srah Road", + "address_2": null, + "address_3": null, + "city": "Ballinlough", + "state_province": "Roscommon", + "postal_code": "F45 KN60", + "country": "Ireland", + "longitude": -8.640373685, + "latitude": 53.74460665, + "phone": null, + "website_url": "http://blackdonkeybeer.com/", + "state": "Roscommon", + "street": "Srah Road" + }, + { + "id": "149e2ad1-8a38-4659-a11a-0b2647d5a788", + "name": "Black Doubt Brewing Company", + "brewery_type": "micro", + "address_1": "452 Old Mammoth Rd, #104", + "address_2": null, + "address_3": null, + "city": "Mammoth Lakes", + "state_province": "California", + "postal_code": "93546", + "country": "United States", + "longitude": -118.9668019, + "latitude": 37.6395882, + "phone": "7605250462", + "website_url": "http://www.blackdoubtbrewing.com", + "state": "California", + "street": "452 Old Mammoth Rd, #104" + }, + { + "id": "a539c80f-cfa0-400c-9eb5-a2fe8a882343", + "name": "Black Eagle Brewery", + "brewery_type": "micro", + "address_1": "1600 25th Ave NE", + "address_2": null, + "address_3": null, + "city": "Black Eagle", + "state_province": "Montana", + "postal_code": "59414-1070", + "country": "United States", + "longitude": -111.279526, + "latitude": 47.528243, + "phone": "4068681866", + "website_url": "http://www.pitstopblackeagle.com", + "state": "Montana", + "street": "1600 25th Ave NE" + }, + { + "id": "d7ae324d-dcc4-4b52-b857-35dca78f8c37", + "name": "Black Fire Winery", + "brewery_type": "micro", + "address_1": "1261 E Munger Rd", + "address_2": null, + "address_3": null, + "city": "Tecumseh", + "state_province": "Michigan", + "postal_code": "49286-8714", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5174249232", + "website_url": null, + "state": "Michigan", + "street": "1261 E Munger Rd" + }, + { + "id": "f6cc21c0-039d-4257-9869-b168502185d6", + "name": "Black Flag Brewing Company", + "brewery_type": "micro", + "address_1": "9315 Snowden River Pkwy", + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "Maryland", + "postal_code": "21046-2091", + "country": "United States", + "longitude": -76.810364, + "latitude": 39.192524, + "phone": "4438645139", + "website_url": "http://www.blackflagbrewingco.com", + "state": "Maryland", + "street": "9315 Snowden River Pkwy" + }, + { + "id": "866e9938-a7ea-41c1-a2b9-81ecb26aa3b0", + "name": "Black Fleet Brewing", + "brewery_type": "micro", + "address_1": "2302 Fawcett Ave", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98402-1402", + "country": "United States", + "longitude": -122.44036, + "latitude": 47.24082, + "phone": "2533271641", + "website_url": "http://www.blackfleetbrewing.com", + "state": "Washington", + "street": "2302 Fawcett Ave" + }, + { + "id": "a0fadb5a-1b4c-4e40-9782-27f06c10a52d", + "name": "Black Forest Brew Haus", + "brewery_type": "brewpub", + "address_1": "2015 New Hwy", + "address_2": null, + "address_3": null, + "city": "Farmingdale", + "state_province": "New York", + "postal_code": "11735-1103", + "country": "United States", + "longitude": -73.41443291, + "latitude": 40.7550515, + "phone": "6313919500", + "website_url": "http://www.blackforestbrewhaus.com", + "state": "New York", + "street": "2015 New Hwy" + }, + { + "id": "d3eba4df-b289-4ee6-ada9-da33ef0567aa", + "name": "Black Forest Brewery", + "brewery_type": "brewpub", + "address_1": "301 W Main St", + "address_2": null, + "address_3": null, + "city": "Ephrata", + "state_province": "Pennsylvania", + "postal_code": "17522-1713", + "country": "United States", + "longitude": -76.183579, + "latitude": 40.181767, + "phone": "7174507217", + "website_url": "http://www.blackforestbrewery.net", + "state": "Pennsylvania", + "street": "301 W Main St" + }, + { + "id": "c8160b2b-3e43-4db3-bbd8-32f07a0a0060", + "name": "Black Forest Brewing Company", + "brewery_type": "brewpub", + "address_1": "11590 Black Forest Rd Ste 50", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80908-6000", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7193962011", + "website_url": "http://www.blackforestbrewco.com", + "state": "Colorado", + "street": "11590 Black Forest Rd Ste 50" + }, + { + "id": "aa85b666-63af-42fd-9f3a-0484bfc6666b", + "name": "Black Frog Brewing Co", + "brewery_type": "micro", + "address_1": "831 S McCord Rd", + "address_2": null, + "address_3": null, + "city": "Holland", + "state_province": "Ohio", + "postal_code": "43528-8746", + "country": "United States", + "longitude": -83.7032185, + "latitude": 41.6171284, + "phone": "4193897136", + "website_url": "http://www.blackfrogbrewery.com", + "state": "Ohio", + "street": "831 S McCord Rd" + }, + { + "id": "e81bfb16-7efb-4b1f-bad8-9d0eeabc3157", + "name": "Black Gold Brewing Co", + "brewery_type": "brewpub", + "address_1": "508 Center St", + "address_2": null, + "address_3": null, + "city": "Taft", + "state_province": "California", + "postal_code": "93268-3109", + "country": "United States", + "longitude": -119.4591658, + "latitude": 35.14109718, + "phone": "6617656550", + "website_url": null, + "state": "California", + "street": "508 Center St" + }, + { + "id": "26d678eb-fcce-4072-95aa-97afa8505925", + "name": "Black Hammer Brewing", + "brewery_type": "micro", + "address_1": "544 Bryant St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94107-1217", + "country": "United States", + "longitude": -122.3969947, + "latitude": 37.780655, + "phone": "4155002273", + "website_url": "http://www.blackhammerbrewing.com", + "state": "California", + "street": "544 Bryant St" + }, + { + "id": "61d6bc91-4366-49a9-ac55-5eed49482fc7", + "name": "Black Hat Brew Works", + "brewery_type": "micro", + "address_1": "25 Scotland Blvd # 1", + "address_2": null, + "address_3": null, + "city": "Bridgewater", + "state_province": "Massachusetts", + "postal_code": "02324-2302", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5088075172", + "website_url": "http://www.blackhatbrewworks.com", + "state": "Massachusetts", + "street": "25 Scotland Blvd # 1" + }, + { + "id": "aac970a9-7070-42e1-b11b-c0aa516834e1", + "name": "Black Hog Brewing Co", + "brewery_type": "micro", + "address_1": "115 Hurley Road, Building 9A", + "address_2": null, + "address_3": null, + "city": "Oxford", + "state_province": "Connecticut", + "postal_code": "06478-1047", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2032626075", + "website_url": "http://www.blackhogbrewing.com", + "state": "Connecticut", + "street": "115 Hurley Road, Building 9A" + }, + { + "id": "d42db334-e706-4f48-b253-cbd3a5d25900", + "name": "Black Hoof Brewing", + "brewery_type": "micro", + "address_1": "11 S King St", + "address_2": null, + "address_3": null, + "city": "Leesburg", + "state_province": "Virginia", + "postal_code": "20175-2903", + "country": "United States", + "longitude": -77.5648925, + "latitude": 39.1150351, + "phone": "5717078014", + "website_url": null, + "state": "Virginia", + "street": "11 S King St" + }, + { + "id": "f7b65214-f0cc-4bb0-9a4c-90c0fe0896b0", + "name": "Black Hops", + "brewery_type": "micro", + "address_1": "15 Gardenia Grove", + "address_2": null, + "address_3": null, + "city": "Burleigh Heads", + "state_province": "QLD", + "postal_code": "4220", + "country": "Australia", + "longitude": 153.4446103, + "latitude": -28.0786187, + "phone": null, + "website_url": "http://blackhops.com.au/", + "state": "QLD", + "street": "15 Gardenia Grove" + }, + { + "id": "2901759c-e23c-49c1-8006-9582b31474f9", + "name": "Black Hops Brewing", + "brewery_type": "micro", + "address_1": "15 Gardenia Grove", + "address_2": null, + "address_3": null, + "city": "Burleigh Heads", + "state_province": "QLD", + "postal_code": "4220", + "country": "Australia", + "longitude": 153.4446103, + "latitude": -28.0786187, + "phone": null, + "website_url": "http://blackhops.com.au/", + "state": "QLD", + "street": "15 Gardenia Grove" + }, + { + "id": "4eac342b-e067-425f-995e-aeb089a10f85", + "name": "Black Horizon Brewing Company", + "brewery_type": "micro", + "address_1": "7560 S Quincy St", + "address_2": null, + "address_3": null, + "city": "Willowbrook", + "state_province": "Illinois", + "postal_code": "60527-5545", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6304134964", + "website_url": "http://www.blackhorizonbrewing.com", + "state": "Illinois", + "street": "7560 S Quincy St" + }, + { + "id": "59fe77ea-4972-44e7-b89c-031262ea5cab", + "name": "Black Horse Brewery", + "brewery_type": "brewpub", + "address_1": "32 Seekoeihoek", + "address_2": " Bekker Schools Road", + "address_3": null, + "city": "Magaliesburg", + "state_province": "Gauteng", + "postal_code": "1791", + "country": "South Africa", + "longitude": 27.6719, + "latitude": -25.9961, + "phone": "+27 82 453 5295", + "website_url": "https://www.blackhorse.co.za/", + "state": "Gauteng", + "street": "32 Seekoeihoek" + }, + { + "id": "7d158044-9d6a-40d2-8bb6-746035b3bc96", + "name": "Black Horse Brewery", + "brewery_type": "micro", + "address_1": "1058 Burton Rd", + "address_2": null, + "address_3": null, + "city": "Show Low", + "state_province": "Arizona", + "postal_code": "85901-3924", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9285379349", + "website_url": "http://www.blackhorsebrewery.us", + "state": "Arizona", + "street": "1058 Burton Rd" + }, + { + "id": "da6ab5c6-b221-47cd-97dc-eedd9bf5e589", + "name": "Black Husky Brewing LLC", + "brewery_type": "micro", + "address_1": "909 E Locust St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53212", + "country": "United States", + "longitude": -87.90008457, + "latitude": 43.071024, + "phone": "4045098855", + "website_url": "http://www.blackhuskybrewing.com", + "state": "Wisconsin", + "street": "909 E Locust St" + }, + { + "id": "7812960a-df16-4738-beca-842fbc54d68e", + "name": "Black Label Brewing Company", + "brewery_type": "micro", + "address_1": "19 W Main Ave", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99201-5124", + "country": "United States", + "longitude": -117.4114587, + "latitude": 47.65900318, + "phone": "5098227436", + "website_url": "http://www.blacklabelbrewing.com", + "state": "Washington", + "street": "19 W Main Ave" + }, + { + "id": "6aa5ecd3-aaec-472c-ba67-c7f8d6b75b40", + "name": "Black Laboratory Breing", + "brewery_type": "micro", + "address_1": "1602 E Houston St Suite 109", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78202", + "country": "United States", + "longitude": -98.4753507, + "latitude": 29.4246556, + "phone": "210-370-3442", + "website_url": "http://www.blacklaboratorybrewing.com/", + "state": "Texas", + "street": "1602 E Houston St Suite 109" + }, + { + "id": "4ec0bd38-0ab1-4c4e-84bb-63510b63f4a0", + "name": "Black Leg Brewery", + "brewery_type": "micro", + "address_1": "24750 62nd Ave SE", + "address_2": null, + "address_3": null, + "city": "McKenzie", + "state_province": "North Dakota", + "postal_code": "58572-9649", + "country": "United States", + "longitude": -100.3978304, + "latitude": 46.74842764, + "phone": null, + "website_url": "http://blacklegranch.com", + "state": "North Dakota", + "street": "24750 62nd Ave SE" + }, + { + "id": "a0603777-7481-46fd-805e-a00d194829d5", + "name": "Black Lotus Brewing Co", + "brewery_type": "brewpub", + "address_1": "1 E 14 Mile Rd", + "address_2": null, + "address_3": null, + "city": "Clawson", + "state_province": "Michigan", + "postal_code": "48017-2132", + "country": "United States", + "longitude": -83.141428, + "latitude": 42.533563, + "phone": "2485771878", + "website_url": "http://WWW.BLACKLOTUSBEER.COM", + "state": "Michigan", + "street": "1 E 14 Mile Rd" + }, + { + "id": "1fab0024-c031-450c-a1b6-48f2a0dd8e9a", + "name": "Black Magic Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fountain Valley", + "state_province": "California", + "postal_code": "92708-6431", + "country": "United States", + "longitude": -117.9627349, + "latitude": 33.7038145, + "phone": null, + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "600748ca-dca4-43c4-8187-a0b1d952a597", + "name": "Black Market Brewing Co", + "brewery_type": "brewpub", + "address_1": "41740 Enterprise Cir N Ste 109", + "address_2": null, + "address_3": null, + "city": "Temecula", + "state_province": "California", + "postal_code": "92590-5652", + "country": "United States", + "longitude": -117.1697859, + "latitude": 33.5185138, + "phone": null, + "website_url": null, + "state": "California", + "street": "41740 Enterprise Cir N Ste 109" + }, + { + "id": "8f5375c1-cfa2-4f84-8967-6ca771be1ba9", + "name": "Black Mesa Brewing Company", + "brewery_type": "micro", + "address_1": "3901 N Flood Ave", + "address_2": null, + "address_3": null, + "city": "Norman", + "state_province": "Oklahoma", + "postal_code": "73069", + "country": "United States", + "longitude": -97.4819196, + "latitude": 35.2761135, + "phone": "4054081848", + "website_url": "http://www.blackmesabrewing.com", + "state": "Oklahoma", + "street": "3901 N Flood Ave" + }, + { + "id": "7868b4db-6b60-49e3-96d5-56912133a9cc", + "name": "Black Narrows Brewing Company", + "brewery_type": "micro", + "address_1": "4522 Chicken City Rd", + "address_2": null, + "address_3": null, + "city": "Chincoteague", + "state_province": "Virginia", + "postal_code": "23336-2303", + "country": "United States", + "longitude": -75.36219281, + "latitude": 37.93125647, + "phone": "7869994877", + "website_url": "http://www.blacknarrowsbrewing.com", + "state": "Virginia", + "street": "4522 Chicken City Rd" + }, + { + "id": "d67cae67-6bcf-4a02-92e0-76d81ebfb5b8", + "name": "Black Page Brewing Co.", + "brewery_type": "micro", + "address_1": "210 Glen Park St.", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77009", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7137846001", + "website_url": "https://blackpagebrewing.com", + "state": "Texas", + "street": "210 Glen Park St." + }, + { + "id": "d8ddf2ca-5a9c-4d0b-a324-6ce0c0bae06d", + "name": "Black Plague Brewing", + "brewery_type": "micro", + "address_1": "2550 Jason Ct", + "address_2": null, + "address_3": null, + "city": "Oceanside", + "state_province": "California", + "postal_code": "92056-3592", + "country": "United States", + "longitude": -117.266825, + "latitude": 33.215571, + "phone": "7602072949", + "website_url": "http://www.blackplaguebrewing.com", + "state": "California", + "street": "2550 Jason Ct" + }, + { + "id": "53e18401-9be7-44b9-9175-01c08f941741", + "name": "Black Pond Brews", + "brewery_type": "micro", + "address_1": "21A Furnace St", + "address_2": null, + "address_3": null, + "city": "Danielson", + "state_province": "Connecticut", + "postal_code": "06239-3040", + "country": "United States", + "longitude": -71.88394473, + "latitude": 41.80470085, + "phone": "8602075295", + "website_url": "http://www.blackpondbrews.com", + "state": "Connecticut", + "street": "21A Furnace St" + }, + { + "id": "e12bc89b-26c8-4835-a92d-9caa5ad81750", + "name": "Black Project Spontaneous & Wild Ales", + "brewery_type": "micro", + "address_1": "1290 S Broadway", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80210-1504", + "country": "United States", + "longitude": -104.9872018, + "latitude": 39.6933607, + "phone": "7203342873", + "website_url": "http://www.blackprojectbeer.com", + "state": "Colorado", + "street": "1290 S Broadway" + }, + { + "id": "ab360d6f-246e-455f-b706-de39ec5ac9ec", + "name": "Black Raven Brewing Co", + "brewery_type": "micro", + "address_1": "14679 NE 95th St", + "address_2": null, + "address_3": null, + "city": "Redmond", + "state_province": "Washington", + "postal_code": "98052-2556", + "country": "United States", + "longitude": -122.1455096, + "latitude": 47.6854906, + "phone": "4258813020", + "website_url": "http://www.blackravenbrewing.com", + "state": "Washington", + "street": "14679 NE 95th St" + }, + { + "id": "c8149934-3bc5-4c76-9f21-8b3cbbf31c40", + "name": "Black Raven Brewing Co Woodinville", + "brewery_type": "micro", + "address_1": "15902 Woodinville-Redmond Rd NE", + "address_2": null, + "address_3": null, + "city": "Woodinville", + "state_province": "Washington", + "postal_code": "98072-4572", + "country": "United States", + "longitude": -122.1554963, + "latitude": 47.74343078, + "phone": "4258813020", + "website_url": "http://www.blackravenbrewing.com", + "state": "Washington", + "street": "15902 Woodinville-Redmond Rd NE" + }, + { + "id": "4e09e7f2-b9c7-4580-8c6a-1241f8835bf9", + "name": "Black Sands Brewery", + "brewery_type": "micro", + "address_1": "701 Haight St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94117-3316", + "country": "United States", + "longitude": -122.433863, + "latitude": 37.7715719, + "phone": "4155345194", + "website_url": null, + "state": "California", + "street": "701 Haight St" + }, + { + "id": "5b5235aa-79f1-41e4-97a1-8f9fdfee1657", + "name": "Black Shirt Brewing Co", + "brewery_type": "brewpub", + "address_1": "3719 Walnut St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80205-2436", + "country": "United States", + "longitude": -104.9729604, + "latitude": 39.7698142, + "phone": "3039932799", + "website_url": "http://www.blackshirtbrewingco.com", + "state": "Colorado", + "street": "3719 Walnut St" + }, + { + "id": "15855eaa-dfcc-43e4-a0ff-220836e5be63", + "name": "Black Sky Brewery", + "brewery_type": "brewpub", + "address_1": "490 Santa Fe Dr", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80204-5024", + "country": "United States", + "longitude": -104.9983183, + "latitude": 39.7239431, + "phone": "9702154536", + "website_url": "http://www.blackskybrewing.com", + "state": "Colorado", + "street": "490 Santa Fe Dr" + }, + { + "id": "3a255fa1-c05a-42ce-ad91-181fbe91473d", + "name": "Black Star Co-op", + "brewery_type": "brewpub", + "address_1": "7020 Easy Wind Dr Ste 100", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78752-2373", + "country": "United States", + "longitude": -97.718977, + "latitude": 30.3383262, + "phone": "5124522337", + "website_url": "http://www.blackstar.coop", + "state": "Texas", + "street": "7020 Easy Wind Dr Ste 100" + }, + { + "id": "7cb5d5cc-c608-46a0-8bde-20c063f1bd1d", + "name": "Black Swan Brewpub", + "brewery_type": "brewpub", + "address_1": "2067 E Hadley Rd", + "address_2": null, + "address_3": null, + "city": "Plainfield", + "state_province": "Indiana", + "postal_code": "46168-7484", + "country": "United States", + "longitude": -86.374141, + "latitude": 39.674729, + "phone": "3178387444", + "website_url": "http://www.blackswanbrewpub.com", + "state": "Indiana", + "street": "2067 E Hadley Rd" + }, + { + "id": "1a5f4915-b1cf-4b45-a91c-cc1235f50e9f", + "name": "Black Tooth Brewing Co", + "brewery_type": "micro", + "address_1": "312 Broadway St", + "address_2": null, + "address_3": null, + "city": "Sheridan", + "state_province": "Wyoming", + "postal_code": "82801-3917", + "country": "United States", + "longitude": -106.953506, + "latitude": 44.80089512, + "phone": "3076752337", + "website_url": "http://www.blacktoothbrewingcompany.com", + "state": "Wyoming", + "street": "312 Broadway St" + }, + { + "id": "3de678fa-0f47-4f10-8fb5-a74146614407", + "name": "Black Walnut Brewery", + "brewery_type": "micro", + "address_1": "210 S King St", + "address_2": null, + "address_3": null, + "city": "Leesburg", + "state_province": "Virginia", + "postal_code": "20175-3010", + "country": "United States", + "longitude": -77.5649731, + "latitude": 39.1127558, + "phone": "7037719474", + "website_url": null, + "state": "Virginia", + "street": "210 S King St" + }, + { + "id": "f0798955-8b91-4b1f-bed3-995467ca5700", + "name": "Black Warrior Brewing Co.", + "brewery_type": "micro", + "address_1": "2216 University Blvd", + "address_2": null, + "address_3": null, + "city": "Tuscaloosa", + "state_province": "Alabama", + "postal_code": "35401-1542", + "country": "United States", + "longitude": -87.565915, + "latitude": 33.21061755, + "phone": null, + "website_url": "http://www.blackwarriorbrewing.com", + "state": "Alabama", + "street": "2216 University Blvd" + }, + { + "id": "08bc0229-4621-4ddd-a27e-8da88d0a5800", + "name": "Black Wolf Brewing LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Pocono Pines", + "state_province": "Pennsylvania", + "postal_code": "18350", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "bf4605ce-568b-4442-a8e0-41d0d261b451", + "name": "Blackadder Brewing Company", + "brewery_type": "micro", + "address_1": "618 NW 60th St Ste A", + "address_2": null, + "address_3": null, + "city": "Gainesville", + "state_province": "Florida", + "postal_code": "32607-6014", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3523390324", + "website_url": "http://www.blackadderbrewing.com", + "state": "Florida", + "street": "618 NW 60th St Ste A" + }, + { + "id": "df62d3a5-46ff-40e3-9f81-e35c286a4a94", + "name": "Blackbeard's Brewing Company", + "brewery_type": "brewpub", + "address_1": "700 W Ocean Ave", + "address_2": null, + "address_3": null, + "city": "Westport", + "state_province": "Washington", + "postal_code": "98595-9603", + "country": "United States", + "longitude": -124.1175413, + "latitude": 46.8867861, + "phone": "3602687662", + "website_url": "http://www.blackbeardsbrewing.com", + "state": "Washington", + "street": "700 W Ocean Ave" + }, + { + "id": "99642888-e928-4aa2-a7a0-655aa43c6293", + "name": "Blackberry Farm Brewery", + "brewery_type": "micro", + "address_1": "910 E Harper Ave", + "address_2": null, + "address_3": null, + "city": "Maryville", + "state_province": "Tennessee", + "postal_code": "37804-4023", + "country": "United States", + "longitude": -83.965755, + "latitude": 35.762562, + "phone": "8659848166", + "website_url": "http://www.blackberryfarm.com", + "state": "Tennessee", + "street": "910 E Harper Ave" + }, + { + "id": "edf122f0-ee16-41b8-a83c-90587faea842", + "name": "Blackflag Brewing", + "brewery_type": "micro", + "address_1": "13 Brisbane Road", + "address_2": null, + "address_3": null, + "city": "Mooloolaba", + "state_province": "QLD", + "postal_code": "4557", + "country": "Australia", + "longitude": 153.1199158, + "latitude": -26.6811259, + "phone": "+61 7 5478 2521", + "website_url": "https://www.blackflagbrewing.com.au/pages/mooloolaba", + "state": "QLD", + "street": "13 Brisbane Road" + }, + { + "id": "a7b62684-c1ff-470b-8f59-d6198987a2d0", + "name": "Blackfoot River Brewing Co", + "brewery_type": "micro", + "address_1": "66 S Park Ave", + "address_2": null, + "address_3": null, + "city": "Helena", + "state_province": "Montana", + "postal_code": "59601-6271", + "country": "United States", + "longitude": -112.0417121, + "latitude": 46.5862933, + "phone": "4064493005", + "website_url": "http://www.blackfootriverbrewing.com", + "state": "Montana", + "street": "66 S Park Ave" + }, + { + "id": "197c0988-b236-4432-90ad-da75db44166d", + "name": "Blackhorse Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Alcoa", + "state_province": "Tennessee", + "postal_code": "37701", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Tennessee", + "street": null + }, + { + "id": "847d8d94-eb0a-4bd3-8941-bbc92f0311ad", + "name": "Blackhorse Pub and Brewery", + "brewery_type": "brewpub", + "address_1": "132 Franklin St", + "address_2": null, + "address_3": null, + "city": "Clarksville", + "state_province": "Tennessee", + "postal_code": "37040-3438", + "country": "United States", + "longitude": -87.3588994, + "latitude": 36.52735085, + "phone": "9315523726", + "website_url": "http://www.blackhorsebrews.com", + "state": "Tennessee", + "street": "132 Franklin St" + }, + { + "id": "908f6fa3-531d-4413-9134-09d24b652a5c", + "name": "Blackhorse Pub and Brewery - Knoxville", + "brewery_type": "brewpub", + "address_1": "4429 Kingston Pike", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37919-5252", + "country": "United States", + "longitude": -84.0443634, + "latitude": 35.9259722, + "phone": "8652498511", + "website_url": "http://www.theblackhorsepub.net", + "state": "Tennessee", + "street": "4429 Kingston Pike" + }, + { + "id": "48e1320e-3669-41d7-8bd3-c39df498a970", + "name": "Blacklist Artisan Ales", + "brewery_type": "micro", + "address_1": "120 E Superior St", + "address_2": null, + "address_3": null, + "city": "Duluth", + "state_province": "Minnesota", + "postal_code": "55802-2116", + "country": "United States", + "longitude": -92.09596598, + "latitude": 46.7882669, + "phone": "2183109368", + "website_url": "http://www.blacklistbeer.com", + "state": "Minnesota", + "street": "120 E Superior St" + }, + { + "id": "4288a6e0-e794-43bf-b5ee-ea1351fa379e", + "name": "Blackman’s Brewery", + "brewery_type": "micro", + "address_1": "8 Lewalan Street", + "address_2": "29", + "address_3": null, + "city": "Grovedale", + "state_province": "VIC", + "postal_code": "3216", + "country": "Australia", + "longitude": 144.3453063, + "latitude": -38.1971588, + "phone": "+61 456 794 006", + "website_url": "http://www.blackmansbrewery.com.au/", + "state": "VIC", + "street": "8 Lewalan Street" + }, + { + "id": "f5c0e336-2bd4-442b-8913-7cd25f8d435c", + "name": "Blackmans Brewery", + "brewery_type": "micro", + "address_1": "8 Lewalan Street", + "address_2": "29", + "address_3": null, + "city": "Grovedale", + "state_province": "VIC", + "postal_code": "3216", + "country": "Australia", + "longitude": 144.3453063, + "latitude": -38.1971588, + "phone": "+61 456 794 006", + "website_url": "http://www.blackmansbrewery.com.au/", + "state": "VIC", + "street": "8 Lewalan Street" + }, + { + "id": "a3da9d07-5d9c-4bb5-998d-71d01fe752e4", + "name": "BlackRock Brewers", + "brewery_type": "micro", + "address_1": "1664 S Research Loop Ste 200", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85710-6767", + "country": "United States", + "longitude": -110.8217786, + "latitude": 32.20160831, + "phone": "5202073203", + "website_url": "http://www.brb.beer", + "state": "Arizona", + "street": "1664 S Research Loop Ste 200" + }, + { + "id": "4da03934-2c69-466f-9f84-937efbc8b74a", + "name": "Blackrocks Brewery", + "brewery_type": "micro", + "address_1": "424 N 3rd St", + "address_2": null, + "address_3": null, + "city": "Marquette", + "state_province": "Michigan", + "postal_code": "49855-3555", + "country": "United States", + "longitude": -87.39462133, + "latitude": 46.5464589, + "phone": "9062731333", + "website_url": "http://www.blackrocksbrewery.com", + "state": "Michigan", + "street": "424 N 3rd St" + }, + { + "id": "e6d1cb57-2a2e-4ec1-a91d-dab1b0b2a3cc", + "name": "Blackrocks Brewery - Production Facility", + "brewery_type": "micro", + "address_1": "950 W Washington St", + "address_2": null, + "address_3": null, + "city": "Marquette", + "state_province": "Michigan", + "postal_code": "49855-4019", + "country": "United States", + "longitude": -87.41368794, + "latitude": 46.54594024, + "phone": "9062731333", + "website_url": "http://www.blackrocksbrewery.com", + "state": "Michigan", + "street": "950 W Washington St" + }, + { + "id": "4954a924-9efc-45c1-87c7-d931b7992bcb", + "name": "Blacks Brewery", + "brewery_type": "micro", + "address_1": "Farm Lane", + "address_2": "Knocknabohilly", + "address_3": null, + "city": "Kinsale", + "state_province": "Cork", + "postal_code": "P17 XW70", + "country": "Ireland", + "longitude": -8.515723944, + "latitude": 51.71109933, + "phone": "353873881074", + "website_url": "https://www.blacksbrewery.com/", + "state": "Cork", + "street": "Farm Lane" + }, + { + "id": "e14896e7-fade-424f-97d7-4f620406b5f7", + "name": "Blacksmith Brewing Co", + "brewery_type": "micro", + "address_1": "114 Main St", + "address_2": null, + "address_3": null, + "city": "Stevensville", + "state_province": "Montana", + "postal_code": "59870-2109", + "country": "United States", + "longitude": -114.0929303, + "latitude": 46.51154971, + "phone": "4067770680", + "website_url": "http://www.blacksmithbrewing.com", + "state": "Montana", + "street": "114 Main St" + }, + { + "id": "d306cd9b-40d8-4be9-9581-5ad25289c9d4", + "name": "BlackStack Brewing", + "brewery_type": "micro", + "address_1": "755 Prior Ave N Ste 110", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55104-1064", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6123692932", + "website_url": "http://www.blackstackbrewing.com", + "state": "Minnesota", + "street": "755 Prior Ave N Ste 110" + }, + { + "id": "6f2cc06f-175c-4b85-89fd-7da62e1959a7", + "name": "Blackstone Brewing Co", + "brewery_type": "micro", + "address_1": "2312 Clifton Ave", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37209-4115", + "country": "United States", + "longitude": -86.80974363, + "latitude": 36.15796783, + "phone": "6153209002", + "website_url": "http://blackstonebrewery.com", + "state": "Tennessee", + "street": "2312 Clifton Ave" + }, + { + "id": "b248192a-f86e-4dbd-a324-0a71424f2656", + "name": "Blackwater Brewing Co", + "brewery_type": "micro", + "address_1": "912 William Ave", + "address_2": null, + "address_3": null, + "city": "Davis", + "state_province": "West Virginia", + "postal_code": "26260-0356", + "country": "United States", + "longitude": -79.4695264, + "latitude": 39.1274943, + "phone": "3042098118", + "website_url": "http://www.BlackwaterBrewingWV.com", + "state": "West Virginia", + "street": "912 William Ave" + }, + { + "id": "4d3d6a4a-c914-4a96-8fbc-0dbf582196d8", + "name": "Blackwater Brewing Company", + "brewery_type": "planning", + "address_1": "412 Main Ave S", + "address_2": null, + "address_3": null, + "city": "North Bend", + "state_province": "Washington", + "postal_code": "98045-8117", + "country": "United States", + "longitude": -121.787569, + "latitude": 47.492466, + "phone": "4252929122", + "website_url": "https://blackwaterbrewing.com/", + "state": "Washington", + "street": "412 Main Ave S" + }, + { + "id": "cb8add44-ed44-445c-911b-14d6c5363fd0", + "name": "Blackwater Draw Brewing Company", + "brewery_type": "brewpub", + "address_1": "701 N Main", + "address_2": null, + "address_3": null, + "city": "Bryan", + "state_province": "Texas", + "postal_code": "77803", + "country": "United States", + "longitude": -96.35277742, + "latitude": 30.6580876, + "phone": "9797046191", + "website_url": "http://www.blackwaterbrew.com", + "state": "Texas", + "street": "701 N Main" + }, + { + "id": "36433ee1-b430-4831-8082-4bad4e501146", + "name": "Blackwattle Brewery", + "brewery_type": "micro", + "address_1": "76 McEvoy Street", + "address_2": null, + "address_3": null, + "city": "Alexandria", + "state_province": "NSW", + "postal_code": "2015", + "country": "Australia", + "longitude": 151.1995163, + "latitude": -33.9021224, + "phone": null, + "website_url": "https://blackwattlebrewery.com.au/", + "state": "NSW", + "street": "76 McEvoy Street" + }, + { + "id": "6dd11447-9e89-49f2-8c7e-5332653968db", + "name": "Blaker Brewing", + "brewery_type": "micro", + "address_1": "1063 Montcalire Dr", + "address_2": null, + "address_3": null, + "city": "Ceres", + "state_province": "California", + "postal_code": "95307", + "country": "United States", + "longitude": -120.9797388, + "latitude": 37.57642992, + "phone": "2095854040", + "website_url": "http://www.blakerbrewing.com", + "state": "California", + "street": "1063 Montcalire Dr" + }, + { + "id": "3b7eac5f-539f-4a65-9066-1558446f68b7", + "name": "Blank Canvas Brewery", + "brewery_type": "micro", + "address_1": "46 Betton St Ste 3", + "address_2": null, + "address_3": null, + "city": "Brewer", + "state_province": "Maine", + "postal_code": "04412-2636", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.blankcanvasbrewery.wordpress.com", + "state": "Maine", + "street": "46 Betton St Ste 3" + }, + { + "id": "93d8f4e9-8e75-476b-942b-2b4a2f2b628c", + "name": "Blasta Brewing Co.", + "brewery_type": "micro", + "address_1": "102 Goodwood Parade", + "address_2": null, + "address_3": null, + "city": "Burswood", + "state_province": "WA", + "postal_code": "6100", + "country": "Australia", + "longitude": 115.9009015, + "latitude": -31.9597291, + "phone": "+61 428 291 562", + "website_url": "http://www.blastabrewing.com/", + "state": "WA", + "street": "102 Goodwood Parade" + }, + { + "id": "4ab37f9a-f9dc-4fba-8b59-581c8968c668", + "name": "Blasted Barley Beer Company", + "brewery_type": "brewpub", + "address_1": "404 S Mill Ave Ste 101", + "address_2": null, + "address_3": null, + "city": "Tempe", + "state_province": "Arizona", + "postal_code": "85281-2879", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4809675887", + "website_url": "http://www.blastedbarley.com", + "state": "Arizona", + "street": "404 S Mill Ave Ste 101" + }, + { + "id": "a7343f5b-f031-4150-9ec0-cfb868ca7565", + "name": "Blasty Bough Brewing Company", + "brewery_type": "micro", + "address_1": "3 Griffin Rd", + "address_2": null, + "address_3": null, + "city": "Epsom", + "state_province": "New Hampshire", + "postal_code": "03234-4816", + "country": "United States", + "longitude": -71.2932629, + "latitude": 43.20382502, + "phone": "6037384717", + "website_url": "http://www.blastybough.com", + "state": "New Hampshire", + "street": "3 Griffin Rd" + }, + { + "id": "9be2e661-7d9a-4445-b1b9-6a420a047407", + "name": "Blazing Tree Brewery", + "brewery_type": "micro", + "address_1": "11426 Rojas Dr Ste A13", + "address_2": null, + "address_3": null, + "city": "El Paso", + "state_province": "Texas", + "postal_code": "79936-6486", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9153073627", + "website_url": null, + "state": "Texas", + "street": "11426 Rojas Dr Ste A13" + }, + { + "id": "967e2ae2-4955-4372-94ca-88fb0db58df7", + "name": "Bleeding Heart Brewery", + "brewery_type": "closed", + "address_1": "1150 S Colony Way Ste 3 Pmb 618", + "address_2": null, + "address_3": null, + "city": "Palmer", + "state_province": "Alaska", + "postal_code": "99645-6972", + "country": "United States", + "longitude": -149.109799, + "latitude": 61.601303, + "phone": "7609172417", + "website_url": "http://facebook.com/bleedingheartbrewery", + "state": "Alaska", + "street": "1150 S Colony Way Ste 3 Pmb 618" + }, + { + "id": "224f2344-53ec-4ef1-87f3-a9fa24f00931", + "name": "Blewett Brewing Company", + "brewery_type": "brewpub", + "address_1": "911 Commercial St", + "address_2": null, + "address_3": null, + "city": "Leavenworth", + "state_province": "Washington", + "postal_code": "98826-1494", + "country": "United States", + "longitude": -120.6599479, + "latitude": 47.59518806, + "phone": "5098888809", + "website_url": "http://www.blewettbrew.com", + "state": "Washington", + "street": "911 Commercial St" + }, + { + "id": "2a08f3ad-f6fc-442f-979a-2dbadd0c3c28", + "name": "Blind Bat Brewery LLC, The", + "brewery_type": "micro", + "address_1": "420 Harrison Dr", + "address_2": null, + "address_3": null, + "city": "Centerport", + "state_province": "New York", + "postal_code": "11721-1216", + "country": "United States", + "longitude": -73.38113106, + "latitude": 40.8959081, + "phone": "6318917909", + "website_url": "http://www.BlindBatBrewery.com", + "state": "New York", + "street": "420 Harrison Dr" + }, + { + "id": "5cabe8d3-7864-4ba3-a34f-1b757718d6d9", + "name": "Blind Boy Brewing", + "brewery_type": "micro", + "address_1": "8 Textile Crescent", + "address_2": null, + "address_3": null, + "city": "Salisbury", + "state_province": "QLD", + "postal_code": "4107", + "country": "Australia", + "longitude": 153.0292588, + "latitude": -27.5424385, + "phone": "+61 421 211 210", + "website_url": "https://www.blindboybrewing.com.au/", + "state": "QLD", + "street": "8 Textile Crescent" + }, + { + "id": "c8613358-8e0b-4ac7-8859-46f1efc36fd1", + "name": "Blind Owl Brewery", + "brewery_type": "brewpub", + "address_1": "5014 E 62nd St", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46220-5228", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3179241000", + "website_url": "http://www.blindowlbrewery.com", + "state": "Indiana", + "street": "5014 E 62nd St" + }, + { + "id": "67836207-49ed-4d67-8dca-8f66acdcbb00", + "name": "Blind Pig Brewery", + "brewery_type": "brewpub", + "address_1": "120 N Neil St", + "address_2": null, + "address_3": null, + "city": "Champaign", + "state_province": "Illinois", + "postal_code": "61820-4023", + "country": "United States", + "longitude": -88.24341082, + "latitude": 40.11714609, + "phone": "2173985133", + "website_url": "http://www.blindpigbrewery.com", + "state": "Illinois", + "street": "120 N Neil St" + }, + { + "id": "f2972e73-5167-41ea-ab23-08c16ec14221", + "name": "Blind Squirrel Brewery", + "brewery_type": "micro", + "address_1": "4716 South US Highway 19 E Suite B", + "address_2": null, + "address_3": null, + "city": "Plumtree", + "state_province": "North Carolina", + "postal_code": "28664-0173", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8287652739", + "website_url": "http://www.blindsquirrelbrewery.com", + "state": "North Carolina", + "street": "4716 South US Highway 19 E Suite B" + }, + { + "id": "789c9614-dbbd-473e-a5d8-7c881dfa5e51", + "name": "Blind Tiger Brewery & Restaurant", + "brewery_type": "brewpub", + "address_1": "417 SW 37th St", + "address_2": null, + "address_3": null, + "city": "Topeka", + "state_province": "Kansas", + "postal_code": "66611-2354", + "country": "United States", + "longitude": -95.6846745, + "latitude": 39.0002602, + "phone": "7852672739", + "website_url": "http://www.blindtiger.com", + "state": "Kansas", + "street": "417 SW 37th St" + }, + { + "id": "83078530-df39-4a88-bbac-362f1253a43a", + "name": "Block 15", + "brewery_type": "brewpub", + "address_1": "300 SW Jefferson Ave", + "address_2": null, + "address_3": null, + "city": "Corvallis", + "state_province": "Oregon", + "postal_code": "97333-4607", + "country": "United States", + "longitude": -123.262222, + "latitude": 44.5622701, + "phone": "5417582077", + "website_url": null, + "state": "Oregon", + "street": "300 SW Jefferson Ave" + }, + { + "id": "df8022a7-1cbc-4e06-a5e5-c163fcfa3ce1", + "name": "Block 15 Brewery & Tap Room", + "brewery_type": "brewpub", + "address_1": "3415 SW Deschutes St", + "address_2": null, + "address_3": null, + "city": "Corvallis", + "state_province": "Oregon", + "postal_code": "97333-9283", + "country": "United States", + "longitude": -123.269049, + "latitude": 44.5305284, + "phone": "5417522337", + "website_url": "http://www.block15.com", + "state": "Oregon", + "street": "3415 SW Deschutes St" + }, + { + "id": "7e39a579-8605-49a5-9988-a4d594650d1e", + "name": "Block Brewing Company", + "brewery_type": "brewpub", + "address_1": "1140 S Michigan Ave", + "address_2": null, + "address_3": null, + "city": "Howell", + "state_province": "Michigan", + "postal_code": "48843-2669", + "country": "United States", + "longitude": -83.931806, + "latitude": 42.603858, + "phone": null, + "website_url": "http://www.blockbrewingcompany.com", + "state": "Michigan", + "street": "1140 S Michigan Ave" + }, + { + "id": "46817365-aa8d-42bd-b46b-92b065fd46cb", + "name": "Block N Tackle Brewery", + "brewery_type": "micro", + "address_1": "13 Cochrone Street", + "address_2": "11", + "address_3": null, + "city": "Kincumber", + "state_province": "NSW", + "postal_code": "2251", + "country": "Australia", + "longitude": 151.3936442, + "latitude": -33.4725233, + "phone": "+61 466 623 233", + "website_url": "http://www.blockntackle.beer/", + "state": "NSW", + "street": "13 Cochrone Street" + }, + { + "id": "b5c811b0-dcf0-42d2-801b-74b0519227e5", + "name": "Bloom Brew", + "brewery_type": "micro", + "address_1": "100 Riverside Dr", + "address_2": null, + "address_3": null, + "city": "West Newton", + "state_province": "Pennsylvania", + "postal_code": "15089-1542", + "country": "United States", + "longitude": -79.768066, + "latitude": 40.210228, + "phone": "7243224494", + "website_url": "http://www.bloombrew.com", + "state": "Pennsylvania", + "street": "100 Riverside Dr" + }, + { + "id": "08270e49-04d2-43a5-ae56-f9025f60668a", + "name": "Bloomer Brewing Co", + "brewery_type": "micro", + "address_1": "1103 9th Ave", + "address_2": null, + "address_3": null, + "city": "Bloomer", + "state_province": "Wisconsin", + "postal_code": "54724-1409", + "country": "United States", + "longitude": -91.48668085784, + "latitude": 45.107450904119, + "phone": "7159334995", + "website_url": null, + "state": "Wisconsin", + "street": "1103 9th Ave" + }, + { + "id": "0b768b24-8163-4b21-a633-ef4dad76b501", + "name": "Bloomington Brewing Co", + "brewery_type": "brewpub", + "address_1": "1795 E 10th St", + "address_2": null, + "address_3": null, + "city": "Bloomington", + "state_province": "Indiana", + "postal_code": "47407-6955", + "country": "United States", + "longitude": -86.51136673, + "latitude": 39.1720504, + "phone": "8123392256", + "website_url": null, + "state": "Indiana", + "street": "1795 E 10th St" + }, + { + "id": "b63e1e54-3e7d-4755-a513-0792ab9e4d12", + "name": "Bloomington Brewing Co - Production Facility", + "brewery_type": "micro", + "address_1": "2234 West Industrial Drive", + "address_2": null, + "address_3": null, + "city": "Bloomington", + "state_province": "Indiana", + "postal_code": "47404", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8126992005", + "website_url": "http://www.bbcbloomington.com", + "state": "Indiana", + "street": "2234 West Industrial Drive" + }, + { + "id": "22ef447a-0379-4be5-ab93-72d95e4a778a", + "name": "Blowing Rock Brewing Company", + "brewery_type": "brewpub", + "address_1": "152 Sunset Dr", + "address_2": null, + "address_3": null, + "city": "Blowing Rock", + "state_province": "North Carolina", + "postal_code": "28605-7205", + "country": "United States", + "longitude": -81.677229, + "latitude": 36.1327196, + "phone": "8284149600", + "website_url": "http://www.blowingrockbrewing.com", + "state": "North Carolina", + "street": "152 Sunset Dr" + }, + { + "id": "68f388b7-f7ed-4ece-8968-879d2846b189", + "name": "Blue Blaze Brewing", + "brewery_type": "micro", + "address_1": "528 S Turner Ave", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28208-4259", + "country": "United States", + "longitude": -80.86710843, + "latitude": 35.24138809, + "phone": "9808592586", + "website_url": "http://www.blueblazebrewing.com", + "state": "North Carolina", + "street": "528 S Turner Ave" + }, + { + "id": "f5e7c55b-e9bc-40fd-9008-dcf443a88837", + "name": "Blue Blood Brewing Company", + "brewery_type": "brewpub", + "address_1": "925 Robbers Cave Rd", + "address_2": null, + "address_3": null, + "city": "Lincoln", + "state_province": "Nebraska", + "postal_code": "68502-4200", + "country": "United States", + "longitude": -96.70701376, + "latitude": 40.77999602, + "phone": "4024772337", + "website_url": "http://www.bluebloodbrewing.com", + "state": "Nebraska", + "street": "925 Robbers Cave Rd" + }, + { + "id": "956f2d40-477b-455a-bc21-b03779150cf0", + "name": "Blue Canoe Brewery", + "brewery_type": "brewpub", + "address_1": "113 S Franklin St", + "address_2": null, + "address_3": null, + "city": "Titusville", + "state_province": "Pennsylvania", + "postal_code": "16354-1737", + "country": "United States", + "longitude": -79.6733234, + "latitude": 41.6230211, + "phone": "8147750077", + "website_url": null, + "state": "Pennsylvania", + "street": "113 S Franklin St" + }, + { + "id": "755b03e1-07f0-4c63-952d-449a5b8f554e", + "name": "Blue Canoe Brewing Co", + "brewery_type": "micro", + "address_1": "1637 E. 15th Street", + "address_2": null, + "address_3": null, + "city": "Little Rock", + "state_province": "Arkansas", + "postal_code": "72202", + "country": "United States", + "longitude": -92.25366807, + "latitude": 34.73235496, + "phone": "5014929378", + "website_url": "http://www.bluecanoebrewco.com", + "state": "Arkansas", + "street": "1637 E. 15th Street" + }, + { + "id": "2daa16bf-b6ef-40f1-b70a-b3590227c0b5", + "name": "Blue Cat Brew Pub", + "brewery_type": "brewpub", + "address_1": "113 18th St", + "address_2": null, + "address_3": null, + "city": "Rock Island", + "state_province": "Illinois", + "postal_code": "61201-8708", + "country": "United States", + "longitude": -90.5145797, + "latitude": 41.51094347, + "phone": "3097888247", + "website_url": "http://www.bluecatbrewpub.com", + "state": "Illinois", + "street": "113 18th St" + }, + { + "id": "2595ff73-65f0-41ea-820c-3d7d35f453ca", + "name": "Blue Collar Brewery, Inc.", + "brewery_type": "brewpub", + "address_1": "40 Cottage St", + "address_2": null, + "address_3": null, + "city": "Poughkeepsie", + "state_province": "New York", + "postal_code": "12601-2015", + "country": "United States", + "longitude": -73.91831, + "latitude": 41.707234, + "phone": "8454542739", + "website_url": "http://www.thebluecollarbrewery.com", + "state": "New York", + "street": "40 Cottage St" + }, + { + "id": "bfcbf176-9040-445a-a70f-58d8ce0df722", + "name": "Blue Corn Cafe", + "brewery_type": "brewpub", + "address_1": "4056 Cerrillos Rd Ste G", + "address_2": null, + "address_3": null, + "city": "Santa Fe", + "state_province": "New Mexico", + "postal_code": "87507-2605", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5059841800", + "website_url": "http://www.bluecorncafe.com", + "state": "New Mexico", + "street": "4056 Cerrillos Rd Ste G" + }, + { + "id": "b0d6f266-fc2c-4902-ac56-8037f58608c3", + "name": "Blue Cow Cafe/Big Rapids Brewing Co", + "brewery_type": "brewpub", + "address_1": "119 N Michigan Ave", + "address_2": null, + "address_3": null, + "city": "Big Rapids", + "state_province": "Michigan", + "postal_code": "49307-1401", + "country": "United States", + "longitude": -85.48211793, + "latitude": 43.69871439, + "phone": "2317960100", + "website_url": "http://www.bluecowcafe.com", + "state": "Michigan", + "street": "119 N Michigan Ave" + }, + { + "id": "3cb83545-6111-426e-8c53-f463bdefbd9b", + "name": "Blue Earl Brewing Company", + "brewery_type": "micro", + "address_1": "210 Artisan Dr", + "address_2": null, + "address_3": null, + "city": "Smyrna", + "state_province": "Delaware", + "postal_code": "19977-3715", + "country": "United States", + "longitude": -75.62418056, + "latitude": 39.28096844, + "phone": null, + "website_url": "http://www.blueearlbrewing.com", + "state": "Delaware", + "street": "210 Artisan Dr" + }, + { + "id": "267e407e-db63-4026-8468-8043815c24e8", + "name": "Blue Frog Brewing Company", + "brewery_type": "micro", + "address_1": "1740 Travis Blvd", + "address_2": null, + "address_3": null, + "city": "Fairfield", + "state_province": "California", + "postal_code": "94533-3431", + "country": "United States", + "longitude": -122.0600589, + "latitude": 38.2585569, + "phone": "7074292337", + "website_url": "http://www.bluefrogbrewingcompany.com", + "state": "California", + "street": "1740 Travis Blvd" + }, + { + "id": "2e73516c-cb09-4946-a500-e6bc12149b97", + "name": "Blue Ghost Brewing Company", + "brewery_type": "brewpub", + "address_1": "125 Underwood Rd", + "address_2": null, + "address_3": null, + "city": "Fletcher", + "state_province": "North Carolina", + "postal_code": "28732-", + "country": "United States", + "longitude": -82.5305803, + "latitude": 35.4368388, + "phone": "8283760159", + "website_url": "http://www.blueghostbrewing.com", + "state": "North Carolina", + "street": "125 Underwood Rd" + }, + { + "id": "ff28c999-2a8b-4f5e-be5c-61708b56d8c2", + "name": "Blue Heron Brew Pub", + "brewery_type": "brewpub", + "address_1": "108 W 9th St", + "address_2": null, + "address_3": null, + "city": "Marshfield", + "state_province": "Wisconsin", + "postal_code": "54449-4111", + "country": "United States", + "longitude": -90.18148902, + "latitude": 44.65938079, + "phone": "7153891868", + "website_url": "http://www.blueheronbrewpub.com", + "state": "Wisconsin", + "street": "108 W 9th St" + }, + { + "id": "7d96c9eb-d026-4579-b0d2-703de93af667", + "name": "Blue Heron Brewing", + "brewery_type": "micro", + "address_1": "2214 New Mexico 68", + "address_2": null, + "address_3": null, + "city": "Embudo", + "state_province": "New Mexico", + "postal_code": "87531", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5055799188", + "website_url": "http://www.blueheronbrews.com", + "state": "New Mexico", + "street": "2214 New Mexico 68" + }, + { + "id": "9c8281e9-37e8-4f0f-8608-5be45c0148fd", + "name": "Blue Island Beer Co", + "brewery_type": "micro", + "address_1": "13357 Olde Western Ave", + "address_2": null, + "address_3": null, + "city": "Blue Island", + "state_province": "Illinois", + "postal_code": "60406-2969", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7089548085", + "website_url": "http://www.blueislandbeerco.com", + "state": "Illinois", + "street": "13357 Olde Western Ave" + }, + { + "id": "aef7a703-7954-41ed-9e29-c6d6bb8a23fe", + "name": "Blue Line Brewery", + "brewery_type": "brewpub", + "address_1": "555 Lake Flower Ave", + "address_2": null, + "address_3": null, + "city": "Saranac Lake", + "state_province": "New York", + "postal_code": "12983-2465", + "country": "United States", + "longitude": -74.11766659, + "latitude": 44.31358605, + "phone": "5183548114", + "website_url": "http://www.bluelinebrew.com", + "state": "New York", + "street": "555 Lake Flower Ave" + }, + { + "id": "de0da44e-8a09-4e8d-8b3a-aca03b39cc23", + "name": "Blue Moon Brewery", + "brewery_type": "large", + "address_1": "3750 Chestnut Pl", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80216-3632", + "country": "United States", + "longitude": -104.9769417, + "latitude": 39.7735561, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "3750 Chestnut Pl" + }, + { + "id": "1ec80861-6a0b-45be-a7bb-824b42088f80", + "name": "Blue Mountain Barrel House and Organic Brewery", + "brewery_type": "micro", + "address_1": "495 Cooperative Way", + "address_2": null, + "address_3": null, + "city": "Arrington", + "state_province": "Virginia", + "postal_code": "22922-3305", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4342634002", + "website_url": "http://www.bluemountainbarrel.com", + "state": "Virginia", + "street": "495 Cooperative Way" + }, + { + "id": "34ca6770-79f4-419e-b244-16f21b1273f4", + "name": "Blue Mountain Brewery", + "brewery_type": "micro", + "address_1": "9519 Critzers Shop Rd", + "address_2": null, + "address_3": null, + "city": "Afton", + "state_province": "Virginia", + "postal_code": "22920-2415", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5404568020", + "website_url": "http://www.bluemountainbrewery.com", + "state": "Virginia", + "street": "9519 Critzers Shop Rd" + }, + { + "id": "23799b52-1cb9-423e-abd5-35c913bf68e9", + "name": "Blue Mountain Pizza and Brew Pub", + "brewery_type": "brewpub", + "address_1": "55 N Main St", + "address_2": null, + "address_3": null, + "city": "Weaverville", + "state_province": "North Carolina", + "postal_code": "28787-6634", + "country": "United States", + "longitude": -82.55934457, + "latitude": 35.70849553, + "phone": "8286588777", + "website_url": "http://www.bluemountainpizza.com", + "state": "North Carolina", + "street": "55 N Main St" + }, + { + "id": "151dc23e-ecd8-4402-a4c5-2fac488d5e92", + "name": "Blue Nose Brewery", + "brewery_type": "micro", + "address_1": "6119 East Ave", + "address_2": null, + "address_3": null, + "city": "Hodgkins", + "state_province": "Illinois", + "postal_code": "60525-4126", + "country": "United States", + "longitude": -87.85833464, + "latitude": 41.77904908, + "phone": "7089055198", + "website_url": "http://www.bluenosebrewery.com", + "state": "Illinois", + "street": "6119 East Ave" + }, + { + "id": "4857f5fa-2815-44f7-b30d-2b1f0d3c0c6b", + "name": "Blue Note Brewing Company", + "brewery_type": "micro", + "address_1": "750 Dead Cat Aly", + "address_2": null, + "address_3": null, + "city": "Woodland", + "state_province": "California", + "postal_code": "95695-3435", + "country": "United States", + "longitude": -121.7712396, + "latitude": 38.67803633, + "phone": "5303584677", + "website_url": "http://www.bluenotebrewing.com", + "state": "California", + "street": "750 Dead Cat Aly" + }, + { + "id": "b2e4ab7a-3508-450d-8bea-47b39bee40d2", + "name": "Blue Oak Brewing Co", + "brewery_type": "micro", + "address_1": "821 Cherry Ln", + "address_2": null, + "address_3": null, + "city": "San Carlos", + "state_province": "California", + "postal_code": "94070-3306", + "country": "United States", + "longitude": -122.2534864, + "latitude": 37.51008173, + "phone": "4152739676", + "website_url": "http://blueoakbrewing.com", + "state": "California", + "street": "821 Cherry Ln" + }, + { + "id": "5c4c95ae-4128-4510-b2c7-2a7c483de5a2", + "name": "Blue Owl Brewing", + "brewery_type": "micro", + "address_1": "2400 E Cesar Chavez St Ste 300", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78702-4638", + "country": "United States", + "longitude": -97.7189581, + "latitude": 30.2545583, + "phone": "5125931262", + "website_url": "http://www.blueowlbrewing.com", + "state": "Texas", + "street": "2400 E Cesar Chavez St Ste 300" + }, + { + "id": "638f8af8-5c7f-4eed-9b7e-5c199227e154", + "name": "Blue Pants Brewery", + "brewery_type": "micro", + "address_1": "500 Lanier Rd, Bld 1 - Ste A", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Alabama", + "postal_code": "35758-8675", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2566796330", + "website_url": "http://www.bluepantsbrew.com", + "state": "Alabama", + "street": "500 Lanier Rd, Bld 1 - Ste A" + }, + { + "id": "2305e910-7a97-4d2e-bc7d-573216936035", + "name": "Blue Pike Cantina", + "brewery_type": "brewpub", + "address_1": "152 S Water St", + "address_2": null, + "address_3": null, + "city": "Marine City", + "state_province": "Michigan", + "postal_code": "48039-1687", + "country": "United States", + "longitude": -82.49085669, + "latitude": 42.71829576, + "phone": "8107654200", + "website_url": null, + "state": "Michigan", + "street": "152 S Water St" + }, + { + "id": "448fb5bd-505b-40a0-ab84-0720ff5f281c", + "name": "Blue Point Brewing", + "brewery_type": "large", + "address_1": "225 West Main St", + "address_2": null, + "address_3": null, + "city": "Patchogue", + "state_province": "New York", + "postal_code": "11772", + "country": "United States", + "longitude": -73.02103705, + "latitude": 40.76644215, + "phone": null, + "website_url": null, + "state": "New York", + "street": "225 West Main St" + }, + { + "id": "593ee04a-4af6-4d32-a00d-f8ac6357469a", + "name": "Blue Point Brewing Co", + "brewery_type": "large", + "address_1": "161 River Ave", + "address_2": null, + "address_3": null, + "city": "Patchogue", + "state_province": "New York", + "postal_code": "11772-3304", + "country": "United States", + "longitude": -73.0216063, + "latitude": 40.75913445, + "phone": "6314756944", + "website_url": "http://www.bluepointbrewing.com", + "state": "New York", + "street": "161 River Ave" + }, + { + "id": "054cbb4c-2427-493a-98d6-00e3d3baeb1e", + "name": "Blue Raven Brewery", + "brewery_type": "taproom", + "address_1": "209 E 18th St", + "address_2": null, + "address_3": null, + "city": "Cheyenne", + "state_province": "Wyoming", + "postal_code": "82001-4507", + "country": "United States", + "longitude": -104.81996920028, + "latitude": 41.157018313336, + "phone": "3073691978", + "website_url": "https://www.blueravenbrewery.com", + "state": "Wyoming", + "street": "209 E 18th St" + }, + { + "id": "f1b9daa7-cb17-498a-b784-e2ff41b4257f", + "name": "BLUE RIDGE BREWING", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Malta", + "state_province": "Montana", + "postal_code": "59538", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4066542855", + "website_url": null, + "state": "Montana", + "street": null + }, + { + "id": "05a8d9a8-670a-4e5d-86c3-fddd352cfe43", + "name": "Blue Ridge Brewing Co/Foothills Brewing", + "brewery_type": "brewpub", + "address_1": "308 Trade St", + "address_2": null, + "address_3": null, + "city": "Greer", + "state_province": "South Carolina", + "postal_code": "29651-3432", + "country": "United States", + "longitude": -82.2262648, + "latitude": 34.9361559, + "phone": "8642324677", + "website_url": "http://www.blueridgebrewing.com", + "state": "South Carolina", + "street": "308 Trade St" + }, + { + "id": "e1312a12-35d9-4636-a80a-9f9a95463964", + "name": "Blue Ridge Community College", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Flat Rock", + "state_province": "North Carolina", + "postal_code": "28731-4774", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8286941674", + "website_url": "http://www.blueridge.edu", + "state": "North Carolina", + "street": null + }, + { + "id": "3b5c7026-2f62-4fc0-ad1b-71a62ed0989d", + "name": "Blue Skye Brewery", + "brewery_type": "brewpub", + "address_1": "116 N Santa Fe Ave", + "address_2": null, + "address_3": null, + "city": "Salina", + "state_province": "Kansas", + "postal_code": "67401-2614", + "country": "United States", + "longitude": -97.608998, + "latitude": 38.84100296, + "phone": "7854521234", + "website_url": "http://blueskyebrewery.com", + "state": "Kansas", + "street": "116 N Santa Fe Ave" + }, + { + "id": "b43d9155-7bdb-49af-b0b8-58bc87119cfe", + "name": "Blue Spruce Brewing", + "brewery_type": "brewpub", + "address_1": "4151 E County Line Rd Unit G", + "address_2": null, + "address_3": null, + "city": "Centennial", + "state_province": "Colorado", + "postal_code": "80122-8113", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3037710590", + "website_url": "http://www.bluesprucebrewing.com", + "state": "Colorado", + "street": "4151 E County Line Rd Unit G" + }, + { + "id": "20541e39-2e32-455d-9b2b-cb926fc11fa2", + "name": "Blue Spruce Brewing Littleton", + "brewery_type": "brewpub", + "address_1": "10577 W Centennial Rd", + "address_2": null, + "address_3": null, + "city": "Littleton", + "state_province": "Colorado", + "postal_code": "80127-4233", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.bluesprucebrewing.com", + "state": "Colorado", + "street": "10577 W Centennial Rd" + }, + { + "id": "6d48e0c5-c4ec-43f9-8678-28daa1be8c78", + "name": "Blue Stallion Brewing Company", + "brewery_type": "micro", + "address_1": "610 W Third St", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "Kentucky", + "postal_code": "40508-1243", + "country": "United States", + "longitude": -84.50136234, + "latitude": 38.05710985, + "phone": "8596088490", + "website_url": "http://www.bluestallionbrewing.com", + "state": "Kentucky", + "street": "610 W Third St" + }, + { + "id": "549145aa-cde9-4d76-a282-7508eaee9b3c", + "name": "Blue Star Brewing Co", + "brewery_type": "brewpub", + "address_1": "1414 S Alamo St # 105", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78210-1117", + "country": "United States", + "longitude": -98.49615307, + "latitude": 29.40989569, + "phone": "2102125506", + "website_url": "http://www.bluestarbrewing.com", + "state": "Texas", + "street": "1414 S Alamo St # 105" + }, + { + "id": "eeef44bf-a841-4f54-94d3-d9864b81785c", + "name": "Blue Tractor Brewing Co", + "brewery_type": "brewpub", + "address_1": "207 E Washington St", + "address_2": null, + "address_3": null, + "city": "Ann Arbor", + "state_province": "Michigan", + "postal_code": "48104-2007", + "country": "United States", + "longitude": -83.74704578, + "latitude": 42.28052759, + "phone": "7342224095", + "website_url": null, + "state": "Michigan", + "street": "207 E Washington St" + }, + { + "id": "1487d681-ecde-4a87-a70d-12956186e99c", + "name": "Blue Wolf Brewing Company LLC", + "brewery_type": "micro", + "address_1": "8515 Edinburgh Centre Dr.", + "address_2": null, + "address_3": null, + "city": "Brooklyn Park", + "state_province": "Minnesota", + "postal_code": "55443", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7633906700", + "website_url": "http://www.bluewolfbrew.com", + "state": "Minnesota", + "street": "8515 Edinburgh Centre Dr." + }, + { + "id": "c3d86c65-615c-4d13-9c5d-9f4bc7b5ee64", + "name": "Blue Zone Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Saint George", + "state_province": "Utah", + "postal_code": "84790-5716", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4353135050", + "website_url": null, + "state": "Utah", + "street": null + }, + { + "id": "d30dffbe-c246-4137-9ab2-e15e68c44d4b", + "name": "Bluebird Brasserie", + "brewery_type": "brewpub", + "address_1": "13730 Ventura Blvd", + "address_2": null, + "address_3": null, + "city": "Sherman Oaks", + "state_province": "California", + "postal_code": "91423", + "country": "United States", + "longitude": -118.4365891, + "latitude": 34.1489109, + "phone": null, + "website_url": "http://www.bluebirdbrasserie.com", + "state": "California", + "street": "13730 Ventura Blvd" + }, + { + "id": "fe28d7bf-10f6-4535-821b-71dab747bc14", + "name": "Bluebird Microcreamery and Brewery", + "brewery_type": "micro", + "address_1": "7415 Greenwood Ave N", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98103-5044", + "country": "United States", + "longitude": -122.355108, + "latitude": 47.6826657, + "phone": "2066598154", + "website_url": "https://www.facebook.com/bluebirdicecrm", + "state": "Washington", + "street": "7415 Greenwood Ave N" + }, + { + "id": "cc7d935c-c318-4a60-9da6-e683a3ce7fb9", + "name": "Bluebonnet Beer Co", + "brewery_type": "micro", + "address_1": "1700 Bryant Dr Ste 107", + "address_2": null, + "address_3": null, + "city": "Round Rock", + "state_province": "Texas", + "postal_code": "78664-3898", + "country": "United States", + "longitude": -97.645332, + "latitude": 30.491657, + "phone": "5127744258", + "website_url": "http://www.bluebonnetbeerco.com", + "state": "Texas", + "street": "1700 Bryant Dr Ste 107" + }, + { + "id": "769657dd-ea31-413f-a465-54e729967309", + "name": "Bluegrass Brewing Co - Brewpub", + "brewery_type": "brewpub", + "address_1": "300 W Main St", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40202-2945", + "country": "United States", + "longitude": -85.75508898, + "latitude": 38.25620645, + "phone": "5028997070", + "website_url": "http://www.bbcbrew.com", + "state": "Kentucky", + "street": "300 W Main St" + }, + { + "id": "2b6bb7e5-a528-4387-a970-0be422a7afcc", + "name": "Bluejacket", + "brewery_type": "brewpub", + "address_1": "300 Tingey St SE", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "District of Columbia", + "postal_code": "20003-4625", + "country": "United States", + "longitude": -77.0006981, + "latitude": 38.8750965, + "phone": null, + "website_url": "http://www.bluejacketdc.com", + "state": "District of Columbia", + "street": "300 Tingey St SE" + }, + { + "id": "4ff360b9-b45b-45d2-8646-c2b91975890f", + "name": "Blueprint Brewing Co.", + "brewery_type": "micro", + "address_1": "1571 Gehman Rd", + "address_2": null, + "address_3": null, + "city": "Harleysville", + "state_province": "Pennsylvania", + "postal_code": "19438-2930", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4843197901", + "website_url": "http://www.blueprintbrewco.com", + "state": "Pennsylvania", + "street": "1571 Gehman Rd" + }, + { + "id": "b4f332ec-a7a0-4acb-8d19-9c4073a4b84e", + "name": "Blues City Brewing Co", + "brewery_type": "regional", + "address_1": "5151 E Raines Rd", + "address_2": null, + "address_3": null, + "city": "Memphis", + "state_province": "Tennessee", + "postal_code": "38118-7026", + "country": "United States", + "longitude": -89.8874019, + "latitude": 35.0350188, + "phone": "6087854200", + "website_url": "http://www.citybrewing.com", + "state": "Tennessee", + "street": "5151 E Raines Rd" + }, + { + "id": "6e5e63f5-4465-4ea8-9dbf-b55213db2775", + "name": "Bluestone Brewing Company", + "brewery_type": "brewpub", + "address_1": "18 Pitney St", + "address_2": null, + "address_3": null, + "city": "Sayre", + "state_province": "Pennsylvania", + "postal_code": "18840-2720", + "country": "United States", + "longitude": -76.54508776, + "latitude": 41.99222929, + "phone": "5707310222", + "website_url": "http://www.bluestonebrewingcompany.com", + "state": "Pennsylvania", + "street": "18 Pitney St" + }, + { + "id": "804a6227-ddd1-41d8-8771-2485a1c63bdb", + "name": "BlueTarp Brewing Co", + "brewery_type": "micro", + "address_1": "731 E College Ave", + "address_2": null, + "address_3": null, + "city": "Decatur", + "state_province": "Georgia", + "postal_code": "30030-5365", + "country": "United States", + "longitude": -84.2835622, + "latitude": 33.7740425, + "phone": "4046696740", + "website_url": "http://www.bluetarpbrew.com", + "state": "Georgia", + "street": "731 E College Ave" + }, + { + "id": "6cf234fc-dbea-49e6-8f47-900554620a42", + "name": "Bluewater Brewing Co", + "brewery_type": "micro", + "address_1": "318 S Royal Ave", + "address_2": null, + "address_3": null, + "city": "Florence", + "state_province": "Alabama", + "postal_code": "35630-4810", + "country": "United States", + "longitude": -87.65970529, + "latitude": 34.8041295, + "phone": "2562751221", + "website_url": "http://www.facebook.com/pg/BluewaterBrewingCompanyInc", + "state": "Alabama", + "street": "318 S Royal Ave" + }, + { + "id": "47245471-08aa-439c-acfb-67fb282e336a", + "name": "Bluewood Brewing", + "brewery_type": "micro", + "address_1": "1821 Cherokee St", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63118", + "country": "United States", + "longitude": -90.216631, + "latitude": 38.601767, + "phone": "3143764166", + "website_url": "http://www.bluewoodbrewing.com", + "state": "Missouri", + "street": "1821 Cherokee St" + }, + { + "id": "0c7d6d42-ad91-4e1c-8556-c1c1ac8617ae", + "name": "Bnaf, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78727-7602", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "7363955c-5498-4fe3-becb-5c09ae0978bc", + "name": "BNS Brewing & Distilling Co.", + "brewery_type": "closed", + "address_1": "10960 Wheatlands Ave Ste 101", + "address_2": null, + "address_3": null, + "city": "Santee", + "state_province": "California", + "postal_code": "92071-5617", + "country": "United States", + "longitude": -116.9583418, + "latitude": 32.84680335, + "phone": "6199560952", + "website_url": "http://www.bnsbrewinganddistilling.com", + "state": "California", + "street": "10960 Wheatlands Ave Ste 101" + }, + { + "id": "033c99f9-ac36-4169-8721-1e90548a253a", + "name": "Bo Bristle Brewing Co.", + "brewery_type": "micro", + "address_1": "Unit 5, Banagher Enterprise Centre", + "address_2": "Church St", + "address_3": "Kylebeg", + "city": "Banagher", + "state_province": "Offaly", + "postal_code": "R42 KX30", + "country": "Ireland", + "longitude": -7.9921729, + "latitude": 53.1866197, + "phone": "353861250283", + "website_url": null, + "state": "Offaly", + "street": "Unit 5, Banagher Enterprise Centre" + }, + { + "id": "b58ed0a2-769a-4923-b0f6-360bff09ab8c", + "name": "Boak Brewing Co", + "brewery_type": "contract", + "address_1": "262 Wanaque Ave Rear", + "address_2": null, + "address_3": null, + "city": "Pompton Lakes", + "state_province": "New Jersey", + "postal_code": "07442-2116", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9735706381", + "website_url": "http://www.boaks.com", + "state": "New Jersey", + "street": "262 Wanaque Ave Rear" + }, + { + "id": "1e876ec1-817a-4153-a143-459dc0627309", + "name": "Boat Town Brewing", + "brewery_type": "micro", + "address_1": "18146 Campground Rd", + "address_2": null, + "address_3": null, + "city": "Phillipsburg", + "state_province": "Missouri", + "postal_code": "65722-8122", + "country": "United States", + "longitude": -92.712765, + "latitude": 37.59991, + "phone": "4175332306", + "website_url": "http://www.boattownbrewing.com", + "state": "Missouri", + "street": "18146 Campground Rd" + }, + { + "id": "863ccdbc-4d91-4499-9e10-c6c175e54d6d", + "name": "Boathouse Brewery LLC", + "brewery_type": "brewpub", + "address_1": "47 E Sheridan St", + "address_2": null, + "address_3": null, + "city": "Ely", + "state_province": "Minnesota", + "postal_code": "55731-1289", + "country": "United States", + "longitude": -91.8656329, + "latitude": 47.9034136, + "phone": "2183654301", + "website_url": "http://www.frontiernet.net", + "state": "Minnesota", + "street": "47 E Sheridan St" + }, + { + "id": "3b84f884-47c8-4dbb-84f7-1cb785d2c2a1", + "name": "Boathouse Brothers Brewing Co", + "brewery_type": "micro", + "address_1": "16211 Main Avenue SE", + "address_2": null, + "address_3": null, + "city": "Prior Lake", + "state_province": "Minnesota", + "postal_code": "55372-2332", + "country": "United States", + "longitude": -93.42397083, + "latitude": 44.71449616, + "phone": "9522506143", + "website_url": null, + "state": "Minnesota", + "street": "16211 Main Avenue SE" + }, + { + "id": "d4a0b14b-98cf-41d4-87df-ff18a1bfd59c", + "name": "Boatrocker Brewers & Distillers", + "brewery_type": "micro", + "address_1": "34 MacBeth Street", + "address_2": null, + "address_3": null, + "city": "Braeside", + "state_province": "VIC", + "postal_code": "3195", + "country": "Australia", + "longitude": 145.1129705, + "latitude": -38.0030937, + "phone": "+61 494 025 686", + "website_url": "https://www.boatrocker.com.au/", + "state": "VIC", + "street": "34 MacBeth Street" + }, + { + "id": "df2412ca-3731-4332-b7a8-c81945a6878f", + "name": "Boatrocker Brewing Co.", + "brewery_type": "micro", + "address_1": "34 MacBeth Street", + "address_2": null, + "address_3": null, + "city": "Braeside", + "state_province": "VIC", + "postal_code": "3195", + "country": "Australia", + "longitude": 145.1129705, + "latitude": -38.0030937, + "phone": "+61 494 025 686", + "website_url": "https://www.boatrocker.com.au/", + "state": "VIC", + "street": "34 MacBeth Street" + }, + { + "id": "cb05f966-8048-44d9-87a7-a52ea80fdd7b", + "name": "Boatyard Brewing Co", + "brewery_type": "micro", + "address_1": "432 E Paterson St", + "address_2": null, + "address_3": null, + "city": "Kalamazoo", + "state_province": "Michigan", + "postal_code": "49007-2599", + "country": "United States", + "longitude": -85.578439, + "latitude": 42.303203, + "phone": "2692260300", + "website_url": "http://www.boatyardbrewing.com", + "state": "Michigan", + "street": "432 E Paterson St" + }, + { + "id": "941a14d9-f881-4f74-992c-75ab08d5837e", + "name": "Bob Loblaw Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "Florida", + "postal_code": "33179", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3052495628", + "website_url": "http://www.bobloblawbrewing.com", + "state": "Florida", + "street": null + }, + { + "id": "add8f33d-d999-4acd-a8cc-11cac7434700", + "name": "Bobcat Brewery & Cafe", + "brewery_type": "brewpub", + "address_1": "5 Main St", + "address_2": null, + "address_3": null, + "city": "Bristol", + "state_province": "Vermont", + "postal_code": "05443-1317", + "country": "United States", + "longitude": -73.07811204, + "latitude": 44.13284975, + "phone": "8024533311", + "website_url": "http://www.bobcatcafe.com", + "state": "Vermont", + "street": "5 Main St" + }, + { + "id": "676ccc41-f722-484a-b4b8-c9b8713d6249", + "name": "Bobtown Brewhouse & Grill", + "brewery_type": "brewpub", + "address_1": "220 W Main St", + "address_2": null, + "address_3": null, + "city": "Roberts", + "state_province": "Wisconsin", + "postal_code": "54023", + "country": "United States", + "longitude": -92.55599, + "latitude": 44.983639, + "phone": "7153381046", + "website_url": "http://www.bobtownbrewhouse.com", + "state": "Wisconsin", + "street": "220 W Main St" + }, + { + "id": "77cc2f0f-98dd-45b9-8a3f-edc2c027bf64", + "name": "Bodriggy Brewing co.", + "brewery_type": "micro", + "address_1": "245 Johnston Street", + "address_2": null, + "address_3": null, + "city": "Abbotsford", + "state_province": "VIC", + "postal_code": "3067", + "country": "Australia", + "longitude": 144.99446, + "latitude": -37.8001587, + "phone": "+61 3 9417 2293", + "website_url": "https://bodriggy.beer/", + "state": "VIC", + "street": "245 Johnston Street" + }, + { + "id": "218c5541-892d-4bd8-9745-ebd90304f80b", + "name": "Boerne Brewery", + "brewery_type": "micro", + "address_1": "9 Hill View Ln", + "address_2": null, + "address_3": null, + "city": "Boerne", + "state_province": "Texas", + "postal_code": "78006-7003", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8306889693", + "website_url": "http://www.boernebrewery.com", + "state": "Texas", + "street": "9 Hill View Ln" + }, + { + "id": "3e64794e-5a83-41d5-b017-19fdc058cf3e", + "name": "Boese Brothers Brewing", + "brewery_type": "micro", + "address_1": "601 Gold Ave SW", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87102-3119", + "country": "United States", + "longitude": -106.654295, + "latitude": 35.083957, + "phone": "5053827060", + "website_url": "http://www.boesebrothers.com", + "state": "New Mexico", + "street": "601 Gold Ave SW" + }, + { + "id": "b3e33c9a-90f4-4ea3-9177-3b05e2ce0062", + "name": "Bog Brewing Company", + "brewery_type": "micro", + "address_1": "218 W King St", + "address_2": null, + "address_3": null, + "city": "Saint Augustine", + "state_province": "Florida", + "postal_code": "32084-4144", + "country": "United States", + "longitude": -81.3267969, + "latitude": 29.8908994, + "phone": "9046793146", + "website_url": "http://www.bogbrewery.com", + "state": "Florida", + "street": "218 W King St" + }, + { + "id": "8428c5dd-c356-482d-a9de-8af6b633447c", + "name": "Bog Iron Brewing Co", + "brewery_type": "micro", + "address_1": "33 W Main St", + "address_2": null, + "address_3": null, + "city": "Norton", + "state_province": "Massachusetts", + "postal_code": "02766-2711", + "country": "United States", + "longitude": -71.18849942, + "latitude": 41.96658468, + "phone": "5089520555", + "website_url": null, + "state": "Massachusetts", + "street": "33 W Main St" + }, + { + "id": "1a423bc0-601e-49de-989b-f2847047207e", + "name": "Bog Turtle Brewery, LLC", + "brewery_type": "micro", + "address_1": "14 S 3rd St Ste 1", + "address_2": null, + "address_3": null, + "city": "Oxford", + "state_province": "Pennsylvania", + "postal_code": "19363-1601", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4847580416", + "website_url": "http://www.bogturtlebrewery.com", + "state": "Pennsylvania", + "street": "14 S 3rd St Ste 1" + }, + { + "id": "e55300d0-99ac-4968-9d27-8fdd0fd45a85", + "name": "Bog's Edge Brewing Company", + "brewery_type": "micro", + "address_1": "3511 Blarney Rd", + "address_2": null, + "address_3": null, + "city": "Warrens", + "state_province": "Wisconsin", + "postal_code": "54666-7000", + "country": "United States", + "longitude": -90.60271052305, + "latitude": -44.782169839583, + "phone": "6083436708", + "website_url": "http://www.bogsedgebrewing.com", + "state": "Wisconsin", + "street": "3511 Blarney Rd" + }, + { + "id": "a36d09de-a9a0-4d01-8b2f-7db2c4ab48e3", + "name": "Boggy Draw Brewery", + "brewery_type": "micro", + "address_1": "3535 S Platte River Dr Ste L", + "address_2": null, + "address_3": null, + "city": "Sheridan", + "state_province": "Colorado", + "postal_code": "80110-3307", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7209400338", + "website_url": "http://www.boggydrawbrewing.com", + "state": "Colorado", + "street": "3535 S Platte River Dr Ste L" + }, + { + "id": "14c0503a-20dd-4b54-bb96-61c4f5abf7c5", + "name": "Boghopper Brewery", + "brewery_type": "micro", + "address_1": "Kilderry Business Park", + "address_2": "6 Kilderry Ln", + "address_3": "Ardmore", + "city": "Muff", + "state_province": "Donegal", + "postal_code": "F93 WN63", + "country": "Ireland", + "longitude": -7.262928486, + "latitude": 55.06640125, + "phone": "353873256993", + "website_url": null, + "state": "Donegal", + "street": "Kilderry Business Park" + }, + { + "id": "dddce31e-3831-4366-ac7f-da653e730d2c", + "name": "Bohemian Brewery and Grill", + "brewery_type": "micro", + "address_1": "94 7200 S", + "address_2": null, + "address_3": null, + "city": "Midvale", + "state_province": "Utah", + "postal_code": "84047-1532", + "country": "United States", + "longitude": -111.894011, + "latitude": 40.6206923, + "phone": "8015665474", + "website_url": "http://www.bohemianbrewery.com", + "state": "Utah", + "street": "94 7200 S" + }, + { + "id": "d6aff1d6-953e-4bc7-90b6-ce8ab896bb6e", + "name": "Boiler Brewing Company", + "brewery_type": "micro", + "address_1": "129 N 10th St Ste 8", + "address_2": null, + "address_3": null, + "city": "Lincoln", + "state_province": "Nebraska", + "postal_code": "68508-3633", + "country": "United States", + "longitude": -96.707404, + "latitude": 40.814185, + "phone": "4022618775", + "website_url": "http://www.boilerbrewingcompany.com", + "state": "Nebraska", + "street": "129 N 10th St Ste 8" + }, + { + "id": "8bcb5193-13f2-4d73-b12b-22f84ab9d1d4", + "name": "Boiling Pot Brewing Co.", + "brewery_type": "micro", + "address_1": "130A Eumundi Noosa Road", + "address_2": null, + "address_3": null, + "city": "Noosaville", + "state_province": "QLD", + "postal_code": "4566", + "country": "Australia", + "longitude": 153.046413, + "latitude": -26.4091448, + "phone": "+61 7 5449 8360", + "website_url": "http://www.boilingpotbrewingco.com.au/", + "state": "QLD", + "street": "130A Eumundi Noosa Road" + }, + { + "id": "0237e528-96d2-41ef-8549-54611b40eaef", + "name": "Boise Brewing", + "brewery_type": "micro", + "address_1": "521 W Broad St", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83702-7642", + "country": "United States", + "longitude": -116.203056, + "latitude": 43.611778, + "phone": "2083427655", + "website_url": "http://www.boisebrewing.com", + "state": "Idaho", + "street": "521 W Broad St" + }, + { + "id": "6ac83b12-2e87-47ac-a439-11af6b9038a2", + "name": "Bold City Brewery", + "brewery_type": "micro", + "address_1": "2670 Rosselle St Ste 7", + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Florida", + "postal_code": "32204-3004", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9043796551", + "website_url": "http://www.boldcitybrewery.com", + "state": "Florida", + "street": "2670 Rosselle St Ste 7" + }, + { + "id": "823d7543-75ef-4ce6-b3f3-6108eea702f8", + "name": "Bold City Brewery", + "brewery_type": "micro", + "address_1": "109 E Bay St", + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Florida", + "postal_code": "32202-3414", + "country": "United States", + "longitude": -81.656519, + "latitude": 30.326002, + "phone": "9045037682", + "website_url": "http://www.boldcitybrewery.com", + "state": "Florida", + "street": "109 E Bay St" + }, + { + "id": "bcaa1166-a27a-447f-b057-3bf43d21ed68", + "name": "Bold Missy Brewery", + "brewery_type": "brewpub", + "address_1": "610 Anderson St", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28205-1208", + "country": "United States", + "longitude": -80.796429, + "latitude": 35.24960852, + "phone": "9802994184", + "website_url": "http://www.boldmissybrewery.com", + "state": "North Carolina", + "street": "610 Anderson St" + }, + { + "id": "b47c0e0d-23bf-4306-96eb-20f69302a63e", + "name": "Bolero Snort Brewery", + "brewery_type": "contract", + "address_1": "65 Railroad Ave", + "address_2": null, + "address_3": null, + "city": "Ridgefield Park", + "state_province": "New Jersey", + "postal_code": "07660-1321", + "country": "United States", + "longitude": -74.02983351, + "latitude": 40.86058569, + "phone": "2018193527", + "website_url": "http://www.bolerosnort.com", + "state": "New Jersey", + "street": "65 Railroad Ave" + }, + { + "id": "1f2d069d-af7a-4b5f-813a-338360822902", + "name": "Bolo Beer Co", + "brewery_type": "micro", + "address_1": "420 E 1st St", + "address_2": null, + "address_3": null, + "city": "Valentine", + "state_province": "Nebraska", + "postal_code": "69201-1904", + "country": "United States", + "longitude": -100.5457277, + "latitude": 42.87204733, + "phone": null, + "website_url": "http://www.bolobeer.com", + "state": "Nebraska", + "street": "420 E 1st St" + }, + { + "id": "8c4150d3-3edc-4b8d-bf03-0b89de7f4cf2", + "name": "Bolt Brewery", + "brewery_type": "brewpub", + "address_1": "8179 Center St", + "address_2": null, + "address_3": null, + "city": "La Mesa", + "state_province": "California", + "postal_code": "91942-2907", + "country": "United States", + "longitude": -117.02043, + "latitude": 32.771889, + "phone": "6193037837", + "website_url": "http://www.boltbrewery.com", + "state": "California", + "street": "8179 Center St" + }, + { + "id": "f5da109c-ab26-413e-9c86-51a3c6086e29", + "name": "Bolton Beer Works", + "brewery_type": "brewpub", + "address_1": "100 Wattaquadock Hill Rd", + "address_2": null, + "address_3": null, + "city": "Bolton", + "state_province": "Massachusetts", + "postal_code": "01740-1238", + "country": "United States", + "longitude": -71.619812, + "latitude": 42.430173, + "phone": "9787795521", + "website_url": "http://boltonbeerworks.com", + "state": "Massachusetts", + "street": "100 Wattaquadock Hill Rd" + }, + { + "id": "beb4abeb-3386-4ee8-9838-82ea78de6ecf", + "name": "Bolton Landing Brewing Co.", + "brewery_type": "micro", + "address_1": "4933 Lake Shore Dr", + "address_2": null, + "address_3": null, + "city": "Bolton Landing", + "state_province": "New York", + "postal_code": "12814-7757", + "country": "United States", + "longitude": -73.655636, + "latitude": 43.555707, + "phone": "5186442739", + "website_url": "http://www.boltonlandingbrewing.com", + "state": "New York", + "street": "4933 Lake Shore Dr" + }, + { + "id": "5ae387ac-2a8a-4710-81e8-5df49d0c01c5", + "name": "Bomb Plant Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "North Augusta", + "state_province": "South Carolina", + "postal_code": "29860-7462", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7068042722", + "website_url": "http://www.bombplantbrewing.com", + "state": "South Carolina", + "street": null + }, + { + "id": "c4476467-ca84-4c96-807f-9c91efefdd17", + "name": "Bombastic Brewing", + "brewery_type": "contract", + "address_1": "11100 N Airport Rd", + "address_2": null, + "address_3": null, + "city": "Hayden", + "state_province": "Idaho", + "postal_code": "83835", + "country": "United States", + "longitude": -116.8105485, + "latitude": 47.772517, + "phone": null, + "website_url": "http://www.bombasticbrewing.com", + "state": "Idaho", + "street": "11100 N Airport Rd" + }, + { + "id": "ff3b3c00-18a2-4d67-ac98-ac289ef21ca1", + "name": "Bombing Range Brewing Company", + "brewery_type": "brewpub", + "address_1": "2000 Logston Blvd Ste 126", + "address_2": null, + "address_3": null, + "city": "Richland", + "state_province": "Washington", + "postal_code": "99354-5330", + "country": "United States", + "longitude": -119.2999357, + "latitude": 46.3204119, + "phone": "5093923377", + "website_url": "http://www.bombingrangebrewing.com", + "state": "Washington", + "street": "2000 Logston Blvd Ste 126" + }, + { + "id": "b2c6e5d4-0637-44be-977b-ffb98569da4d", + "name": "Bombs Away Beer Company", + "brewery_type": "brewpub", + "address_1": "9801 Acoma Rd SE", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87123-3301", + "country": "United States", + "longitude": -106.53905, + "latitude": 35.070904, + "phone": "5055543204", + "website_url": "http://www.bombsawaybeer.com", + "state": "New Mexico", + "street": "9801 Acoma Rd SE" + }, + { + "id": "43a54dba-6adf-4248-bffd-50e0cf422b93", + "name": "Bombshell Beer Company", + "brewery_type": "micro", + "address_1": "120 Quantum Dr", + "address_2": null, + "address_3": null, + "city": "Holly Springs", + "state_province": "North Carolina", + "postal_code": "27540-8861", + "country": "United States", + "longitude": -78.83588932, + "latitude": 35.65841825, + "phone": "9198231933", + "website_url": "http://www.bombshellbeer.com", + "state": "North Carolina", + "street": "120 Quantum Dr" + }, + { + "id": "871b70be-e09e-4936-8b29-f92c0d2e2667", + "name": "Bonaventure Brewing Co", + "brewery_type": "brewpub", + "address_1": "404 S Figueroa St Ste 418A", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90071-1797", + "country": "United States", + "longitude": -118.2562113, + "latitude": 34.05314634, + "phone": "2132360802", + "website_url": "http://www.bonaventurebrewing.com", + "state": "California", + "street": "404 S Figueroa St Ste 418A" + }, + { + "id": "1186065b-e2c7-4d71-8bc2-30bcdd0e6150", + "name": "Bond Brothers Beer Company", + "brewery_type": "micro", + "address_1": "202 E Cedar St", + "address_2": null, + "address_3": null, + "city": "Cary", + "state_province": "North Carolina", + "postal_code": "27511-3440", + "country": "United States", + "longitude": -78.77797444, + "latitude": 35.78798475, + "phone": "9194592670", + "website_url": "http://www.bondbrothersbeer.com", + "state": "North Carolina", + "street": "202 E Cedar St" + }, + { + "id": "6387b802-f7f9-4b87-ae4a-2e8338b32163", + "name": "Bond's Brewing Company - Buffalo", + "brewery_type": "micro", + "address_1": "93 N Main St", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "Wyoming", + "postal_code": "82834-1814", + "country": "United States", + "longitude": -106.69885330015, + "latitude": 44.348827226889, + "phone": "3072780018", + "website_url": "https://bondsbrewing.com", + "state": "Wyoming", + "street": "93 N Main St" + }, + { + "id": "80ec640a-2ad0-470b-acff-f2fbde534fa6", + "name": "Bond's Brewing Company - Laramie", + "brewery_type": "micro", + "address_1": "411 S 2nd St", + "address_2": null, + "address_3": null, + "city": "Laramie", + "state_province": "Wyoming", + "postal_code": "82070-3613", + "country": "United States", + "longitude": -105.59474553207, + "latitude": 41.30975599718, + "phone": "3074603385", + "website_url": "https://bondsbrewing.com", + "state": "Wyoming", + "street": "411 S 2nd St" + }, + { + "id": "e63f4e55-4ec0-44a1-a0d5-bda2b64c588e", + "name": "Bondi Brewing Co", + "brewery_type": "micro", + "address_1": "206 Hastings Parade", + "address_2": "Unit 5", + "address_3": null, + "city": "North Bondi", + "state_province": "NSW", + "postal_code": "2026", + "country": "Australia", + "longitude": 151.2853625, + "latitude": -33.8918849, + "phone": "+61 439 608 385", + "website_url": "http://www.bondi.beer/", + "state": "NSW", + "street": "206 Hastings Parade" + }, + { + "id": "a2105e97-2f68-4d9d-a1eb-e2914936f086", + "name": "Bone Hook Brewing Company", + "brewery_type": "micro", + "address_1": "1514 Immokalee Rd Unit 106", + "address_2": null, + "address_3": null, + "city": "Naples", + "state_province": "Florida", + "postal_code": "34110-1454", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2396318522", + "website_url": "http://www.bonehookbrewing.com", + "state": "Florida", + "street": "1514 Immokalee Rd Unit 106" + }, + { + "id": "6557f717-6a47-44db-8f47-bb2880471717", + "name": "Bone Idol", + "brewery_type": "micro", + "address_1": "424 Ruthven Street", + "address_2": null, + "address_3": null, + "city": "Toowoomba City", + "state_province": "QLD", + "postal_code": "4350", + "country": "Australia", + "longitude": 151.9536122, + "latitude": -27.5604726, + "phone": "+61 474 527 255", + "website_url": "https://www.boneidolbrewery.com.au/", + "state": "QLD", + "street": "424 Ruthven Street" + }, + { + "id": "6c808c0d-3021-4545-ace7-652f67dd1d44", + "name": "Bone Island Brewing", + "brewery_type": "micro", + "address_1": "1111 Eaton St", + "address_2": null, + "address_3": null, + "city": "Key West", + "state_province": "Florida", + "postal_code": "33040-6926", + "country": "United States", + "longitude": -81.79651464, + "latitude": 24.56141707, + "phone": "3053043472", + "website_url": "http://www.boneislandbrewing.com", + "state": "Florida", + "street": "1111 Eaton St" + }, + { + "id": "1c8aad05-295e-4362-b173-c4c48c287077", + "name": "Bone Up Brewing Co.", + "brewery_type": "micro", + "address_1": "38 Norman St", + "address_2": null, + "address_3": null, + "city": "Everett", + "state_province": "Massachusetts", + "postal_code": "02149-1932", + "country": "United States", + "longitude": -71.0663396, + "latitude": 42.405551, + "phone": "7816919092", + "website_url": "http://www.boneup.beer", + "state": "Massachusetts", + "street": "38 Norman St" + }, + { + "id": "d21b0f42-78e7-4390-9cbf-9b7208975fdb", + "name": "Bonehead Brewing", + "brewery_type": "micro", + "address_1": "86 Parsons Street", + "address_2": null, + "address_3": null, + "city": "Kensington", + "state_province": "VIC", + "postal_code": "3031", + "country": "Australia", + "longitude": 144.9351056, + "latitude": -37.7903722, + "phone": "+61 490 334 892", + "website_url": "https://www.boneheadbrewing.com.au/", + "state": "VIC", + "street": "86 Parsons Street" + }, + { + "id": "11c67cfd-3f90-4c50-896f-e4d9842f7b31", + "name": "Bonesaw Brewing Co.", + "brewery_type": "micro", + "address_1": "570 Mullica Hill Road", + "address_2": null, + "address_3": null, + "city": "Glassboro", + "state_province": "New Jersey", + "postal_code": "08028", + "country": "United States", + "longitude": -75.1354598, + "latitude": 39.7129747, + "phone": "8562435464", + "website_url": "http://www.bonesawbrewing.com", + "state": "New Jersey", + "street": "570 Mullica Hill Road" + }, + { + "id": "f91384a3-fabc-4df3-a467-9e14d64efb84", + "name": "Boneshire Brew Works", + "brewery_type": "micro", + "address_1": "7462 Derry St", + "address_2": null, + "address_3": null, + "city": "Harrisburg", + "state_province": "Pennsylvania", + "postal_code": "17111-5228", + "country": "United States", + "longitude": -76.8712077, + "latitude": 40.2633825, + "phone": "7174127814", + "website_url": "http://www.boneshire.com", + "state": "Pennsylvania", + "street": "7462 Derry St" + }, + { + "id": "a3bfaa8d-ad1e-4c84-ae0d-ed3918f5bd03", + "name": "Boneyard Beer Co", + "brewery_type": "micro", + "address_1": "37 NW Lake Pl Ste B", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97703-2971", + "country": "United States", + "longitude": -121.3080908, + "latitude": 44.05412648, + "phone": "5413232325", + "website_url": null, + "state": "Oregon", + "street": "37 NW Lake Pl Ste B" + }, + { + "id": "c79f5c93-c9e1-4d12-a6a8-c3ac7510664a", + "name": "Boneyard Beer Co", + "brewery_type": "brewpub", + "address_1": "1955 NE Division St", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97701", + "country": "United States", + "longitude": -121.3065353, + "latitude": 44.07094734, + "phone": "5413232325", + "website_url": "http://www.boneyardbeer.com", + "state": "Oregon", + "street": "1955 NE Division St" + }, + { + "id": "f3cd9907-119e-4d36-82f3-64cceb23c7e0", + "name": "Bonfire Brewing", + "brewery_type": "micro", + "address_1": "127 W 2nd St", + "address_2": null, + "address_3": null, + "city": "Eagle", + "state_province": "Colorado", + "postal_code": "81631", + "country": "United States", + "longitude": -106.82826, + "latitude": 39.65531966, + "phone": "9703067113", + "website_url": "http://www.bonfirebrewing.com", + "state": "Colorado", + "street": "127 W 2nd St" + }, + { + "id": "2d8a902e-c960-46cc-9222-9dfb2cdfeb46", + "name": "Bonfire Brewing Production", + "brewery_type": "micro", + "address_1": "936 Chambers Ct. B-4", + "address_2": null, + "address_3": null, + "city": "Eagle", + "state_province": "Colorado", + "postal_code": "81631-5276", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9703067113", + "website_url": null, + "state": "Colorado", + "street": "936 Chambers Ct. B-4" + }, + { + "id": "402b5bb1-9aa8-4e55-9215-824957bf45f5", + "name": "Bonn Place Brewing", + "brewery_type": "micro", + "address_1": "310 Taylor St", + "address_2": null, + "address_3": null, + "city": "Bethlehem", + "state_province": "Pennsylvania", + "postal_code": "18015", + "country": "United States", + "longitude": -75.3745048, + "latitude": 40.6116536, + "phone": "6104196660", + "website_url": "http://www.bonnbrewing.com", + "state": "Pennsylvania", + "street": "310 Taylor St" + }, + { + "id": "66ab4fe9-46a6-480c-ba0e-d9044e233017", + "name": "Bonneville Brewery", + "brewery_type": "micro", + "address_1": "1641 N Main St", + "address_2": null, + "address_3": null, + "city": "Tooele", + "state_province": "Utah", + "postal_code": "84074-8023", + "country": "United States", + "longitude": -112.2978178, + "latitude": 40.55980233, + "phone": "4352480652", + "website_url": null, + "state": "Utah", + "street": "1641 N Main St" + }, + { + "id": "800af4b4-2ba1-4fb1-9712-66d5d514912b", + "name": "Bonsai Brewing Project", + "brewery_type": "brewpub", + "address_1": "549 Wisconsin Ave", + "address_2": null, + "address_3": null, + "city": "Whitefish", + "state_province": "Montana", + "postal_code": "59937-2127", + "country": "United States", + "longitude": -114.3406189, + "latitude": 48.4214453, + "phone": "4067301717", + "website_url": "http://bonsaibrew.com", + "state": "Montana", + "street": "549 Wisconsin Ave" + }, + { + "id": "1e9d4558-c7eb-44a6-b943-1f7c2f39f9c5", + "name": "Boojum Brewing Company", + "brewery_type": "micro", + "address_1": "357 Dayton Dr", + "address_2": null, + "address_3": null, + "city": "Waynesville", + "state_province": "North Carolina", + "postal_code": "28786-6931", + "country": "United States", + "longitude": -82.99383657, + "latitude": 35.52574804, + "phone": "8289440888", + "website_url": "http://www.BoojumBrewing.com", + "state": "North Carolina", + "street": "357 Dayton Dr" + }, + { + "id": "2efab57a-8614-428d-a5e2-a6a528dd6cac", + "name": "Bookhouse Brewing, LLC.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44113-3104", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4144264555", + "website_url": "http://www.bookhouse.beer", + "state": "Ohio", + "street": null + }, + { + "id": "dda9e364-55af-4b00-acd9-5d59cb82313b", + "name": "Books & Brews", + "brewery_type": "brewpub", + "address_1": "9402 Uptown Dr Ste 1400", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46256-1076", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3172885136", + "website_url": "http://www.booksnbrews.com", + "state": "Indiana", + "street": "9402 Uptown Dr Ste 1400" + }, + { + "id": "32f78839-6d32-4162-bb75-8e4f714077bf", + "name": "Boom City Brewing", + "brewery_type": "brewpub", + "address_1": "317 Pine St", + "address_2": null, + "address_3": null, + "city": "Williamsport", + "state_province": "Pennsylvania", + "postal_code": "17701-6509", + "country": "United States", + "longitude": -77.00331232, + "latitude": 41.24108564, + "phone": "2722022956", + "website_url": "http://www.boomcitybrewing.com", + "state": "Pennsylvania", + "street": "317 Pine St" + }, + { + "id": "abcf36fa-7b69-4a58-b471-f4511a80512c", + "name": "Boom Island Brewing Company", + "brewery_type": "micro", + "address_1": "2014 Washington Ave North #300", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55411-2220", + "country": "United States", + "longitude": -93.2739955, + "latitude": 44.9855585, + "phone": "6122279635", + "website_url": "http://www.boomislandbrewing.com", + "state": "Minnesota", + "street": "2014 Washington Ave North #300" + }, + { + "id": "aa877eb8-397a-4230-a379-c9424d9ca96d", + "name": "Boomtown Brewery", + "brewery_type": "micro", + "address_1": "700 Jackson St", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90012-3443", + "country": "United States", + "longitude": -118.233179, + "latitude": 34.0507711, + "phone": "2136178497", + "website_url": "http://www.boomtownbrew.com", + "state": "California", + "street": "700 Jackson St" + }, + { + "id": "edfa72b9-a54d-44db-94fd-6714470fef11", + "name": "BoomTown Brewery and Woodfire Grill", + "brewery_type": "brewpub", + "address_1": "531 E Howard St", + "address_2": null, + "address_3": null, + "city": "Hibbing", + "state_province": "Minnesota", + "postal_code": "55746-1713", + "country": "United States", + "longitude": -92.9355964, + "latitude": 47.4276931, + "phone": "2184401710", + "website_url": "http://www.boomtownwoodfire.com", + "state": "Minnesota", + "street": "531 E Howard St" + }, + { + "id": "01f95ff4-9f8a-4626-8b01-75efb27f8673", + "name": "Boondocks Brewing", + "brewery_type": "brewpub", + "address_1": "302 S Jefferson Ave", + "address_2": null, + "address_3": null, + "city": "West Jefferson", + "state_province": "North Carolina", + "postal_code": "28694-", + "country": "United States", + "longitude": -81.49133567, + "latitude": 36.39941459, + "phone": "3362465222", + "website_url": "http://www.boondocksbrew.com", + "state": "North Carolina", + "street": "302 S Jefferson Ave" + }, + { + "id": "f09bda30-0156-41cf-ba7d-1625ff37dad0", + "name": "Boondoggle Brewing", + "brewery_type": "contract", + "address_1": "553 Maple St", + "address_2": null, + "address_3": null, + "city": "Wethersfield", + "state_province": "Connecticut", + "postal_code": "06109-3732", + "country": "United States", + "longitude": -72.66458677, + "latitude": 41.6838887, + "phone": "8603367366", + "website_url": "http://www.boondogglebeers.com", + "state": "Connecticut", + "street": "553 Maple St" + }, + { + "id": "90bd1462-fbc7-4ced-a354-cd24f3996576", + "name": "Boone Valley Brewing Co", + "brewery_type": "micro", + "address_1": "816 7th St", + "address_2": null, + "address_3": null, + "city": "Boone", + "state_province": "Iowa", + "postal_code": "50036-2818", + "country": "United States", + "longitude": -93.88096265, + "latitude": 42.062643, + "phone": "5154321232", + "website_url": "http://www.boonevalleybrewing.com", + "state": "Iowa", + "street": "816 7th St" + }, + { + "id": "bcdb6b87-37af-4168-ae08-976e89498a10", + "name": "Booneshine Brewing Company", + "brewery_type": "micro", + "address_1": "465 Industrial Park Dr.", + "address_2": null, + "address_3": null, + "city": "Boone", + "state_province": "North Carolina", + "postal_code": "28607", + "country": "United States", + "longitude": -81.645208, + "latitude": 36.222104, + "phone": "8282634305", + "website_url": "http://www.booneshine.beer", + "state": "North Carolina", + "street": "465 Industrial Park Dr." + }, + { + "id": "7dd5dd2e-62e8-427f-81a3-8ecfa17d63d6", + "name": "Boot N Flute Brewery / Guild Wurst Tavern", + "brewery_type": "brewpub", + "address_1": "53 2nd St", + "address_2": null, + "address_3": null, + "city": "Coralville", + "state_province": "Iowa", + "postal_code": "52241", + "country": "United States", + "longitude": -91.56271744, + "latitude": 41.66788468, + "phone": "3193331740", + "website_url": "http://www.guildwursttavern.com", + "state": "Iowa", + "street": "53 2nd St" + }, + { + "id": "59b00fce-d9cf-4278-982e-684554d23b87", + "name": "Boothbay Craft Brewery, Inc", + "brewery_type": "micro", + "address_1": "301 Adams Pond Rd", + "address_2": null, + "address_3": null, + "city": "Boothbay", + "state_province": "Maine", + "postal_code": "04537-4334", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2076333411", + "website_url": "http://www.boothbaycraftbrewery.com", + "state": "Maine", + "street": "301 Adams Pond Rd" + }, + { + "id": "31a00e99-284f-419b-a1e9-93cc47cec627", + "name": "Bootleg Brewers - Sandhills Brewing Company", + "brewery_type": "brewpub", + "address_1": "45145 829th Rd", + "address_2": null, + "address_3": null, + "city": "Taylor", + "state_province": "Nebraska", + "postal_code": "68879-8120", + "country": "United States", + "longitude": -99.4254083, + "latitude": 41.8662836, + "phone": "3089423440", + "website_url": "http://www.bootlegbrewers.com", + "state": "Nebraska", + "street": "45145 829th Rd" + }, + { + "id": "bab88321-60e7-4a52-a51e-7c63e63dffb8", + "name": "Bootleg Brewery", + "brewery_type": "micro", + "address_1": "37 Wildberry Road", + "address_2": null, + "address_3": null, + "city": "Wilyabrup", + "state_province": "WA", + "postal_code": "6280", + "country": "Australia", + "longitude": 115.0551139, + "latitude": -33.7567167, + "phone": null, + "website_url": "http://www.bootlegbrewery.com.au/", + "state": "WA", + "street": "37 Wildberry Road" + }, + { + "id": "3ced5c24-34e0-4346-9167-572a6d2ba16c", + "name": "Bootleggers Brewery", + "brewery_type": "micro", + "address_1": "130 S Highland Ave", + "address_2": null, + "address_3": null, + "city": "Fullerton", + "state_province": "California", + "postal_code": "92832-1803", + "country": "United States", + "longitude": -117.928591, + "latitude": 33.87004, + "phone": "7148712337", + "website_url": null, + "state": "California", + "street": "130 S Highland Ave" + }, + { + "id": "d9e00679-9ced-416c-9042-c1414a47dba4", + "name": "Bootleggers Brewery", + "brewery_type": "micro", + "address_1": "1100 E Truslow Ave", + "address_2": null, + "address_3": null, + "city": "Fullerton", + "state_province": "California", + "postal_code": "92831-4626", + "country": "United States", + "longitude": -117.9080095, + "latitude": 33.86741253, + "phone": "7148712337", + "website_url": "http://www.bootleggersbrewery.com", + "state": "California", + "street": "1100 E Truslow Ave" + }, + { + "id": "76d91768-88ce-485a-91e2-83baf9d2f10c", + "name": "Boots Brewing Company, Inc.", + "brewery_type": "micro", + "address_1": "89 Public Sq", + "address_2": null, + "address_3": null, + "city": "Watertown", + "state_province": "New York", + "postal_code": "13601-2626", + "country": "United States", + "longitude": -75.90904644, + "latitude": 43.97475173, + "phone": "3157670794", + "website_url": "http://www.bootsbrew.com", + "state": "New York", + "street": "89 Public Sq" + }, + { + "id": "e2c8bc39-b3c3-475a-8552-2b323d1d4e0a", + "name": "Bootstrap Brewing", + "brewery_type": "micro", + "address_1": "142 Pratt St", + "address_2": null, + "address_3": null, + "city": "Longmont", + "state_province": "Colorado", + "postal_code": "80501", + "country": "United States", + "longitude": -105.1062808, + "latitude": 40.16140505, + "phone": "3036524186", + "website_url": null, + "state": "Colorado", + "street": "142 Pratt St" + }, + { + "id": "a3412077-804c-4613-a7e6-9546b47ced90", + "name": "Bootstrap Brewing Co", + "brewery_type": "micro", + "address_1": "6778 N 79th St", + "address_2": null, + "address_3": null, + "city": "Niwot", + "state_province": "Colorado", + "postal_code": "80503-7118", + "country": "United States", + "longitude": -105.1691581, + "latitude": 40.09681247, + "phone": "3036524186", + "website_url": "http://www.bootstrapbrewing.com", + "state": "Colorado", + "street": "6778 N 79th St" + }, + { + "id": "e6f749a5-aa78-46ae-9e84-c001986a9305", + "name": "Booze Brothers Brewing Co.", + "brewery_type": "brewpub", + "address_1": "2545 Progress St", + "address_2": null, + "address_3": null, + "city": "Vista", + "state_province": "California", + "postal_code": "92081-8483", + "country": "United States", + "longitude": -117.218025, + "latitude": 33.148212, + "phone": "7602950217", + "website_url": "http://www.boozebrothersbrewery.com", + "state": "California", + "street": "2545 Progress St" + }, + { + "id": "23239fd9-a723-4227-878a-4e3905885acb", + "name": "Border Brewery/Border Brew Supply", + "brewery_type": "micro", + "address_1": "224 N Broadway Ste D14", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "New Hampshire", + "postal_code": "03079-2145", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6032169134", + "website_url": "http://www.borderbrewsupply.com", + "state": "New Hampshire", + "street": "224 N Broadway Ste D14" + }, + { + "id": "05250da0-46b3-4d2a-bf60-c185f602780d", + "name": "Border Brewing Company", + "brewery_type": "micro", + "address_1": "406 E 18th St", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64108", + "country": "United States", + "longitude": -94.5786142, + "latitude": 39.0917581, + "phone": "8163156807", + "website_url": "http://www.borderbrewco.com", + "state": "Missouri", + "street": "406 E 18th St" + }, + { + "id": "e1a5d62a-19a5-4a73-9aa6-0e7ca2799868", + "name": "Border Town Pub", + "brewery_type": "brewpub", + "address_1": "22 N Dixie Hwy # 28", + "address_2": null, + "address_3": null, + "city": "Momence", + "state_province": "Illinois", + "postal_code": "60954-1504", + "country": "United States", + "longitude": -87.66261835, + "latitude": 41.16238275, + "phone": "8154724340", + "website_url": "http://www.BorderTownPub.com", + "state": "Illinois", + "street": "22 N Dixie Hwy # 28" + }, + { + "id": "b28d3c64-b98d-4c97-a1bd-ab2465b0dbdb", + "name": "Border X Brewing", + "brewery_type": "micro", + "address_1": "2181 Logan Ave", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92113-2203", + "country": "United States", + "longitude": -117.1397541, + "latitude": 32.6982174, + "phone": "6195010503", + "website_url": "http://www.borderxbrewing.com", + "state": "California", + "street": "2181 Logan Ave" + }, + { + "id": "e61f3a16-9521-40a6-9f86-3918b7081a6f", + "name": "Border X Logan", + "brewery_type": "brewpub", + "address_1": "2181 Logan Ave", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92113-2203", + "country": "United States", + "longitude": -117.1397541, + "latitude": 32.6982174, + "phone": "8584050528", + "website_url": "http://www.borderxbrewing.com", + "state": "California", + "street": "2181 Logan Ave" + }, + { + "id": "0f840953-1dd8-478d-a6b6-3ea6ce3a65ac", + "name": "Borderlands Brewing Co", + "brewery_type": "micro", + "address_1": "119 E Toole Ave", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85701-1210", + "country": "United States", + "longitude": -110.9676305, + "latitude": 32.22334681, + "phone": "5202618773", + "website_url": "http://www.borderlandsbrewing.com", + "state": "Arizona", + "street": "119 E Toole Ave" + }, + { + "id": "73dfe26a-7ed0-43ff-b930-cf7caa16c2a1", + "name": "Boring Brewing Co., LLC", + "brewery_type": "micro", + "address_1": "38250 Pioneer Blvd", + "address_2": null, + "address_3": null, + "city": "Sandy", + "state_province": "Oregon", + "postal_code": "97009", + "country": "United States", + "longitude": -122.2702045, + "latitude": 45.39722205, + "phone": "5034278619", + "website_url": "http://www.boringbrewing.com", + "state": "Oregon", + "street": "38250 Pioneer Blvd" + }, + { + "id": "58b42b92-8294-4785-9767-5c12009610fe", + "name": "Boscos Squared", + "brewery_type": "brewpub", + "address_1": "2120 Madison Ave", + "address_2": null, + "address_3": null, + "city": "Memphis", + "state_province": "Tennessee", + "postal_code": "38104-6502", + "country": "United States", + "longitude": -90.0401714, + "latitude": 35.1417658, + "phone": "9014322222", + "website_url": "http://www.boscosbeer.com", + "state": "Tennessee", + "street": "2120 Madison Ave" + }, + { + "id": "54d82d12-cdc6-4721-a519-40b53de28ffa", + "name": "Bosk Brew Works", + "brewery_type": "closed", + "address_1": "14350 NE 193rd Pl", + "address_2": null, + "address_3": null, + "city": "Woodinville", + "state_province": "Washington", + "postal_code": "98072-8402", + "country": "United States", + "longitude": -122.1492358, + "latitude": 47.76907913, + "phone": "4254194782", + "website_url": "https://boskbrewworks.com", + "state": "Washington", + "street": "14350 NE 193rd Pl" + }, + { + "id": "024f587b-17f8-42b6-8554-423162e200c9", + "name": "Bosque Brewing Co", + "brewery_type": "micro", + "address_1": "8900 San Mateo Blvd NE Ste I", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87113-2459", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5054333889", + "website_url": "http://www.bosquebrewingco.com", + "state": "New Mexico", + "street": "8900 San Mateo Blvd NE Ste I" + }, + { + "id": "9cfb70f4-7918-426f-9280-2c93e0b46c09", + "name": "Bosque Brewing Co - Bosque North", + "brewery_type": "micro", + "address_1": "834 W. Highway 550", + "address_2": null, + "address_3": null, + "city": "Bernalillo", + "state_province": "New Mexico", + "postal_code": "87004", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5054333889", + "website_url": null, + "state": "New Mexico", + "street": "834 W. Highway 550" + }, + { + "id": "d4dc69ab-cf58-44b9-9456-cea49cf6dd35", + "name": "Boss Dog Brewing", + "brewery_type": "brewpub", + "address_1": "2179 Lee Rd", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44118-2907", + "country": "United States", + "longitude": -81.56529555, + "latitude": 41.50030645, + "phone": "2163212337", + "website_url": "http://www.bossdogbrewing.com", + "state": "Ohio", + "street": "2179 Lee Rd" + }, + { + "id": "9375dc3a-6315-4ef4-a5e6-35a257deb8a3", + "name": "Boston Beer Co", + "brewery_type": "micro", + "address_1": "1 Design Center Pl Ste 850", + "address_2": null, + "address_3": null, + "city": "Boston", + "state_province": "Massachusetts", + "postal_code": "02210-2300", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6173685000", + "website_url": null, + "state": "Massachusetts", + "street": "1 Design Center Pl Ste 850" + }, + { + "id": "214c08f5-53a3-458a-a011-63b41d62254d", + "name": "Boston Beer Co", + "brewery_type": "micro", + "address_1": "30 Germania St Ste 1", + "address_2": null, + "address_3": null, + "city": "Boston", + "state_province": "Massachusetts", + "postal_code": "02130-2312", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6173685000", + "website_url": "http://www.samueladams.com", + "state": "Massachusetts", + "street": "30 Germania St Ste 1" + }, + { + "id": "a7928f72-0201-4c7e-bb72-a83016945a2e", + "name": "Boston Beer Co - DBA Samuel Adams Brewing Co", + "brewery_type": "regional", + "address_1": "1625 Central Pkwy", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45214-2423", + "country": "United States", + "longitude": -84.5207651, + "latitude": 39.11257, + "phone": "6173685000", + "website_url": "http://www.samueladams.com", + "state": "Ohio", + "street": "1625 Central Pkwy" + }, + { + "id": "5e8ccdbb-df4e-4a4a-9133-2503eb7dd0bb", + "name": "Boston Breweries", + "brewery_type": "micro", + "address_1": "48-50 Canterbury Street", + "address_2": "Zonnebloem", + "address_3": null, + "city": "Cape Town", + "state_province": "Western Cape", + "postal_code": "8001", + "country": "South Africa", + "longitude": 18.4283, + "latitude": -33.9304, + "phone": "+27 21 461 4666", + "website_url": "https://bostonbreweries.co.za/", + "state": "Western Cape", + "street": "48-50 Canterbury Street" + }, + { + "id": "8c08388d-2ce2-47f5-a2fd-ef5dd5bce18f", + "name": "Boston Brewing", + "brewery_type": "micro", + "address_1": "660 Albany Highway", + "address_2": null, + "address_3": null, + "city": "Victoria Park", + "state_province": "WA", + "postal_code": "6100", + "country": "Australia", + "longitude": 115.9007975, + "latitude": -31.9807709, + "phone": "+61 8 9253 0894", + "website_url": "http://www.bostonbrewing.com.au/", + "state": "WA", + "street": "660 Albany Highway" + }, + { + "id": "b271dedb-ca17-40fe-8715-730af9056181", + "name": "Bottle Bay Brewing Co", + "brewery_type": "micro", + "address_1": "503 1/2 E 30th Ave", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99203-2557", + "country": "United States", + "longitude": -117.402664, + "latitude": 47.62764, + "phone": "5099608049", + "website_url": "https://www.bottlebaybrewing.com", + "state": "Washington", + "street": "503 1/2 E 30th Ave" + }, + { + "id": "b342f329-7cd5-494f-9c46-7298cdb63b0e", + "name": "Bottle Logic Brewing", + "brewery_type": "micro", + "address_1": "1072 N Armando St", + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92806-2605", + "country": "United States", + "longitude": -117.8597226, + "latitude": 33.8495705, + "phone": "714660", + "website_url": "http://www.bottlelogic.com", + "state": "California", + "street": "1072 N Armando St" + }, + { + "id": "b98d7721-ffac-4618-8fd5-7ae3c61255b5", + "name": "Bottle Rocket Brewing Co", + "brewery_type": "micro", + "address_1": "230 S 5th St", + "address_2": null, + "address_3": null, + "city": "Seward", + "state_province": "Nebraska", + "postal_code": "68434-2520", + "country": "United States", + "longitude": -97.09777551, + "latitude": 40.90629564, + "phone": "4023045673", + "website_url": "http://www.bottlerocketbrewing.com", + "state": "Nebraska", + "street": "230 S 5th St" + }, + { + "id": "e23c476c-0f42-4d31-9a59-0fe5a809c76f", + "name": "Bottle Tree Beer Co", + "brewery_type": "contract", + "address_1": "10 N Trade St Apt A", + "address_2": null, + "address_3": null, + "city": "Tryon", + "state_province": "North Carolina", + "postal_code": "28782-3476", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8642660133", + "website_url": "http://www.bottletree.net", + "state": "North Carolina", + "street": "10 N Trade St Apt A" + }, + { + "id": "d6317b33-57b6-4509-b4f8-d96094716eef", + "name": "BottleHouse Brewery", + "brewery_type": "micro", + "address_1": "13368 Madison Ave", + "address_2": null, + "address_3": null, + "city": "Lakewood", + "state_province": "Ohio", + "postal_code": "44107-4840", + "country": "United States", + "longitude": -81.78445705, + "latitude": 41.47721765, + "phone": "2162142120", + "website_url": "http://www.thebottlehousebrewingcompany.com", + "state": "Ohio", + "street": "13368 Madison Ave" + }, + { + "id": "22046ed7-ceb2-4ba5-a77d-5a158baa87bd", + "name": "Bottom Shelf Brewery", + "brewery_type": "brewpub", + "address_1": "118 E Mill St", + "address_2": null, + "address_3": null, + "city": "Bayfield", + "state_province": "Colorado", + "postal_code": "81122", + "country": "United States", + "longitude": -107.5990683, + "latitude": 37.2251348, + "phone": "9708842442", + "website_url": "http://www.bottomshelfbrewing.com", + "state": "Colorado", + "street": "118 E Mill St" + }, + { + "id": "50c38066-568b-4e12-a4cb-536073d998c0", + "name": "Bottomless Brewing, LLC", + "brewery_type": "brewpub", + "address_1": "3543 E Lake Rd", + "address_2": null, + "address_3": null, + "city": "Geneva", + "state_province": "New York", + "postal_code": "14456-9261", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3153254380", + "website_url": "http://www.bottomlessbrewing.com", + "state": "New York", + "street": "3543 E Lake Rd" + }, + { + "id": "9de1818b-9215-4043-a36b-d1dce42776ae", + "name": "Boulder Beer Co", + "brewery_type": "regional", + "address_1": "2880 Wilderness Pl", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301-5401", + "country": "United States", + "longitude": -105.2480158, + "latitude": 40.026439, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "2880 Wilderness Pl" + }, + { + "id": "d3e1adcf-6b5c-4cbc-95e7-c980ccb79742", + "name": "Boulder Beer On Walnut", + "brewery_type": "brewpub", + "address_1": "1123 Walnut St", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80302-5116", + "country": "United States", + "longitude": -105.2804375, + "latitude": 40.0168555, + "phone": "3034471345", + "website_url": null, + "state": "Colorado", + "street": "1123 Walnut St" + }, + { + "id": "0afcc8c2-d95e-4ef3-9f55-009e01afeb4b", + "name": "Boulder Dam Brewing Company", + "brewery_type": "brewpub", + "address_1": "453 Nevada Way", + "address_2": null, + "address_3": null, + "city": "Boulder City", + "state_province": "Nevada", + "postal_code": "89005-2424", + "country": "United States", + "longitude": -114.836937, + "latitude": 35.97842094, + "phone": null, + "website_url": null, + "state": "Nevada", + "street": "453 Nevada Way" + }, + { + "id": "8aa463ce-a1d9-44ce-9e1a-36f16ff8fdf4", + "name": "Boulevard Brewing Co", + "brewery_type": "regional", + "address_1": "2501 Southwest Blvd", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64108-2345", + "country": "United States", + "longitude": -94.59682307, + "latitude": 39.08196355, + "phone": "8164747095", + "website_url": "http://www.boulevard.com", + "state": "Missouri", + "street": "2501 Southwest Blvd" + }, + { + "id": "36c00147-3ca6-420f-b43d-08c69aaba4d5", + "name": "Boundary Bay Brewery & Bistro", + "brewery_type": "brewpub", + "address_1": "1107 Railroad Ave", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98225-5007", + "country": "United States", + "longitude": -122.4809958, + "latitude": 48.7475046, + "phone": "3606475593", + "website_url": "http://www.bbaybrewery.com", + "state": "Washington", + "street": "1107 Railroad Ave" + }, + { + "id": "88053194-9192-4eca-8f83-8bca5f2207a1", + "name": "Boundary Island Brewery", + "brewery_type": "micro", + "address_1": "21 Marina Quay Drive", + "address_2": null, + "address_3": null, + "city": "Erskine", + "state_province": "WA", + "postal_code": "6210", + "country": "Australia", + "longitude": 115.7089439, + "latitude": -32.5593774, + "phone": "+61 8 9584 8482", + "website_url": "http://www.boundaryislandbrewery.com.au/", + "state": "WA", + "street": "21 Marina Quay Drive" + }, + { + "id": "6fce9f76-f613-4654-b32e-1c22994ee157", + "name": "Bousa Brewing Company", + "brewery_type": "micro", + "address_1": "7235 NE 4th Ave", + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "Florida", + "postal_code": "33138-5315", + "country": "United States", + "longitude": -80.18941017, + "latitude": 25.8414587, + "phone": "3053635166", + "website_url": "http://www.bousabrewing.com", + "state": "Florida", + "street": "7235 NE 4th Ave" + }, + { + "id": "6577673a-61c0-4ef0-830d-031e6a3ceb59", + "name": "Bow and Arrow Brewing Co.", + "brewery_type": "micro", + "address_1": "608 McKnight Ave NW", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87102-1237", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5052479800", + "website_url": "http://www.bowandarrowbrewing.com", + "state": "New Mexico", + "street": "608 McKnight Ave NW" + }, + { + "id": "977dd7c4-75e8-4d1b-bcc6-7e448aa908a7", + "name": "Bowden Brewing", + "brewery_type": "micro", + "address_1": "12 Fourth Street", + "address_2": null, + "address_3": null, + "city": "Bowden", + "state_province": "SA", + "postal_code": "5007", + "country": "Australia", + "longitude": 138.5786305, + "latitude": -34.9060177, + "phone": null, + "website_url": "https://bowdenbrewing.com/", + "state": "SA", + "street": "12 Fourth Street" + }, + { + "id": "ec41c18f-88fd-47ba-8677-b9b44ccef39c", + "name": "Bowigens Beer Company", + "brewery_type": "micro", + "address_1": "1014 State Road 436", + "address_2": null, + "address_3": null, + "city": "Casselberry", + "state_province": "Florida", + "postal_code": "32707-5722", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4079607816", + "website_url": "http://www.bowigens.com", + "state": "Florida", + "street": "1014 State Road 436" + }, + { + "id": "191cb275-0eda-411c-a5b8-a14d7d6b52c2", + "name": "Bowling Green Beer Works", + "brewery_type": "micro", + "address_1": "322 N Grove St Ste C", + "address_2": null, + "address_3": null, + "city": "Bowling Green", + "state_province": "Ohio", + "postal_code": "43402-2322", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5122992101", + "website_url": null, + "state": "Ohio", + "street": "322 N Grove St Ste C" + }, + { + "id": "be59a906-5104-4365-ac07-d9dd7f25f9ae", + "name": "Box Office Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Strasburg", + "state_province": "Virginia", + "postal_code": "22657-2238", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5402333353", + "website_url": "http://Info@boxofficebrewery.com", + "state": "Virginia", + "street": null + }, + { + "id": "47e5d589-a5c4-48b6-90fa-1f1f64438d58", + "name": "Boxcar Brewing Co LLC", + "brewery_type": "micro", + "address_1": "306 Westtown Rd Ste C", + "address_2": null, + "address_3": null, + "city": "West Chester", + "state_province": "Pennsylvania", + "postal_code": "19382-4983", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4849472503", + "website_url": "http://www.boxcarbrewingcompany.com", + "state": "Pennsylvania", + "street": "306 Westtown Rd Ste C" + }, + { + "id": "b4f9eab8-b927-41ca-97b9-44e51db6b303", + "name": "Boxer Brewing Co.", + "brewery_type": "micro", + "address_1": "79 Main Western Road", + "address_2": null, + "address_3": null, + "city": "Tamborine Mountain", + "state_province": "QLD", + "postal_code": "4272", + "country": "Australia", + "longitude": 153.1803998, + "latitude": -27.9330228, + "phone": "+61 7 5545 2609", + "website_url": "http://www.boxerbrewing.com.au/", + "state": "QLD", + "street": "79 Main Western Road" + }, + { + "id": "8ff02914-7639-412c-9165-dda506bdd61b", + "name": "Boxing Bear Brewing Company", + "brewery_type": "brewpub", + "address_1": "10200 Corrales Rd NW", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87114-9268", + "country": "United States", + "longitude": -106.6460549, + "latitude": 35.2036804, + "phone": "5058972327", + "website_url": "http://www.boxingbearbrewing.com", + "state": "New Mexico", + "street": "10200 Corrales Rd NW" + }, + { + "id": "280918cb-8713-4c5a-85c8-005a6b8d4d33", + "name": "Boylan Bridge Brewpub", + "brewery_type": "brewpub", + "address_1": "201 S BOYLAN AVE", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27603-1803", + "country": "United States", + "longitude": -78.649139, + "latitude": 35.778465, + "phone": "9198038927", + "website_url": "http://www.boylanbridge.com", + "state": "North Carolina", + "street": "201 S BOYLAN AVE" + }, + { + "id": "2c0881d5-49a6-426d-a234-6d0bd3bb8c36", + "name": "Bozeman Brewing Co", + "brewery_type": "micro", + "address_1": "504 N Broadway Ave", + "address_2": null, + "address_3": null, + "city": "Bozeman", + "state_province": "Montana", + "postal_code": "59715-3006", + "country": "United States", + "longitude": -111.0238884, + "latitude": 45.6845234, + "phone": "4065859142", + "website_url": "http://www.bozemanbrewing.com", + "state": "Montana", + "street": "504 N Broadway Ave" + }, + { + "id": "42e5dde7-9cca-4102-9c5d-99cda6ebb625", + "name": "Bracket Brewing Co.", + "brewery_type": "micro", + "address_1": "48 Addison Road", + "address_2": "2", + "address_3": null, + "city": "Marrickville", + "state_province": "NSW", + "postal_code": "2204", + "country": "Australia", + "longitude": 151.1659077, + "latitude": -33.9034485, + "phone": null, + "website_url": "https://bracketbrewing.com.au/", + "state": "NSW", + "street": "48 Addison Road" + }, + { + "id": "a5d616a6-0bfb-4f0f-8f19-da804663dafe", + "name": "Bradley Brew Project", + "brewery_type": "micro", + "address_1": "714 Main St", + "address_2": null, + "address_3": null, + "city": "Bradley Beach", + "state_province": "New Jersey", + "postal_code": "07720-1013", + "country": "United States", + "longitude": -74.01742428, + "latitude": 40.20427079, + "phone": "732455804", + "website_url": "http://www.bradleybrew.com", + "state": "New Jersey", + "street": "714 Main St" + }, + { + "id": "94d0942e-52f9-4760-8da0-57bfbcfc3059", + "name": "Bradley Farm / RB Brew, LLC", + "brewery_type": "micro", + "address_1": "317 Springtown Rd", + "address_2": null, + "address_3": null, + "city": "New Paltz", + "state_province": "New York", + "postal_code": "12561-3020", + "country": "United States", + "longitude": -74.097562, + "latitude": 41.760486, + "phone": "8452558769", + "website_url": "http://www.raybradleyfarm.com", + "state": "New York", + "street": "317 Springtown Rd" + }, + { + "id": "8d5538db-870e-486b-8e03-8c607c38ae18", + "name": "Braeloch Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Kennett Square", + "state_province": "Pennsylvania", + "postal_code": "19348-3605", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3026056473", + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "de15320f-70e1-4e39-94c0-7fc31c0a23fb", + "name": "Braeside Brewing Co.", + "brewery_type": "micro", + "address_1": "43 Governor Road", + "address_2": null, + "address_3": null, + "city": "Mordialloc", + "state_province": "VIC", + "postal_code": "3195", + "country": "Australia", + "longitude": 145.0971283, + "latitude": -38.0086876, + "phone": "+61 435 985 423", + "website_url": "http://www.braesidebrewingco.com.au/", + "state": "VIC", + "street": "43 Governor Road" + }, + { + "id": "8bf7e66c-cc29-473a-adf8-b63cf5cc3e69", + "name": "Braindead Brewing", + "brewery_type": "brewpub", + "address_1": "2625 Main St", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75226-1411", + "country": "United States", + "longitude": -96.7854202, + "latitude": 32.7838067, + "phone": "4692869005", + "website_url": "http://www.braindeadbrewing.com", + "state": "Texas", + "street": "2625 Main St" + }, + { + "id": "fb57bce5-e778-441a-bb33-335fda062351", + "name": "Branagan's Brewery LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sandy", + "state_province": "Utah", + "postal_code": "84092-3902", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8018086491", + "website_url": "http://www.branagansbrewery.com", + "state": "Utah", + "street": null + }, + { + "id": "81500d43-53c1-4643-a63f-4a7809e93494", + "name": "Branch & Bone Artisan Ales", + "brewery_type": "micro", + "address_1": "905 Wayne Ave", + "address_2": null, + "address_3": null, + "city": "Dayton", + "state_province": "Ohio", + "postal_code": "45410-1247", + "country": "United States", + "longitude": -84.17723419, + "latitude": 39.75223085, + "phone": "9377237608", + "website_url": "http://www.branchandboneales.com", + "state": "Ohio", + "street": "905 Wayne Ave" + }, + { + "id": "3fa1aa68-187c-40cd-8add-16217f46b8b4", + "name": "Branch and Blade Brewing Company", + "brewery_type": "micro", + "address_1": "17 Bradco Street", + "address_2": null, + "address_3": null, + "city": "Keene", + "state_province": "New Hampshire", + "postal_code": "03431-4094", + "country": "United States", + "longitude": -72.29685082, + "latitude": 42.9185404, + "phone": "6033543478", + "website_url": "http://babbrewingstore.square.site/", + "state": "New Hampshire", + "street": "17 Bradco Street" + }, + { + "id": "fd53e0a1-4115-4ebf-938b-e57335d40bbd", + "name": "Branchline Brewing Company", + "brewery_type": "closed", + "address_1": "3633 Metro Pkwy", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78247-3502", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3612908817", + "website_url": "http://www.branchlinebrewing.com", + "state": "Texas", + "street": "3633 Metro Pkwy" + }, + { + "id": "b5afc4b3-221a-49d5-8e55-c6a374ea45d2", + "name": "Braselton Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Braselton", + "state_province": "Georgia", + "postal_code": "30517", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7068701458", + "website_url": null, + "state": "Georgia", + "street": null + }, + { + "id": "43c4cb4d-476d-4fce-989b-824dcc289d8f", + "name": "Brash", + "brewery_type": "micro", + "address_1": "508 W Crosstimbers St", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77018-5521", + "country": "United States", + "longitude": -95.40974166, + "latitude": 29.82727538, + "phone": null, + "website_url": "http://www.brashbeers.com", + "state": "Texas", + "street": "508 W Crosstimbers St" + }, + { + "id": "b1730024-0cb6-4c63-9f4e-8b3d97b85378", + "name": "Brass Brewing Company", + "brewery_type": "micro", + "address_1": "318 E Colorado Ave", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80903-1949", + "country": "United States", + "longitude": -104.8189706, + "latitude": 38.8326073, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "318 E Colorado Ave" + }, + { + "id": "f7dcf65f-f9cc-4996-9b0d-3c212bb42c52", + "name": "Brass Cannon Brewing", + "brewery_type": "micro", + "address_1": "5476 Mooretown Rd", + "address_2": null, + "address_3": null, + "city": "Williamsburg", + "state_province": "Virginia", + "postal_code": "23188-2108", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7575660001", + "website_url": "http://www.brasscannonbrewing.com", + "state": "Virginia", + "street": "5476 Mooretown Rd" + }, + { + "id": "f5d52737-490c-48c3-9da4-eff851e726f1", + "name": "Brass Foundry Brewing Co.", + "brewery_type": "micro", + "address_1": "8441 Wayzata Blvd Ste 290", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55426", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7633504153", + "website_url": "http://www.brassfoundrybrewing.com", + "state": "Minnesota", + "street": "8441 Wayzata Blvd Ste 290" + }, + { + "id": "2de96915-c8c4-478d-ad67-0c8aa5828ab4", + "name": "Brass Ring Brewery", + "brewery_type": "brewpub", + "address_1": "2404 Eastern Ave SE", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49507-3632", + "country": "United States", + "longitude": -85.64741488, + "latitude": 42.91987422, + "phone": "6164601587", + "website_url": "http://www.brassringbrewing.com", + "state": "Michigan", + "street": "2404 Eastern Ave SE" + }, + { + "id": "a07b2855-4e8f-48f2-b7b1-9563f007fca3", + "name": "Brass Works Brewing Company LLC", + "brewery_type": "micro", + "address_1": "2066 Thomaston Ave", + "address_2": null, + "address_3": null, + "city": "Waterbury", + "state_province": "Connecticut", + "postal_code": "06704-1038", + "country": "United States", + "longitude": -73.05753662, + "latitude": 41.59747633, + "phone": "2035276223", + "website_url": "http://www.brassworksbrewing.com", + "state": "Connecticut", + "street": "2066 Thomaston Ave" + }, + { + "id": "887aaeec-884a-4a60-986a-daf4333cca08", + "name": "Brasserie L'Etrange", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Prairieville", + "state_province": "Louisiana", + "postal_code": "70769-6114", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2258002337", + "website_url": null, + "state": "Louisiana", + "street": null + }, + { + "id": "27db60fa-fed9-40c9-9603-3c4fe5e2bfac", + "name": "Brasserie Saint James", + "brewery_type": "brewpub", + "address_1": "901 S Center St", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89501-2307", + "country": "United States", + "longitude": -119.8074531, + "latitude": 39.51655075, + "phone": "7753488888", + "website_url": "http://www.brasseriesaintjames.com", + "state": "Nevada", + "street": "901 S Center St" + }, + { + "id": "8f5fba6f-f57d-46d3-99ce-4f2657f8f955", + "name": "Brasserie Saint James - The Saint Barrelhouse", + "brewery_type": "micro", + "address_1": "761 S. Virginia St", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89501-2307", + "country": "United States", + "longitude": -119.8090037, + "latitude": 39.5173316, + "phone": "7753488888", + "website_url": null, + "state": "Nevada", + "street": "761 S. Virginia St" + }, + { + "id": "f55a16cf-5ce0-46d4-a5eb-8240c01721f7", + "name": "Brau Brothers Brewing Co", + "brewery_type": "micro", + "address_1": "1010 E Southview Dr", + "address_2": null, + "address_3": null, + "city": "Marshall", + "state_province": "Minnesota", + "postal_code": "56258-2401", + "country": "United States", + "longitude": -95.77836474, + "latitude": 44.43647118, + "phone": "5077472337", + "website_url": "http://www.braubeer.com", + "state": "Minnesota", + "street": "1010 E Southview Dr" + }, + { + "id": "a6e8b0d5-d8ba-4206-bd8b-31c1e8cf1061", + "name": "Brauerei Forst", + "brewery_type": "large", + "address_1": "Via Venosta 10", + "address_2": null, + "address_3": null, + "city": "Lagundo", + "state_province": "Bolzano", + "postal_code": "39022", + "country": "Italy", + "longitude": 46.677512016349, + "latitude": 11.117459635399, + "phone": "+39 0473 260 111", + "website_url": "https://www.forst.it/", + "state": "Bolzano", + "street": "Via Venosta 10" + }, + { + "id": "3c8d576b-ea2d-4b65-b72b-e6dad5f6451a", + "name": "Brausch Brewery", + "brewery_type": "micro", + "address_1": "1030 S South St", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "Ohio", + "postal_code": "45177-2924", + "country": "United States", + "longitude": -83.83091585, + "latitude": 39.43274712, + "phone": "9373022337", + "website_url": null, + "state": "Ohio", + "street": "1030 S South St" + }, + { + "id": "83ff5520-de51-442e-87d8-6921ba2dcf0a", + "name": "Braven Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11237", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9292956673", + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "2d36ca84-78df-4614-8f48-69f58bb4e556", + "name": "Braven Brewing Company", + "brewery_type": "contract", + "address_1": "362 Jefferson St # 320", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11237-2312", + "country": "United States", + "longitude": -73.92464725, + "latitude": 40.70559895, + "phone": "9292956673", + "website_url": "http://www.bravenbrewing.com", + "state": "New York", + "street": "362 Jefferson St # 320" + }, + { + "id": "b6841bf6-a236-4b83-bb06-769f2742d44a", + "name": "Bravery Brewing", + "brewery_type": "micro", + "address_1": "42705 8th St W", + "address_2": null, + "address_3": null, + "city": "Lancaster", + "state_province": "California", + "postal_code": "93534-7184", + "country": "United States", + "longitude": -118.1456072, + "latitude": 34.6582797, + "phone": "6619514677", + "website_url": "http://www.braverybrewing.com", + "state": "California", + "street": "42705 8th St W" + }, + { + "id": "cf316d34-15c7-4e3c-a9d2-c76ee68a7d81", + "name": "Bravo! Restaurant & Cafe", + "brewery_type": "brewpub", + "address_1": "5402 Portage Rd", + "address_2": null, + "address_3": null, + "city": "Portage", + "state_province": "Michigan", + "postal_code": "49002-1718", + "country": "United States", + "longitude": -85.56023131, + "latitude": 42.23892918, + "phone": "2693447700", + "website_url": "http://www.bravokalamazoo.com", + "state": "Michigan", + "street": "5402 Portage Rd" + }, + { + "id": "a3e3c312-6c4e-4bf1-b096-d1517e6f0bf5", + "name": "Brawling Bear", + "brewery_type": "micro", + "address_1": "15 Fulks Corner Ave", + "address_2": null, + "address_3": null, + "city": "Gaithersburg", + "state_province": "Maryland", + "postal_code": "20877-2067", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2408423272", + "website_url": "http://www.brawlingbear.com", + "state": "Maryland", + "street": "15 Fulks Corner Ave" + }, + { + "id": "7ba02a8c-09ee-459f-8bcc-22e89244e857", + "name": "Braxton Brewing Company", + "brewery_type": "micro", + "address_1": "27 W 7th St", + "address_2": null, + "address_3": null, + "city": "Covington", + "state_province": "Kentucky", + "postal_code": "41011-2301", + "country": "United States", + "longitude": -84.51080761, + "latitude": 39.08292505, + "phone": "859615600", + "website_url": "http://www.braxtonbrewing.com", + "state": "Kentucky", + "street": "27 W 7th St" + }, + { + "id": "52de8cdc-981e-41ae-a9ea-3f80f8b7ffb1", + "name": "Braxton Labs", + "brewery_type": "micro", + "address_1": "95 Riviera Dr", + "address_2": null, + "address_3": null, + "city": "Bellevue", + "state_province": "Kentucky", + "postal_code": "41073-1337", + "country": "United States", + "longitude": -84.4872671, + "latitude": 39.10060941, + "phone": "859615600", + "website_url": null, + "state": "Kentucky", + "street": "95 Riviera Dr" + }, + { + "id": "beebe3c2-f56b-4f0b-ab06-983ac5259c3a", + "name": "Brazo Fuerte Artisanal Beer", + "brewery_type": "proprietor", + "address_1": "15 Main St Ste 125", + "address_2": null, + "address_3": null, + "city": "Watertown", + "state_province": "Massachusetts", + "postal_code": "02472-4403", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6176008140", + "website_url": "http://www.brazofuertebeer.com", + "state": "Massachusetts", + "street": "15 Main St Ste 125" + }, + { + "id": "1cf71f6d-be03-4c41-894d-b496b5358dfe", + "name": "Brazos Valley Brewing Company", + "brewery_type": "micro", + "address_1": "201 W 1st St", + "address_2": null, + "address_3": null, + "city": "Brenham", + "state_province": "Texas", + "postal_code": "77833", + "country": "United States", + "longitude": -96.3986627, + "latitude": 30.16447, + "phone": "9799871133", + "website_url": "http://www.brazosvalleybrewery.com", + "state": "Texas", + "street": "201 W 1st St" + }, + { + "id": "d5768396-cf5b-4a56-8481-294fd49b0b77", + "name": "Breaker Brewing Company", + "brewery_type": "brewpub", + "address_1": "787 E Northampton St", + "address_2": null, + "address_3": null, + "city": "Wilkes Barre", + "state_province": "Pennsylvania", + "postal_code": "18702-7521", + "country": "United States", + "longitude": -75.8739352, + "latitude": 41.2338879, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": "787 E Northampton St" + }, + { + "id": "3595f655-43bc-4516-bad6-6b761f21715a", + "name": "Breaking Point Brewery", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Cleveland Heights", + "state_province": "Ohio", + "postal_code": "44121-1706", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2162357411", + "website_url": null, + "state": "Ohio", + "street": null + }, + { + "id": "2cae687c-f263-42ef-91e8-e0bfd27148ce", + "name": "Breaking Waves Brewing", + "brewery_type": "closed", + "address_1": "3388 NW Byron St #100", + "address_2": null, + "address_3": null, + "city": "Silverdale", + "state_province": "Washington", + "postal_code": "98383", + "country": "United States", + "longitude": -122.6956621, + "latitude": 47.64553955, + "phone": "3602862670", + "website_url": "https://breakingwavesbrewing.com", + "state": "Washington", + "street": "3388 NW Byron St #100" + }, + { + "id": "45249b6e-b1d0-4c2f-a60e-ab483169287f", + "name": "Breakside Brewery", + "brewery_type": "brewpub", + "address_1": "820 NE Dekum St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97211-3630", + "country": "United States", + "longitude": -122.657117, + "latitude": 45.5716938, + "phone": "5037196475", + "website_url": "http://www.breakside.com", + "state": "Oregon", + "street": "820 NE Dekum St" + }, + { + "id": "8e2d0758-3a90-41e6-ae8b-14e673e8a383", + "name": "Breakside Brewery & Taproom", + "brewery_type": "regional", + "address_1": "5821 SE International Way", + "address_2": null, + "address_3": null, + "city": "Milwaukie", + "state_province": "Oregon", + "postal_code": "97222-4633", + "country": "United States", + "longitude": -122.6032529, + "latitude": 45.4317535, + "phone": "5037196475", + "website_url": "http://www.breakside.com", + "state": "Oregon", + "street": "5821 SE International Way" + }, + { + "id": "63e51d1b-b184-4f69-ac2f-cdda3f09a232", + "name": "Breakside Brewery Slabtown", + "brewery_type": "brewpub", + "address_1": "1570 NW 22nd Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97210-2369", + "country": "United States", + "longitude": -122.6966131, + "latitude": 45.53384986, + "phone": "5034447597", + "website_url": "http://breakside.com", + "state": "Oregon", + "street": "1570 NW 22nd Ave" + }, + { + "id": "87ea7a05-f276-4e84-8eb3-d56ebabc912a", + "name": "Breakwall Brewing Co.", + "brewery_type": "micro", + "address_1": "60b Glasshouse Rocks Road", + "address_2": null, + "address_3": null, + "city": "Narooma", + "state_province": "NSW", + "postal_code": "2546", + "country": "Australia", + "longitude": 150.1303063, + "latitude": -36.2316498, + "phone": null, + "website_url": "http://www.breakwallbrewingco.com.au/", + "state": "NSW", + "street": "60b Glasshouse Rocks Road" + }, + { + "id": "be80fa99-6add-4bbd-87f8-650047882214", + "name": "Breakwater Brewing Co", + "brewery_type": "brewpub", + "address_1": "101 N Coast Hwy Ste C140", + "address_2": null, + "address_3": null, + "city": "Oceanside", + "state_province": "California", + "postal_code": "92054-3015", + "country": "United States", + "longitude": -117.3791093, + "latitude": 33.19531474, + "phone": "7604336064", + "website_url": "http://www.breakwaterbrewing.com", + "state": "California", + "street": "101 N Coast Hwy Ste C140" + }, + { + "id": "74633f8b-4260-42f5-8c1d-04eda70a2ecb", + "name": "Breckenridge Brewery", + "brewery_type": "large", + "address_1": "2920 Brewery Ln", + "address_2": null, + "address_3": null, + "city": "Littleton", + "state_province": "Colorado", + "postal_code": "80120-2850", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3036232739", + "website_url": "http://www.breckenridgebrewery.com", + "state": "Colorado", + "street": "2920 Brewery Ln" + }, + { + "id": "4483d018-611f-4c98-a230-369b6fbe791d", + "name": "Breckenridge Brewery & Pub", + "brewery_type": "large", + "address_1": "600 S Main St", + "address_2": null, + "address_3": null, + "city": "Breckenridge", + "state_province": "Colorado", + "postal_code": "80424-0075", + "country": "United States", + "longitude": -106.0445665, + "latitude": 39.47620392, + "phone": "9704531550", + "website_url": "http://www.breckbrewpub.com", + "state": "Colorado", + "street": "600 S Main St" + }, + { + "id": "c2259afb-c17e-4b35-9098-95861dabe01d", + "name": "Breckenridge Brewery Ale & Game House", + "brewery_type": "brewpub", + "address_1": "200 Inverness Drive W Suite 100", + "address_2": null, + "address_3": null, + "city": "Englewood", + "state_province": "Colorado", + "postal_code": "80112", + "country": "United States", + "longitude": -104.8667328, + "latitude": 39.5706647, + "phone": "3033977801", + "website_url": "https://www.breckbrewinverness.com/", + "state": "Colorado", + "street": "200 Inverness Drive W Suite 100" + }, + { + "id": "ab0ef3cc-55ab-4663-9770-2af60573e5f7", + "name": "Brehon Brewhouse", + "brewery_type": "micro", + "address_1": "Dunelty", + "address_2": "Inniskeen", + "address_3": null, + "city": "Carrickmacross", + "state_province": "Monaghan", + "postal_code": "A91 E170", + "country": "Ireland", + "longitude": -6.635574, + "latitude": 53.980673, + "phone": "353868230914", + "website_url": "https://brehonbrewhouse.ie/", + "state": "Monaghan", + "street": "Dunelty" + }, + { + "id": "58d96e3e-6dae-4fae-a383-1a0c2c2edbf1", + "name": "Bremen Beer Ventures", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Key Biscayne", + "state_province": "Florida", + "postal_code": "33149-7213", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3059036996", + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "3fe061f6-7b81-4969-acde-93f045661cd5", + "name": "Bremer Brewing Company", + "brewery_type": "brewpub", + "address_1": "102 W Bremer Ave", + "address_2": null, + "address_3": null, + "city": "Waverly", + "state_province": "Iowa", + "postal_code": "50677-3318", + "country": "United States", + "longitude": -92.4723192, + "latitude": 42.7259202, + "phone": "3193522337", + "website_url": "https://www.bremerbrewingcompany.com", + "state": "Iowa", + "street": "102 W Bremer Ave" + }, + { + "id": "d2bbcb0a-59a1-481e-886a-df2a0decbbc8", + "name": "Brevard Brewing Co", + "brewery_type": "micro", + "address_1": "63 E Main St", + "address_2": null, + "address_3": null, + "city": "Brevard", + "state_province": "North Carolina", + "postal_code": "28712-3746", + "country": "United States", + "longitude": -82.7303593, + "latitude": 35.2319789, + "phone": null, + "website_url": "http://www.brevard-brewing.com", + "state": "North Carolina", + "street": "63 E Main St" + }, + { + "id": "19a59099-ee5b-49d8-8cda-6de8823876b6", + "name": "Brevet Brewing Co.", + "brewery_type": "micro", + "address_1": "18 Translink Drive", + "address_2": null, + "address_3": null, + "city": "Keilor Park", + "state_province": "VIC", + "postal_code": "3042", + "country": "Australia", + "longitude": 144.848697, + "latitude": -37.7224426, + "phone": "+61 3 9336 7077", + "website_url": "https://www.thebeerfactory.net.au/?utm_source=Google&utm_medium=Organic&utm_campaign=GMB", + "state": "VIC", + "street": "18 Translink Drive" + }, + { + "id": "da170deb-574e-4582-a365-b83058312b8b", + "name": "Brew 32", + "brewery_type": "brewpub", + "address_1": "1474 State Route 208", + "address_2": null, + "address_3": null, + "city": "Pulaski", + "state_province": "Pennsylvania", + "postal_code": "16143-4308", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7242528464", + "website_url": "http://Www.brew32craft.com", + "state": "Pennsylvania", + "street": "1474 State Route 208" + }, + { + "id": "c932db7a-8671-4052-ae9b-64ed0eb05e0b", + "name": "Brew Angels LLC", + "brewery_type": "brewpub", + "address_1": "6821 Caroline St", + "address_2": null, + "address_3": null, + "city": "Milton", + "state_province": "Florida", + "postal_code": "32570-2206", + "country": "United States", + "longitude": -87.038565, + "latitude": 30.621944, + "phone": "8505640034", + "website_url": null, + "state": "Florida", + "street": "6821 Caroline St" + }, + { + "id": "26baf7e9-4615-4874-84b7-4b718c84d5ea", + "name": "Brew Bus Brewing", + "brewery_type": "brewpub", + "address_1": "4101 N Florida Ave", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33603-3817", + "country": "United States", + "longitude": -82.4586495, + "latitude": 27.9826232, + "phone": "8139907310", + "website_url": "http://www.brewbususa.com", + "state": "Florida", + "street": "4101 N Florida Ave" + }, + { + "id": "2c0e680d-87ee-4bfc-ae5a-8dd62b43f3a3", + "name": "Brew D'Etat", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Burnsville", + "state_province": "Minnesota", + "postal_code": "55337", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4132072355", + "website_url": null, + "state": "Minnesota", + "street": null + }, + { + "id": "8aadd633-ee8b-4550-9b3a-ffdf6fee2b44", + "name": "Brew Detroit", + "brewery_type": "micro", + "address_1": "1401 Abbott St", + "address_2": null, + "address_3": null, + "city": "Detroit", + "state_province": "Michigan", + "postal_code": "48216-1946", + "country": "United States", + "longitude": -83.0619769, + "latitude": 42.32770289, + "phone": "3139747366", + "website_url": "http://www.brewdetroit.com", + "state": "Michigan", + "street": "1401 Abbott St" + }, + { + "id": "e9a7e33f-8187-4dba-9f5d-a6955fd566bc", + "name": "Brew Gentlemen", + "brewery_type": "micro", + "address_1": "512 Braddock Ave", + "address_2": null, + "address_3": null, + "city": "Braddock", + "state_province": "Pennsylvania", + "postal_code": "15104-1806", + "country": "United States", + "longitude": -79.8702107, + "latitude": 40.4041599, + "phone": "4128715075", + "website_url": "http://www.brewgentlemen.com", + "state": "Pennsylvania", + "street": "512 Braddock Ave" + }, + { + "id": "24809e21-a74e-4177-b138-99aae56fe7f9", + "name": "Brew House No 16", + "brewery_type": "brewpub", + "address_1": "831 N Calvert St", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21202-3705", + "country": "United States", + "longitude": -76.61271192, + "latitude": 39.29963095, + "phone": "4106594084", + "website_url": "http://www.brewhouseno16.com", + "state": "Maryland", + "street": "831 N Calvert St" + }, + { + "id": "f7977d73-f02d-4adb-b948-6080168f5545", + "name": "Brew Hub Taproom", + "brewery_type": "brewpub", + "address_1": "5656 Oakland Avenue", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63110", + "country": "United States", + "longitude": -90.28300053, + "latitude": 38.63049786, + "phone": "3148335453", + "website_url": "http://www.tapbrewhub.com", + "state": "Missouri", + "street": "5656 Oakland Avenue" + }, + { + "id": "42684296-1506-42cc-a14c-1cd31a69bfc4", + "name": "Brew Hub, LLC", + "brewery_type": "regional", + "address_1": "3900 Frontage Rd S", + "address_2": null, + "address_3": null, + "city": "Lakeland", + "state_province": "Florida", + "postal_code": "33815-3205", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8636987600", + "website_url": "http://www.brewhub.com", + "state": "Florida", + "street": "3900 Frontage Rd S" + }, + { + "id": "ec51ec32-1a6a-4e97-9571-70a81db3bec8", + "name": "Brew Keepers", + "brewery_type": "micro", + "address_1": "2245 Market St", + "address_2": null, + "address_3": null, + "city": "Wheeling", + "state_province": "West Virginia", + "postal_code": "26003-2866", + "country": "United States", + "longitude": -80.724774, + "latitude": 40.059259, + "phone": "7248098968", + "website_url": "https://www.facebook.com/BrewKeepers", + "state": "West Virginia", + "street": "2245 Market St" + }, + { + "id": "faf1bc0d-9c9d-4297-95cc-40f669107751", + "name": "Brew Kettle - Production Works", + "brewery_type": "micro", + "address_1": "20102 Progress Dr", + "address_2": null, + "address_3": null, + "city": "Strongsville", + "state_province": "Ohio", + "postal_code": "44149-3259", + "country": "United States", + "longitude": -81.84994566, + "latitude": 41.32637626, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": "20102 Progress Dr" + }, + { + "id": "ca1f9cfe-a140-49ae-a24a-443173fc662a", + "name": "Brew Lab", + "brewery_type": "brewpub", + "address_1": "7925 Marty St", + "address_2": null, + "address_3": null, + "city": "Overland Park", + "state_province": "Kansas", + "postal_code": "66204-3727", + "country": "United States", + "longitude": -94.66993927, + "latitude": 38.98568748, + "phone": "9134002343", + "website_url": "http://www.brewlabkc.com", + "state": "Kansas", + "street": "7925 Marty St" + }, + { + "id": "ff125d8f-74ad-4c15-8154-b5a4ef9d767f", + "name": "Brew Life Brewing", + "brewery_type": "micro", + "address_1": "5767 Beneva Rd", + "address_2": null, + "address_3": null, + "city": "Sarasota", + "state_province": "Florida", + "postal_code": "34233-4105", + "country": "United States", + "longitude": -82.49751806, + "latitude": 27.27001312, + "phone": "9419523831", + "website_url": "http://www.brewlifebrewing.com", + "state": "Florida", + "street": "5767 Beneva Rd" + }, + { + "id": "4694844c-ce2d-411f-9dce-22a5ff52802d", + "name": "Brew Link Brewing", + "brewery_type": "proprietor", + "address_1": "212 E. Main", + "address_2": null, + "address_3": null, + "city": "Plainfield", + "state_province": "Indiana", + "postal_code": "46168-9659", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3172037788", + "website_url": "http://www.brewlinkbrewing.com", + "state": "Indiana", + "street": "212 E. Main" + }, + { + "id": "89948fc1-81d5-4b23-ad27-5730b2872e33", + "name": "Brew Practitioners, LLC.", + "brewery_type": "micro", + "address_1": "36 Main St", + "address_2": null, + "address_3": null, + "city": "Florence", + "state_province": "Massachusetts", + "postal_code": "01062-3152", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4135842444", + "website_url": "http://www.brewpractitioners.com", + "state": "Massachusetts", + "street": "36 Main St" + }, + { + "id": "28af5586-7124-43e6-b99c-c91bc63b90d3", + "name": "Brew Pub and Kitchen", + "brewery_type": "brewpub", + "address_1": "117 W College Dr", + "address_2": null, + "address_3": null, + "city": "Durango", + "state_province": "Colorado", + "postal_code": "81301-5407", + "country": "United States", + "longitude": -107.8831549, + "latitude": 37.27036464, + "phone": "9702595959", + "website_url": "http://www.brewpubkitchen.com", + "state": "Colorado", + "street": "117 W College Dr" + }, + { + "id": "4f12d983-7c03-42f3-b6b3-929059fd798f", + "name": "Brew Rebellion", + "brewery_type": "micro", + "address_1": "33 S San Gorgonio Ave", + "address_2": null, + "address_3": null, + "city": "Banning", + "state_province": "California", + "postal_code": "92220-6001", + "country": "United States", + "longitude": -116.876825, + "latitude": 33.92568489, + "phone": "9519074844", + "website_url": null, + "state": "California", + "street": "33 S San Gorgonio Ave" + }, + { + "id": "0d4f2536-6686-4da4-a456-93da2a6faf53", + "name": "Brew Rebellion", + "brewery_type": "closed", + "address_1": "195 N Del Rosa Dr", + "address_2": null, + "address_3": null, + "city": "San Bernardino", + "state_province": "California", + "postal_code": "92408", + "country": "United States", + "longitude": -117.2511307, + "latitude": 34.10279311, + "phone": "9519074844", + "website_url": "http://www.brewrebellion.com", + "state": "California", + "street": "195 N Del Rosa Dr" + }, + { + "id": "8ecb30eb-3537-4b11-8925-b63f09a0b3c9", + "name": "Brew Republic Bierwerks", + "brewery_type": "brewpub", + "address_1": "15201 Potomac Town Pl Ste 120 Stonebridge @ Potomac Town Center", + "address_2": null, + "address_3": null, + "city": "Woodbridge", + "state_province": "Virginia", + "postal_code": "22191-6592", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7035947950", + "website_url": "http://brewrepublic.beer", + "state": "Virginia", + "street": "15201 Potomac Town Pl Ste 120 Stonebridge @ Potomac Town Center" + }, + { + "id": "87a67e8d-eb75-4c9a-b32d-0c4c55e884cc", + "name": "Brew Studio", + "brewery_type": "micro", + "address_1": "Meadowview Road", + "address_2": null, + "address_3": null, + "city": "Lancing", + "state_province": "West Sussex", + "postal_code": "BN15 0HU", + "country": "England", + "longitude": -0.330956, + "latitude": 50.838777, + "phone": "7980978350", + "website_url": "https://www.brewstudio.co.uk/", + "state": "West Sussex", + "street": "Meadowview Road" + }, + { + "id": "80792259-7b13-4e7c-a574-f044714302a4", + "name": "Brew Works of Fremont", + "brewery_type": "brewpub", + "address_1": "5909 S Warner Ave", + "address_2": null, + "address_3": null, + "city": "Fremont", + "state_province": "Michigan", + "postal_code": "49412", + "country": "United States", + "longitude": -85.94003325, + "latitude": 43.44380716, + "phone": "2313355105", + "website_url": "http://www.thecommonsoffremont.com", + "state": "Michigan", + "street": "5909 S Warner Ave" + }, + { + "id": "b41b75b3-1fda-4ccc-94b9-58ab8b9454c6", + "name": "Brewability Lab", + "brewery_type": "micro", + "address_1": "12445 E 39th Ave Unit 314", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80239-3456", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8163515085", + "website_url": "http://www.Brewabilitylab.com", + "state": "Colorado", + "street": "12445 E 39th Ave Unit 314" + }, + { + "id": "4d98fc4c-5c85-4cce-a092-b6d3a19ca70a", + "name": "BrewBakers Brewery", + "brewery_type": "closed", + "address_1": "11927 84th St NE", + "address_2": null, + "address_3": null, + "city": "Lake Stevens", + "state_province": "Washington", + "postal_code": "98258-8906", + "country": "United States", + "longitude": -122.0677165, + "latitude": 48.07328466, + "phone": "3606919025", + "website_url": "http://www.brewbakersbrewery.com", + "state": "Washington", + "street": "11927 84th St NE" + }, + { + "id": "879d91a6-e62d-43e4-863f-680eb6675d5b", + "name": "Brewbakers Brewing Co", + "brewery_type": "brewpub", + "address_1": "219 E Main St", + "address_2": null, + "address_3": null, + "city": "Visalia", + "state_province": "California", + "postal_code": "93291-6355", + "country": "United States", + "longitude": -119.2906961, + "latitude": 36.3300786, + "phone": "5596272739", + "website_url": "http://www.brewbakersbrewingco.com", + "state": "California", + "street": "219 E Main St" + }, + { + "id": "a19e46c7-9f1d-415c-995b-0415b85ca81c", + "name": "Brewcaipa Brewing Co.", + "brewery_type": "micro", + "address_1": "35058 Yucaipa Blvd", + "address_2": null, + "address_3": null, + "city": "Yucaipa", + "state_province": "California", + "postal_code": "92399-4337", + "country": "United States", + "longitude": -117.0403021, + "latitude": 34.033958, + "phone": "9092722337", + "website_url": "http://www.brewcaipa.com", + "state": "California", + "street": "35058 Yucaipa Blvd" + }, + { + "id": "6f1d6c06-0c99-49f9-b7a1-dfe34a9716b1", + "name": "Brewcult Brewing Co", + "brewery_type": "micro", + "address_1": "841 Sydney Road", + "address_2": null, + "address_3": null, + "city": "Brunswick", + "state_province": "VIC", + "postal_code": "3056", + "country": "Australia", + "longitude": 144.9637434, + "latitude": -37.7565629, + "phone": null, + "website_url": "http://subculturebrewing.com.au/", + "state": "VIC", + "street": "841 Sydney Road" + }, + { + "id": "a5485562-03fe-4578-856f-6005ff261cbb", + "name": "Brewdog", + "brewery_type": "micro", + "address_1": "1 Champ Street", + "address_2": null, + "address_3": null, + "city": "Coburg", + "state_province": "VIC", + "postal_code": "3058", + "country": "Australia", + "longitude": 144.9683229, + "latitude": -37.7367888, + "phone": "+61 3 8840 4896", + "website_url": "https://brewdogpentridge.com.au/?utm_campaign=gmb&utm_medium=organic&utm_source=google&utm_term=plcid_13735306181176417173", + "state": "VIC", + "street": "1 Champ Street" + }, + { + "id": "7db0fe62-fb6c-4949-9a25-d0f318959a1b", + "name": "BrewDog Berlin Mitte", + "brewery_type": "bar", + "address_1": "Ackerstraße 29", + "address_2": null, + "address_3": null, + "city": "Berlin", + "state_province": "Berlin", + "postal_code": "10115", + "country": "Germany", + "longitude": 52.5170043, + "latitude": 13.4132225, + "phone": "493048477770", + "website_url": "https://www.brewdog.com/eu_de/brewdog-berlin-mitte", + "state": "Berlin", + "street": "Ackerstraße 29" + }, + { + "id": "e58d60d7-92f7-4f8d-8a1a-6d02c25a32ee", + "name": "BrewDog Berlin Mitte", + "brewery_type": "bar", + "address_1": "Ackerstraße 29", + "address_2": null, + "address_3": null, + "city": "Berlin", + "state_province": "Berlin", + "postal_code": "10115", + "country": "Germany", + "longitude": 52.5170043, + "latitude": 13.4132225, + "phone": "493048477770", + "website_url": "https://www.brewdog.com/eu_de/brewdog-berlin-mitte", + "state": "Berlin", + "street": "Ackerstraße 29" + }, + { + "id": "5bf2b773-e8ae-4849-b2f7-dfc3b4163deb", + "name": "BrewDog Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "96 Gender Rd", + "address_2": null, + "address_3": null, + "city": "Canal Winchester", + "state_province": "Ohio", + "postal_code": "43110-7539", + "country": "United States", + "longitude": -82.8311352, + "latitude": 39.8225954, + "phone": "6149083059", + "website_url": "http://www.brewdog.com/usa", + "state": "Ohio", + "street": "96 Gender Rd" + }, + { + "id": "b235bb6e-ff89-4860-923a-71c5ab5f183d", + "name": "Brewdog Short North & Kennels", + "brewery_type": "brewpub", + "address_1": "1175 N High St", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43201", + "country": "United States", + "longitude": -83.00579, + "latitude": 39.98637, + "phone": "614-908-3053", + "website_url": "https://www.brewdog.com/", + "state": "Ohio", + "street": "1175 N High St" + }, + { + "id": "cd7c55be-0a82-43f9-bba7-b43eff43c24d", + "name": "Brewed By Gnomes", + "brewery_type": "contract", + "address_1": "1735 SE 33rd Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97214-5024", + "country": "United States", + "longitude": -122.6308531, + "latitude": 45.51021595, + "phone": null, + "website_url": null, + "state": "Oregon", + "street": "1735 SE 33rd Ave" + }, + { + "id": "61c3bf4d-95e0-4afd-8d93-b2764ae5eba5", + "name": "Brewer's Alley Restaurant and Brewery", + "brewery_type": "brewpub", + "address_1": "124 N Market St", + "address_2": null, + "address_3": null, + "city": "Frederick", + "state_province": "Maryland", + "postal_code": "21701-5422", + "country": "United States", + "longitude": -77.41045515, + "latitude": 39.41607325, + "phone": "3016310089", + "website_url": "http://www.brewers-alley.com", + "state": "Maryland", + "street": "124 N Market St" + }, + { + "id": "a82d1b5a-b811-4252-97e4-af7887f2ffab", + "name": "Brewerie at Union Station, The", + "brewery_type": "brewpub", + "address_1": "123 W 14th St", + "address_2": null, + "address_3": null, + "city": "Erie", + "state_province": "Pennsylvania", + "postal_code": "16501-1717", + "country": "United States", + "longitude": -80.0819415, + "latitude": 42.1211965, + "phone": "8144542200", + "website_url": "http://www.brewerie.com", + "state": "Pennsylvania", + "street": "123 W 14th St" + }, + { + "id": "3c666d47-78ff-4e4c-a1f0-c5a9aeb9ad9c", + "name": "Brewers", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28217", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "North Carolina", + "street": null + }, + { + "id": "7d21464e-0574-44fb-901c-2481e843d8ec", + "name": "Brewers Tasting Room", + "brewery_type": "brewpub", + "address_1": "11270 4th St N Ste 202", + "address_2": null, + "address_3": null, + "city": "Saint Petersburg", + "state_province": "Florida", + "postal_code": "33716-2937", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7278733900", + "website_url": "http://www.brewerstastingroom.com", + "state": "Florida", + "street": "11270 4th St N Ste 202" + }, + { + "id": "01684e03-04b3-45e2-92f8-2c6e57d49b5a", + "name": "Brewers Union Local 180", + "brewery_type": "brewpub", + "address_1": "48329 E 1st St", + "address_2": null, + "address_3": null, + "city": "Oakridge", + "state_province": "Oregon", + "postal_code": "97463-9700", + "country": "United States", + "longitude": -122.4568787, + "latitude": 43.7478831, + "phone": "5417822024", + "website_url": "http://www.brewersunion.com", + "state": "Oregon", + "street": "48329 E 1st St" + }, + { + "id": "cfac009a-caae-4462-beb3-1f603674e2a6", + "name": "Brewery 26", + "brewery_type": "micro", + "address_1": "5829 SE Powell Blvd", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97206", + "country": "United States", + "longitude": -122.60275, + "latitude": 45.49758, + "phone": "9712548488", + "website_url": "http://www.brewery26.com", + "state": "Oregon", + "street": "5829 SE Powell Blvd" + }, + { + "id": "9c2e1d47-fae6-463d-9f85-d95d6c6e1bdc", + "name": "Brewery 33 Hocking Hills, LLC", + "brewery_type": "micro", + "address_1": "12684 College Prospect Dr", + "address_2": null, + "address_3": null, + "city": "Logan", + "state_province": "Ohio", + "postal_code": "43138-8983", + "country": "United States", + "longitude": -82.44991565, + "latitude": 39.54378185, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": "12684 College Prospect Dr" + }, + { + "id": "4cd1320b-4f5f-4117-916f-d70be24a44bf", + "name": "Brewery 4 Two 4", + "brewery_type": "micro", + "address_1": "321 Douglas Ave Ste 120", + "address_2": null, + "address_3": null, + "city": "Holland", + "state_province": "Michigan", + "postal_code": "49424-6599", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6163777773", + "website_url": "http://brewery424.com", + "state": "Michigan", + "street": "321 Douglas Ave Ste 120" + }, + { + "id": "560bd628-7e50-4072-824d-9de843aeb13a", + "name": "Brewery 719", + "brewery_type": "micro", + "address_1": "817 E 3rd St", + "address_2": null, + "address_3": null, + "city": "Alliance", + "state_province": "Nebraska", + "postal_code": "69301-3945", + "country": "United States", + "longitude": -102.8602451, + "latitude": 42.0971391, + "phone": "3087612719", + "website_url": "http://www.brewery719.com", + "state": "Nebraska", + "street": "817 E 3rd St" + }, + { + "id": "b2e61351-5eb1-45ad-b20f-f4786be4a496", + "name": "Brewery 85", + "brewery_type": "micro", + "address_1": "6 Whitlee Ct", + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "South Carolina", + "postal_code": "29607-3791", + "country": "United States", + "longitude": -82.34915005, + "latitude": 34.8028183, + "phone": null, + "website_url": "http://www.brewery85.com", + "state": "South Carolina", + "street": "6 Whitlee Ct" + }, + { + "id": "affcbbea-9dce-435f-9440-d0964cebae7a", + "name": "Brewery 99", + "brewery_type": "micro", + "address_1": "417 Broad St Ste F", + "address_2": null, + "address_3": null, + "city": "New Bern", + "state_province": "North Carolina", + "postal_code": "28560-4900", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2522596393", + "website_url": "http://www.brewery99.com", + "state": "North Carolina", + "street": "417 Broad St Ste F" + }, + { + "id": "6b04fb31-0531-49fc-8dbf-517138e6c1dd", + "name": "Brewery ARS", + "brewery_type": "micro", + "address_1": "1927-29 W Passyunk Ave", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19145-3620", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2159605173", + "website_url": "http://breweryars.com", + "state": "Pennsylvania", + "street": "1927-29 W Passyunk Ave" + }, + { + "id": "43f8e8d9-501d-4980-bf70-e34eae21afa2", + "name": "Brewery At Abigaile", + "brewery_type": "brewpub", + "address_1": "1301 Manhattan Ave", + "address_2": null, + "address_3": null, + "city": "Hermosa Beach", + "state_province": "California", + "postal_code": "90254-3666", + "country": "United States", + "longitude": -118.4048656, + "latitude": 33.8734519, + "phone": "3107988227", + "website_url": "http://www.abigailerestaurant.com", + "state": "California", + "street": "1301 Manhattan Ave" + }, + { + "id": "0de9defa-ecfa-45b8-90e7-0857a6f28d41", + "name": "Brewery At Lake Tahoe", + "brewery_type": "brewpub", + "address_1": "3542 Lake Tahoe Blvd", + "address_2": null, + "address_3": null, + "city": "South Lake Tahoe", + "state_province": "California", + "postal_code": "96150-8900", + "country": "United States", + "longitude": -119.9619157, + "latitude": 38.94679433, + "phone": "5305444369", + "website_url": "http://www.brewerylaketahoe.com", + "state": "California", + "street": "3542 Lake Tahoe Blvd" + }, + { + "id": "bf4a35aa-c5ec-4f50-a64d-42400b752212", + "name": "Brewery At Simmzys Burbank", + "brewery_type": "brewpub", + "address_1": "3000 W Olive Ave", + "address_2": null, + "address_3": null, + "city": "Burbank", + "state_province": "California", + "postal_code": "91505-4537", + "country": "United States", + "longitude": -118.3336262, + "latitude": 34.1572656, + "phone": "8189622500", + "website_url": "http://www.Simmzys.com", + "state": "California", + "street": "3000 W Olive Ave" + }, + { + "id": "14864393-a19e-42f2-81ef-bf28407a3571", + "name": "Brewery At The Culinary Institute Of America", + "brewery_type": "brewpub", + "address_1": "1946 Campus Dr", + "address_2": null, + "address_3": null, + "city": "Hyde Park", + "state_province": "New York", + "postal_code": "12538", + "country": "United States", + "longitude": -73.9331926, + "latitude": 41.7459268, + "phone": null, + "website_url": null, + "state": "New York", + "street": "1946 Campus Dr" + }, + { + "id": "783c1657-bb0f-4718-87eb-676a8094d167", + "name": "Brewery Becker", + "brewery_type": "brewpub", + "address_1": "500 W Main St", + "address_2": null, + "address_3": null, + "city": "Brighton", + "state_province": "Michigan", + "postal_code": "48116-1471", + "country": "United States", + "longitude": -83.785481, + "latitude": 42.529522, + "phone": "8108440225", + "website_url": "http://www.brauereibecker.us", + "state": "Michigan", + "street": "500 W Main St" + }, + { + "id": "cbdfe3ef-928c-4444-b5f1-c1a2fcd3e14b", + "name": "Brewery Bhavana", + "brewery_type": "micro", + "address_1": "218 S Blount St", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27601", + "country": "United States", + "longitude": -78.6366938, + "latitude": 35.77786298, + "phone": "4154701370", + "website_url": "http://brewerybhavana.com", + "state": "North Carolina", + "street": "218 S Blount St" + }, + { + "id": "195554b8-264d-43d6-b26d-6bee62c41a8f", + "name": "Brewery Draconum", + "brewery_type": "micro", + "address_1": "24407 Main St # 09", + "address_2": null, + "address_3": null, + "city": "Newhall", + "state_province": "California", + "postal_code": "91321-2801", + "country": "United States", + "longitude": -118.5298732, + "latitude": 34.38122051, + "phone": "6619931846", + "website_url": null, + "state": "California", + "street": "24407 Main St # 09" + }, + { + "id": "88977bac-d0ac-41b8-bcde-bfc17bb0d043", + "name": "Brewery Emperial", + "brewery_type": "brewpub", + "address_1": "1829 Oak St", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64108", + "country": "United States", + "longitude": -94.57886314, + "latitude": 39.09119471, + "phone": "8169459625", + "website_url": "http://www.breweryemperial.com", + "state": "Missouri", + "street": "1829 Oak St" + }, + { + "id": "e0bf1313-ecf0-45c9-8b70-8ed121ec6a27", + "name": "Brewery Faisan", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Detroit", + "state_province": "Michigan", + "postal_code": "48207", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5867032030", + "website_url": "http://www.breweryfaisan.com", + "state": "Michigan", + "street": null + }, + { + "id": "189be7db-796b-40db-87bf-daac88a4fac7", + "name": "Brewery Ferment", + "brewery_type": "micro", + "address_1": "511 S Union St", + "address_2": null, + "address_3": null, + "city": "Traverse City", + "state_province": "Michigan", + "postal_code": "49684-3246", + "country": "United States", + "longitude": -85.62353552, + "latitude": 44.75888715, + "phone": "2317358113", + "website_url": "http://www.breweryferment.com", + "state": "Michigan", + "street": "511 S Union St" + }, + { + "id": "46f3fd8a-7cf1-489d-a8e5-de47f92ac020", + "name": "Brewery Legitimus", + "brewery_type": "micro", + "address_1": "283 Main St", + "address_2": null, + "address_3": null, + "city": "New Hartford", + "state_province": "Connecticut", + "postal_code": "06057-2750", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8608108894", + "website_url": "http://www.brewerylegitimus.com", + "state": "Connecticut", + "street": "283 Main St" + }, + { + "id": "ece3c7b9-4049-4a2d-b24e-d805797f9c3b", + "name": "Brewery Ommegang", + "brewery_type": "regional", + "address_1": "656 County Highway 33", + "address_2": null, + "address_3": null, + "city": "Cooperstown", + "state_province": "New York", + "postal_code": "13326-4737", + "country": "United States", + "longitude": -74.855063, + "latitude": 42.753418, + "phone": "8005441809", + "website_url": "http://www.ommegang.com", + "state": "New York", + "street": "656 County Highway 33" + }, + { + "id": "cdc4b4be-ac3e-4ee8-8d93-87e0d8f14f0c", + "name": "Brewery Resolute", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Stevens Point", + "state_province": "Wisconsin", + "postal_code": "54481-1843", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7153214617", + "website_url": null, + "state": "Wisconsin", + "street": null + }, + { + "id": "7086390e-9e2a-4730-a80c-0e4861967701", + "name": "Brewery Rickoli", + "brewery_type": "micro", + "address_1": "4335 Wadsworth Blvd", + "address_2": null, + "address_3": null, + "city": "Wheat Ridge", + "state_province": "Colorado", + "postal_code": "80033-4621", + "country": "United States", + "longitude": -105.0818046, + "latitude": 39.7757286, + "phone": "3034316862", + "website_url": "http://www.breweryrickoli.com", + "state": "Colorado", + "street": "4335 Wadsworth Blvd" + }, + { + "id": "e193cecd-958f-4820-97d3-df215dea84b5", + "name": "Brewery Silvaticus", + "brewery_type": "brewpub", + "address_1": "9 Water St", + "address_2": null, + "address_3": null, + "city": "Amesbury", + "state_province": "Massachusetts", + "postal_code": "01913-2936", + "country": "United States", + "longitude": -70.9295559, + "latitude": 42.8573815, + "phone": "9785042337", + "website_url": "http://www.silvaticusbeers.com", + "state": "Massachusetts", + "street": "9 Water St" + }, + { + "id": "b6de3e97-fdec-4ac0-924d-5775fa7006bf", + "name": "Brewery Terra Firma", + "brewery_type": "micro", + "address_1": "2959 Hartman Rd", + "address_2": null, + "address_3": null, + "city": "Traverse City", + "state_province": "Michigan", + "postal_code": "49685-8838", + "country": "United States", + "longitude": -85.63510581, + "latitude": 44.71509875, + "phone": "2319291600", + "website_url": "http://www.breweryterrafirma.com", + "state": "Michigan", + "street": "2959 Hartman Rd" + }, + { + "id": "3b19690b-d08f-4648-947e-d182ad865593", + "name": "Brewery Twenty Five", + "brewery_type": "micro", + "address_1": "106 3rd St", + "address_2": null, + "address_3": null, + "city": "Hollister", + "state_province": "California", + "postal_code": "95023", + "country": "United States", + "longitude": -121.4008369, + "latitude": 36.85359382, + "phone": "8316367640", + "website_url": "http://www.brewerytwentyfive.com", + "state": "California", + "street": "106 3rd St" + }, + { + "id": "6be8cb90-0919-46ce-af30-435d51aa06b8", + "name": "Brewery Vivant", + "brewery_type": "brewpub", + "address_1": "925 Cherry St SE", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49506-1403", + "country": "United States", + "longitude": -85.64683809, + "latitude": 42.95961591, + "phone": "6167191604", + "website_url": "http://www.breweryvivant.com", + "state": "Michigan", + "street": "925 Cherry St SE" + }, + { + "id": "f5876665-7981-4cf5-8a2e-400d7a05c29a", + "name": "Brewfinity Brewing Co", + "brewery_type": "brewpub", + "address_1": "N58 W39800 Industrial Rd Ste D", + "address_2": null, + "address_3": null, + "city": "Oconomowoc", + "state_province": "Wisconsin", + "postal_code": "53066", + "country": "United States", + "longitude": -88.537410730917, + "latitude": 43.126758239323, + "phone": "2624562843", + "website_url": "https://www.brewfinitybrewing.com", + "state": "Wisconsin", + "street": "N58 W39800 Industrial Rd Ste D" + }, + { + "id": "da86ddee-bb17-4143-a02e-195afa438c12", + "name": "Brewhaha JBay", + "brewery_type": "brewpub", + "address_1": "20 Da Gama Road", + "address_2": null, + "address_3": null, + "city": "Jeffreys Bay", + "state_province": "Eastern Cape", + "postal_code": "6330", + "country": "South Africa", + "longitude": 24.9258, + "latitude": -34.0514, + "phone": "+27 63 884 4969", + "website_url": "https://brewhahajbay.co.za/", + "state": "Eastern Cape", + "street": "20 Da Gama Road" + }, + { + "id": "4f9d7195-bc11-44ce-bf57-e95f243a7675", + "name": "Brewheim Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92806", + "country": "United States", + "longitude": -117.911732, + "latitude": 33.8347516, + "phone": null, + "website_url": "http://www.brewheim.com", + "state": "California", + "street": null + }, + { + "id": "7161fdb9-12ee-4062-bf83-1da557b5cab8", + "name": "Brewhogs Micro Brewery", + "brewery_type": "micro", + "address_1": "Unit 5", + "address_2": " 156 Saffier Street", + "address_3": "Jukskei Park", + "city": "Randburg", + "state_province": "Gauteng", + "postal_code": "2196", + "country": "South Africa", + "longitude": 28.0305, + "latitude": -26.0245, + "phone": "+27 82 853 5255", + "website_url": "https://www.brewhogs.co.za/", + "state": "Gauteng", + "street": "Unit 5" + }, + { + "id": "fe3c1834-e95f-4e16-bb58-56ffd676689c", + "name": "Brewhouse & Kitchen", + "brewery_type": "brewpub", + "address_1": "East Street", + "address_2": null, + "address_3": null, + "city": "Horsham", + "state_province": "West Sussex", + "postal_code": "RH12 1HL", + "country": "England", + "longitude": -0.327295, + "latitude": 51.061642, + "phone": "2073543761", + "website_url": "https://www.brewhouseandkitchen.com/", + "state": "West Sussex", + "street": "East Street" + }, + { + "id": "4012cd29-7e59-4c75-98ba-89ff53efe702", + "name": "Brewing Academy Of Montana At FVCC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Kalispell", + "state_province": "Montana", + "postal_code": "59901", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4067564359", + "website_url": "http://www.fvcc.edu", + "state": "Montana", + "street": null + }, + { + "id": "639813cf-a5a1-4209-8a21-6bb8fc99589f", + "name": "Brewing Brothers Ltd", + "brewery_type": "brewpub", + "address_1": "Queens Road", + "address_2": null, + "address_3": null, + "city": "Hastings", + "state_province": "East Sussex", + "postal_code": "TN34 1RL", + "country": "England", + "longitude": 0.584234, + "latitude": 50.860013, + "phone": "7985505810", + "website_url": "https://brewingbrothers.org/", + "state": "East Sussex", + "street": "Queens Road" + }, + { + "id": "b0c00edd-f8b2-430e-84ba-763823dcb731", + "name": "Brewing Tree Beer Company", + "brewery_type": "micro", + "address_1": "9278 Rockfish Valley Hwy", + "address_2": null, + "address_3": null, + "city": "Afton", + "state_province": "Virginia", + "postal_code": "22920", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5403810990", + "website_url": null, + "state": "Virginia", + "street": "9278 Rockfish Valley Hwy" + }, + { + "id": "970a920a-26a9-468b-b229-7f8c803f1a9f", + "name": "Brewjeria Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Hacienda Heights", + "state_province": "California", + "postal_code": "91745-1620", + "country": "United States", + "longitude": -117.9686755, + "latitude": 33.9930677, + "phone": null, + "website_url": "http://www.brewjeriacompany.com", + "state": "California", + "street": null + }, + { + "id": "4cd2e7c4-0973-4e3a-9d8f-ef2f207b89ea", + "name": "BrewLAB", + "brewery_type": "micro", + "address_1": "4191 Carpinteria Ave Ste 8", + "address_2": null, + "address_3": null, + "city": "Carpinteria", + "state_province": "California", + "postal_code": "93013-3302", + "country": "United States", + "longitude": -119.5340743, + "latitude": 34.40388565, + "phone": null, + "website_url": "http://www.brewlabcraft.com/", + "state": "California", + "street": "4191 Carpinteria Ave Ste 8" + }, + { + "id": "411eadd9-073f-4b6a-8f17-db0bc6b91708", + "name": "Brewmanity Beer Co.", + "brewery_type": "micro", + "address_1": "50 Tope Street", + "address_2": null, + "address_3": null, + "city": "South Melbourne", + "state_province": "VIC", + "postal_code": "3205", + "country": "Australia", + "longitude": 144.9629367, + "latitude": -37.8305483, + "phone": "+61 3 8652 8325", + "website_url": "https://brewmanity.com.au/", + "state": "VIC", + "street": "50 Tope Street" + }, + { + "id": "dc230b28-7686-4c2f-897c-fd54afd55e33", + "name": "Brewmasters Tavern / Brewmasters Brewing Services", + "brewery_type": "micro", + "address_1": "4 Main St", + "address_2": null, + "address_3": null, + "city": "Williamsburg", + "state_province": "Massachusetts", + "postal_code": "01096-9428", + "country": "United States", + "longitude": -72.7305059, + "latitude": 42.3923659, + "phone": "4132682199", + "website_url": null, + "state": "Massachusetts", + "street": "4 Main St" + }, + { + "id": "d4603870-fec1-49ce-9137-6c1e1f0efc2e", + "name": "Brewmented", + "brewery_type": "micro", + "address_1": "900 S Hover St Ste C", + "address_2": null, + "address_3": null, + "city": "Longmont", + "state_province": "Colorado", + "postal_code": "80501-7941", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8772579956", + "website_url": "http://www.brewmented.com", + "state": "Colorado", + "street": "900 S Hover St Ste C" + }, + { + "id": "91edce96-9b05-47fb-b160-efa8f5dfd2c2", + "name": "BrewPlan, Inc.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Onalaska", + "state_province": "Wisconsin", + "postal_code": "54650", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6083869430", + "website_url": "http://www.brewplan.com", + "state": "Wisconsin", + "street": null + }, + { + "id": "2c81530e-f7b2-4d1c-85ae-c351b12b11fc", + "name": "Brewpop Brewery", + "brewery_type": "brewpub", + "address_1": "2122 US Highway 92 W", + "address_2": null, + "address_3": null, + "city": "Auburndale", + "state_province": "Florida", + "postal_code": "33823-3962", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8636623864", + "website_url": "http://www.brewpop.com", + "state": "Florida", + "street": "2122 US Highway 92 W" + }, + { + "id": "d67247b7-20ad-4f3a-aefb-b1f5097f6005", + "name": "Brewport Brewing Co", + "brewery_type": "brewpub", + "address_1": "225 S Frontage Rd", + "address_2": null, + "address_3": null, + "city": "Bridgeport", + "state_province": "Connecticut", + "postal_code": "06604-5031", + "country": "United States", + "longitude": -73.19238627, + "latitude": 41.170877, + "phone": "2036124438", + "website_url": "http://www.brewportct.com", + "state": "Connecticut", + "street": "225 S Frontage Rd" + }, + { + "id": "c8741305-1bbf-4318-a202-1f08584ff983", + "name": "Brewpub Center Point", + "brewery_type": "brewpub", + "address_1": "2-5-8 Ukida", + "address_2": null, + "address_3": null, + "city": "Osaka", + "state_province": "Osaka", + "postal_code": "530-0021", + "country": "Japan", + "longitude": 135.5075634, + "latitude": 34.70979002, + "phone": "81664508296", + "website_url": "https://brewpub.co.jp/", + "state": "Osaka", + "street": "2-5-8 Ukida" + }, + { + "id": "241eadea-4c86-420f-9ce9-76eb2beed93c", + "name": "Brewpub In Planning - Birmingham", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Birmingham", + "state_province": "Alabama", + "postal_code": "35222", + "country": "United States", + "longitude": -86.8024326, + "latitude": 33.5206824, + "phone": "2565854531", + "website_url": null, + "state": "Alabama", + "street": null + }, + { + "id": "3701ef02-81a2-4d59-99ae-8344dc8b530b", + "name": "Brews Brothers", + "brewery_type": "brewpub", + "address_1": "2404 Strand St", + "address_2": null, + "address_3": null, + "city": "Galveston", + "state_province": "Texas", + "postal_code": "77550-1412", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4097632739", + "website_url": null, + "state": "Texas", + "street": "2404 Strand St" + }, + { + "id": "f5406382-8474-463c-b420-f743a82d9dfa", + "name": "BrewSA Brewing Co", + "brewery_type": "micro", + "address_1": "180 Woodcleft Ave", + "address_2": null, + "address_3": null, + "city": "Freeport", + "state_province": "New York", + "postal_code": "11520-6336", + "country": "United States", + "longitude": -73.582368, + "latitude": 40.635176, + "phone": "5163772751", + "website_url": "http://www.brewsa.com", + "state": "New York", + "street": "180 Woodcleft Ave" + }, + { + "id": "66d3ce30-cb04-4340-85ec-f3ab90c47c76", + "name": "Brewski Beers", + "brewery_type": "micro", + "address_1": "Cameron Street", + "address_2": null, + "address_3": null, + "city": "Coburg", + "state_province": "VIC", + "postal_code": "3058", + "country": "Australia", + "longitude": 144.9624512, + "latitude": -37.7534, + "phone": null, + "website_url": null, + "state": "VIC", + "street": "Cameron Street" + }, + { + "id": "f3598750-c881-4e7c-a2d5-c978c56416da", + "name": "Brewstel", + "brewery_type": "micro", + "address_1": "120 Davis Ave", + "address_2": null, + "address_3": null, + "city": "Elkins", + "state_province": "West Virginia", + "postal_code": "26241-3812", + "country": "United States", + "longitude": -79.849588, + "latitude": 38.923407, + "phone": "3049974769", + "website_url": "http://www.brewstel.com", + "state": "West Virginia", + "street": "120 Davis Ave" + }, + { + "id": "9032a86f-4b3d-42a0-b8f8-c41a82b1d027", + "name": "Brewster Bros Brewing Co", + "brewery_type": "micro", + "address_1": "402 W River St", + "address_2": null, + "address_3": null, + "city": "Chippewa Falls", + "state_province": "Wisconsin", + "postal_code": "54729-2355", + "country": "United States", + "longitude": -91.39646593, + "latitude": 44.93179462, + "phone": "7158615100", + "website_url": "http://www.chippewariverdistillery.com/beer/", + "state": "Wisconsin", + "street": "402 W River St" + }, + { + "id": "ab8115a1-d3ee-4d85-9914-ed54b78ed94f", + "name": "Brewster River Pub & Brewery", + "brewery_type": "brewpub", + "address_1": "4087 Vt Route 108 S", + "address_2": null, + "address_3": null, + "city": "Jeffersonville", + "state_province": "Vermont", + "postal_code": "05464-9509", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8026446366", + "website_url": "http://www.brewsterriverpubnbrewery.com", + "state": "Vermont", + "street": "4087 Vt Route 108 S" + }, + { + "id": "79ccf31c-2e69-4b6b-b63c-5f84093a0050", + "name": "Brewtality", + "brewery_type": "contract", + "address_1": "930 McLaughlin Ave", + "address_2": null, + "address_3": null, + "city": "San Jose", + "state_province": "California", + "postal_code": "95122-2611", + "country": "United States", + "longitude": -121.8541694, + "latitude": 37.3331712, + "phone": "3104023349", + "website_url": "http://www.brewtality.com", + "state": "California", + "street": "930 McLaughlin Ave" + }, + { + "id": "f208c762-c903-4be2-927b-47716692794d", + "name": "Brewtus Brewing Co", + "brewery_type": "micro", + "address_1": "23 Chestnut Ave", + "address_2": null, + "address_3": null, + "city": "Sharon", + "state_province": "Pennsylvania", + "postal_code": "16146-", + "country": "United States", + "longitude": -80.50749936, + "latitude": 41.23267888, + "phone": "7243086293", + "website_url": "http://www.brewtusbrewing.com", + "state": "Pennsylvania", + "street": "23 Chestnut Ave" + }, + { + "id": "0d045b05-7dbe-4eed-83a4-463235e042f6", + "name": "Brewvado Taproom", + "brewery_type": "micro", + "address_1": "135 Lopez Rd B", + "address_2": null, + "address_3": null, + "city": "Lopez Island", + "state_province": "Washington", + "postal_code": "98261-8290", + "country": "United States", + "longitude": -122.913356, + "latitude": 48.523402, + "phone": "3602288214", + "website_url": "https://www.facebook.com/Lopez-Island-Brewing-Company-and-Brewvado-Tap-Room-1507961149443612", + "state": "Washington", + "street": "135 Lopez Rd B" + }, + { + "id": "ff72584e-5eab-4569-8a39-9849f1a7841f", + "name": "Brewyard Beer Company LLC", + "brewery_type": "micro", + "address_1": "906 Western Ave", + "address_2": null, + "address_3": null, + "city": "Glendale", + "state_province": "California", + "postal_code": "91201", + "country": "United States", + "longitude": -118.3018112, + "latitude": 34.159644, + "phone": "8184099448", + "website_url": "http://www.brewyardbeercompany.com", + "state": "California", + "street": "906 Western Ave" + }, + { + "id": "797d3752-6296-481b-882a-d12fe725f83f", + "name": "Briar Common Brewery", + "brewery_type": "brewpub", + "address_1": "2298 N Clay St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80211-5122", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7204703731", + "website_url": "http://www.briarcommon.com", + "state": "Colorado", + "street": "2298 N Clay St" + }, + { + "id": "c6a922ef-6ab8-4a8a-a5a3-119a9ab17359", + "name": "BriarBrothers Brewing Company", + "brewery_type": "micro", + "address_1": "50 Elk Street", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14210", + "country": "United States", + "longitude": -78.8516267, + "latitude": 42.8698783, + "phone": "7162170585", + "website_url": "https://briarbrothersbrewing.com", + "state": "New York", + "street": "50 Elk Street" + }, + { + "id": "1c3dbf61-31ac-41fc-a21f-d29b9bb6a663", + "name": "BriarScratch Brewing", + "brewery_type": "micro", + "address_1": "Highway 25", + "address_2": null, + "address_3": null, + "city": "Cottontown", + "state_province": "Tennessee", + "postal_code": "37048", + "country": "United States", + "longitude": -86.53805, + "latitude": 36.4514343, + "phone": "6153191563", + "website_url": "http://www.briarscratchbrewing.com", + "state": "Tennessee", + "street": "Highway 25" + }, + { + "id": "943e18a6-f4e8-4651-b49e-1e0967cb687d", + "name": "Brice's Brewing Company", + "brewery_type": "micro", + "address_1": "1822 Garner Station Blvd", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27603-3643", + "country": "United States", + "longitude": -78.65871577, + "latitude": 35.72493108, + "phone": "9842001803", + "website_url": "http://www.bricesbrewing.com", + "state": "North Carolina", + "street": "1822 Garner Station Blvd" + }, + { + "id": "eb63b691-1cd1-4bae-9ae7-e5d4e20259e5", + "name": "Brick & Mortar Brewing Company", + "brewery_type": "micro", + "address_1": "212 E Washington St", + "address_2": null, + "address_3": null, + "city": "Suffolk", + "state_province": "Virginia", + "postal_code": "23434-4514", + "country": "United States", + "longitude": -76.57994305, + "latitude": 36.72740683, + "phone": "7575331173", + "website_url": null, + "state": "Virginia", + "street": "212 E Washington St" + }, + { + "id": "6d20287b-6572-4b77-bb8d-97068a3ba8b1", + "name": "Brick and Barrel", + "brewery_type": "micro", + "address_1": "1844 Columbus Rd", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44113-2412", + "country": "United States", + "longitude": -81.7008861, + "latitude": 41.4895629, + "phone": "5039270629", + "website_url": "http://www.brickandbarrelbrewing.com", + "state": "Ohio", + "street": "1844 Columbus Rd" + }, + { + "id": "776e95e1-cb7b-4a88-89a6-9829bde7a4f2", + "name": "Brick and Feather Brewery", + "brewery_type": "micro", + "address_1": "78 11th St", + "address_2": null, + "address_3": null, + "city": "Turners Falls", + "state_province": "Massachusetts", + "postal_code": "01376-1020", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4138632574", + "website_url": "http://www.brickandfeatherbrewery.com", + "state": "Massachusetts", + "street": "78 11th St" + }, + { + "id": "41bd989c-397a-4327-9d06-b6ebd0428261", + "name": "Brick House Brewery and Restaurant", + "brewery_type": "brewpub", + "address_1": "67 W Main St", + "address_2": null, + "address_3": null, + "city": "Patchogue", + "state_province": "New York", + "postal_code": "11772-3001", + "country": "United States", + "longitude": -73.01556054, + "latitude": 40.7657941, + "phone": "6314472337", + "website_url": "http://www.brickhousebrewery.com", + "state": "New York", + "street": "67 W Main St" + }, + { + "id": "1175a260-0f9f-487f-be30-c8ea146908da", + "name": "Brick Lane Brewing", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Melbourne", + "state_province": "VIC", + "postal_code": "3000", + "country": "Australia", + "longitude": 144.9564333, + "latitude": -37.8077895, + "phone": "+61 3 9525 0938", + "website_url": "https://bricklanebrewing.com/pages/brick-lane-shed", + "state": "VIC", + "street": null + }, + { + "id": "5db17581-4733-49e0-ac36-d6df692948de", + "name": "Brick Oven Pizza Co / Brick & Forge Brewing", + "brewery_type": "brewpub", + "address_1": "814 US-62", + "address_2": null, + "address_3": null, + "city": "Harrison", + "state_province": "Arkansas", + "postal_code": "72601", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8702364200", + "website_url": null, + "state": "Arkansas", + "street": "814 US-62" + }, + { + "id": "0bc7e210-353b-4a28-a801-58028431f2bc", + "name": "Brick Oven Pizza Co / Brick & Forge Brewing", + "brewery_type": "brewpub", + "address_1": "2410 Linwood Dr", + "address_2": null, + "address_3": null, + "city": "Paragould", + "state_province": "Arkansas", + "postal_code": "72450-6122", + "country": "United States", + "longitude": -90.52047972, + "latitude": 36.03163581, + "phone": "8702364200", + "website_url": "http://www.brickovenpizzacompany.com", + "state": "Arkansas", + "street": "2410 Linwood Dr" + }, + { + "id": "505fb24a-cf9f-4668-845c-6a7533b2f7a5", + "name": "Brick Oven Pizza Co/ Brick & Forge Brewing", + "brewery_type": "brewpub", + "address_1": "4714 S 14th St", + "address_2": null, + "address_3": null, + "city": "Abilene", + "state_province": "Texas", + "postal_code": "79605-4733", + "country": "United States", + "longitude": -99.78335777, + "latitude": 32.42968055, + "phone": "8702364200", + "website_url": null, + "state": "Texas", + "street": "4714 S 14th St" + }, + { + "id": "8652536e-e81b-446d-bd70-a7ed43b8898a", + "name": "Brick Vault Brewery & BBQ", + "brewery_type": "brewpub", + "address_1": "102 NW 1st St Highway 90W", + "address_2": null, + "address_3": null, + "city": "Marathon", + "state_province": "Texas", + "postal_code": "79842", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4323864205", + "website_url": "http://www.gagehotel.com", + "state": "Texas", + "street": "102 NW 1st St Highway 90W" + }, + { + "id": "fa8b32bf-0499-4fdb-990e-a2b1d1fead6c", + "name": "Brick West Brewing Co", + "brewery_type": "micro", + "address_1": "1318 W 1st Ave", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99201", + "country": "United States", + "longitude": -117.4318785, + "latitude": 47.65762329, + "phone": "5092792982", + "website_url": "https://www.brickwestbrewingco.com", + "state": "Washington", + "street": "1318 W 1st Ave" + }, + { + "id": "f86a5689-c7fb-4cf8-9966-053f968d65f3", + "name": "Brick Works Brewing and Eats", + "brewery_type": "brewpub", + "address_1": "230 S Dupont Blvd", + "address_2": null, + "address_3": null, + "city": "Smyrna", + "state_province": "Delaware", + "postal_code": "19977-1573", + "country": "United States", + "longitude": -75.60080124, + "latitude": 39.29825995, + "phone": "3025082523", + "website_url": "http://www.brickworksde.com", + "state": "Delaware", + "street": "230 S Dupont Blvd" + }, + { + "id": "3a4d9601-a590-40f3-b6ba-5551188fd6b3", + "name": "BrickHaven Brewing Company", + "brewery_type": "micro", + "address_1": "200 E Jefferson St", + "address_2": null, + "address_3": null, + "city": "Grand Ledge", + "state_province": "Michigan", + "postal_code": "48837-1537", + "country": "United States", + "longitude": -84.745273, + "latitude": 42.752301, + "phone": "5179251319", + "website_url": null, + "state": "Michigan", + "street": "200 E Jefferson St" + }, + { + "id": "c1923f43-b220-46ec-aa43-0a93cb4ebd07", + "name": "Brickhouse Restaurant and Brewery", + "brewery_type": "brewpub", + "address_1": "241 Union Square", + "address_2": null, + "address_3": null, + "city": "Milford", + "state_province": "New Hampshire", + "postal_code": "03055", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6036722270", + "website_url": null, + "state": "New Hampshire", + "street": "241 Union Square" + }, + { + "id": "df1088cc-00ba-4947-8239-a4b7ddcfb966", + "name": "Brickside Brewery", + "brewery_type": "micro", + "address_1": "64 Gratiot Street", + "address_2": null, + "address_3": null, + "city": "Copper Harbor", + "state_province": "Michigan", + "postal_code": "49918", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9062894772", + "website_url": "http://www.bricksidebrewery.com", + "state": "Michigan", + "street": "64 Gratiot Street" + }, + { + "id": "567ae586-5467-47bb-8ef1-9fdad82f5647", + "name": "BrickStone Brewery", + "brewery_type": "micro", + "address_1": "572 Brewery Ln", + "address_2": null, + "address_3": null, + "city": "Bourbonnais", + "state_province": "Illinois", + "postal_code": "60914-2196", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8159369277", + "website_url": null, + "state": "Illinois", + "street": "572 Brewery Ln" + }, + { + "id": "2c0d7a26-0890-40f6-8f9e-7b3bb1975f68", + "name": "BrickStone Brewery Brewpub", + "brewery_type": "brewpub", + "address_1": "557 William Latham Dr", + "address_2": null, + "address_3": null, + "city": "Bourbonnais", + "state_province": "Illinois", + "postal_code": "60914-2319", + "country": "United States", + "longitude": -87.881654, + "latitude": 41.162675, + "phone": "8159369277", + "website_url": "http://www.brickstonebrewery.com", + "state": "Illinois", + "street": "557 William Latham Dr" + }, + { + "id": "1d7e7d19-91e3-4752-9fb0-9454fad1aff8", + "name": "Bricktown Brewery", + "brewery_type": "brewpub", + "address_1": "1 Remington Pl", + "address_2": null, + "address_3": null, + "city": "Oklahoma City", + "state_province": "Oklahoma", + "postal_code": "73111", + "country": "United States", + "longitude": -97.471261, + "latitude": 35.5277209, + "phone": "4054194449", + "website_url": "http://www.bricktownbrewery.com", + "state": "Oklahoma", + "street": "1 Remington Pl" + }, + { + "id": "4468dae2-ef14-4570-af79-812226eaabd1", + "name": "Bricktown Brewery", + "brewery_type": "brewpub", + "address_1": "1 N Oklahoma Ave", + "address_2": null, + "address_3": null, + "city": "Oklahoma City", + "state_province": "Oklahoma", + "postal_code": "73104-2413", + "country": "United States", + "longitude": -97.510181, + "latitude": 35.567702, + "phone": "4052322739", + "website_url": "http://www.bricktownbrewery.com", + "state": "Oklahoma", + "street": "1 N Oklahoma Ave" + }, + { + "id": "433a8b85-87b2-4b73-87c9-c2c35570a544", + "name": "Bricktowne Brewing Co", + "brewery_type": "brewpub", + "address_1": "111 E 8th St", + "address_2": null, + "address_3": null, + "city": "Medford", + "state_province": "Oregon", + "postal_code": "97501-7201", + "country": "United States", + "longitude": -122.8721525, + "latitude": 42.32544541, + "phone": "5419732377", + "website_url": "http://www.bricktownebeer.com", + "state": "Oregon", + "street": "111 E 8th St" + }, + { + "id": "77565858-e764-4dfd-9657-1a21fc5f7eb5", + "name": "Brickway Brewery and Distillery", + "brewery_type": "micro", + "address_1": "1116 Jackson St", + "address_2": null, + "address_3": null, + "city": "Omaha", + "state_province": "Nebraska", + "postal_code": "68102-2825", + "country": "United States", + "longitude": -95.93090524, + "latitude": 41.25449082, + "phone": "4029332613", + "website_url": "http://www.drinkbrickway.com", + "state": "Nebraska", + "street": "1116 Jackson St" + }, + { + "id": "e3b138f0-4abd-4e23-b04d-4aac36e1c63d", + "name": "Brickyard Brewing Company", + "brewery_type": "brewpub", + "address_1": "436 Center St", + "address_2": null, + "address_3": null, + "city": "Lewiston", + "state_province": "New York", + "postal_code": "14092-1604", + "country": "United States", + "longitude": -79.04306419, + "latitude": 43.1729222, + "phone": "7167547227", + "website_url": "http://www.brickyardbrewingcompany.com", + "state": "New York", + "street": "436 Center St" + }, + { + "id": "1fe308b9-913a-4251-bd2c-b58b956258f1", + "name": "Bridal Veil Brewing", + "brewery_type": "closed", + "address_1": "5040 Ca-140 Ste C", + "address_2": null, + "address_3": null, + "city": "Mariposa", + "state_province": "California", + "postal_code": "95338", + "country": "United States", + "longitude": -119.9655984, + "latitude": 37.4858541, + "phone": "2099667837", + "website_url": "http://www.facebook.com/Bridal-Veil-Brewing-114925729113371", + "state": "California", + "street": "5040 Ca-140 Ste C" + }, + { + "id": "30077396-1359-483b-b4a5-e015ac0f60e2", + "name": "Bridewell Brewery", + "brewery_type": "micro", + "address_1": "Bridewell Lane", + "address_2": null, + "address_3": null, + "city": "Clifden", + "state_province": "Galway", + "postal_code": "H71 AW08", + "country": "Ireland", + "longitude": -10.02041542, + "latitude": 53.4871487, + "phone": "353871279346", + "website_url": "https://www.bridewellbrewery.ie/", + "state": "Galway", + "street": "Bridewell Lane" + }, + { + "id": "589c2190-6d97-4f2b-802d-2eaa6b282baf", + "name": "Bridge 99 Brewery", + "brewery_type": "micro", + "address_1": "63063 Layton Ave", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97701-7087", + "country": "United States", + "longitude": -121.2916707, + "latitude": 44.09103738, + "phone": "5412801690", + "website_url": null, + "state": "Oregon", + "street": "63063 Layton Ave" + }, + { + "id": "087e2086-aafc-4aa7-b97c-8703f89aa199", + "name": "Bridge And Tunnel Brewery", + "brewery_type": "micro", + "address_1": "15-35 Decatur St", + "address_2": null, + "address_3": null, + "city": "Ridgewood", + "state_province": "New York", + "postal_code": "11385-5818", + "country": "United States", + "longitude": -73.9017521, + "latitude": 40.6943348, + "phone": "3473928593", + "website_url": "http://www.bridgeandtunnelbrewery.com", + "state": "New York", + "street": "15-35 Decatur St" + }, + { + "id": "6c2e3bd6-08af-43b8-881b-35a6342be026", + "name": "Bridge Brew Works", + "brewery_type": "micro", + "address_1": "335 Nick Rahall Greenway", + "address_2": null, + "address_3": null, + "city": "Fayetteville", + "state_province": "West Virginia", + "postal_code": "25840-1617", + "country": "United States", + "longitude": -81.113708, + "latitude": 38.0164353, + "phone": "3042822201", + "website_url": "http://www.bridgebrewworks.com", + "state": "West Virginia", + "street": "335 Nick Rahall Greenway" + }, + { + "id": "89a7f139-0e06-4216-9d68-0b13aa5102f1", + "name": "Bridge Road Brewers", + "brewery_type": "micro", + "address_1": "42 Ford Street", + "address_2": null, + "address_3": null, + "city": "Beechworth", + "state_province": "VIC", + "postal_code": "3747", + "country": "Australia", + "longitude": 146.6862229, + "latitude": -36.3607187, + "phone": "+61 3 5728 2703", + "website_url": "http://www.bridgeroadbrewers.com.au/", + "state": "VIC", + "street": "42 Ford Street" + }, + { + "id": "b3b5f9f6-ffbf-484f-add2-3ee88b6f8de2", + "name": "Bridge Street Brewery", + "brewery_type": "brewpub", + "address_1": "1 Bridge Street", + "address_2": "South End", + "address_3": null, + "city": "Gqeberha", + "state_province": "Eastern Cape", + "postal_code": "6001", + "country": "South Africa", + "longitude": 25.6212, + "latitude": -33.9694, + "phone": "+27 41 581 0361", + "website_url": "https://bridgestreet.co.za/", + "state": "Eastern Cape", + "street": "1 Bridge Street" + }, + { + "id": "e635be49-6e8e-4697-a457-f8febe304d66", + "name": "BridgePort Brewing Co", + "brewery_type": "regional", + "address_1": "1318 NW Northrup St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97209-2808", + "country": "United States", + "longitude": -122.6848601, + "latitude": 45.53133335, + "phone": "5032417179", + "website_url": "http://www.bridgeportbrew.com", + "state": "Oregon", + "street": "1318 NW Northrup St" + }, + { + "id": "9396e1c1-49d3-4169-8f7c-c8cb5d53af3a", + "name": "Bridger Brewing Company", + "brewery_type": "brewpub", + "address_1": "1609 S 11th Ave", + "address_2": null, + "address_3": null, + "city": "Bozeman", + "state_province": "Montana", + "postal_code": "59715-5466", + "country": "United States", + "longitude": -111.0526959, + "latitude": 45.6627215, + "phone": "4065872124", + "website_url": "http://www.bridgerbrewing.com", + "state": "Montana", + "street": "1609 S 11th Ave" + }, + { + "id": "1d80031e-2255-4467-8cd2-cd8e3194289e", + "name": "Brieux Carre Brewing Company", + "brewery_type": "micro", + "address_1": "2115 Decatur St", + "address_2": null, + "address_3": null, + "city": "New Orleans", + "state_province": "Louisiana", + "postal_code": "70116", + "country": "United States", + "longitude": -90.0572496, + "latitude": 29.9627851, + "phone": "5043044242", + "website_url": "http://www.brieuxcarre.com", + "state": "Louisiana", + "street": "2115 Decatur St" + }, + { + "id": "aaf2382f-cfd7-4218-a571-120982815d6a", + "name": "Brigadoon Brewery & Brew School", + "brewery_type": "micro", + "address_1": "4808 Fairmont Pkwy Ste 112", + "address_2": null, + "address_3": null, + "city": "Pasadena", + "state_province": "Texas", + "postal_code": "77505-3722", + "country": "United States", + "longitude": -95.1511925, + "latitude": 29.6501134, + "phone": "9368940425", + "website_url": "http://www.brigadoonbrewery.com", + "state": "Texas", + "street": "4808 Fairmont Pkwy Ste 112" + }, + { + "id": "ae6a20ab-dac6-442b-b569-08b54a35311b", + "name": "Bright Brewery", + "brewery_type": "micro", + "address_1": "121 Great Alpine Road", + "address_2": null, + "address_3": null, + "city": "Bright", + "state_province": "VIC", + "postal_code": "3741", + "country": "Australia", + "longitude": 146.9618432, + "latitude": -36.726437, + "phone": "+61 3 5755 1301", + "website_url": "https://brightbrewery.com.au/", + "state": "VIC", + "street": "121 Great Alpine Road" + }, + { + "id": "573c1ccf-e13b-4084-be06-3e4b4cf6c848", + "name": "Bright Ideas Brewing", + "brewery_type": "micro", + "address_1": "111 Mass Moca Way", + "address_2": null, + "address_3": null, + "city": "North Adams", + "state_province": "Massachusetts", + "postal_code": "01247-2411", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4133464460", + "website_url": "http://www.brightideasbrewing.com", + "state": "Massachusetts", + "street": "111 Mass Moca Way" + }, + { + "id": "488ed63b-a706-4519-9f97-3d03b224e7a6", + "name": "Bright Light Brewing Company", + "brewery_type": "micro", + "address_1": "444 W Russel St Ste 102", + "address_2": null, + "address_3": null, + "city": "Fayetteville", + "state_province": "North Carolina", + "postal_code": "28301", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9103390464", + "website_url": null, + "state": "North Carolina", + "street": "444 W Russel St Ste 102" + }, + { + "id": "28862a02-5d35-4a4a-833b-acd94dfbb4a0", + "name": "Bright Penny Brewing Company", + "brewery_type": "contract", + "address_1": "309 W Graham St", + "address_2": null, + "address_3": null, + "city": "Mebane", + "state_province": "North Carolina", + "postal_code": "27302-2311", + "country": "United States", + "longitude": -79.27030152, + "latitude": 36.09926877, + "phone": null, + "website_url": "http://www.brightpennybrewing.com", + "state": "North Carolina", + "street": "309 W Graham St" + }, + { + "id": "34110279-e23c-4e08-b7b1-79da0196ee17", + "name": "Brighter Day's Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "New Port Richey", + "state_province": "Florida", + "postal_code": "34655-3717", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7272242027", + "website_url": "http://www.brighterdaysbeer.com", + "state": "Florida", + "street": null + }, + { + "id": "21236bbe-320b-4986-9212-e70f63425fd3", + "name": "Brighton Bier Brewery", + "brewery_type": "micro", + "address_1": "Roedean Road", + "address_2": null, + "address_3": null, + "city": "Brighton", + "state_province": "East Sussex", + "postal_code": "BN2 5RU", + "country": "England", + "longitude": -0.106288, + "latitude": 50.817144, + "phone": "1273567374", + "website_url": "https://www.brightonbier.com/", + "state": "East Sussex", + "street": "Roedean Road" + }, + { + "id": "befb66c9-be92-4e98-be8c-f201b38c775c", + "name": "Brim Kitchen and Brewery", + "brewery_type": "brewpub", + "address_1": "3941 Erie St", + "address_2": null, + "address_3": null, + "city": "Willoughby", + "state_province": "Ohio", + "postal_code": "44094-7704", + "country": "United States", + "longitude": -81.40637701, + "latitude": 41.64346969, + "phone": "4402068183", + "website_url": "http://www.brimbrewery.com", + "state": "Ohio", + "street": "3941 Erie St" + }, + { + "id": "1271139e-aebf-4d4b-9ba1-b3ef3f2973c2", + "name": "Brindle Haus Brewing Company", + "brewery_type": "micro", + "address_1": "377 S Union St", + "address_2": null, + "address_3": null, + "city": "Spencerport", + "state_province": "New York", + "postal_code": "14559-1970", + "country": "United States", + "longitude": -77.804122, + "latitude": 43.185296, + "phone": "5855076665", + "website_url": "http://www.brindlehausbrewing.com", + "state": "New York", + "street": "377 S Union St" + }, + { + "id": "54028e4d-c6db-43f2-a3f8-75474a41a5d6", + "name": "Brink Brewing Company", + "brewery_type": "micro", + "address_1": "5905 Hamilton Ave", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45224-3045", + "country": "United States", + "longitude": -84.545876, + "latitude": 39.192788, + "phone": "5138823334", + "website_url": "http://www.brinkbrewing.com", + "state": "Ohio", + "street": "5905 Hamilton Ave" + }, + { + "id": "7f4e86f7-bd61-41f3-9cfa-b0c5ee669924", + "name": "Brinx Jones Brewery", + "brewery_type": "micro", + "address_1": "613 E Landis Ave", + "address_2": null, + "address_3": null, + "city": "Vineland", + "state_province": "New Jersey", + "postal_code": "08360", + "country": "United States", + "longitude": -75.02304749, + "latitude": 39.485955, + "phone": "8564056993", + "website_url": "http://www.brinxjones.com", + "state": "New Jersey", + "street": "613 E Landis Ave" + }, + { + "id": "0c97fff4-cab4-4997-89ec-9f99ea4c761f", + "name": "Brioux City Brewery", + "brewery_type": "micro", + "address_1": "1306 Court St", + "address_2": null, + "address_3": null, + "city": "Sioux City", + "state_province": "Iowa", + "postal_code": "51105", + "country": "United States", + "longitude": -96.39640025, + "latitude": 42.50441425, + "phone": "7122779568", + "website_url": "http://www.briouxcitybrewery.com", + "state": "Iowa", + "street": "1306 Court St" + }, + { + "id": "6f027886-d3c7-44e7-85c6-b9e7b157d583", + "name": "Brisbane Brewing Co.", + "brewery_type": "micro", + "address_1": "601 Stanley Street", + "address_2": null, + "address_3": null, + "city": "Woolloongabba", + "state_province": "QLD", + "postal_code": "4102", + "country": "Australia", + "longitude": 153.0293223, + "latitude": -27.4857695, + "phone": "+61 7 3891 1011", + "website_url": "https://www.brisbanebrewing.com.au/", + "state": "QLD", + "street": "601 Stanley Street" + }, + { + "id": "c6284312-d384-4e8f-bd67-b4869c58dc38", + "name": "Bristol Brewing Co", + "brewery_type": "micro", + "address_1": "1604 S Cascade Ave", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80905-2237", + "country": "United States", + "longitude": -104.827401, + "latitude": 38.8108617, + "phone": "7196332555", + "website_url": "http://www.bristolbrewing.com", + "state": "Colorado", + "street": "1604 S Cascade Ave" + }, + { + "id": "67622c1d-43c9-44a5-b40c-490f79ae89c3", + "name": "Bristol Station Brews & Taproom", + "brewery_type": "micro", + "address_1": "41 Piedmont Ave", + "address_2": null, + "address_3": null, + "city": "Bristol", + "state_province": "Virginia", + "postal_code": "24201-4160", + "country": "United States", + "longitude": -82.1842085, + "latitude": 36.59629295, + "phone": "2766081220", + "website_url": "http://www.bristolbrew.com", + "state": "Virginia", + "street": "41 Piedmont Ave" + }, + { + "id": "0b3fde08-24cd-4523-b824-cf558568a608", + "name": "Brite Eyes Brewing Co", + "brewery_type": "brewpub", + "address_1": "1156 S Burdick St", + "address_2": null, + "address_3": null, + "city": "Kalamazoo", + "state_province": "Michigan", + "postal_code": "49001-2741", + "country": "United States", + "longitude": -85.582846, + "latitude": 42.27977268, + "phone": "2692205001", + "website_url": null, + "state": "Michigan", + "street": "1156 S Burdick St" + }, + { + "id": "8e778ec9-3331-41b5-a22f-aa985f8e81f5", + "name": "British Bulldog Brewery", + "brewery_type": "micro", + "address_1": "14540 Camaren Park Dr", + "address_2": null, + "address_3": null, + "city": "Chico", + "state_province": "California", + "postal_code": "95973-8835", + "country": "United States", + "longitude": -121.8468316, + "latitude": 39.83081138, + "phone": "5308928759", + "website_url": "http://www.britishbulldogbrewery.com", + "state": "California", + "street": "14540 Camaren Park Dr" + }, + { + "id": "971c6b97-d931-4818-a791-769261b62ade", + "name": "Brix City Brewing", + "brewery_type": "micro", + "address_1": "4 Alsan Way", + "address_2": null, + "address_3": null, + "city": "Little Ferry", + "state_province": "New Jersey", + "postal_code": "07643-1001", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2014400865", + "website_url": "http://www.brixcitybrewing.com", + "state": "New Jersey", + "street": "4 Alsan Way" + }, + { + "id": "78e02a64-1880-42f7-8562-9dca8ccbb670", + "name": "Brix Distillers", + "brewery_type": "micro", + "address_1": "350 Bourke Street", + "address_2": null, + "address_3": null, + "city": "Surry Hills", + "state_province": "NSW", + "postal_code": "2010", + "country": "Australia", + "longitude": 151.2165581, + "latitude": -33.8829022, + "phone": "+61 2 9360 5441", + "website_url": "http://www.brixdistillers.com/", + "state": "NSW", + "street": "350 Bourke Street" + }, + { + "id": "01dc9824-efc8-4ee4-a90a-a67d11bec14d", + "name": "Brixton Brewing", + "brewery_type": "brewpub", + "address_1": "165 Brighton Ave", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "Pennsylvania", + "postal_code": "15074-2203", + "country": "United States", + "longitude": -80.2828549, + "latitude": 40.70091875, + "phone": "7247282227", + "website_url": "http://www.brixtonbrewing.com", + "state": "Pennsylvania", + "street": "165 Brighton Ave" + }, + { + "id": "1fe01316-a2ee-428b-8200-ba3f054eda6d", + "name": "BRLO Brwhouse", + "brewery_type": "large", + "address_1": "Schöneberger Str. 16", + "address_2": null, + "address_3": null, + "city": "Berlin", + "state_province": "Berlin", + "postal_code": "10963", + "country": "Germany", + "longitude": 52.4995161, + "latitude": 13.4168836, + "phone": "493055577606", + "website_url": "https://www.brlo.de/gastronomien/brlo-brwhouse", + "state": "Berlin", + "street": "Schöneberger Str. 16" + }, + { + "id": "307847a0-c60b-43e8-a42d-b8f6b5fb3092", + "name": "BRLO Brwhouse", + "brewery_type": "large", + "address_1": "Schöneberger Str. 16", + "address_2": null, + "address_3": null, + "city": "Berlin", + "state_province": "Berlin", + "postal_code": "10963", + "country": "Germany", + "longitude": 52.4995161, + "latitude": 13.4168836, + "phone": "493055577606", + "website_url": "https://www.brlo.de/gastronomien/brlo-brwhouse", + "state": "Berlin", + "street": "Schöneberger Str. 16" + }, + { + "id": "9fb357eb-965e-4920-81d0-256910248fc0", + "name": "Broad Brook Brewing Company", + "brewery_type": "micro", + "address_1": "915 South St", + "address_2": null, + "address_3": null, + "city": "Suffield", + "state_province": "Connecticut", + "postal_code": "06078", + "country": "United States", + "longitude": -72.66266463, + "latitude": 41.96200785, + "phone": "8606231000", + "website_url": "https://www.broadbrookbrewing.com", + "state": "Connecticut", + "street": "915 South St" + }, + { + "id": "f4daf3e7-c246-47ec-9d2b-6fd01519d8ac", + "name": "Broad Leaf Farm Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "South Glastonbury", + "state_province": "Connecticut", + "postal_code": "06073-2017", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2158057228", + "website_url": null, + "state": "Connecticut", + "street": null + }, + { + "id": "0a1f49af-8c69-4316-bb3d-1042c42b3d03", + "name": "Broad Ripple Brewing Co", + "brewery_type": "brewpub", + "address_1": "842 E 65th St", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46220-1674", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3172532739", + "website_url": null, + "state": "Indiana", + "street": "842 E 65th St" + }, + { + "id": "5d8946d2-ed0c-404b-9ae9-3e8626089ca8", + "name": "Broadway Brewery", + "brewery_type": "brewpub", + "address_1": "816 E Broadway Ste B", + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "Missouri", + "postal_code": "65201-4898", + "country": "United States", + "longitude": -92.327968, + "latitude": 38.951342, + "phone": "5734435054", + "website_url": "http://www.broadwaybrewery.com", + "state": "Missouri", + "street": "816 E Broadway Ste B" + }, + { + "id": "b14a1304-1e82-4f22-977e-618499c78e40", + "name": "Brocklebank Craft Brewing", + "brewery_type": "micro", + "address_1": "357 Dickerman Hill Rd", + "address_2": null, + "address_3": null, + "city": "Chelsea", + "state_province": "Vermont", + "postal_code": "05038-9098", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8026854838", + "website_url": "http://www.brocklebankvt.com", + "state": "Vermont", + "street": "357 Dickerman Hill Rd" + }, + { + "id": "45b4f628-b1fb-4d61-baf9-29b557e987ad", + "name": "Brockopp Brewing", + "brewery_type": "nano", + "address_1": "114 Main St E", + "address_2": null, + "address_3": null, + "city": "Valley City", + "state_province": "North Dakota", + "postal_code": "58072-3450", + "country": "United States", + "longitude": -98.00272896, + "latitude": 46.92586281, + "phone": null, + "website_url": "https://www.facebook.com/BrockoppBrewing", + "state": "North Dakota", + "street": "114 Main St E" + }, + { + "id": "d9c5233b-82a3-4e20-9c2b-55a8aa8ac12a", + "name": "Brogans Way", + "brewery_type": "micro", + "address_1": "61 North Street", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "VIC", + "postal_code": "3121", + "country": "Australia", + "longitude": 145.012002, + "latitude": -37.816305, + "phone": "+61 3 9428 8173", + "website_url": "http://www.brogansway.com.au/", + "state": "VIC", + "street": "61 North Street" + }, + { + "id": "54e647b1-1abf-4e19-ba1b-5adc6f6b421a", + "name": "Broken Arrow Brewing Co.", + "brewery_type": "micro", + "address_1": "333 W Dallas St", + "address_2": null, + "address_3": null, + "city": "Broken Arrow", + "state_province": "Oklahoma", + "postal_code": "74012-4026", + "country": "United States", + "longitude": -95.79448895, + "latitude": 36.0502662, + "phone": "9182868101", + "website_url": "http://www.brokenarrowbrewingco.com", + "state": "Oklahoma", + "street": "333 W Dallas St" + }, + { + "id": "4fedc121-217f-4a3e-b15e-bf8e45321ae3", + "name": "Broken Bat Brewing Company", + "brewery_type": "micro", + "address_1": "135 E Pittsburgh Ave", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53204-1430", + "country": "United States", + "longitude": -87.909966459756, + "latitude": 43.029348213407, + "phone": "4143169197", + "website_url": "http://www.brokenbatbrewery.com", + "state": "Wisconsin", + "street": "135 E Pittsburgh Ave" + }, + { + "id": "1fcf9708-65b6-42ff-955a-ed6db9c8f7b0", + "name": "Broken Bay Brewing Co.", + "brewery_type": "micro", + "address_1": "218 Harbord Road", + "address_2": null, + "address_3": null, + "city": "Brookvale", + "state_province": "NSW", + "postal_code": "2100", + "country": "Australia", + "longitude": 151.2796985, + "latitude": -33.7613359, + "phone": "+61 459 419 180", + "website_url": "http://www.brokenbaybrewing.com.au/", + "state": "NSW", + "street": "218 Harbord Road" + }, + { + "id": "7f231f44-ed48-46b8-a7a9-018e49d57206", + "name": "Broken Bow Brewery", + "brewery_type": "micro", + "address_1": "173 Marbledale Rd", + "address_2": null, + "address_3": null, + "city": "Tuckahoe", + "state_province": "New York", + "postal_code": "10707-3117", + "country": "United States", + "longitude": -73.8190325, + "latitude": 40.9549645, + "phone": "9142680900", + "website_url": "http://www.brokenbowbrewery.com", + "state": "New York", + "street": "173 Marbledale Rd" + }, + { + "id": "5e454282-526f-4a08-809c-3ec9c7280935", + "name": "Broken Brix", + "brewery_type": "micro", + "address_1": "225 W Main St", + "address_2": null, + "address_3": null, + "city": "Saint Charles", + "state_province": "Illinois", + "postal_code": "60174-4591", + "country": "United States", + "longitude": -88.316551689199, + "latitude": 41.913251186068, + "phone": "6303771338", + "website_url": "http://www.homebrewshopltd.com", + "state": "Illinois", + "street": "225 W Main St" + }, + { + "id": "3603ecd0-8aae-44ec-8098-058724396b05", + "name": "Broken Cauldron Taproom and Brewery", + "brewery_type": "micro", + "address_1": "1012 W Church St", + "address_2": null, + "address_3": null, + "city": "Orlando", + "state_province": "Florida", + "postal_code": "32805-2216", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4079861012", + "website_url": "http://www.brokencauldrontaproom.com", + "state": "Florida", + "street": "1012 W Church St" + }, + { + "id": "9f079ccb-8469-4fe9-a2d6-679f40facc8b", + "name": "Broken Chair Brewery", + "brewery_type": "micro", + "address_1": "424 East Penn Ave", + "address_2": null, + "address_3": null, + "city": "West Reading", + "state_province": "Pennsylvania", + "postal_code": "19611-1130", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4848663948", + "website_url": "http://www.brokenchairbrewery.com", + "state": "Pennsylvania", + "street": "424 East Penn Ave" + }, + { + "id": "6b1d81d7-c53e-48f0-b4ee-2b901aad23b0", + "name": "Broken Clock Brewing Cooperative", + "brewery_type": "micro", + "address_1": "3134 California St NE Ste 122", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55418-1789", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9703330135", + "website_url": "http://www.brokenclockbrew.com", + "state": "Minnesota", + "street": "3134 California St NE Ste 122" + }, + { + "id": "b8852f37-7df8-49d3-aac5-2ef793e589bf", + "name": "Broken Coat Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lake Worth", + "state_province": "Florida", + "postal_code": "33467-1002", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "afcf3dcd-8b14-4d09-87d0-eb17a55d3570", + "name": "Broken Compass Brewing", + "brewery_type": "micro", + "address_1": "68 Continental Ct Unit B-12", + "address_2": null, + "address_3": null, + "city": "Breckenridge", + "state_province": "Colorado", + "postal_code": "80424-8515", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5419053016", + "website_url": "http://www.brokencompassbrewing.com", + "state": "Colorado", + "street": "68 Continental Ct Unit B-12" + }, + { + "id": "33f3c0ee-2a5c-4698-8345-b4db2950dd0d", + "name": "Broken Gate Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21230-4464", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3103453570", + "website_url": null, + "state": "Maryland", + "street": null + }, + { + "id": "9852df06-5377-40b5-9ba1-e008bfa15d70", + "name": "Broken Goblet Brewing", + "brewery_type": "brewpub", + "address_1": "1500 Grundy Ln Bldg 1", + "address_2": null, + "address_3": null, + "city": "Bristol", + "state_province": "Pennsylvania", + "postal_code": "19007-1521", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2678125653", + "website_url": "http://www.brokengoblet.com", + "state": "Pennsylvania", + "street": "1500 Grundy Ln Bldg 1" + }, + { + "id": "0a97a495-46ba-44e9-8755-342aad301296", + "name": "Broken Horn Brewing Company", + "brewery_type": "micro", + "address_1": "201 S Mission St", + "address_2": null, + "address_3": null, + "city": "McCall", + "state_province": "Idaho", + "postal_code": "83638", + "country": "United States", + "longitude": -116.104522, + "latitude": 44.896502, + "phone": "2083155772", + "website_url": "http://www.brokenhornbrewing.com", + "state": "Idaho", + "street": "201 S Mission St" + }, + { + "id": "17ebc359-76a6-4d9d-b5e2-27255c25d82f", + "name": "Broken Plow Brewery", + "brewery_type": "micro", + "address_1": "4731 W 10th St Unit G", + "address_2": null, + "address_3": null, + "city": "Greeley", + "state_province": "Colorado", + "postal_code": "80634-2046", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9703978373", + "website_url": "http://www.brokenplowbrewery.com", + "state": "Colorado", + "street": "4731 W 10th St Unit G" + }, + { + "id": "cadced11-9b86-49ba-a329-f8dcdd51426f", + "name": "Broken Rock Brewery", + "brewery_type": "brewpub", + "address_1": "282 Grindstone Rd Bird Creek Farms", + "address_2": null, + "address_3": null, + "city": "Port Austin", + "state_province": "Michigan", + "postal_code": "48467-9390", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2487033114", + "website_url": "http://birdcreekfarms.com", + "state": "Michigan", + "street": "282 Grindstone Rd Bird Creek Farms" + }, + { + "id": "e6c27ded-48b1-4290-b7a2-3deda657a7b8", + "name": "Broken Symmetry Gastro Brewery", + "brewery_type": "brewpub", + "address_1": "5 Depot Pl", + "address_2": null, + "address_3": null, + "city": "Bethel", + "state_province": "Connecticut", + "postal_code": "06801-2507", + "country": "United States", + "longitude": -73.41424776, + "latitude": 41.37097334, + "phone": "2037311735", + "website_url": null, + "state": "Connecticut", + "street": "5 Depot Pl" + }, + { + "id": "e9d8d2f1-c53c-46f6-8195-3799d6c3e818", + "name": "Broken Tooth Brewing Co", + "brewery_type": "brewpub", + "address_1": "2021 Spar Ave", + "address_2": null, + "address_3": null, + "city": "Anchorage", + "state_province": "Alaska", + "postal_code": "99501-1815", + "country": "United States", + "longitude": -149.8437638, + "latitude": 61.2225517, + "phone": "9072784999", + "website_url": "https://brokentoothbrewing.net", + "state": "Alaska", + "street": "2021 Spar Ave" + }, + { + "id": "b57658a7-b65b-4b79-bb7e-e0fa8c401415", + "name": "Broken Trail Brewery & Distillery", + "brewery_type": "micro", + "address_1": "2921 Stanford Dr NE", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87107-1813", + "country": "United States", + "longitude": -106.6175091, + "latitude": 35.11440682, + "phone": "5052216281", + "website_url": "http://www.brokentrailspirits.com", + "state": "New Mexico", + "street": "2921 Stanford Dr NE" + }, + { + "id": "cab32ebd-9d23-425f-ad99-fc0959be6858", + "name": "Broken Wheel Brewery", + "brewery_type": "brewpub", + "address_1": "109 Tunica Dr E", + "address_2": null, + "address_3": null, + "city": "Marksville", + "state_province": "Louisiana", + "postal_code": "71351-3005", + "country": "United States", + "longitude": -92.06931518, + "latitude": 31.12386287, + "phone": "3182536543", + "website_url": null, + "state": "Louisiana", + "street": "109 Tunica Dr E" + }, + { + "id": "8964c08b-1e2a-4c49-9277-64f04c81e549", + "name": "Brokerage Brewing Company", + "brewery_type": "micro", + "address_1": "2516 Covington St", + "address_2": null, + "address_3": null, + "city": "West Lafayette", + "state_province": "Indiana", + "postal_code": "47906-1404", + "country": "United States", + "longitude": -86.91414689, + "latitude": 40.45361124, + "phone": "7652332767", + "website_url": "http://www.brokeragebrewing.com", + "state": "Indiana", + "street": "2516 Covington St" + }, + { + "id": "2ebb09a1-929b-4a1b-8f02-0a5536728b3c", + "name": "Brolly Brewing", + "brewery_type": "taproom", + "address_1": "Fittleworth Road", + "address_2": null, + "address_3": null, + "city": "Billinghurst", + "state_province": "West Sussex", + "postal_code": "RH14 0ES", + "country": "England", + "longitude": -0.521971, + "latitude": 51.010214, + "phone": "7720847017", + "website_url": "https://www.brollybrewing.co.uk/", + "state": "West Sussex", + "street": "Fittleworth Road" + }, + { + "id": "87a0e300-085f-4701-bfc1-cd9a4d45785a", + "name": "Bron Yr Aur Brewing", + "brewery_type": "micro", + "address_1": "12160 US Highway 12", + "address_2": null, + "address_3": null, + "city": "Naches", + "state_province": "Washington", + "postal_code": "98937-9222", + "country": "United States", + "longitude": -120.7393151, + "latitude": 46.73961615, + "phone": "5096531109", + "website_url": "https://bronyraurbrewing.com", + "state": "Washington", + "street": "12160 US Highway 12" + }, + { + "id": "68b69497-3a9f-49b3-a523-26bd686d4be2", + "name": "Bronze Owl Brewing", + "brewery_type": "brewpub", + "address_1": "506 Vine St", + "address_2": null, + "address_3": null, + "city": "Poplar Bluff", + "state_province": "Missouri", + "postal_code": "63901-7331", + "country": "United States", + "longitude": -90.39577338, + "latitude": 36.75663108, + "phone": "5738405202", + "website_url": "http://www.bronzeowlbrewing.com", + "state": "Missouri", + "street": "506 Vine St" + }, + { + "id": "4eaf3879-7d8b-4445-9eb2-4bd3f438c69c", + "name": "Broo Brewery", + "brewery_type": "micro", + "address_1": "20 Langtree Avenue", + "address_2": null, + "address_3": null, + "city": "Mildura", + "state_province": "VIC", + "postal_code": "3500", + "country": "Australia", + "longitude": 142.1627611, + "latitude": -34.1834042, + "phone": "+61 3 5984 2222", + "website_url": null, + "state": "VIC", + "street": "20 Langtree Avenue" + }, + { + "id": "47ce7e5f-74fe-4a8e-8fe0-35ecd8338537", + "name": "Brookeville Beer Farm", + "brewery_type": "micro", + "address_1": "20315 Georgia Ave", + "address_2": null, + "address_3": null, + "city": "Brookeville", + "state_province": "Maryland", + "postal_code": "20833-1711", + "country": "United States", + "longitude": -77.0579247, + "latitude": 39.1780888, + "phone": "3012601000", + "website_url": "http://www.brookevillebeerfarm.com", + "state": "Maryland", + "street": "20315 Georgia Ave" + }, + { + "id": "5ec37fdc-66c6-42ba-b23e-e985eb0c6558", + "name": "Brooklyn Brewery", + "brewery_type": "regional", + "address_1": "79 N 11th St #1 Brewers Row", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11249-1913", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7184867422", + "website_url": "http://www.brooklynbrewery.com", + "state": "New York", + "street": "79 N 11th St #1 Brewers Row" + }, + { + "id": "3899ff1a-adc2-45a9-87f9-695cd1f9644f", + "name": "Brooks Brewing", + "brewery_type": "micro", + "address_1": "52033 Van Dyke", + "address_2": null, + "address_3": null, + "city": "Shelby Charter Township", + "state_province": "Michigan", + "postal_code": "48316", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5868844741", + "website_url": "http://www.bbrewing.com", + "state": "Michigan", + "street": "52033 Van Dyke" + }, + { + "id": "cc1c45a6-09d4-4f32-bf72-cde81102a8bd", + "name": "Broomtail Craft Brewery", + "brewery_type": "micro", + "address_1": "6404 Amsterdam Way Ste 100", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "North Carolina", + "postal_code": "28405-2563", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9102641369", + "website_url": "http://www.broomtailcraftbrewery.com", + "state": "North Carolina", + "street": "6404 Amsterdam Way Ste 100" + }, + { + "id": "809d5238-5077-4731-82fa-7ec6d4ca10d9", + "name": "Brother Ass Brewing", + "brewery_type": "micro", + "address_1": "11700 NE 54th Ct", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98686-4589", + "country": "United States", + "longitude": -122.6170235, + "latitude": 45.70699686, + "phone": "3606073275", + "website_url": "http://www.brotherassbrewing.com", + "state": "Washington", + "street": "11700 NE 54th Ct" + }, + { + "id": "c657e584-d468-40a7-835a-aa0bd8ecbf92", + "name": "Brothers Cascadia Brewing", + "brewery_type": "micro", + "address_1": "9811 NE 15th Ave", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98665-9102", + "country": "United States", + "longitude": -122.6553318, + "latitude": 45.6499058, + "phone": "3607188927", + "website_url": "http://www.brotherscascadiabrewing.com", + "state": "Washington", + "street": "9811 NE 15th Ave" + }, + { + "id": "8deb98b6-acb0-4202-9f83-85c80f60eaac", + "name": "Brothers Craft Brewing", + "brewery_type": "micro", + "address_1": "800 N Main St", + "address_2": null, + "address_3": null, + "city": "Harrisonburg", + "state_province": "Virginia", + "postal_code": "22802-4625", + "country": "United States", + "longitude": -78.861099, + "latitude": 38.45757, + "phone": "5404216599", + "website_url": "http://www.brotherscraftbrewing.com", + "state": "Virginia", + "street": "800 N Main St" + }, + { + "id": "a197e0fb-e5bb-4549-a179-c9688005081f", + "name": "Brotherton Brewing Company", + "brewery_type": "micro", + "address_1": "340 Forked Neck Rd", + "address_2": null, + "address_3": null, + "city": "Shamong", + "state_province": "New Jersey", + "postal_code": "08088", + "country": "United States", + "longitude": -74.72540127, + "latitude": 39.78817758, + "phone": "6098012686", + "website_url": "http://www.brothertonbrewing.com", + "state": "New Jersey", + "street": "340 Forked Neck Rd" + }, + { + "id": "68e4d79f-cb2d-4c7c-ad44-0052927e5b59", + "name": "Brotherwell Brewing", + "brewery_type": "micro", + "address_1": "400 E Bridge St", + "address_2": null, + "address_3": null, + "city": "Waco", + "state_province": "Texas", + "postal_code": "76704-2505", + "country": "United States", + "longitude": -97.124214, + "latitude": 31.56428, + "phone": "2147638755", + "website_url": null, + "state": "Texas", + "street": "400 E Bridge St" + }, + { + "id": "63c8fcef-4d04-4670-be2d-de09abc6c835", + "name": "Brouhaha Brewery", + "brewery_type": "micro", + "address_1": "39 Coral Street", + "address_2": "Shop 5", + "address_3": null, + "city": "Maleny", + "state_province": "QLD", + "postal_code": "4552", + "country": "Australia", + "longitude": 152.8479509, + "latitude": -26.7612963, + "phone": "+61 7 5435 2018", + "website_url": "http://brouhahabrewery.com.au/", + "state": "QLD", + "street": "39 Coral Street" + }, + { + "id": "a564a1b2-86da-47af-9d02-344ab675da88", + "name": "Broulee Brewhouse", + "brewery_type": "micro", + "address_1": "71 Coronation Drive", + "address_2": null, + "address_3": null, + "city": "Broulee", + "state_province": "NSW", + "postal_code": "2537", + "country": "Australia", + "longitude": 150.175828, + "latitude": -35.8484668, + "phone": "+61 460 885 763", + "website_url": "http://www.brouleebrewhouse.com.au/", + "state": "NSW", + "street": "71 Coronation Drive" + }, + { + "id": "67840cfb-5c46-4a2b-912c-49165bc73d88", + "name": "Brouwerij Cursus Keme", + "brewery_type": "brewpub", + "address_1": "155 Thompson St", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28803-1443", + "country": "United States", + "longitude": -82.52572837, + "latitude": 35.57438843, + "phone": null, + "website_url": null, + "state": "North Carolina", + "street": "155 Thompson St" + }, + { + "id": "6a5fa9b2-e8fe-4156-8a2a-d27e5b678ddd", + "name": "Brouwerij Les Deplorables", + "brewery_type": "nano", + "address_1": "19812 163rd Ave NE", + "address_2": null, + "address_3": null, + "city": "Woodinville", + "state_province": "Washington", + "postal_code": "98072-7027", + "country": "United States", + "longitude": -122.1225485, + "latitude": 47.7711936, + "phone": "2067902496", + "website_url": null, + "state": "Washington", + "street": "19812 163rd Ave NE" + }, + { + "id": "8a2ef743-8539-4d41-828b-fc91dcecf6a1", + "name": "Brouwerij West", + "brewery_type": "micro", + "address_1": "110 E 22nd St", + "address_2": null, + "address_3": null, + "city": "San Pedro", + "state_province": "California", + "postal_code": "90731-7202", + "country": "United States", + "longitude": -118.2801245, + "latitude": 33.72755547, + "phone": "3108339330", + "website_url": "http://www.brouwerijwest.com", + "state": "California", + "street": "110 E 22nd St" + }, + { + "id": "6bb73725-a04f-4453-bfb4-103c88d1dcac", + "name": "Browar Caminus", + "brewery_type": "brewpub", + "address_1": "1 Maja 11", + "address_2": null, + "address_3": null, + "city": "Kąty Wrocławskie", + "state_province": "dolnośląskie", + "postal_code": "55-080", + "country": "Poland", + "longitude": 16.7665208, + "latitude": 51.0308894, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "1 Maja 11" + }, + { + "id": "a9d8d2a9-23f3-4975-85fe-77de5ea72a43", + "name": "Browar Cztery Ściany", + "brewery_type": "micro", + "address_1": "Milicka 32", + "address_2": null, + "address_3": null, + "city": "Trzebnica", + "state_province": "dolnośląskie", + "postal_code": "55-100", + "country": "Poland", + "longitude": 17.0722456, + "latitude": 51.3226873, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Milicka 32" + }, + { + "id": "e46b3eae-e40f-4624-b606-b2abc8d25dab", + "name": "Browar Dolina Bobru", + "brewery_type": "micro", + "address_1": "Zarzecze 1", + "address_2": null, + "address_3": null, + "city": "Wleń", + "state_province": "dolnośląskie", + "postal_code": "59-610", + "country": "Poland", + "longitude": 15.6675929, + "latitude": 51.0220276, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Zarzecze 1" + }, + { + "id": "1457f05e-4ca2-4788-b76e-8c77a3d38998", + "name": "Browar Jamrozowa Polana", + "brewery_type": "micro", + "address_1": "Olimpijska 1", + "address_2": null, + "address_3": null, + "city": "Duszniki-Zdrój", + "state_province": "dolnośląskie", + "postal_code": "57-340", + "country": "Poland", + "longitude": 16.367628, + "latitude": 50.3893103, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Olimpijska 1" + }, + { + "id": "c53ce4ff-0b18-4759-80b9-c3d632162909", + "name": "Browar Jedlinka", + "brewery_type": "micro", + "address_1": "Zamkowa 8", + "address_2": null, + "address_3": null, + "city": "Jedlina-Zdrój", + "state_province": "dolnośląskie", + "postal_code": "58-330", + "country": "Poland", + "longitude": 16.3587951, + "latitude": 50.712874, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Zamkowa 8" + }, + { + "id": "c6794a77-7c9e-42d6-8baf-99841750d529", + "name": "Browar Kamienica", + "brewery_type": "micro", + "address_1": "Kamienica 1a", + "address_2": null, + "address_3": null, + "city": "Kamienica", + "state_province": "dolnośląskie", + "postal_code": "57-550", + "country": "Poland", + "longitude": 16.8867481, + "latitude": 50.251714, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Kamienica 1a" + }, + { + "id": "886dedd2-fecc-4183-ba3b-746e9ae5f5fa", + "name": "Browar Łażany", + "brewery_type": "micro", + "address_1": "Słowiańska 23", + "address_2": null, + "address_3": null, + "city": "Żarów", + "state_province": "dolnośląskie", + "postal_code": "58-130", + "country": "Poland", + "longitude": 16.5012637, + "latitude": 50.9372257, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Słowiańska 23" + }, + { + "id": "da14fe75-eedf-47d8-a83f-7c2d23932637", + "name": "Browar Lwówek", + "brewery_type": "regional", + "address_1": "Traugutta 7", + "address_2": null, + "address_3": null, + "city": "Lwówek Śląski", + "state_province": "dolnośląskie", + "postal_code": "59-600", + "country": "Poland", + "longitude": 15.5841981, + "latitude": 51.109468, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Traugutta 7" + }, + { + "id": "acaf83f9-7aaf-48db-baa7-f1a2c13926c2", + "name": "Browar Mariental", + "brewery_type": "brewpub", + "address_1": "1 Maja 11", + "address_2": null, + "address_3": null, + "city": "Szklarska Poręba", + "state_province": "dolnośląskie", + "postal_code": "58-580", + "country": "Poland", + "longitude": 15.5249165, + "latitude": 50.8259305, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "1 Maja 11" + }, + { + "id": "4943fcf7-31fa-4156-ba4c-6e0fcf3b2abf", + "name": "Browar Miedzianka", + "brewery_type": "micro", + "address_1": "Miedzianka 57B", + "address_2": null, + "address_3": null, + "city": "Miedzianka", + "state_province": "dolnośląskie", + "postal_code": "58-520", + "country": "Poland", + "longitude": 15.9390136, + "latitude": 50.877833, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Miedzianka 57B" + }, + { + "id": "c88968bb-bd4a-4606-ad4e-583bd1797974", + "name": "Browar Milicz", + "brewery_type": "micro", + "address_1": "Zielona 5", + "address_2": null, + "address_3": null, + "city": "Milicz", + "state_province": "dolnośląskie", + "postal_code": "56-300", + "country": "Poland", + "longitude": 17.2844713, + "latitude": 51.5228333, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Zielona 5" + }, + { + "id": "b26c3126-b9f8-450a-994d-1f19f3bf1262", + "name": "Browar Profesja", + "brewery_type": "regional", + "address_1": "Kwidzyńska 6E", + "address_2": null, + "address_3": null, + "city": "Wrocław", + "state_province": "dolnośląskie", + "postal_code": "51-416", + "country": "Poland", + "longitude": 17.0946435, + "latitude": 51.1297761, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Kwidzyńska 6E" + }, + { + "id": "e163f605-c2e2-45cf-b684-77f60dde6c9f", + "name": "Browar Restauracyjny Prost", + "brewery_type": "brewpub", + "address_1": "Paprotna 4", + "address_2": null, + "address_3": null, + "city": "Wrocław", + "state_province": "dolnośląskie", + "postal_code": "51-117", + "country": "Poland", + "longitude": 17.0228782, + "latitude": 51.1507632, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Paprotna 4" + }, + { + "id": "99eacd23-0305-4a47-87ed-086e0da1ae35", + "name": "Browar Roch", + "brewery_type": "micro", + "address_1": "Nowe Rochowice 22", + "address_2": null, + "address_3": null, + "city": "Nowe Rochowice", + "state_province": "dolnośląskie", + "postal_code": "59-420", + "country": "Poland", + "longitude": 16.0398406, + "latitude": 50.9407953, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Nowe Rochowice 22" + }, + { + "id": "12738d11-80b2-41af-b991-fd5fed99f3d3", + "name": "Browar Sowiduch", + "brewery_type": "brewpub", + "address_1": "Konstytucji 3 Maja 45A", + "address_2": null, + "address_3": null, + "city": "Karpacz", + "state_province": "dolnośląskie", + "postal_code": "58-540", + "country": "Poland", + "longitude": 15.7558721, + "latitude": 50.7751604, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Konstytucji 3 Maja 45A" + }, + { + "id": "95e49f64-c6ad-476e-8012-c87463562f18", + "name": "Browar Stu Mostów", + "brewery_type": "regional", + "address_1": "Jana Długosza 2/6", + "address_2": null, + "address_3": null, + "city": "Wrocław", + "state_province": "dolnośląskie", + "postal_code": "51-162", + "country": "Poland", + "longitude": 17.0592865, + "latitude": 51.1318701, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Jana Długosza 2/6" + }, + { + "id": "adb8817e-9b7c-4dd3-a3cd-09755d9f36d0", + "name": "Browar Świdnica", + "brewery_type": "micro", + "address_1": "Bystrzycka 28B", + "address_2": null, + "address_3": null, + "city": "Świdnica ", + "state_province": "dolnośląskie", + "postal_code": "58-100", + "country": "Poland", + "longitude": 16.4994665, + "latitude": 50.828839, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Bystrzycka 28B" + }, + { + "id": "dfd46e8d-b3b0-4a2e-b4d2-28b9cc19f3c8", + "name": "Browar Wagabunda", + "brewery_type": "micro", + "address_1": "Przemysłowa 8", + "address_2": null, + "address_3": null, + "city": "Niechlów", + "state_province": "dolnośląskie", + "postal_code": "56-215", + "country": "Poland", + "longitude": 16.3703998, + "latitude": 51.6903932, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Przemysłowa 8" + }, + { + "id": "34b1ec5d-e881-4e08-b075-93eab766c992", + "name": "Browar Widawa", + "brewery_type": "micro", + "address_1": "Wrocławska 97", + "address_2": null, + "address_3": null, + "city": "Chrząstawa Mała", + "state_province": "dolnośląskie", + "postal_code": "55-003", + "country": "Poland", + "longitude": 17.284289, + "latitude": 51.0839992, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Wrocławska 97" + }, + { + "id": "2e352c87-84e1-4cc3-8d87-75815cc89e3a", + "name": "Browar Wielka Sowa", + "brewery_type": "micro", + "address_1": "Żeromskiego 9", + "address_2": null, + "address_3": null, + "city": "Bielawa", + "state_province": "dolnośląskie", + "postal_code": "58-260", + "country": "Poland", + "longitude": 16.6361506, + "latitude": 50.696817, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Żeromskiego 9" + }, + { + "id": "89d617ce-5481-4421-937a-4996789cb583", + "name": "Browar Wieżyca", + "brewery_type": "micro", + "address_1": "Armii Krajowej 13", + "address_2": null, + "address_3": null, + "city": "Sobótka", + "state_province": "dolnośląskie", + "postal_code": "55-050", + "country": "Poland", + "longitude": 16.7270842, + "latitude": 50.892739, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Armii Krajowej 13" + }, + { + "id": "14fa56bf-a922-44bb-aac2-2844a5710797", + "name": "Browar Zbrozło", + "brewery_type": "micro", + "address_1": "Grunwaldzka 25", + "address_2": null, + "address_3": null, + "city": "Oborniki Śląskie", + "state_province": "dolnośląskie", + "postal_code": "55-120", + "country": "Poland", + "longitude": 16.8990216, + "latitude": 51.2960637, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Grunwaldzka 25" + }, + { + "id": "a90fa39a-8a9e-4d6a-92a1-8d6b2e34261f", + "name": "Browar Zielone Wzgórze", + "brewery_type": "micro", + "address_1": "Parkowa 3", + "address_2": null, + "address_3": null, + "city": "Sulistrowiczki", + "state_province": "dolnośląskie", + "postal_code": "55-050", + "country": "Poland", + "longitude": 16.7350128, + "latitude": 50.8458752, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Parkowa 3" + }, + { + "id": "5137aaa8-be5a-40b1-95b1-2f3e0e0770e9", + "name": "Browar Złoty Pies", + "brewery_type": "brewpub", + "address_1": "Wita Stwosza 1-2", + "address_2": null, + "address_3": null, + "city": "Wrocław", + "state_province": "dolnośląskie", + "postal_code": "51-116", + "country": "Poland", + "longitude": 17.0336486, + "latitude": 51.110441, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Wita Stwosza 1-2" + }, + { + "id": "41ce95a9-1acd-4019-afcc-9abeded5c31f", + "name": "Browarnia Sobótka", + "brewery_type": "micro", + "address_1": "Osiedle Browarniane 34", + "address_2": null, + "address_3": null, + "city": "Sobótka-Górka", + "state_province": "dolnośląskie", + "postal_code": "55-050", + "country": "Poland", + "longitude": 16.7040764, + "latitude": 50.8919594, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Osiedle Browarniane 34" + }, + { + "id": "b09140d2-fce4-4996-86ea-2c0aafc6682d", + "name": "Brown Iron Brewhouse", + "brewery_type": "brewpub", + "address_1": "57695 Van Dyke Rd", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "Michigan", + "postal_code": "48094-2879", + "country": "United States", + "longitude": -83.03578521, + "latitude": 42.71929931, + "phone": "586697330", + "website_url": "http://www.browniron.com", + "state": "Michigan", + "street": "57695 Van Dyke Rd" + }, + { + "id": "57d05506-be15-4281-bb0b-1b139d75e66a", + "name": "Brown Truck Brewery", + "brewery_type": "micro", + "address_1": "1234 N Main St", + "address_2": null, + "address_3": null, + "city": "High Point", + "state_province": "North Carolina", + "postal_code": "27262-3118", + "country": "United States", + "longitude": -80.0158688, + "latitude": 35.9709266, + "phone": "3368861234", + "website_url": "http://www.browntruckbrewery.com", + "state": "North Carolina", + "street": "1234 N Main St" + }, + { + "id": "0353cf46-744c-4538-81c4-febe1d8a0be7", + "name": "Brown's Brewing Co", + "brewery_type": "brewpub", + "address_1": "50 Factory Hill Rd", + "address_2": null, + "address_3": null, + "city": "North Hoosick", + "state_province": "New York", + "postal_code": "12133", + "country": "United States", + "longitude": -73.34515821, + "latitude": 42.92661444, + "phone": "5182732337", + "website_url": "http://www.brownsbrewing.com", + "state": "New York", + "street": "50 Factory Hill Rd" + }, + { + "id": "cac29608-c079-4fd2-b3c6-c13b8ac693eb", + "name": "Brown's Brewing Co", + "brewery_type": "brewpub", + "address_1": "417 River St", + "address_2": null, + "address_3": null, + "city": "Troy", + "state_province": "New York", + "postal_code": "12180-2822", + "country": "United States", + "longitude": -73.68755002, + "latitude": 42.73567746, + "phone": "5183654846", + "website_url": "http://www.brownsbrewing.com", + "state": "New York", + "street": "417 River St" + }, + { + "id": "a623138e-cc2d-4549-abca-4bc2021b8c45", + "name": "BRÚ Brewery", + "brewery_type": "micro", + "address_1": "Unit 5 – Site 6", + "address_2": "Oaktree Business Park", + "address_3": null, + "city": "Trim", + "state_province": "Meath", + "postal_code": "C15 RW10", + "country": "Ireland", + "longitude": -6.794949763, + "latitude": 53.5660948, + "phone": "353469438616", + "website_url": "https://www.brubrewery.ie/", + "state": "Meath", + "street": "Unit 5 – Site 6" + }, + { + "id": "48a7cc57-7544-472d-bc89-2e12ab8e6d53", + "name": "BRU Handbuilt Ales and Eats", + "brewery_type": "brewpub", + "address_1": "5290 Arapahoe Ave", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80303-1269", + "country": "United States", + "longitude": -105.2293345, + "latitude": 40.0141462, + "phone": "7206385193", + "website_url": "http://www.bruboulder.com", + "state": "Colorado", + "street": "5290 Arapahoe Ave" + }, + { + "id": "6f687fce-bdae-4938-8ad5-3615520d9664", + "name": "Brubaker's Brewery & Pub", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sylvania", + "state_province": "Ohio", + "postal_code": "43560-9586", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": null + }, + { + "id": "badb2bd3-2200-4496-88a9-b2d0af2862af", + "name": "Bruehol Brewing LLC", + "brewery_type": "proprietor", + "address_1": "4828 E 2nd St", + "address_2": null, + "address_3": null, + "city": "Benicia", + "state_province": "California", + "postal_code": "94510-1023", + "country": "United States", + "longitude": -122.1275637, + "latitude": 38.08086313, + "phone": "7073276768", + "website_url": "http://www.bruehol.com", + "state": "California", + "street": "4828 E 2nd St" + }, + { + "id": "6817baf7-52fc-4ab6-8d28-79d598676fad", + "name": "Brueprint Brewing Company LLC", + "brewery_type": "micro", + "address_1": "1229 Perry Rd Ste 101", + "address_2": null, + "address_3": null, + "city": "Apex", + "state_province": "North Carolina", + "postal_code": "27502-6898", + "country": "United States", + "longitude": -78.85014375, + "latitude": 35.70884819, + "phone": "9199718846", + "website_url": "http://www.brueprint.com", + "state": "North Carolina", + "street": "1229 Perry Rd Ste 101" + }, + { + "id": "a3ee5b9a-f9a9-42d1-a176-5ae6d98be4a9", + "name": "Bruery Terreux", + "brewery_type": "micro", + "address_1": "1174 N Grove St", + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92806-2129", + "country": "United States", + "longitude": -117.8418759, + "latitude": 33.85793692, + "phone": "7149966258", + "website_url": "http://www.thebruery.com", + "state": "California", + "street": "1174 N Grove St" + }, + { + "id": "54a69c5d-8605-441b-bd39-ead94e777450", + "name": "Bruery, The", + "brewery_type": "micro", + "address_1": "717 Dunn Way", + "address_2": null, + "address_3": null, + "city": "Placentia", + "state_province": "California", + "postal_code": "92870-6806", + "country": "United States", + "longitude": -117.8791616, + "latitude": 33.8623093, + "phone": "7149966258", + "website_url": "http://www.thebruery.com", + "state": "California", + "street": "717 Dunn Way" + }, + { + "id": "5ad3e5b9-e203-40eb-bc84-6e28356993d6", + "name": "Brues Alehouse Brewing Company", + "brewery_type": "brewpub", + "address_1": "120 Riverwalk Place", + "address_2": null, + "address_3": null, + "city": "Pueblo", + "state_province": "Colorado", + "postal_code": "81003", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7199249670", + "website_url": "http://www.bruesalehouse.com", + "state": "Colorado", + "street": "120 Riverwalk Place" + }, + { + "id": "a0ddca86-5aac-4b32-85a7-f2b2a49b95c6", + "name": "Brugan", + "brewery_type": "micro", + "address_1": "11538 South Western Highway", + "address_2": null, + "address_3": null, + "city": "Wokalup", + "state_province": "WA", + "postal_code": "6221", + "country": "Australia", + "longitude": 115.8808588, + "latitude": -33.1117784, + "phone": "+61 8 9729 3088", + "website_url": "https://brugan.com.au/", + "state": "WA", + "street": "11538 South Western Highway" + }, + { + "id": "8029560b-c49b-4979-a971-461bfac424f6", + "name": "Brugge Brasserie", + "brewery_type": "brewpub", + "address_1": "1011A E Westfield Blvd", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46220-", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3172550978", + "website_url": "http://www.bruggebrasserie.com", + "state": "Indiana", + "street": "1011A E Westfield Blvd" + }, + { + "id": "131050bc-6ba0-4eab-a7ba-7cb42becdbeb", + "name": "BruRm At Bar", + "brewery_type": "brewpub", + "address_1": "254 Crown St", + "address_2": null, + "address_3": null, + "city": "New Haven", + "state_province": "Connecticut", + "postal_code": "06511-6610", + "country": "United States", + "longitude": -72.9302577, + "latitude": 41.3061639, + "phone": "2034958924", + "website_url": "http://www.barnightclub.com", + "state": "Connecticut", + "street": "254 Crown St" + }, + { + "id": "5349a160-b8e9-4447-bb32-947718daf82f", + "name": "Brush Creek Brewing Company", + "brewery_type": "brewpub", + "address_1": "102 N Main St", + "address_2": null, + "address_3": null, + "city": "Atkinson", + "state_province": "Nebraska", + "postal_code": "68713-4946", + "country": "United States", + "longitude": -98.97836727, + "latitude": 42.53141502, + "phone": "4029252629", + "website_url": "https://www.brushcreekbrewingcompany.com", + "state": "Nebraska", + "street": "102 N Main St" + }, + { + "id": "1b93afb3-f335-4c76-b247-16021324c687", + "name": "Brutopia Brewery and Kitchen", + "brewery_type": "brewpub", + "address_1": "505 Atwood Ave", + "address_2": null, + "address_3": null, + "city": "Cranston", + "state_province": "Rhode Island", + "postal_code": "02920-5327", + "country": "United States", + "longitude": -71.47169613, + "latitude": 41.78983825, + "phone": "4014648877", + "website_url": "http://www.brutopiabrewery.com", + "state": "Rhode Island", + "street": "505 Atwood Ave" + }, + { + "id": "83aef3a5-e9ba-47e7-bb58-3b061caff00d", + "name": "Bruz Beers", + "brewery_type": "micro", + "address_1": "1675 W 67th Ave Ste 100", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80221-2595", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3036502337", + "website_url": "http://www.bruzbeers.com", + "state": "Colorado", + "street": "1675 W 67th Ave Ste 100" + }, + { + "id": "f1855903-dd7f-428d-86bd-14fa054e4771", + "name": "Bryggerifabriken i Karlskrona AB", + "brewery_type": "micro", + "address_1": "Alamedan 10", + "address_2": "c/o Karlskrona Hotel o Fastigheter AB", + "address_3": null, + "city": "Karlskrona", + "state_province": "Blekinge", + "postal_code": "371 31", + "country": "Sweden", + "longitude": 15.59114, + "latitude": 56.15906, + "phone": null, + "website_url": "http://bryggerifabriken.se/", + "state": "Blekinge", + "street": "Alamedan 10" + }, + { + "id": "fdbb4b87-70d0-4362-834f-502fd5b05feb", + "name": "Brygghus19", + "brewery_type": "micro", + "address_1": "Västra Kajen 8F", + "address_2": null, + "address_3": null, + "city": "Karlshamn", + "state_province": "Blekinge", + "postal_code": "374 31", + "country": "Sweden", + "longitude": 14.86054, + "latitude": 56.16757, + "phone": "+46709191950", + "website_url": "http://www.brygghus19.se/", + "state": "Blekinge", + "street": "Västra Kajen 8F" + }, + { + "id": "84574ef8-dd32-4f5d-836c-bb67a35584a5", + "name": "BRZN", + "brewery_type": "micro", + "address_1": "New England Road", + "address_2": null, + "address_3": null, + "city": "Brighton", + "state_province": "East Sussex", + "postal_code": "BN1 4ZR", + "country": "England", + "longitude": -0.140921, + "latitude": 50.833413, + "phone": null, + "website_url": null, + "state": "East Sussex", + "street": "New England Road" + }, + { + "id": "91fe878b-f118-4ed2-b733-bcde32a53f1d", + "name": "BS Brewing", + "brewery_type": "micro", + "address_1": "1408 Old Lehmann Rd", + "address_2": null, + "address_3": null, + "city": "Seguin", + "state_province": "Texas", + "postal_code": "78155-5048", + "country": "United States", + "longitude": -97.90477894, + "latitude": 29.69091561, + "phone": "8306608124", + "website_url": "http://www.bsbrewingtx.com", + "state": "Texas", + "street": "1408 Old Lehmann Rd" + }, + { + "id": "77ff798d-2961-4062-8c4d-c50b49bbbe2e", + "name": "Bubba Brew's Brewing Company", + "brewery_type": "micro", + "address_1": "8091 Airport Rd", + "address_2": null, + "address_3": null, + "city": "Bonnerdale", + "state_province": "Arkansas", + "postal_code": "71933-6648", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8703564001", + "website_url": "http://www.bubbabrewsbrewingco.com", + "state": "Arkansas", + "street": "8091 Airport Rd" + }, + { + "id": "a75a8cd7-7531-4df5-8edb-48782916a3da", + "name": "Bubes Brewery", + "brewery_type": "brewpub", + "address_1": "102 N Market St", + "address_2": null, + "address_3": null, + "city": "Mount Joy", + "state_province": "Pennsylvania", + "postal_code": "17552-1306", + "country": "United States", + "longitude": -76.50290152, + "latitude": 40.11180762, + "phone": "7176532056", + "website_url": "http://www.bubesbrewery.com", + "state": "Pennsylvania", + "street": "102 N Market St" + }, + { + "id": "e869121f-a5be-4382-8243-8a51ab8af429", + "name": "Buchanan Craft LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60647-9735", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6307722199", + "website_url": null, + "state": "Illinois", + "street": null + }, + { + "id": "2386c8a4-ab86-4bfe-8070-d0c09e257268", + "name": "Buchanan’s Brewery", + "brewery_type": "micro", + "address_1": "Devon Valley Road", + "address_2": null, + "address_3": null, + "city": "Stellenbosch", + "state_province": "Western Cape", + "postal_code": "7600", + "country": "South Africa", + "longitude": 18.8153, + "latitude": -33.9178, + "phone": null, + "website_url": "https://www.facebook.com/BuchanansBrewery/", + "state": "Western Cape", + "street": "Devon Valley Road" + }, + { + "id": "80a6159f-2196-4c18-bfdb-4fc34a723524", + "name": "Buck Bald Brewing Corporation", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Blue Ridge", + "state_province": "Georgia", + "postal_code": "30513", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7703169971", + "website_url": "http://www.buckbaldbrewing.com", + "state": "Georgia", + "street": null + }, + { + "id": "6ba05499-27cc-40c8-9fc6-003190f93adb", + "name": "Buck Hill Brewery and Restaurant", + "brewery_type": "brewpub", + "address_1": "45 Route 94", + "address_2": null, + "address_3": null, + "city": "Blairstown", + "state_province": "New Jersey", + "postal_code": "07825", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9088545300", + "website_url": "http://www.buckhillbrewery.com", + "state": "New Jersey", + "street": "45 Route 94" + }, + { + "id": "3e7df4e6-1fb8-4509-9943-124da33f3bec", + "name": "Buck's Brewing Co", + "brewery_type": "micro", + "address_1": "993 Mount Vernon Rd", + "address_2": null, + "address_3": null, + "city": "Newark", + "state_province": "Ohio", + "postal_code": "43055-4728", + "country": "United States", + "longitude": -82.41752143, + "latitude": 40.08367829, + "phone": "7406412337", + "website_url": null, + "state": "Ohio", + "street": "993 Mount Vernon Rd" + }, + { + "id": "7573ca38-3e52-4b6e-83bf-fcb5c277e46b", + "name": "Bucket Brewery", + "brewery_type": "micro", + "address_1": "2 Prince Street", + "address_2": null, + "address_3": null, + "city": "South Kempsey", + "state_province": "NSW", + "postal_code": "2440", + "country": "Australia", + "longitude": 152.8317525, + "latitude": -31.0878355, + "phone": "+61 458 567 214", + "website_url": "http://www.bucketbrewery.com.au/", + "state": "NSW", + "street": "2 Prince Street" + }, + { + "id": "fcf8351b-616e-4c8e-a372-a026c64746cf", + "name": "Bucket Brigade Brewery", + "brewery_type": "micro", + "address_1": "205 N Main St", + "address_2": null, + "address_3": null, + "city": "Cape May Court House", + "state_province": "New Jersey", + "postal_code": "08210-2121", + "country": "United States", + "longitude": -74.81946353, + "latitude": 39.086856, + "phone": "6097782641", + "website_url": "http://www.bucketbrigadebrewery.com", + "state": "New Jersey", + "street": "205 N Main St" + }, + { + "id": "a2b792c4-d77e-492f-a5e0-d8365831f9ca", + "name": "Bucketty’s Brewing", + "brewery_type": "micro", + "address_1": "26 Orchard Road", + "address_2": null, + "address_3": null, + "city": "Brookvale", + "state_province": "NSW", + "postal_code": "2100", + "country": "Australia", + "longitude": 151.2733211, + "latitude": -33.7657252, + "phone": "+61 2 8350 6622", + "website_url": "http://buckettys.com.au/", + "state": "NSW", + "street": "26 Orchard Road" + }, + { + "id": "c2cb20bd-eb6d-40af-afef-44896bb4e3d8", + "name": "Buckeye Beer Engine", + "brewery_type": "brewpub", + "address_1": "15315 Madison Ave", + "address_2": null, + "address_3": null, + "city": "Lakewood", + "state_province": "Ohio", + "postal_code": "44107-4020", + "country": "United States", + "longitude": -81.803918, + "latitude": 41.477245, + "phone": "2162262337", + "website_url": "http://www.buckeyebeerengine.com", + "state": "Ohio", + "street": "15315 Madison Ave" + }, + { + "id": "2af8709e-55ca-41bc-8686-673157606216", + "name": "Buckeye Lake Brewery", + "brewery_type": "micro", + "address_1": "5176 Walnut Rd", + "address_2": null, + "address_3": null, + "city": "Buckeye Lake", + "state_province": "Ohio", + "postal_code": "43008", + "country": "United States", + "longitude": -82.488973, + "latitude": 39.928559, + "phone": "7405356225", + "website_url": null, + "state": "Ohio", + "street": "5176 Walnut Rd" + }, + { + "id": "6f2a1d53-ab52-4a33-b9cf-0d3352156a7e", + "name": "Buckhorn Brewers LLC", + "brewery_type": "micro", + "address_1": "4229 W Eisenhower Blvd", + "address_2": null, + "address_3": null, + "city": "Loveland", + "state_province": "Colorado", + "postal_code": "80537-9202", + "country": "United States", + "longitude": -105.0925735, + "latitude": 40.4058904, + "phone": "9709808688", + "website_url": null, + "state": "Colorado", + "street": "4229 W Eisenhower Blvd" + }, + { + "id": "cbe836b4-5236-4448-9587-b9da70e18355", + "name": "BuckleDown Brewing", + "brewery_type": "micro", + "address_1": "8700 47th St", + "address_2": null, + "address_3": null, + "city": "Lyons", + "state_province": "Illinois", + "postal_code": "60534-1626", + "country": "United States", + "longitude": -87.8034082, + "latitude": 41.8083636, + "phone": "7087771842", + "website_url": "http://buckledownbrewing.com", + "state": "Illinois", + "street": "8700 47th St" + }, + { + "id": "f58e18b4-a2ff-4917-8bb3-d9a5e852add6", + "name": "Bucks County Brewery", + "brewery_type": "micro", + "address_1": "31 Appletree Ln", + "address_2": null, + "address_3": null, + "city": "Pipersville", + "state_province": "Pennsylvania", + "postal_code": "18947-1083", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6094392468", + "website_url": "http://www.buckscountybrewery.com", + "state": "Pennsylvania", + "street": "31 Appletree Ln" + }, + { + "id": "245f05e1-8216-45f4-9a5d-d8f6f600719a", + "name": "Buckwheat Brewing", + "brewery_type": "brewpub", + "address_1": "148 E Main St", + "address_2": null, + "address_3": null, + "city": "Dayton", + "state_province": "Washington", + "postal_code": "99328-1351", + "country": "United States", + "longitude": -117.9811345, + "latitude": 46.3192285, + "phone": "5093824677", + "website_url": "https://buckwheatbrewing.com", + "state": "Washington", + "street": "148 E Main St" + }, + { + "id": "13fdcf1a-226c-42d3-9611-7719243ca606", + "name": "Buddy Brewing", + "brewery_type": "micro", + "address_1": "178 Station Road", + "address_2": null, + "address_3": null, + "city": "Burpengary", + "state_province": "QLD", + "postal_code": "4505", + "country": "Australia", + "longitude": 152.9753223, + "latitude": -27.15357, + "phone": "+61 419 280 090", + "website_url": "https://www.buddybrewing.com.au/", + "state": "QLD", + "street": "178 Station Road" + }, + { + "id": "7ce4f9c5-bf79-4d42-b7bb-aaa70cd2e069", + "name": "Buffalo Bayou Brewing Co", + "brewery_type": "micro", + "address_1": "5301 Nolda St", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77007-2234", + "country": "United States", + "longitude": -95.4160849, + "latitude": 29.775978, + "phone": "7137509795", + "website_url": "http://www.buffbrew.com", + "state": "Texas", + "street": "5301 Nolda St" + }, + { + "id": "d0d1897a-d4d4-46e1-9f35-5c21cf0b49a5", + "name": "Buffalo Bills Brewery", + "brewery_type": "brewpub", + "address_1": "1082 B St", + "address_2": null, + "address_3": null, + "city": "Hayward", + "state_province": "California", + "postal_code": "94541-4108", + "country": "United States", + "longitude": -122.0768666, + "latitude": 37.6770284, + "phone": "5108869823", + "website_url": "http://www.buffalobillsbrewery.com", + "state": "California", + "street": "1082 B St" + }, + { + "id": "28001115-35a0-41eb-93f3-c5f2de448461", + "name": "Buffalo Brewing Co", + "brewery_type": "planning", + "address_1": "790 Hop Rd", + "address_2": null, + "address_3": null, + "city": "Toppenish", + "state_province": "Washington", + "postal_code": "98948-9674", + "country": "United States", + "longitude": -120.1634675, + "latitude": 46.23727233, + "phone": null, + "website_url": null, + "state": "Washington", + "street": "790 Hop Rd" + }, + { + "id": "3bcf5ff2-81b5-4805-ad50-92ec6d059d3c", + "name": "Buffalo Brewing Company", + "brewery_type": "micro", + "address_1": "314 Myrtle Ave", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14204-2058", + "country": "United States", + "longitude": -78.85968835, + "latitude": 42.87851264, + "phone": "7168682218", + "website_url": "http://www.buffalo-brewing-company.com", + "state": "New York", + "street": "314 Myrtle Ave" + }, + { + "id": "56325083-b952-40de-b38c-76beb3b3b876", + "name": "Buffalo Brewing Company At The Water Buffalo", + "brewery_type": "micro", + "address_1": "106 S Rodney Parham Rd", + "address_2": null, + "address_3": null, + "city": "Little Rock", + "state_province": "Arkansas", + "postal_code": "72205", + "country": "United States", + "longitude": -92.366648, + "latitude": 34.752616, + "phone": "5012311062", + "website_url": "http://www.thewaterbuffalo.com", + "state": "Arkansas", + "street": "106 S Rodney Parham Rd" + }, + { + "id": "b52360f6-016f-453a-b9e1-67c5d0ca9b60", + "name": "Buffalo Brewpub", + "brewery_type": "brewpub", + "address_1": "6861 Main St", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14221-5929", + "country": "United States", + "longitude": -78.831057, + "latitude": 42.946564, + "phone": "7166320552", + "website_url": "http://www.buffalobrewpub.com", + "state": "New York", + "street": "6861 Main St" + }, + { + "id": "6bd08522-4294-441d-8727-1e7c61e19e41", + "name": "Buffalo Commons Brewing Company", + "brewery_type": "micro", + "address_1": "2307 Memorial Hwy", + "address_2": null, + "address_3": null, + "city": "Mandan", + "state_province": "North Dakota", + "postal_code": "58554-4624", + "country": "United States", + "longitude": -100.8618267, + "latitude": 46.82409056, + "phone": "7015952255", + "website_url": "http://www.buffalocommonsbeer.com", + "state": "North Dakota", + "street": "2307 Memorial Hwy" + }, + { + "id": "0e2a877e-eb87-46bc-a614-c27999391442", + "name": "Buffalo Creek Brewing", + "brewery_type": "micro", + "address_1": "360 Historical Ln", + "address_2": null, + "address_3": null, + "city": "Long Grove", + "state_province": "Illinois", + "postal_code": "60047-9613", + "country": "United States", + "longitude": -87.99776222, + "latitude": 42.17719457, + "phone": "8478216140", + "website_url": "http://www.facebook.com/buffalocreekbrewing", + "state": "Illinois", + "street": "360 Historical Ln" + }, + { + "id": "c32ab865-0ed9-4136-bffe-f5d61dff11f4", + "name": "Buffalo Mountain Brewery", + "brewery_type": "micro", + "address_1": "332 Webbs Mill Rd N", + "address_2": null, + "address_3": null, + "city": "Floyd", + "state_province": "Virginia", + "postal_code": "24091", + "country": "United States", + "longitude": -80.32462582, + "latitude": 36.92079563, + "phone": null, + "website_url": null, + "state": "Virginia", + "street": "332 Webbs Mill Rd N" + }, + { + "id": "52c75863-28c7-43cf-8700-3357885beea3", + "name": "Buffalo Ridge Brewing", + "brewery_type": "micro", + "address_1": "102 N Main Ave", + "address_2": null, + "address_3": null, + "city": "Hartford", + "state_province": "South Dakota", + "postal_code": "57033-2165", + "country": "United States", + "longitude": -96.94549247, + "latitude": 43.62226751, + "phone": "6055282739", + "website_url": "http://buffaloridgebrewing.com", + "state": "South Dakota", + "street": "102 N Main Ave" + }, + { + "id": "84d94163-0441-44eb-bd8d-c8d05005ff32", + "name": "Buffalo RiverWorks Brewery", + "brewery_type": "brewpub", + "address_1": "359 Ganson St", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14203-3062", + "country": "United States", + "longitude": -78.87249292, + "latitude": 42.8696795, + "phone": "7163422292", + "website_url": "http://www.buffaloriverworks.com", + "state": "New York", + "street": "359 Ganson St" + }, + { + "id": "89c19afc-7874-4372-8edf-1e86f9e0fe90", + "name": "Buffalo Theory Brewing Co. LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Merritt Island", + "state_province": "Florida", + "postal_code": "32953-3222", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.Buffalotheorybrewingco.com", + "state": "Florida", + "street": null + }, + { + "id": "b9a37b8e-13e6-4c20-aeda-c19bdc6a0804", + "name": "Buffalo Water Beer Co", + "brewery_type": "closed", + "address_1": "309 N Water St, #315", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53202-5710", + "country": "United States", + "longitude": -87.9092089, + "latitude": 43.0341323, + "phone": "4142734680", + "website_url": "http://www.buffalowaterbeer.com", + "state": "Wisconsin", + "street": "309 N Water St, #315" + }, + { + "id": "ebeb8215-5ffe-4bd6-af1f-d39016bc77e4", + "name": "Bugnutty Brewing Company", + "brewery_type": "brewpub", + "address_1": "715 N Courtenay Pkwy", + "address_2": null, + "address_3": null, + "city": "Merritt Island", + "state_province": "Florida", + "postal_code": "32953-4651", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3214524460", + "website_url": "http://www.bugnutty.com", + "state": "Florida", + "street": "715 N Courtenay Pkwy" + }, + { + "id": "30c2ef0c-ca81-4b5a-b0b1-63df9cc9c586", + "name": "Bugu Brewing Company", + "brewery_type": "nano", + "address_1": "14751 N Kelsey St", + "address_2": null, + "address_3": null, + "city": "Monroe", + "state_province": "Washington", + "postal_code": "98272-1457", + "country": "United States", + "longitude": -121.975204, + "latitude": 47.864025, + "phone": "3602433364", + "website_url": "https://www.bugubrewing.com", + "state": "Washington", + "street": "14751 N Kelsey St" + }, + { + "id": "f20f4c6b-9e45-4ff6-af3e-c3f11d6a1828", + "name": "Building 8 Brewing", + "brewery_type": "micro", + "address_1": "320 Riverside Dr Ste 8", + "address_2": null, + "address_3": null, + "city": "Florence", + "state_province": "Massachusetts", + "postal_code": "01062-2750", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4132501602", + "website_url": null, + "state": "Massachusetts", + "street": "320 Riverside Dr Ste 8" + }, + { + "id": "3a0cfc97-fb6d-4485-9aee-1df7b8c8091a", + "name": "Bull & Bones Brewhaus & Grill", + "brewery_type": "brewpub", + "address_1": "1470 S Main St Ste 120", + "address_2": null, + "address_3": null, + "city": "Blacksburg", + "state_province": "Virginia", + "postal_code": "24060-5571", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5409532855", + "website_url": "http://www.bullandbones.com", + "state": "Virginia", + "street": "1470 S Main St Ste 120" + }, + { + "id": "a235f4c4-1a4f-4ef7-bbaf-b95142e2bd44", + "name": "Bull & Bush Brewery", + "brewery_type": "brewpub", + "address_1": "4700 E Cherry Creek South Dr", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80246-1819", + "country": "United States", + "longitude": -104.9488456, + "latitude": 39.7116689, + "phone": "3037590333", + "website_url": "http://www.bullandbush.com", + "state": "Colorado", + "street": "4700 E Cherry Creek South Dr" + }, + { + "id": "efc9b189-81df-447a-a2eb-c94828d4d275", + "name": "Bull and Barrel Brew Pub", + "brewery_type": "brewpub", + "address_1": "988 Route 22", + "address_2": null, + "address_3": null, + "city": "Brewster", + "state_province": "New York", + "postal_code": "10509-1576", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8452782855", + "website_url": "http://www.bullandbarrelbrewpub.com", + "state": "New York", + "street": "988 Route 22" + }, + { + "id": "cd922df7-7e27-4fdd-9beb-a203c859b25f", + "name": "Bull and Goat Brewery", + "brewery_type": "micro", + "address_1": "204 Banjo Ln", + "address_2": null, + "address_3": null, + "city": "Centreville", + "state_province": "Maryland", + "postal_code": "21617-1067", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.bullandgoatbrewery.com", + "state": "Maryland", + "street": "204 Banjo Ln" + }, + { + "id": "d89ba7ba-c249-48a2-bae7-48f3b39cb18f", + "name": "Bull City Burger And Brewery", + "brewery_type": "brewpub", + "address_1": "107 E Parrish St Ste 105", + "address_2": null, + "address_3": null, + "city": "Durham", + "state_province": "North Carolina", + "postal_code": "27701-3318", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9196802333", + "website_url": "http://www.bullcityburgerandbrewery.com", + "state": "North Carolina", + "street": "107 E Parrish St Ste 105" + }, + { + "id": "2a1e79cc-7f90-4309-a7c7-ab03566417dd", + "name": "Bull Creek Brewing Company", + "brewery_type": "proprietor", + "address_1": "7100 FM3405", + "address_2": null, + "address_3": null, + "city": "Liberty Hill", + "state_province": "Texas", + "postal_code": "78642", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5128399510", + "website_url": "http://www.bullcreekbrewing.com", + "state": "Texas", + "street": "7100 FM3405" + }, + { + "id": "6e967aa2-6e2b-4396-ac4e-d4cd8119cbb3", + "name": "Bull Durham Beer Co", + "brewery_type": "micro", + "address_1": "409 Blackwell St", + "address_2": null, + "address_3": null, + "city": "Durham", + "state_province": "North Carolina", + "postal_code": "27701-3972", + "country": "United States", + "longitude": -78.90481568, + "latitude": 35.9915653, + "phone": "9197443568", + "website_url": "http://www.bulldurhambeer.com", + "state": "North Carolina", + "street": "409 Blackwell St" + }, + { + "id": "553af7a3-d288-43f0-b635-aee72520cf49", + "name": "Bull Falls Brewery LLC", + "brewery_type": "micro", + "address_1": "901 E Thomas St", + "address_2": null, + "address_3": null, + "city": "Wausau", + "state_province": "Wisconsin", + "postal_code": "54403-6450", + "country": "United States", + "longitude": -89.6174386, + "latitude": 44.951511, + "phone": "715842", + "website_url": "http://www.bullfallsbrewery.com", + "state": "Wisconsin", + "street": "901 E Thomas St" + }, + { + "id": "1f031549-a4ca-4e92-99ff-f1f75118edd0", + "name": "Bull Island Brewing Company", + "brewery_type": "brewpub", + "address_1": "758 Settlers Landing Rd", + "address_2": null, + "address_3": null, + "city": "Hampton", + "state_province": "Virginia", + "postal_code": "23669-4035", + "country": "United States", + "longitude": -76.34206545, + "latitude": 37.02487345, + "phone": "7577889489", + "website_url": "http://www.bullislandbrewing.com", + "state": "Virginia", + "street": "758 Settlers Landing Rd" + }, + { + "id": "0cb655c5-b541-4dc0-b5e2-78f0b984f676", + "name": "Bulla Creek Brewing Co.", + "brewery_type": "micro", + "address_1": "820 Jerrybang Lane", + "address_2": null, + "address_3": null, + "city": "Monteagle", + "state_province": "NSW", + "postal_code": "2594", + "country": "Australia", + "longitude": 148.3116633, + "latitude": -34.1191145, + "phone": "+61 438 169 553", + "website_url": "http://www.bullacreekbrewing.com.au/", + "state": "NSW", + "street": "820 Jerrybang Lane" + }, + { + "id": "4ce7444f-655c-4a51-9dc6-47406b1896ca", + "name": "Bulldog Brewing", + "brewery_type": "brewpub", + "address_1": "1409 119th St", + "address_2": null, + "address_3": null, + "city": "Whiting", + "state_province": "Indiana", + "postal_code": "46394-1714", + "country": "United States", + "longitude": -87.4951351, + "latitude": 41.679491, + "phone": "2196555284", + "website_url": "http://www.bulldogbrewingco.com", + "state": "Indiana", + "street": "1409 119th St" + }, + { + "id": "613b7204-b9a3-4362-84f4-499304103d66", + "name": "Buller Road Brewery", + "brewery_type": "micro", + "address_1": "223 Mount Buller Road", + "address_2": null, + "address_3": null, + "city": "Mansfield", + "state_province": "VIC", + "postal_code": "3722", + "country": "Australia", + "longitude": 146.1033325, + "latitude": -37.0631637, + "phone": "+61 410 321 650", + "website_url": "http://www.bullerroadbrewery.com.au/", + "state": "VIC", + "street": "223 Mount Buller Road" + }, + { + "id": "b495c351-4df5-430d-9776-fc48d062b311", + "name": "Bullfrog Brewery", + "brewery_type": "brewpub", + "address_1": "229 W 4th St", + "address_2": null, + "address_3": null, + "city": "Williamsport", + "state_province": "Pennsylvania", + "postal_code": "17701-6112", + "country": "United States", + "longitude": -77.051529, + "latitude": 41.2399548, + "phone": "5703264700", + "website_url": "http://www.bullfrogbrewery.com", + "state": "Pennsylvania", + "street": "229 W 4th St" + }, + { + "id": "eb1f4dd4-a8f7-44ea-8bbe-958893a45b22", + "name": "Bullfrog Brewery - Production Only", + "brewery_type": "micro", + "address_1": "229 W 4th St", + "address_2": null, + "address_3": null, + "city": "Williamsport", + "state_province": "Pennsylvania", + "postal_code": "17701-6112", + "country": "United States", + "longitude": -77.051529, + "latitude": 41.2399548, + "phone": "5703264700", + "website_url": null, + "state": "Pennsylvania", + "street": "229 W 4th St" + }, + { + "id": "5aeae53c-94dd-42aa-9bf0-bbd23df9b767", + "name": "Bullfrog Creek Brewing Company", + "brewery_type": "micro", + "address_1": "3632 Lithia Pinecrest Rd", + "address_2": null, + "address_3": null, + "city": "Valrico", + "state_province": "Florida", + "postal_code": "33596-6305", + "country": "United States", + "longitude": -82.2695872, + "latitude": 27.9229731, + "phone": "8137038835", + "website_url": "http://www.bullfrogcreekbrewing.com", + "state": "Florida", + "street": "3632 Lithia Pinecrest Rd" + }, + { + "id": "2281f00a-d7e9-4341-8920-686503810956", + "name": "Bullhorn Brewing", + "brewery_type": "brewpub", + "address_1": "355 W Yellowstone Hwy", + "address_2": null, + "address_3": null, + "city": "Casper", + "state_province": "Wyoming", + "postal_code": "82601-2442", + "country": "United States", + "longitude": -106.35838279452, + "latitude": 43.024941817675, + "phone": "3073331112", + "website_url": "https://bullhornbrewing.beer", + "state": "Wyoming", + "street": "355 W Yellowstone Hwy" + }, + { + "id": "68e24159-8a63-4f9e-9230-4fb8f629668a", + "name": "Bullquarian Brewhouse", + "brewery_type": "brewpub", + "address_1": "1128 17th Ave", + "address_2": null, + "address_3": null, + "city": "Monroe", + "state_province": "Wisconsin", + "postal_code": "53566-2007", + "country": "United States", + "longitude": -89.6383093, + "latitude": 42.60032375, + "phone": "6084266720", + "website_url": "https://www.facebook.com/Bullquarianbrewhouse", + "state": "Wisconsin", + "street": "1128 17th Ave" + }, + { + "id": "140ab37b-0136-42c2-99f6-f8b4c2c48b59", + "name": "Bullthistle Brewing Co.", + "brewery_type": "brewpub", + "address_1": "45 S Main St", + "address_2": null, + "address_3": null, + "city": "Sherburne", + "state_province": "New York", + "postal_code": "13460-9202", + "country": "United States", + "longitude": -75.49576861, + "latitude": 42.67156527, + "phone": "6076742337", + "website_url": null, + "state": "New York", + "street": "45 S Main St" + }, + { + "id": "7669b9ef-f467-4bc6-a8c2-95be8ed156a9", + "name": "Bunker Brewing Co", + "brewery_type": "micro", + "address_1": "17 Westfield St Unit D", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04102-2730", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2074505014", + "website_url": "http://www.bunkerbrewingco.com", + "state": "Maine", + "street": "17 Westfield St Unit D" + }, + { + "id": "3cb1a817-c050-4afc-af5e-40d83e9e2e84", + "name": "Bunsenbrewer", + "brewery_type": "brewpub", + "address_1": "16506 362nd Dr", + "address_2": null, + "address_3": null, + "city": "Sandy", + "state_province": "Oregon", + "postal_code": "97055-9279", + "country": "United States", + "longitude": -122.2904067, + "latitude": 45.4042245, + "phone": "5033083150", + "website_url": "http://www.bunsenbrewer.com", + "state": "Oregon", + "street": "16506 362nd Dr" + }, + { + "id": "fdec8f24-19f5-4415-b7a0-b029db48735f", + "name": "Buon Appetito Ristorante", + "brewery_type": "brewpub", + "address_1": "6147 York Rd", + "address_2": null, + "address_3": null, + "city": "Spring Grove", + "state_province": "Pennsylvania", + "postal_code": "17362-9120", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7172250666", + "website_url": "http://www.buon-appetito-ristorante.com", + "state": "Pennsylvania", + "street": "6147 York Rd" + }, + { + "id": "43cc17d8-347f-4d72-9a2c-fdc75e562b77", + "name": "Buoy Beer Company", + "brewery_type": "micro", + "address_1": "1 8th St", + "address_2": null, + "address_3": null, + "city": "Astoria", + "state_province": "Oregon", + "postal_code": "97103-4506", + "country": "United States", + "longitude": -123.835151, + "latitude": 46.1913235, + "phone": "5033254540", + "website_url": "http://www.buoybeer.com", + "state": "Oregon", + "street": "1 8th St" + }, + { + "id": "e08ccb72-2e87-42f2-92d8-e5987c724b02", + "name": "Bur Oak Brewing Company", + "brewery_type": "micro", + "address_1": "8250 E Trade Center Dr", + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "Missouri", + "postal_code": "65201-7635", + "country": "United States", + "longitude": -92.210993, + "latitude": 38.954686, + "phone": "5738142178", + "website_url": "http://www.buroakbeer.com", + "state": "Missouri", + "street": "8250 E Trade Center Dr" + }, + { + "id": "b340b266-417c-42f7-8344-1545ced2ee6c", + "name": "Burdick Brewery", + "brewery_type": "closed", + "address_1": "8520 14th Ave S", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98108-4803", + "country": "United States", + "longitude": -122.3145617, + "latitude": 47.5267286, + "phone": "2069099632", + "website_url": "http://www.burdickbrewery.com", + "state": "Washington", + "street": "8520 14th Ave S" + }, + { + "id": "89440fb9-0739-4f65-adc1-591bf30c62ff", + "name": "Burgeon Beer Company", + "brewery_type": "micro", + "address_1": "6350 Yarrow Dr Ste C", + "address_2": null, + "address_3": null, + "city": "Carlsbad", + "state_province": "California", + "postal_code": "92011-1544", + "country": "United States", + "longitude": -117.2732302, + "latitude": 33.11992082, + "phone": "7608142548", + "website_url": "http://www.burgeonbeer.com", + "state": "California", + "street": "6350 Yarrow Dr Ste C" + }, + { + "id": "358b70d1-d86d-4001-9a3f-2acf644cc88b", + "name": "Burgh’ers Brewing", + "brewery_type": "micro", + "address_1": "22410 Perry Hwy Ste 410E", + "address_2": null, + "address_3": null, + "city": "Zelienople", + "state_province": "Pennsylvania", + "postal_code": "16063-2935", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4129739628", + "website_url": "http://Burgherspgh.com", + "state": "Pennsylvania", + "street": "22410 Perry Hwy Ste 410E" + }, + { + "id": "7bdc2c91-ce80-4fb3-b2a2-bb9f7c8ab5bf", + "name": "Burgundian Brewing Co.", + "brewery_type": "micro", + "address_1": "4725 Lipan St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80211-2334", + "country": "United States", + "longitude": -105.0024095, + "latitude": 39.7825168, + "phone": "4704400420", + "website_url": "http://www.facebook.com/BurgundianBrewing", + "state": "Colorado", + "street": "4725 Lipan St" + }, + { + "id": "b571a872-4317-48e2-a0a2-18607eedb6e7", + "name": "Burial Beer Co", + "brewery_type": "micro", + "address_1": "40 Collier Ave", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28801-4024", + "country": "United States", + "longitude": -82.55379062, + "latitude": 35.5879562, + "phone": null, + "website_url": "http://www.burialbeer.com", + "state": "North Carolina", + "street": "40 Collier Ave" + }, + { + "id": "854f374d-ad3e-4b8a-b1e5-b780eba1918a", + "name": "Burial Beer Co Forestry Camp", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28803-2719", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "North Carolina", + "street": null + }, + { + "id": "7a574a98-f92d-4d8e-9cdb-20a3facda0a0", + "name": "Buried Acorn Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Syracuse", + "state_province": "New York", + "postal_code": "13204-1156", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3155521499", + "website_url": "http://www.buriedacorn.com", + "state": "New York", + "street": null + }, + { + "id": "a743ab27-0175-4ef3-b65f-1d5e67af200a", + "name": "Burke-Gilman Brewing", + "brewery_type": "micro", + "address_1": "3626 NE 45th St Ste 102", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98105-5652", + "country": "United States", + "longitude": -122.2880715, + "latitude": 47.66183205, + "phone": "2062680220", + "website_url": "http://www.burkegilmanbrewing.com/", + "state": "Washington", + "street": "3626 NE 45th St Ste 102" + }, + { + "id": "e098a1d2-6efb-4aff-854f-4013ba2b9e57", + "name": "Burke's Alewerks", + "brewery_type": "micro", + "address_1": "200 Webster St Ste 3", + "address_2": null, + "address_3": null, + "city": "Hanover", + "state_province": "Massachusetts", + "postal_code": "02339-1230", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7813128207", + "website_url": "http://www.burkesalewerks.com", + "state": "Massachusetts", + "street": "200 Webster St Ste 3" + }, + { + "id": "d90ab997-6dc5-41aa-bd79-d0e27142ffe0", + "name": "Burleigh Brewing Co", + "brewery_type": "micro", + "address_1": "2 Ern Harley Drive", + "address_2": null, + "address_3": null, + "city": "Burleigh Heads", + "state_province": "QLD", + "postal_code": "4220", + "country": "Australia", + "longitude": 153.408648, + "latitude": -28.1030339, + "phone": "+61 7 5593 6000", + "website_url": "http://www.burleighbrewing.com.au/", + "state": "QLD", + "street": "2 Ern Harley Drive" + }, + { + "id": "3a00a075-8057-411e-9291-4c18d26ec838", + "name": "Burleigh Brewing Co.", + "brewery_type": "micro", + "address_1": "2 Ern Harley Drive", + "address_2": null, + "address_3": null, + "city": "Burleigh Heads", + "state_province": "QLD", + "postal_code": "4220", + "country": "Australia", + "longitude": 153.408648, + "latitude": -28.1030339, + "phone": "+61 7 5593 6000", + "website_url": "http://www.burleighbrewing.com.au/", + "state": "QLD", + "street": "2 Ern Harley Drive" + }, + { + "id": "97386593-5a34-4322-b823-ae7f97f5d2b5", + "name": "Burleigh Brewing Company", + "brewery_type": "micro", + "address_1": "2 Ern Harley Drive", + "address_2": null, + "address_3": null, + "city": "Burleigh Heads", + "state_province": "QLD", + "postal_code": "4220", + "country": "Australia", + "longitude": 153.408648, + "latitude": -28.1030339, + "phone": "+61 7 5593 6000", + "website_url": "http://www.burleighbrewing.com.au/", + "state": "QLD", + "street": "2 Ern Harley Drive" + }, + { + "id": "90e8f363-3b72-4ca9-bef8-b3a2ab6008df", + "name": "Burley Oak Craft Brewery", + "brewery_type": "micro", + "address_1": "10016 Old Ocean City Blvd", + "address_2": null, + "address_3": null, + "city": "Berlin", + "state_province": "Maryland", + "postal_code": "21811-1145", + "country": "United States", + "longitude": -75.2169864, + "latitude": 38.3336448, + "phone": "4104228887", + "website_url": "http://www.burleyoak.com", + "state": "Maryland", + "street": "10016 Old Ocean City Blvd" + }, + { + "id": "bc2ab74e-761e-45de-91ae-00deb4e0dd9b", + "name": "Burlington Beer Company", + "brewery_type": "micro", + "address_1": "25 Omega Dr Ste 150", + "address_2": null, + "address_3": null, + "city": "Williston", + "state_province": "Vermont", + "postal_code": "05495-7334", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8028632337", + "website_url": "http://www.burlingtonbeercompany.com", + "state": "Vermont", + "street": "25 Omega Dr Ste 150" + }, + { + "id": "793cbd77-2732-4885-b54b-4731b9cb226c", + "name": "Burly Brewing Company, LLC", + "brewery_type": "closed", + "address_1": "680 Atchison Way Ste 700-800", + "address_2": null, + "address_3": null, + "city": "Castle Rock", + "state_province": "Colorado", + "postal_code": "80109-3106", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.burlybrewing.com", + "state": "Colorado", + "street": "680 Atchison Way Ste 700-800" + }, + { + "id": "c0c4af99-eb53-4114-b976-de76d111596f", + "name": "Burn'Em Brewing", + "brewery_type": "brewpub", + "address_1": "718 Freyer Rd", + "address_2": null, + "address_3": null, + "city": "Michigan City", + "state_province": "Indiana", + "postal_code": "46360-1911", + "country": "United States", + "longitude": -86.82979191, + "latitude": 41.73849717, + "phone": "2193938606", + "website_url": "http://www.burnembrewing.com", + "state": "Indiana", + "street": "718 Freyer Rd" + }, + { + "id": "d6ca5aa0-a5de-454f-8cf6-66b68310f73f", + "name": "Burnin Daylight Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lomita", + "state_province": "California", + "postal_code": "90717", + "country": "United States", + "longitude": -118.3195014, + "latitude": 33.8036545, + "phone": "3107417621", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "af0aba6a-a22a-43eb-8f5c-3097f38f156f", + "name": "Burning Beard Brewing", + "brewery_type": "micro", + "address_1": "785 Vernon Way", + "address_2": null, + "address_3": null, + "city": "El Cajon", + "state_province": "California", + "postal_code": "92020-1938", + "country": "United States", + "longitude": -116.9717836, + "latitude": 32.81201287, + "phone": "6194569185", + "website_url": "http://www.burningbeardbrewing.com", + "state": "California", + "street": "785 Vernon Way" + }, + { + "id": "80003377-c4c9-4ab6-83e2-11046a1a287a", + "name": "Burning Brothers Brewing", + "brewery_type": "micro", + "address_1": "1750 Thomas Ave Ste 2", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55104-2918", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6514448882", + "website_url": "http://burnbrosbrew.com", + "state": "Minnesota", + "street": "1750 Thomas Ave Ste 2" + }, + { + "id": "46cf9ab8-ae15-4f2f-9ad6-50b200e8ba94", + "name": "Burning Bush Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Wilmette", + "state_province": "Illinois", + "postal_code": "60091-2703", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Illinois", + "street": null + }, + { + "id": "1b59fbb0-0fd2-4daa-9041-5799da9320db", + "name": "Burning Sky Brewery Ltd", + "brewery_type": "micro", + "address_1": "Place Barn", + "address_2": null, + "address_3": null, + "city": "Lewes", + "state_province": "East Sussex", + "postal_code": "BN8 6LP", + "country": "England", + "longitude": 0.087961, + "latitude": 50.844723, + "phone": "1273858080", + "website_url": "https://www.burningskybeer.com/", + "state": "East Sussex", + "street": "Place Barn" + }, + { + "id": "8475bb73-3d83-4191-9b9f-ecd918b1ec0f", + "name": "Burns Family Artisan Ales", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80219-1655", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2482242697", + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "94570768-e3ca-4d69-a292-35dea27a24c9", + "name": "Burnside Brewing Co", + "brewery_type": "micro", + "address_1": "701 E Burnside St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97214-1218", + "country": "United States", + "longitude": -122.6584695, + "latitude": 45.5233261, + "phone": "5032083476", + "website_url": "http://www.burnsidebrewco.com", + "state": "Oregon", + "street": "701 E Burnside St" + }, + { + "id": "a4aa30b0-6073-4a0b-b9ca-c8669fa9f816", + "name": "Burnt City Brewing", + "brewery_type": "micro", + "address_1": "2747 N Lincoln Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60614-1320", + "country": "United States", + "longitude": -87.65722732, + "latitude": 41.93185255, + "phone": "7732951270", + "website_url": "http://www.burntcitybrewing.com", + "state": "Illinois", + "street": "2747 N Lincoln Ave" + }, + { + "id": "179ddd44-f2d8-4a98-ab38-ceeca78c11ad", + "name": "Burnt Hickory Brewery", + "brewery_type": "micro", + "address_1": "2260 Moon Station Ct NW Ste 210", + "address_2": null, + "address_3": null, + "city": "Kennesaw", + "state_province": "Georgia", + "postal_code": "30144-5653", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7705148812", + "website_url": "http://www.burnthickorybrewery.com", + "state": "Georgia", + "street": "2260 Moon Station Ct NW Ste 210" + }, + { + "id": "e528714d-4002-4d80-8415-a8cf895ed4ab", + "name": "Burnt Timber Brewing", + "brewery_type": "brewpub", + "address_1": "96 Lehner St", + "address_2": null, + "address_3": null, + "city": "Wolfeboro", + "state_province": "New Hampshire", + "postal_code": "03894", + "country": "United States", + "longitude": -71.20968924, + "latitude": 43.58632316, + "phone": "6036303605", + "website_url": "http://www.burnttimbertavern.com", + "state": "New Hampshire", + "street": "96 Lehner St" + }, + { + "id": "3966a2ac-e4c8-44ed-a9cf-388e755b0b08", + "name": "Burra Brewing Co.", + "brewery_type": "micro", + "address_1": "12 Commercial Street", + "address_2": null, + "address_3": null, + "city": "Korumburra", + "state_province": "VIC", + "postal_code": "3950", + "country": "Australia", + "longitude": 145.8248599, + "latitude": -38.4326505, + "phone": "+61 3 5658 1446", + "website_url": "http://www.burrabrewingco.com.au/", + "state": "VIC", + "street": "12 Commercial Street" + }, + { + "id": "5215f56d-865c-4e1a-ac01-6588a2bf05cc", + "name": "Burren Brewery", + "brewery_type": "brewpub", + "address_1": "Kincora Rd", + "address_2": "Rathbaun", + "address_3": null, + "city": "Lisdoonvarna", + "state_province": "Clare", + "postal_code": "V95 T85K", + "country": "Ireland", + "longitude": -9.2928309, + "latitude": 53.0283605, + "phone": "353899816801", + "website_url": "http://www.roadsidetavern.ie/roadside/?q=burren-storehouse", + "state": "Clare", + "street": "Kincora Rd" + }, + { + "id": "53d04d81-f93b-44ce-83aa-f2b0baa852ed", + "name": "Burt Lake Brewery / Seasons of the North Winery", + "brewery_type": "micro", + "address_1": "9090 W M-68 Hwy", + "address_2": null, + "address_3": null, + "city": "Alanson", + "state_province": "Michigan", + "postal_code": "49706", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2315481280", + "website_url": "http://www.burtlakebrewery.com", + "state": "Michigan", + "street": "9090 W M-68 Hwy" + }, + { + "id": "3b6721e6-29b6-4eeb-81e5-a105fa4178d4", + "name": "Burwood Brewing Company", + "brewery_type": "micro", + "address_1": "1120 E St", + "address_2": null, + "address_3": null, + "city": "Walla Walla", + "state_province": "Washington", + "postal_code": "99362-9505", + "country": "United States", + "longitude": -118.2653286, + "latitude": 46.0940928, + "phone": "5098766220", + "website_url": "http://www.burwoodbrewing.com", + "state": "Washington", + "street": "1120 E St" + }, + { + "id": "2403a143-2664-4c84-a0c3-a97aa99f71de", + "name": "Bury Me Brewing Company", + "brewery_type": "micro", + "address_1": "4224 Cleveland Ave Ste 7", + "address_2": null, + "address_3": null, + "city": "Fort Myers", + "state_province": "Florida", + "postal_code": "33901-9051", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2393322337", + "website_url": "http://www.burymebrewing.com", + "state": "Florida", + "street": "4224 Cleveland Ave Ste 7" + }, + { + "id": "5917b00b-72ee-4ee5-b67c-c97a486c270d", + "name": "Bush Shack Brewery", + "brewery_type": "micro", + "address_1": "791 Ferguson Road", + "address_2": null, + "address_3": null, + "city": "Ferguson", + "state_province": "WA", + "postal_code": "6236", + "country": "Australia", + "longitude": 115.8308723, + "latitude": -33.4162107, + "phone": "+61 8 9728 3553", + "website_url": "http://www.bushshackbrewery.com.au/", + "state": "WA", + "street": "791 Ferguson Road" + }, + { + "id": "86531644-17de-4385-af71-82574666baa6", + "name": "Bushy’s Brewery Ltd", + "brewery_type": "micro", + "address_1": "Mount Murray", + "address_2": null, + "address_3": null, + "city": "Braddan", + "state_province": "Middle", + "postal_code": "IM4 1JE", + "country": "Isle of Man", + "longitude": -4.5579383193985, + "latitude": 54.136102865269, + "phone": "+441624611101", + "website_url": "https://www.bushys.com/", + "state": "Middle", + "street": "Mount Murray" + }, + { + "id": "678c1f63-2b15-4900-84bd-c11c47dcf26a", + "name": "Busted Knuckle Brewery", + "brewery_type": "micro", + "address_1": "213 11th St W", + "address_2": null, + "address_3": null, + "city": "Williston", + "state_province": "North Dakota", + "postal_code": "58801-5125", + "country": "United States", + "longitude": -103.6271886, + "latitude": 48.15635372, + "phone": "7015772277", + "website_url": "http://bkbwilliston.com", + "state": "North Dakota", + "street": "213 11th St W" + }, + { + "id": "0e5a4e78-b806-4b0c-a267-3b237a270ce1", + "name": "Busted Knuckle Brewery", + "brewery_type": "micro", + "address_1": "303 1st Ave S", + "address_2": null, + "address_3": null, + "city": "Glasgow", + "state_province": "Montana", + "postal_code": "59230-2308", + "country": "United States", + "longitude": -106.6335464, + "latitude": 48.1938472, + "phone": "4062282277", + "website_url": null, + "state": "Montana", + "street": "303 1st Ave S" + }, + { + "id": "31492f5d-c872-461c-b6c5-752ced93759a", + "name": "Busted Sandal Brewing Company", + "brewery_type": "micro", + "address_1": "7114 Oaklawn Dr", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78229-3021", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2108721486", + "website_url": "http://www.bustedsandalbrewing.com", + "state": "Texas", + "street": "7114 Oaklawn Dr" + }, + { + "id": "bd51516b-caf1-46ea-9695-a330004f6d78", + "name": "Buster's Brew Pub", + "brewery_type": "brewpub", + "address_1": "Euphrates River Valley Road Bldg P-4350", + "address_2": null, + "address_3": null, + "city": "Fort Drum", + "state_province": "New York", + "postal_code": "13602", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3157721900", + "website_url": "http://www.drummwr.com", + "state": "New York", + "street": "Euphrates River Valley Road Bldg P-4350" + }, + { + "id": "76428248-05e8-4db4-a1d8-5b561571973f", + "name": "Butcherknife Brewing Company", + "brewery_type": "micro", + "address_1": "2875 Elk River Rd", + "address_2": null, + "address_3": null, + "city": "Steamboat Springs", + "state_province": "Colorado", + "postal_code": "80487-5076", + "country": "United States", + "longitude": -106.857763, + "latitude": 40.510887, + "phone": "9708792337", + "website_url": "http://www.butcherknifebrewing.com", + "state": "Colorado", + "street": "2875 Elk River Rd" + }, + { + "id": "f4df6f7e-2332-45e8-98c2-0e917a2177ad", + "name": "Bute Brew Co", + "brewery_type": "closed", + "address_1": "15-17 Columshill Street", + "address_2": "Rothesay", + "address_3": null, + "city": "Isle of Bute", + "state_province": "Bute", + "postal_code": "PA20 0DN", + "country": "Scotland", + "longitude": -5.058482, + "latitude": 55.835396, + "phone": "1700504206", + "website_url": "http://butebrewco.co.uk/", + "state": "Bute", + "street": "15-17 Columshill Street" + }, + { + "id": "29444b11-30a1-4b43-9b9f-541ea67afc94", + "name": "Butler Brew Works", + "brewery_type": "brewpub", + "address_1": "101 S Main St", + "address_2": null, + "address_3": null, + "city": "Butler", + "state_province": "Pennsylvania", + "postal_code": "16001-5907", + "country": "United States", + "longitude": -79.895238, + "latitude": 40.860914, + "phone": "7242645347", + "website_url": "http://www.butlerbrewworks.com", + "state": "Pennsylvania", + "street": "101 S Main St" + }, + { + "id": "bc64b49f-5c63-4298-b87a-f6dd657dd7c8", + "name": "Butte Brewing Co", + "brewery_type": "micro", + "address_1": "465 E Galena St", + "address_2": null, + "address_3": null, + "city": "Butte", + "state_province": "Montana", + "postal_code": "59701-1928", + "country": "United States", + "longitude": -112.5259197, + "latitude": 46.01246804, + "phone": "4062993953", + "website_url": "http://www.buttebrewing.com", + "state": "Montana", + "street": "465 E Galena St" + }, + { + "id": "1f5f4ff1-493b-474f-b705-06619a6fa4b7", + "name": "Butternuts Beer", + "brewery_type": "micro", + "address_1": "4021 State Highway 51", + "address_2": null, + "address_3": null, + "city": "Garrattsville", + "state_province": "New York", + "postal_code": "13342-1705", + "country": "United States", + "longitude": -75.1914973, + "latitude": 42.62396243, + "phone": "6072635070", + "website_url": "http://www.butternutsbeer.com", + "state": "New York", + "street": "4021 State Highway 51" + }, + { + "id": "8626498b-4e07-433b-92ac-41a27a0676f3", + "name": "Button Brew House, LLC", + "brewery_type": "micro", + "address_1": "6800 N Camino Martin Ste 160", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85741-2395", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5202688543", + "website_url": "http://www.button.beer", + "state": "Arizona", + "street": "6800 N Camino Martin Ste 160" + }, + { + "id": "98543682-b789-42e1-9ea3-281d9cf3235a", + "name": "Buttons Brewing", + "brewery_type": "micro", + "address_1": "32 Short Street", + "address_2": null, + "address_3": null, + "city": "Ulverstone", + "state_province": "TAS", + "postal_code": "7315", + "country": "Australia", + "longitude": 146.1621961, + "latitude": -41.163565, + "phone": "+61 408 074 751", + "website_url": "http://buttonsbrewing.com/", + "state": "TAS", + "street": "32 Short Street" + }, + { + "id": "7499d5f1-3dee-4207-a073-aea0d069ea6b", + "name": "Buttonwoods Brewery", + "brewery_type": "micro", + "address_1": "530 Wellington Ave Ste 22", + "address_2": null, + "address_3": null, + "city": "Cranston", + "state_province": "Rhode Island", + "postal_code": "02910-2997", + "country": "United States", + "longitude": -71.4263784, + "latitude": 41.7731564, + "phone": "4014612337", + "website_url": "http://www.buttonwoodsbrewery.com", + "state": "Rhode Island", + "street": "530 Wellington Ave Ste 22" + }, + { + "id": "047e6c05-5c5f-4eee-b953-0a7c796404c3", + "name": "Buzz Bomb Brewing Co", + "brewery_type": "micro", + "address_1": "406 E Adams St", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Illinois", + "postal_code": "62701", + "country": "United States", + "longitude": -89.65050394, + "latitude": 39.8005279, + "phone": "2176794157", + "website_url": "http://www.buzzbombbrewingco.com", + "state": "Illinois", + "street": "406 E Adams St" + }, + { + "id": "3fba5b89-2f49-4d45-8cf6-efc97bea8933", + "name": "Buzzards Bay Brewing Co", + "brewery_type": "micro", + "address_1": "98 Horseneck Rd", + "address_2": null, + "address_3": null, + "city": "Westport", + "state_province": "Massachusetts", + "postal_code": "02790-1399", + "country": "United States", + "longitude": -71.04970461, + "latitude": 41.55207456, + "phone": "5086362288", + "website_url": "http://www.buzzardsbrew.com", + "state": "Massachusetts", + "street": "98 Horseneck Rd" + }, + { + "id": "47b3c151-04cb-47bb-8b74-f46bd3ee1fc3", + "name": "BW Farm, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Owings", + "state_province": "Maryland", + "postal_code": "20736-9109", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2406727995", + "website_url": null, + "state": "Maryland", + "street": null + }, + { + "id": "70d54bc5-737f-4e00-9e47-a41584043db7", + "name": "Byaregårdens Brygghus", + "brewery_type": "micro", + "address_1": "Syllinge 18", + "address_2": null, + "address_3": null, + "city": "Veddige", + "state_province": "Halland", + "postal_code": "432 66", + "country": "Sweden", + "longitude": null, + "latitude": null, + "phone": "+46 705-378336", + "website_url": "https://byaregardensbrygghus.se/", + "state": "Halland", + "street": "Syllinge 18" + }, + { + "id": "24ed88ac-5267-4d15-be7a-c6fa35befd1f", + "name": "Byers Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "DeKalb", + "state_province": "Illinois", + "postal_code": "60115-4661", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8159705318", + "website_url": null, + "state": "Illinois", + "street": null + }, + { + "id": "72a548d0-8bed-4ab0-ac92-467a4cf5546e", + "name": "Byway Brewing Company", + "brewery_type": "brewpub", + "address_1": "2825 Carlson Dr", + "address_2": null, + "address_3": null, + "city": "Hammond", + "state_province": "Indiana", + "postal_code": "46323-1183", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2198445458", + "website_url": "http://www.bywaybrewing.beer", + "state": "Indiana", + "street": "2825 Carlson Dr" + }, + { + "id": "4d071d65-60eb-4e9a-9efa-9a65bf811cd3", + "name": "C.B. and Potts/Big Horn Brewery - Englewood", + "brewery_type": "closed", + "address_1": "6575 Greenwood Plaza Blvd", + "address_2": null, + "address_3": null, + "city": "Englewood", + "state_province": "Colorado", + "postal_code": "80111-4933", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3037701982", + "website_url": "http://www.cbpotts.com", + "state": "Colorado", + "street": "6575 Greenwood Plaza Blvd" + }, + { + "id": "0ba6de0f-d84b-4e89-a608-8a5d70a7d612", + "name": "C.B. and Potts/Big Horn Brewery - Highlands Ranch", + "brewery_type": "closed", + "address_1": "43 W Centennial Blvd", + "address_2": null, + "address_3": null, + "city": "Highlands Ranch", + "state_province": "Colorado", + "postal_code": "80129-2323", + "country": "United States", + "longitude": -104.9887246, + "latitude": 39.56211674, + "phone": "7203441200", + "website_url": "http://www.cbpotts.com", + "state": "Colorado", + "street": "43 W Centennial Blvd" + }, + { + "id": "cfacd093-a793-4110-b337-ba26fa5f0d3e", + "name": "C.B. and Potts/Big Horn Brewery - Westminster", + "brewery_type": "closed", + "address_1": "1257 W 120th Ave", + "address_2": null, + "address_3": null, + "city": "Westminster", + "state_province": "Colorado", + "postal_code": "80234-2725", + "country": "United States", + "longitude": -105.0040899, + "latitude": 39.91376115, + "phone": "3034515767", + "website_url": "http://www.cbpotts.com", + "state": "Colorado", + "street": "1257 W 120th Ave" + }, + { + "id": "ef9d5ee5-045d-4d41-92f9-2d518fa0cc7a", + "name": "Cabarrus Brewing Company", + "brewery_type": "micro", + "address_1": "329 McGill Ave NW", + "address_2": null, + "address_3": null, + "city": "Concord", + "state_province": "North Carolina", + "postal_code": "28027-6149", + "country": "United States", + "longitude": -80.60600028, + "latitude": 35.41573578, + "phone": "7044904487", + "website_url": "http://www.cabarrusbrewing.com", + "state": "North Carolina", + "street": "329 McGill Ave NW" + }, + { + "id": "06b8b131-a227-414a-ac7f-fd63c63828b9", + "name": "Cabin Boys Brewery", + "brewery_type": "micro", + "address_1": "1717 E. 7th Steeet", + "address_2": null, + "address_3": null, + "city": "Tulsa", + "state_province": "Oklahoma", + "postal_code": "74104", + "country": "United States", + "longitude": -95.966947, + "latitude": 36.1515468, + "phone": "9189334033", + "website_url": "http://www.cabinboysbrewery.com", + "state": "Oklahoma", + "street": "1717 E. 7th Steeet" + }, + { + "id": "847fc182-b1fd-4e3a-bf42-a4aab6d5a0e6", + "name": "Cabinet Mountain Brewing Co", + "brewery_type": "brewpub", + "address_1": "206 Mineral Ave", + "address_2": null, + "address_3": null, + "city": "Libby", + "state_province": "Montana", + "postal_code": "59923-1952", + "country": "United States", + "longitude": -115.5506412, + "latitude": 48.3936508, + "phone": "4062932739", + "website_url": "http://www.cabinetmountainbrewing.com", + "state": "Montana", + "street": "206 Mineral Ave" + }, + { + "id": "1bb1a62c-5339-4a44-acf7-5a960fbb39b1", + "name": "Caboose Brewing Co.", + "brewery_type": "brewpub", + "address_1": "520 Mill St NE", + "address_2": null, + "address_3": null, + "city": "Vienna", + "state_province": "Virginia", + "postal_code": "22180-4526", + "country": "United States", + "longitude": -77.2705542, + "latitude": 38.9077525, + "phone": "7034734870", + "website_url": "http://caboosebrewing.com", + "state": "Virginia", + "street": "520 Mill St NE" + }, + { + "id": "37fcc36b-c5ec-44e6-8b33-8c6dea8cb01f", + "name": "Cacapon Mountain Brewing Co", + "brewery_type": "micro", + "address_1": "42 Williams St", + "address_2": null, + "address_3": null, + "city": "Berkeley Springs", + "state_province": "West Virginia", + "postal_code": "25411-5306", + "country": "United States", + "longitude": -78.234601495241, + "latitude": 39.690778971971, + "phone": null, + "website_url": "http://www.cacaponbrewing.com", + "state": "West Virginia", + "street": "42 Williams St" + }, + { + "id": "1a4ac5aa-6d2f-41ef-80b5-b4b11db57b9a", + "name": "Cactus Land Brewing Company", + "brewery_type": "micro", + "address_1": "368 County Road 325", + "address_2": null, + "address_3": null, + "city": "Adkins", + "state_province": "Texas", + "postal_code": "78101-2812", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2104142776", + "website_url": "http://www.cactuslandbrewing.com", + "state": "Texas", + "street": "368 County Road 325" + }, + { + "id": "6d35da2a-ee38-4b85-ba89-0cfd1180e4f5", + "name": "Café Football", + "brewery_type": "bar", + "address_1": "920 East Coast Park", + "address_2": "Parkland Green", + "address_3": "#01-28", + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "449875", + "country": "Singapore", + "longitude": 1.2990479159542, + "latitude": 103.9061601, + "phone": "+65 8827 7490", + "website_url": null, + "state": "Singapore", + "street": "920 East Coast Park" + }, + { + "id": "c0c8f2f1-ec01-4d3e-8faf-b05f3f18f945", + "name": "Cafe Karibo", + "brewery_type": "brewpub", + "address_1": "27 N 3rd St", + "address_2": null, + "address_3": null, + "city": "Fernandina Beach", + "state_province": "Florida", + "postal_code": "32034-4111", + "country": "United States", + "longitude": -81.46300291, + "latitude": 30.6716253, + "phone": "9042775269", + "website_url": "http://www.cafekaribo.com", + "state": "Florida", + "street": "27 N 3rd St" + }, + { + "id": "b04c9621-bb87-439d-a499-94cb432bde90", + "name": "Cafe Luis", + "brewery_type": "bar", + "address_1": "Weizberg 7", + "address_2": null, + "address_3": null, + "city": "Weiz", + "state_province": "Steiermark", + "postal_code": "8160", + "country": "Austria", + "longitude": 15.635828044555, + "latitude": 47.223789228965, + "phone": "+4331723924", + "website_url": null, + "state": "Steiermark", + "street": "Weizberg 7" + }, + { + "id": "0acbc5f2-6427-46e0-8302-7c26017975ec", + "name": "Café Wolfgang Ranner", + "brewery_type": "bar", + "address_1": "20 Eastwood Road", + "address_2": "Eastwood Centre", + "address_3": "#01-06", + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "486442", + "country": "Singapore", + "longitude": 1.3215789923362, + "latitude": 103.95544389743, + "phone": "+65 9118 0336", + "website_url": "https://ranner.sg/", + "state": "Singapore", + "street": "20 Eastwood Road" + }, + { + "id": "9355bc7c-bdc7-40c3-8932-e840c996ed86", + "name": "Caf� Okei", + "brewery_type": "bar", + "address_1": "Feldkirchenstra�e 40", + "address_2": null, + "address_3": null, + "city": "Kalsdorf bei Graz", + "state_province": "Steiermark", + "postal_code": "8401", + "country": "Austria", + "longitude": 15.460420275615, + "latitude": 46.971319127868, + "phone": "+43313557156", + "website_url": "https://okei.at", + "state": "Steiermark", + "street": "Feldkirchenstra�e 40" + }, + { + "id": "07abdcde-be13-49ed-9000-409d7d3d1975", + "name": "Cage Brewing", + "brewery_type": "micro", + "address_1": "2001 1st Ave S", + "address_2": null, + "address_3": null, + "city": "Saint Petersburg", + "state_province": "Florida", + "postal_code": "33712-1201", + "country": "United States", + "longitude": -82.660409, + "latitude": 27.770292, + "phone": "7272014278", + "website_url": null, + "state": "Florida", + "street": "2001 1st Ave S" + }, + { + "id": "a476acbb-451e-4eb5-a250-55c9216ea153", + "name": "Cahaba Brewing Co", + "brewery_type": "micro", + "address_1": "4500 5th Ave S Ste C", + "address_2": null, + "address_3": null, + "city": "Birmingham", + "state_province": "Alabama", + "postal_code": "35222-2911", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2059669444", + "website_url": "http://www.cahababrewing.com", + "state": "Alabama", + "street": "4500 5th Ave S Ste C" + }, + { + "id": "0254d394-bf18-4793-900b-7320ae176e3c", + "name": "Cairn Brewing", + "brewery_type": "closed", + "address_1": "7204 NE 175th St", + "address_2": null, + "address_3": null, + "city": "Kenmore", + "state_province": "Washington", + "postal_code": "98028-3561", + "country": "United States", + "longitude": -122.2440866, + "latitude": 47.7571424, + "phone": "4259495295", + "website_url": "http://www.cairnbrewing.com", + "state": "Washington", + "street": "7204 NE 175th St" + }, + { + "id": "6265172a-55a2-405b-8a59-efbd4de3adfd", + "name": "Cajun Brewing", + "brewery_type": "micro", + "address_1": "206 Rayburn St", + "address_2": null, + "address_3": null, + "city": "Lafayette", + "state_province": "Louisiana", + "postal_code": "70506-4130", + "country": "United States", + "longitude": -92.04978922, + "latitude": 30.21549043, + "phone": "3378069196", + "website_url": "http://www.cajunbrewing.com", + "state": "Louisiana", + "street": "206 Rayburn St" + }, + { + "id": "756d4443-74b5-423d-b0a7-a7731e7f7883", + "name": "Calapooia Brewing Co / Siletz Ales", + "brewery_type": "micro", + "address_1": "140 NE Hill St", + "address_2": null, + "address_3": null, + "city": "Albany", + "state_province": "Oregon", + "postal_code": "97321-3002", + "country": "United States", + "longitude": -123.0937773, + "latitude": 44.6394668, + "phone": "5419281931", + "website_url": "http://www.calapooiabrewing.com", + "state": "Oregon", + "street": "140 NE Hill St" + }, + { + "id": "9e517108-3f84-48dd-8e0d-32bcd8e0a440", + "name": "Caldera Brewing & Blending Co.", + "brewery_type": "micro", + "address_1": "13 Thornbill Drive", + "address_2": null, + "address_3": null, + "city": "South Murwillumbah", + "state_province": "NSW", + "postal_code": "2484", + "country": "Australia", + "longitude": 153.4219911, + "latitude": -28.3435077, + "phone": null, + "website_url": "https://calderabrewing.com.au/", + "state": "NSW", + "street": "13 Thornbill Drive" + }, + { + "id": "914b9f4c-d6eb-45cc-aa64-f93a41958c35", + "name": "Caldera Brewing Co", + "brewery_type": "micro", + "address_1": "590 Clover Ln", + "address_2": null, + "address_3": null, + "city": "Ashland", + "state_province": "Oregon", + "postal_code": "97520-3709", + "country": "United States", + "longitude": -122.6633744, + "latitude": 42.18373846, + "phone": "5414824677", + "website_url": "http://www.calderabrewing.com", + "state": "Oregon", + "street": "590 Clover Ln" + }, + { + "id": "87f356ba-1eee-4480-96a9-5877cc669edb", + "name": "Caledonia Brewing", + "brewery_type": "micro", + "address_1": "587 Main St", + "address_2": null, + "address_3": null, + "city": "Dunedin", + "state_province": "Florida", + "postal_code": "34698-4998", + "country": "United States", + "longitude": -82.7840735, + "latitude": 28.01394225, + "phone": "7273515105", + "website_url": "http://www.caledoniabrewing.com", + "state": "Florida", + "street": "587 Main St" + }, + { + "id": "c3aa08ce-050b-440d-a8c1-0b45cbceedd5", + "name": "Calfkiller Brewing Co", + "brewery_type": "micro", + "address_1": "1839 Blue Springs Rd", + "address_2": null, + "address_3": null, + "city": "Sparta", + "state_province": "Tennessee", + "postal_code": "38583-2714", + "country": "United States", + "longitude": -85.42206083, + "latitude": 35.94460668, + "phone": "9317392337", + "website_url": "http://www.calfkillerbeer.com", + "state": "Tennessee", + "street": "1839 Blue Springs Rd" + }, + { + "id": "2a7ed844-ea02-4a69-a41c-1fc7c476dd16", + "name": "Calibration Brewery", + "brewery_type": "brewpub", + "address_1": "119 Armour Rd", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64116-3502", + "country": "United States", + "longitude": -94.578762, + "latitude": 39.141723, + "phone": "8169948277", + "website_url": "http://www.calibrationbrewery.com", + "state": "Missouri", + "street": "119 Armour Rd" + }, + { + "id": "b6618fdf-562c-47d8-8f99-da37d0ed00fb", + "name": "Calicraft Brewing Co", + "brewery_type": "micro", + "address_1": "2700 Mitchell Dr Bldg 2", + "address_2": null, + "address_3": null, + "city": "Walnut Creek", + "state_province": "California", + "postal_code": "94598-1602", + "country": "United States", + "longitude": -122.0257068, + "latitude": 37.93059284, + "phone": null, + "website_url": null, + "state": "California", + "street": "2700 Mitchell Dr Bldg 2" + }, + { + "id": "bcea0930-14a2-4b22-898c-729ea6abe693", + "name": "California Cider Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sebastopol", + "state_province": "California", + "postal_code": "95472", + "country": "United States", + "longitude": -122.8332502, + "latitude": 38.3845125, + "phone": "7078291101", + "website_url": "http://www.acecider.com", + "state": "California", + "street": null + }, + { + "id": "23905042-9078-410a-a3f5-0ede37924815", + "name": "California Wild Ales", + "brewery_type": "contract", + "address_1": "4204 Sorrento Valley Blvd", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92121-1446", + "country": "United States", + "longitude": -117.2146488, + "latitude": 32.905002, + "phone": null, + "website_url": null, + "state": "California", + "street": "4204 Sorrento Valley Blvd" + }, + { + "id": "5494f614-38f1-4c0d-822d-58977264bb89", + "name": "Call To Arms Brewing Company", + "brewery_type": "micro", + "address_1": "4526 Tennyson St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80212-2527", + "country": "United States", + "longitude": -105.0435373, + "latitude": 39.7788541, + "phone": null, + "website_url": "http://www.facebook.com/calltoarmsbrewing", + "state": "Colorado", + "street": "4526 Tennyson St" + }, + { + "id": "06f89ef6-e14a-4642-9609-46c6aad9813f", + "name": "Callahan West Brewery", + "brewery_type": "micro", + "address_1": "20 Main St", + "address_2": null, + "address_3": null, + "city": "Mosquero", + "state_province": "New Mexico", + "postal_code": "87733", + "country": "United States", + "longitude": -103.9581938, + "latitude": 35.77706974, + "phone": null, + "website_url": null, + "state": "New Mexico", + "street": "20 Main St" + }, + { + "id": "2b34e802-aa74-4ab7-baf3-3de5c82bd751", + "name": "Callsign Brewing", + "brewery_type": "micro", + "address_1": "1447 Gentry St", + "address_2": null, + "address_3": null, + "city": "North Kansas City", + "state_province": "Missouri", + "postal_code": "64116", + "country": "United States", + "longitude": -94.574428, + "latitude": 39.138525, + "phone": "8162552320", + "website_url": "http://www.callsignbrewing.com", + "state": "Missouri", + "street": "1447 Gentry St" + }, + { + "id": "40a385d5-25cb-4bf4-9b04-fd1501f8b8fb", + "name": "Calusa Brewing Company", + "brewery_type": "micro", + "address_1": "5701 Derek Ave", + "address_2": null, + "address_3": null, + "city": "Sarasota", + "state_province": "Florida", + "postal_code": "34233-2413", + "country": "United States", + "longitude": -82.483799, + "latitude": 27.269363, + "phone": "9419228150", + "website_url": "http://www.calusabrewing.com", + "state": "Florida", + "street": "5701 Derek Ave" + }, + { + "id": "66830819-c0ed-462b-b7c6-5b6006fa7df0", + "name": "Calvert Brewing Co", + "brewery_type": "micro", + "address_1": "150 Adelina Rd", + "address_2": null, + "address_3": null, + "city": "Prince Frederick", + "state_province": "Maryland", + "postal_code": "20678-3709", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4104148486", + "website_url": "http://www.calvertbrewingcompany.com", + "state": "Maryland", + "street": "150 Adelina Rd" + }, + { + "id": "a440c125-f424-4b18-9adc-27c2965ce6ac", + "name": "Calvert Brewing Co", + "brewery_type": "micro", + "address_1": "15850 Commerce Ct", + "address_2": null, + "address_3": null, + "city": "Upper Marlboro", + "state_province": "Maryland", + "postal_code": "20774-7437", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2402454609", + "website_url": "http://calvertbrewingcompany.com", + "state": "Maryland", + "street": "15850 Commerce Ct" + }, + { + "id": "a4979f24-580a-467a-8cb3-5ce9df1d30b4", + "name": "Cambridge Brewing Co", + "brewery_type": "brewpub", + "address_1": "1 Kendall Sq Ste B1102", + "address_2": null, + "address_3": null, + "city": "Cambridge", + "state_province": "Massachusetts", + "postal_code": "02139-1592", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6174941994", + "website_url": "http://www.cambridgebrewingcompany.com", + "state": "Massachusetts", + "street": "1 Kendall Sq Ste B1102" + }, + { + "id": "ad254a69-0bd9-491e-be5b-0a35d174fb4e", + "name": "Cambridge House Brew Pub - Granby", + "brewery_type": "brewpub", + "address_1": "357 Salmon Brook St", + "address_2": null, + "address_3": null, + "city": "Granby", + "state_province": "Connecticut", + "postal_code": "06035-0438", + "country": "United States", + "longitude": -72.79259539, + "latitude": 41.96631414, + "phone": "8606532739", + "website_url": "http://www.cbh.beer", + "state": "Connecticut", + "street": "357 Salmon Brook St" + }, + { + "id": "73852083-1f03-41da-bc57-e471e315cbb2", + "name": "Camino Brewing Co LLC", + "brewery_type": "micro", + "address_1": "718 S 1st St", + "address_2": null, + "address_3": null, + "city": "San Jose", + "state_province": "California", + "postal_code": "95113", + "country": "United States", + "longitude": -121.8823478, + "latitude": 37.32530178, + "phone": null, + "website_url": "http://www.caminobrewing.com", + "state": "California", + "street": "718 S 1st St" + }, + { + "id": "4a928417-cd54-4806-9085-98b4d47f8e81", + "name": "Camp Colvos Brewing", + "brewery_type": "micro", + "address_1": "17636 Vashon Hwy SW", + "address_2": null, + "address_3": null, + "city": "Vashon", + "state_province": "Washington", + "postal_code": "98070-6052", + "country": "United States", + "longitude": -122.4602697, + "latitude": 47.44701386, + "phone": "2069473527", + "website_url": "http://www.campcolvos.com", + "state": "Washington", + "street": "17636 Vashon Hwy SW" + }, + { + "id": "bf564a44-8658-46d4-9456-b21321d4b166", + "name": "Camp Colvos Brewing - Tacoma", + "brewery_type": "taproom", + "address_1": "2104 Commerce St", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98402-1212", + "country": "United States", + "longitude": -122.43725981349, + "latitude": 47.242891328278, + "phone": "2533145704", + "website_url": "https://campcolvos.com", + "state": "Washington", + "street": "2104 Commerce St" + }, + { + "id": "ca9d8589-4cf5-400e-b1df-7df7eb5d28c0", + "name": "Campbell Brewing Co", + "brewery_type": "micro", + "address_1": "200 E Campbell Ave", + "address_2": null, + "address_3": null, + "city": "Campbell", + "state_province": "California", + "postal_code": "95008-2010", + "country": "United States", + "longitude": -121.9332743, + "latitude": 37.2870748, + "phone": "4088662699", + "website_url": null, + "state": "California", + "street": "200 E Campbell Ave" + }, + { + "id": "c3019525-367a-466c-96d9-97174d3df80f", + "name": "Campsite Brewing Company", + "brewery_type": "brewpub", + "address_1": "321 E Front St", + "address_2": null, + "address_3": null, + "city": "Covina", + "state_province": "California", + "postal_code": "91723", + "country": "United States", + "longitude": -117.88386203144, + "latitude": 34.091867007947, + "phone": "6263801467", + "website_url": "https://www.campsitebrewingco.com/", + "state": "California", + "street": "321 E Front St" + }, + { + "id": "a41ed3c4-53a1-4dfc-97c9-efbea1731b65", + "name": "Campus Brewing", + "brewery_type": "micro", + "address_1": "176 Bannister Road", + "address_2": "3", + "address_3": null, + "city": "Canning Vale", + "state_province": "WA", + "postal_code": "6155", + "country": "Australia", + "longitude": 115.9088745, + "latitude": -32.0597343, + "phone": "+61 8 9455 5868", + "website_url": "https://campusbrewing.com.au/", + "state": "WA", + "street": "176 Bannister Road" + }, + { + "id": "33615ed7-57bb-4d02-84d6-d24e02a6cf1f", + "name": "Can Of Worms Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Glendale", + "state_province": "California", + "postal_code": "91214-1713", + "country": "United States", + "longitude": -118.2462486, + "latitude": 34.192912, + "phone": "8187975520", + "website_url": "http://www.canofwormsbrewing.com", + "state": "California", + "street": null + }, + { + "id": "ea9cb09f-6a1f-4635-b3d8-4817e75571ea", + "name": "Canal Park Brewery", + "brewery_type": "brewpub", + "address_1": "300 Canal Park Dr", + "address_2": null, + "address_3": null, + "city": "Duluth", + "state_province": "Minnesota", + "postal_code": "55802-2316", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2184644790", + "website_url": "http://www.canalparkbrewery.com", + "state": "Minnesota", + "street": "300 Canal Park Dr" + }, + { + "id": "e431db8a-9c36-46c0-90e0-05644f37a056", + "name": "Candia Road Brewing / Nepenthe Ale House", + "brewery_type": "micro", + "address_1": "840 Candia Rd", + "address_2": null, + "address_3": null, + "city": "Manchester", + "state_province": "New Hampshire", + "postal_code": "03109-5201", + "country": "United States", + "longitude": -71.41301096, + "latitude": 42.9849563, + "phone": "6039358123", + "website_url": "http://www.candiaroad.com", + "state": "New Hampshire", + "street": "840 Candia Rd" + }, + { + "id": "604378f2-9c18-4ac2-bd4b-206f4423d9ea", + "name": "Cane River Brewing Co., L.L.C", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Natchitoches", + "state_province": "Louisiana", + "postal_code": "71457", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3184719115", + "website_url": "http://www.caneriverbrewing.com", + "state": "Louisiana", + "street": null + }, + { + "id": "d832ea72-d8ca-4b3e-a7f0-679599883d89", + "name": "Canjob Taproom", + "brewery_type": "bar", + "address_1": "50 Tiong Bahru Rd", + "address_2": "#01-03", + "address_3": "Link Hotel", + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "168733", + "country": "Singapore", + "longitude": 103.8339047, + "latitude": 1.2853965, + "phone": "93853497", + "website_url": "https://www.canjobtaproom.com/", + "state": "Singapore", + "street": "50 Tiong Bahru Rd" + }, + { + "id": "45e03113-32c2-44db-be6c-6955633fba06", + "name": "Cannon Ball Brewing Company", + "brewery_type": "brewpub", + "address_1": "1702 Bellefontaine St", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46202-1813", + "country": "United States", + "longitude": -86.14245603, + "latitude": 39.79046798, + "phone": "3174265978", + "website_url": "http://www.cannonballbrewingindy.com", + "state": "Indiana", + "street": "1702 Bellefontaine St" + }, + { + "id": "cf741ae8-b09e-40af-9ea7-065f0736a458", + "name": "Cannon Brewpub", + "brewery_type": "brewpub", + "address_1": "1041 Broadway", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Georgia", + "postal_code": "31901-5256", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7066532337", + "website_url": null, + "state": "Georgia", + "street": "1041 Broadway" + }, + { + "id": "e5b709a1-dce7-4271-9057-e56ceea26b83", + "name": "Cannonball Creek Brewing Co", + "brewery_type": "micro", + "address_1": "393 Washington Ave Unit A", + "address_2": null, + "address_3": null, + "city": "Golden", + "state_province": "Colorado", + "postal_code": "80403-1889", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3032780111", + "website_url": "http://www.cannonballcreekbrewing.com", + "state": "Colorado", + "street": "393 Washington Ave Unit A" + }, + { + "id": "72935233-3b46-42b0-901e-3548937da57e", + "name": "Canon & Draw Brewing Company", + "brewery_type": "micro", + "address_1": "1527 W Main St", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23220", + "country": "United States", + "longitude": -77.46012854, + "latitude": 37.54707897, + "phone": "8043530536", + "website_url": "http://www.canonanddraw.beer", + "state": "Virginia", + "street": "1527 W Main St" + }, + { + "id": "14f8c0f8-5f24-4eb8-865a-437cd5ec28dc", + "name": "Canteen Brewhouse", + "brewery_type": "micro", + "address_1": "2381 Aztec Rd NE", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87107-4207", + "country": "United States", + "longitude": -106.617653, + "latitude": 35.12025411, + "phone": "5058304629", + "website_url": "http://www.canteenbrewhouse.com", + "state": "New Mexico", + "street": "2381 Aztec Rd NE" + }, + { + "id": "2fc0714f-eec5-4451-9b6f-aa19f58efac5", + "name": "Canterbury Aleworks", + "brewery_type": "micro", + "address_1": "305 Baptist Hill Rd", + "address_2": null, + "address_3": null, + "city": "Canterbury", + "state_province": "New Hampshire", + "postal_code": "03224-2509", + "country": "United States", + "longitude": -71.51484346, + "latitude": 43.38577573, + "phone": "6034914539", + "website_url": "http://www.canterburyaleworks.com", + "state": "New Hampshire", + "street": "305 Baptist Hill Rd" + }, + { + "id": "1b4e8f0d-b445-4221-a357-975287794915", + "name": "Canton Brew Works, LLC", + "brewery_type": "micro", + "address_1": "8521 N Lilley Rd", + "address_2": null, + "address_3": null, + "city": "Canton", + "state_province": "Michigan", + "postal_code": "48187-2091", + "country": "United States", + "longitude": -83.4586331, + "latitude": 42.3224786, + "phone": "7349277081", + "website_url": "http://www.cantonbrewworks.com", + "state": "Michigan", + "street": "8521 N Lilley Rd" + }, + { + "id": "c7cedf0a-db47-42a9-8642-dda456d33f52", + "name": "Canton Brewing Company", + "brewery_type": "brewpub", + "address_1": "120 3rd St NW", + "address_2": null, + "address_3": null, + "city": "Canton", + "state_province": "Ohio", + "postal_code": "44702", + "country": "United States", + "longitude": -81.37453867, + "latitude": 40.7998289, + "phone": null, + "website_url": "http://www.drinkcantonbeer.com", + "state": "Ohio", + "street": "120 3rd St NW" + }, + { + "id": "235b3275-293e-45e5-8b6f-0bfbaac4e016", + "name": "Canvas Brewery", + "brewery_type": "micro", + "address_1": "Fortmoy Aglish", + "address_2": null, + "address_3": null, + "city": "Roscrea", + "state_province": "Tipperary", + "postal_code": "E53 D822", + "country": "Ireland", + "longitude": -8.116511364, + "latitude": 53.0479286, + "phone": "353871268539", + "website_url": "https://www.canvasbrewery.com/", + "state": "Tipperary", + "street": "Fortmoy Aglish" + }, + { + "id": "8aeaf9bc-b9a0-4278-ad0a-bf13f936269e", + "name": "Canyon Club Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Moraga", + "state_province": "California", + "postal_code": "94556", + "country": "United States", + "longitude": -122.12883, + "latitude": 37.834897, + "phone": "8087992005", + "website_url": "http://www.canyonclub.works", + "state": "California", + "street": null + }, + { + "id": "d423e8d9-731a-4f9a-a8a9-939d21a2419a", + "name": "Canyon Creek Brewing", + "brewery_type": "micro", + "address_1": "3060 Gabel Rd", + "address_2": null, + "address_3": null, + "city": "Billings", + "state_province": "Montana", + "postal_code": "59102-7336", + "country": "United States", + "longitude": -108.5916752, + "latitude": 45.74436502, + "phone": "4066562528", + "website_url": "http://www.canyoncreekbrewing.com", + "state": "Montana", + "street": "3060 Gabel Rd" + }, + { + "id": "5d70e9c5-09dd-4ab7-9efe-bb064ddf705c", + "name": "Canyon Lakes Golf Course & Brewery", + "brewery_type": "brewpub", + "address_1": "640 Bollinger Canyon Way", + "address_2": null, + "address_3": null, + "city": "San Ramon", + "state_province": "California", + "postal_code": "94582-4971", + "country": "United States", + "longitude": -121.94788, + "latitude": 37.77114856, + "phone": null, + "website_url": "http://www.canyonlakesgolfbrew.com", + "state": "California", + "street": "640 Bollinger Canyon Way" + }, + { + "id": "9749c8f4-5273-449f-9563-0dcd12a14e42", + "name": "Cape Ann Brewing Co", + "brewery_type": "brewpub", + "address_1": "11 Rogers St", + "address_2": null, + "address_3": null, + "city": "Gloucester", + "state_province": "Massachusetts", + "postal_code": "01930-5014", + "country": "United States", + "longitude": -70.66509344, + "latitude": 42.61161602, + "phone": "9782827399", + "website_url": null, + "state": "Massachusetts", + "street": "11 Rogers St" + }, + { + "id": "7e1b62e7-054d-4dc9-8359-da4c874cc154", + "name": "Cape Ann Lanes", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Gloucester", + "state_province": "Massachusetts", + "postal_code": "01930-2256", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9788799714", + "website_url": null, + "state": "Massachusetts", + "street": null + }, + { + "id": "610568ff-fd4f-4837-a1a8-53cca7a7e78b", + "name": "Cape Brewing Company", + "brewery_type": "micro", + "address_1": "Spice Route Destination", + "address_2": "Suid-Agter-Paarl Road", + "address_3": null, + "city": "Paarl", + "state_province": "Western Cape", + "postal_code": "7646", + "country": "South Africa", + "longitude": 18.9056, + "latitude": -33.7845, + "phone": "+27 21 863 2270", + "website_url": "https://capebrewing.co.za/", + "state": "Western Cape", + "street": "Spice Route Destination" + }, + { + "id": "c179ca31-f60a-4726-9ca8-96774c426f00", + "name": "Cape Charles Brewing Company", + "brewery_type": "brewpub", + "address_1": "2198 Stone Rd", + "address_2": null, + "address_3": null, + "city": "Cape Charles", + "state_province": "Virginia", + "postal_code": "23310-2706", + "country": "United States", + "longitude": -75.992111, + "latitude": 37.269795, + "phone": "7574494839", + "website_url": "http://www.capecharlesbrewing.com", + "state": "Virginia", + "street": "2198 Stone Rd" + }, + { + "id": "972823fa-5950-4bba-94e7-9a959b09a2bf", + "name": "Cape Cod Beer", + "brewery_type": "micro", + "address_1": "1336 Phinneys Ln Ste 2-2", + "address_2": null, + "address_3": null, + "city": "Hyannis", + "state_province": "Massachusetts", + "postal_code": "02601-1875", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5087904200", + "website_url": "http://www.capecodbeer.com", + "state": "Massachusetts", + "street": "1336 Phinneys Ln Ste 2-2" + }, + { + "id": "ed03dc32-f0b3-4466-a9ec-069e31f25ba0", + "name": "Cape May Brewing Company", + "brewery_type": "micro", + "address_1": "409 Breakwater Rd", + "address_2": null, + "address_3": null, + "city": "Cape May", + "state_province": "New Jersey", + "postal_code": "08204-4537", + "country": "United States", + "longitude": -74.91285755, + "latitude": 39.00066318, + "phone": "6098499933", + "website_url": "http://www.capemaybrewery.com", + "state": "New Jersey", + "street": "409 Breakwater Rd" + }, + { + "id": "984c0f6a-3f2d-4ca2-9462-1a7c637e363e", + "name": "Cape May Brewing Company - Rio Grande", + "brewery_type": "micro", + "address_1": "1288 Hornet Rd", + "address_2": null, + "address_3": null, + "city": "Rio Grande", + "state_province": "New Jersey", + "postal_code": "08242-2210", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6098499933", + "website_url": "http://www.capemaybrewery.com", + "state": "New Jersey", + "street": "1288 Hornet Rd" + }, + { + "id": "b6ea2f3b-b21b-43f8-8696-c182d8ed087f", + "name": "Cape Vincent Brewing Co", + "brewery_type": "micro", + "address_1": "296 Broadway St", + "address_2": null, + "address_3": null, + "city": "Cape Vincent", + "state_province": "New York", + "postal_code": "13618", + "country": "United States", + "longitude": -76.33484565, + "latitude": 44.12823687, + "phone": null, + "website_url": "http://www.capevincentbrewing.com", + "state": "New York", + "street": "296 Broadway St" + }, + { + "id": "e07b6621-ed3a-4aaf-ad46-81b0f4d44fee", + "name": "Capital Brewery Co Inc", + "brewery_type": "regional", + "address_1": "7734 Terrace Ave", + "address_2": null, + "address_3": null, + "city": "Middleton", + "state_province": "Wisconsin", + "postal_code": "53562-3163", + "country": "United States", + "longitude": -89.51657978, + "latitude": 43.09489645, + "phone": "6088367100", + "website_url": "http://www.capitalbrewery.com", + "state": "Wisconsin", + "street": "7734 Terrace Ave" + }, + { + "id": "f382ba2a-f5e0-445c-99d8-47331ab79b59", + "name": "Capital Brewing Co", + "brewery_type": "micro", + "address_1": "1 Dairy Road", + "address_2": "Building 3", + "address_3": null, + "city": "Fyshwick", + "state_province": "ACT", + "postal_code": "2609", + "country": "Australia", + "longitude": 149.1634553, + "latitude": -35.3216673, + "phone": "+61 2 5104 0915", + "website_url": "http://www.capitalbrewing.co/", + "state": "ACT", + "street": "1 Dairy Road" + }, + { + "id": "27d80318-53d1-4a6f-a7dd-b584474a6f43", + "name": "Capital Brewing Co.", + "brewery_type": "micro", + "address_1": "1 Dairy Road", + "address_2": "Building 3", + "address_3": null, + "city": "Fyshwick", + "state_province": "ACT", + "postal_code": "2609", + "country": "Australia", + "longitude": 149.1634553, + "latitude": -35.3216673, + "phone": "+61 2 5104 0915", + "website_url": "http://www.capitalbrewing.co/", + "state": "ACT", + "street": "1 Dairy Road" + }, + { + "id": "c5bc0fac-0c2a-4e2e-8732-b2396c2db3b6", + "name": "Capital Brewing Company", + "brewery_type": "micro", + "address_1": "1 Dairy Road", + "address_2": "Building 3", + "address_3": null, + "city": "Fyshwick", + "state_province": "ACT", + "postal_code": "2609", + "country": "Australia", + "longitude": 149.1634553, + "latitude": -35.3216673, + "phone": "+61 2 5104 0915", + "website_url": "http://www.capitalbrewing.co/", + "state": "ACT", + "street": "1 Dairy Road" + }, + { + "id": "2682641e-3fa6-4700-b9ed-87ded91e1ca5", + "name": "Capitol City Brewing Co", + "brewery_type": "contract", + "address_1": "2 Massachusetts Ave NE", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "District of Columbia", + "postal_code": "20002-4945", + "country": "United States", + "longitude": -77.0082686, + "latitude": 38.8979293, + "phone": "2028422337", + "website_url": "http://www.capcitybrew.com", + "state": "District of Columbia", + "street": "2 Massachusetts Ave NE" + }, + { + "id": "dea46586-2772-4573-a964-f9a1d1bbc902", + "name": "Capitol Creek Brewery", + "brewery_type": "brewpub", + "address_1": "371 Market St", + "address_2": null, + "address_3": null, + "city": "Basalt", + "state_province": "Colorado", + "postal_code": "81621-7409", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8704043657", + "website_url": "http://www.capitolcreekbrewery.com", + "state": "Colorado", + "street": "371 Market St" + }, + { + "id": "42a358b3-4457-4f5a-8914-6b22352d9aed", + "name": "Capstan Bar Brewing Company", + "brewery_type": "micro", + "address_1": "2036 Exploration Way", + "address_2": null, + "address_3": null, + "city": "Hampton", + "state_province": "Virginia", + "postal_code": "23666-6260", + "country": "United States", + "longitude": -76.3994756, + "latitude": 37.082339, + "phone": "7577887276", + "website_url": "http://www.capstanbarbrewing.com", + "state": "Virginia", + "street": "2036 Exploration Way" + }, + { + "id": "4bab0d2d-23cc-436f-9dbc-a0d5ecc72692", + "name": "Captain Bligh’s Brewery/Distillery", + "brewery_type": "micro", + "address_1": "64 Warwick Street", + "address_2": null, + "address_3": null, + "city": "Hobart", + "state_province": "TAS", + "postal_code": "7000", + "country": "Australia", + "longitude": 147.320166, + "latitude": -42.877475, + "phone": "+61 404 051 750", + "website_url": "http://www.captainblighs.com.au/", + "state": "TAS", + "street": "64 Warwick Street" + }, + { + "id": "dd562978-8660-491c-b8ac-515a8fc975be", + "name": "Captain Fatty's", + "brewery_type": "micro", + "address_1": "6483 Calle Real Ste D", + "address_2": null, + "address_3": null, + "city": "Goleta", + "state_province": "California", + "postal_code": "93117-1541", + "country": "United States", + "longitude": -119.8524005, + "latitude": 34.4394769, + "phone": null, + "website_url": "http://www.captainfattys.com", + "state": "California", + "street": "6483 Calle Real Ste D" + }, + { + "id": "38973645-52f6-4b59-9f8b-8b88730e3ff9", + "name": "Captain Lawrence Brewing Co", + "brewery_type": "regional", + "address_1": "444 Saw Mill River Rd Ste 100", + "address_2": null, + "address_3": null, + "city": "Elmsford", + "state_province": "New York", + "postal_code": "10523-1031", + "country": "United States", + "longitude": -73.839113, + "latitude": 41.03486, + "phone": "9147412337", + "website_url": "http://www.captainlawrencebrewing.com", + "state": "New York", + "street": "444 Saw Mill River Rd Ste 100" + }, + { + "id": "f99f9f8d-d2e0-4f23-9644-c95ff543e235", + "name": "Caracara Brewing Company", + "brewery_type": "micro", + "address_1": "100 E Market St", + "address_2": null, + "address_3": null, + "city": "Lockhart", + "state_province": "Texas", + "postal_code": "78644-2747", + "country": "United States", + "longitude": -97.672065, + "latitude": 29.883798, + "phone": null, + "website_url": "http://www.caracarabrewingcompany.com", + "state": "Texas", + "street": "100 E Market St" + }, + { + "id": "fd5568a0-d214-4c18-9009-a64e7c152d64", + "name": "Carbon 6 Brewing", + "brewery_type": "micro", + "address_1": "38 Eastern Service Road", + "address_2": null, + "address_3": null, + "city": "Stapylton", + "state_province": "QLD", + "postal_code": "4207", + "country": "Australia", + "longitude": 153.2350259, + "latitude": -27.7406209, + "phone": "+61 7 3544 6932", + "website_url": "http://carbonsixbrewing.com.au/", + "state": "QLD", + "street": "38 Eastern Service Road" + }, + { + "id": "0ea0d27c-ea9a-4f75-91c2-4009c12b6c45", + "name": "Carbon Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Brazil", + "state_province": "Indiana", + "postal_code": "47834-7046", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.carbonbrewing.com", + "state": "Indiana", + "street": null + }, + { + "id": "f12deb0c-12ed-42e3-8706-d9cb1cb6a52a", + "name": "Carbondale Beer Works", + "brewery_type": "brewpub", + "address_1": "647 Main St", + "address_2": null, + "address_3": null, + "city": "Carbondale", + "state_province": "Colorado", + "postal_code": "81623-1934", + "country": "United States", + "longitude": -107.2134909, + "latitude": 39.40060712, + "phone": null, + "website_url": "http://www.carbondalebeerworks.com", + "state": "Colorado", + "street": "647 Main St" + }, + { + "id": "846e6b9a-e4ea-46ae-9597-fbdcdc4568c7", + "name": "Cardinal Craft Brewing Academy/ Skagit Valley College", + "brewery_type": "micro", + "address_1": "15579 Peterson Rd", + "address_2": null, + "address_3": null, + "city": "Burlington", + "state_province": "Washington", + "postal_code": "98233-3625", + "country": "United States", + "longitude": -122.3533958, + "latitude": 48.4719343, + "phone": "3604162537", + "website_url": "http://www.skagit.edu", + "state": "Washington", + "street": "15579 Peterson Rd" + }, + { + "id": "79c363c6-1f8d-4714-be5c-ba9095d427d2", + "name": "Carey's Brew House", + "brewery_type": "brewpub", + "address_1": "58 Bridge St", + "address_2": null, + "address_3": null, + "city": "Corning", + "state_province": "New York", + "postal_code": "14830-2239", + "country": "United States", + "longitude": -77.06089704, + "latitude": 42.15025771, + "phone": "6073775651", + "website_url": "http://www.careysbrewhouse.com", + "state": "New York", + "street": "58 Bridge St" + }, + { + "id": "aee2380a-6178-4db4-9688-7559cc0f8c43", + "name": "Carillon Brewing Company", + "brewery_type": "brewpub", + "address_1": "1000 Carillon Blvd", + "address_2": null, + "address_3": null, + "city": "Dayton", + "state_province": "Ohio", + "postal_code": "45409-2023", + "country": "United States", + "longitude": -84.20121, + "latitude": 39.730102, + "phone": "9372932841", + "website_url": "http://www.carillonbrewingco.org", + "state": "Ohio", + "street": "1000 Carillon Blvd" + }, + { + "id": "4d29ef0e-2d79-4adf-a613-32de90d16705", + "name": "Carlingford Brewing Company", + "brewery_type": "micro", + "address_1": "The Old Mill, , Riverstown, Co. Louth", + "address_2": "Dundalk Road", + "address_3": "Riverstown", + "city": "Carlingford", + "state_province": "Louth", + "postal_code": "A91 D850", + "country": "Ireland", + "longitude": -6.2239907, + "latitude": 53.994002, + "phone": "353429397519", + "website_url": "http://carlingfordbrewing.ie/", + "state": "Louth", + "street": "The Old Mill, , Riverstown, Co. Louth" + }, + { + "id": "6ddc96ca-73d4-420f-a4f1-9139120a9f1d", + "name": "Carlow Brewing Company", + "brewery_type": "micro", + "address_1": "Muine Bheag Business Park", + "address_2": "Royal Oak Rd", + "address_3": "Moneybeg", + "city": "Bagenalstown", + "state_province": "Carlow", + "postal_code": "R21 DR77", + "country": "Ireland", + "longitude": -6.9783782, + "latitude": 52.6965818, + "phone": "353599720509", + "website_url": "http://www.carlowbrewing.com/", + "state": "Carlow", + "street": "Muine Bheag Business Park" + }, + { + "id": "f603839f-51db-44f5-ad0e-b8f8184bc945", + "name": "Carlskrona Bryggeri AB", + "brewery_type": "micro", + "address_1": "Trantorps Gård 1", + "address_2": "c/o Trantorps Gård", + "address_3": null, + "city": "Karlskrona", + "state_province": "Blekinge", + "postal_code": "371 91", + "country": "Sweden", + "longitude": 15.582, + "latitude": 56.21074, + "phone": "070-822 11 29", + "website_url": null, + "state": "Blekinge", + "street": "Trantorps Gård 1" + }, + { + "id": "a36146d0-57f4-4ce1-ad54-e6bc200c02a3", + "name": "Carlton & United Breweries", + "brewery_type": "large", + "address_1": "1 Southampton Crescent", + "address_2": null, + "address_3": null, + "city": "Abbotsford", + "state_province": "VIC", + "postal_code": "3067", + "country": "Australia", + "longitude": 145.0046161, + "latitude": -37.8085828, + "phone": null, + "website_url": null, + "state": "VIC", + "street": "1 Southampton Crescent" + }, + { + "id": "e5c79228-a725-4fb7-a853-5b0a43590466", + "name": "Carlyle Brewing Co", + "brewery_type": "brewpub", + "address_1": "215 E State St", + "address_2": null, + "address_3": null, + "city": "Rockford", + "state_province": "Illinois", + "postal_code": "61104-1010", + "country": "United States", + "longitude": -89.09053, + "latitude": 42.2689989, + "phone": "8159632739", + "website_url": "http://www.carlylebrewing.com", + "state": "Illinois", + "street": "215 E State St" + }, + { + "id": "6d4e169d-8a90-46c3-9960-e1001ac18dcd", + "name": "Carmody Irish Pub & Brewing", + "brewery_type": "brewpub", + "address_1": "308 E Superior St", + "address_2": null, + "address_3": null, + "city": "Duluth", + "state_province": "Minnesota", + "postal_code": "55802-2120", + "country": "United States", + "longitude": -92.09418809, + "latitude": 46.78986799, + "phone": "2187404747", + "website_url": "http://www.carmodyirishpub.com", + "state": "Minnesota", + "street": "308 E Superior St" + }, + { + "id": "44e4fb51-0d59-4164-9c60-c74b19f7c20e", + "name": "Carolina Bauernhaus Ales", + "brewery_type": "brewpub", + "address_1": "115 Federal St", + "address_2": null, + "address_3": null, + "city": "Anderson", + "state_province": "South Carolina", + "postal_code": "29625-4364", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8644018167", + "website_url": "http://carolinabauernhaus.com", + "state": "South Carolina", + "street": "115 Federal St" + }, + { + "id": "737792a8-6c59-4e95-82cf-7cdc6cb079c1", + "name": "Carolina Brewery - Chapel Hill", + "brewery_type": "brewpub", + "address_1": "460 W Franklin St", + "address_2": null, + "address_3": null, + "city": "Chapel Hill", + "state_province": "North Carolina", + "postal_code": "27516", + "country": "United States", + "longitude": -79.0627304, + "latitude": 35.9106269, + "phone": "9199421800", + "website_url": "http://www.carolinabrewery.com", + "state": "North Carolina", + "street": "460 W Franklin St" + }, + { + "id": "68d63e28-2666-47f4-9d74-daf21aa85e80", + "name": "Carolina Brewery - Pittsboro", + "brewery_type": "micro", + "address_1": "120 Lowes Dr Ste 100", + "address_2": null, + "address_3": null, + "city": "Pittsboro", + "state_province": "North Carolina", + "postal_code": "27312-8872", + "country": "United States", + "longitude": -79.1652429, + "latitude": 35.7438093, + "phone": "9195452337", + "website_url": "http://www.carolinabrewery.com", + "state": "North Carolina", + "street": "120 Lowes Dr Ste 100" + }, + { + "id": "76d1605e-55fc-4c6b-8ba2-7a8d30eac9f6", + "name": "Carolina Brewing Co", + "brewery_type": "micro", + "address_1": "140 Thomas Mill Rd", + "address_2": null, + "address_3": null, + "city": "Holly Springs", + "state_province": "North Carolina", + "postal_code": "27540-9372", + "country": "United States", + "longitude": -78.85444105, + "latitude": 35.6561051, + "phone": "9195572337", + "website_url": "http://www.carolinabrew.com", + "state": "North Carolina", + "street": "140 Thomas Mill Rd" + }, + { + "id": "e86edb51-0915-4c48-af9a-db55ae5156ff", + "name": "Carroll Brewing Co.", + "brewery_type": "micro", + "address_1": "226 E 5th St", + "address_2": null, + "address_3": null, + "city": "Carroll", + "state_province": "Iowa", + "postal_code": "51401-2743", + "country": "United States", + "longitude": -94.86534008, + "latitude": 42.06385868, + "phone": "5157090030", + "website_url": "http://www.carrollbrewing.com", + "state": "Iowa", + "street": "226 E 5th St" + }, + { + "id": "d8ec5a8b-a005-492b-aa90-87aad31fe060", + "name": "Carson's Brewery", + "brewery_type": "micro", + "address_1": "2404 Lynch Rd", + "address_2": null, + "address_3": null, + "city": "Evansville", + "state_province": "Indiana", + "postal_code": "47711-2953", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8127598229", + "website_url": "http://www.carsonsbrewery.com", + "state": "Indiana", + "street": "2404 Lynch Rd" + }, + { + "id": "808baca1-ffa2-4ee5-8810-77e1b058f0be", + "name": "Carters Brewing", + "brewery_type": "micro", + "address_1": "2526 Montana Ave", + "address_2": null, + "address_3": null, + "city": "Billings", + "state_province": "Montana", + "postal_code": "59101-2313", + "country": "United States", + "longitude": -108.5016538, + "latitude": 45.78291334, + "phone": "4068617712", + "website_url": "http://www.cartersbrewing.com", + "state": "Montana", + "street": "2526 Montana Ave" + }, + { + "id": "58bf2433-166c-4880-9f9f-aed22abb8d4a", + "name": "Carton Brewing Co", + "brewery_type": "micro", + "address_1": "6 E Washington Ave", + "address_2": null, + "address_3": null, + "city": "Atlantic Highlands", + "state_province": "New Jersey", + "postal_code": "07716-1230", + "country": "United States", + "longitude": -74.0381651, + "latitude": 40.4117685, + "phone": "7326542337", + "website_url": "http://www.cartonbrewing.com", + "state": "New Jersey", + "street": "6 E Washington Ave" + }, + { + "id": "8b44ff77-fb30-4b24-afa6-844d9af5c8af", + "name": "Carver Brewing Co", + "brewery_type": "brewpub", + "address_1": "1022 Main Ave", + "address_2": null, + "address_3": null, + "city": "Durango", + "state_province": "Colorado", + "postal_code": "81301-5124", + "country": "United States", + "longitude": -107.8800415, + "latitude": 37.2748415, + "phone": "9702592545", + "website_url": "http://carverbrewing.com", + "state": "Colorado", + "street": "1022 Main Ave" + }, + { + "id": "acdc94d7-84a9-49d4-b604-cdb737ca2834", + "name": "Cary Ale House", + "brewery_type": "brewpub", + "address_1": "208 W Main St Lowr 1", + "address_2": null, + "address_3": null, + "city": "Cary", + "state_province": "Illinois", + "postal_code": "60013-2786", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8476397244", + "website_url": "http://caryalehousebrewing.com", + "state": "Illinois", + "street": "208 W Main St Lowr 1" + }, + { + "id": "e35cdda6-f0be-4e2a-890c-bdb6659f581e", + "name": "Casa Agria Specialty Ales", + "brewery_type": "proprietor", + "address_1": "701 del Norte Blvd Ste 310", + "address_2": null, + "address_3": null, + "city": "Oxnard", + "state_province": "California", + "postal_code": "93030-7980", + "country": "United States", + "longitude": -119.1276491, + "latitude": 34.20845783, + "phone": "8054851454", + "website_url": null, + "state": "California", + "street": "701 del Norte Blvd Ste 310" + }, + { + "id": "a38bc569-6c71-4356-8456-e3a7bf13eab9", + "name": "Casa Vieja LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Corrales", + "state_province": "New Mexico", + "postal_code": "87048-8616", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5052691919", + "website_url": "http://www.casaviejaevents.com", + "state": "New Mexico", + "street": null + }, + { + "id": "5a11bafb-57a7-439f-97b8-ebc5ccb7b25d", + "name": "Cascade Brewery", + "brewery_type": "large", + "address_1": "140 Cascade Road", + "address_2": null, + "address_3": null, + "city": "South Hobart", + "state_province": "TAS", + "postal_code": "7004", + "country": "Australia", + "longitude": 147.2934417, + "latitude": -42.8960609, + "phone": null, + "website_url": "http://www.cascadebrewerybar.com.au/", + "state": "TAS", + "street": "140 Cascade Road" + }, + { + "id": "e3e0de2f-3ec3-4143-a278-efa284b6835c", + "name": "Cascade Brewing", + "brewery_type": "brewpub", + "address_1": "7424 SW Beaverton Hillsdale Hwy", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97225-2149", + "country": "United States", + "longitude": -122.699417, + "latitude": 45.478513, + "phone": "5032960110", + "website_url": "http://www.cascadebrewing.com", + "state": "Oregon", + "street": "7424 SW Beaverton Hillsdale Hwy" + }, + { + "id": "dd09fff1-43e0-42e7-b9c6-88e804053082", + "name": "Cascade Brewing Barrel House", + "brewery_type": "micro", + "address_1": "939 SE Belmont St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97214-2519", + "country": "United States", + "longitude": -122.6560057, + "latitude": 45.5167536, + "phone": "5032658603", + "website_url": "http://www.cascadebrewing.com", + "state": "Oregon", + "street": "939 SE Belmont St" + }, + { + "id": "972e11db-ca46-4a75-bef1-24c596036a66", + "name": "Cascade Brewing Blending House", + "brewery_type": "micro", + "address_1": "6770 SW 111th Ave", + "address_2": null, + "address_3": null, + "city": "Beaverton", + "state_province": "Oregon", + "postal_code": "97008-5336", + "country": "United States", + "longitude": -122.7900557, + "latitude": 45.4709556, + "phone": "5033660730", + "website_url": "http://www.cascadebrewing.com", + "state": "Oregon", + "street": "6770 SW 111th Ave" + }, + { + "id": "977d5b69-e92b-4f9b-8c1d-67f9e481365c", + "name": "Cascade Lakes Brewing Co", + "brewery_type": "micro", + "address_1": "2141 SW 1st St", + "address_2": null, + "address_3": null, + "city": "Redmond", + "state_province": "Oregon", + "postal_code": "97756-7131", + "country": "United States", + "longitude": -121.1700542, + "latitude": 44.26491002, + "phone": "5419233110", + "website_url": "http://www.cascadelakes.com", + "state": "Oregon", + "street": "2141 SW 1st St" + }, + { + "id": "2e7ae73a-42cf-4e35-89c2-41d5557727eb", + "name": "Cascadia Brewing Co.", + "brewery_type": "closed", + "address_1": "211 4th Ave E", + "address_2": null, + "address_3": null, + "city": "Olympia", + "state_province": "Washington", + "postal_code": "98501-1104", + "country": "United States", + "longitude": -122.900174, + "latitude": 47.04491273, + "phone": "3609432337", + "website_url": "http://www.cascadiahomebrew.com", + "state": "Washington", + "street": "211 4th Ave E" + }, + { + "id": "180883d5-ee43-4a24-b7b8-b385358eddd1", + "name": "Casey Brewing and Blending", + "brewery_type": "micro", + "address_1": "3421 Grand Ave Ste 4D", + "address_2": null, + "address_3": null, + "city": "Glenwood Springs", + "state_province": "Colorado", + "postal_code": "81601-4493", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9702309691", + "website_url": "http://www.caseybrewing.com", + "state": "Colorado", + "street": "3421 Grand Ave Ste 4D" + }, + { + "id": "37adfb0e-f64e-4e66-98d9-9dde6a7df11d", + "name": "Cash Brewing Company", + "brewery_type": "closed", + "address_1": "3388 NW Byron St Ste 100", + "address_2": null, + "address_3": null, + "city": "Silverdale", + "state_province": "Washington", + "postal_code": "98383-8548", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3606337852", + "website_url": "http://www.cashbrewing.com", + "state": "Washington", + "street": "3388 NW Byron St Ste 100" + }, + { + "id": "1b1cb9a2-6eeb-4995-9639-86e6b7610fe0", + "name": "Castle Brewing Co", + "brewery_type": "brewpub", + "address_1": "1310 W Washington", + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "Michigan", + "postal_code": "48838", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6167126226", + "website_url": "http://www.castlebrewingco.com", + "state": "Michigan", + "street": "1310 W Washington" + }, + { + "id": "51b16993-d99b-4a27-8e00-b9af14c372fa", + "name": "Castle Church Brewing Community", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Kissimmee", + "state_province": "Florida", + "postal_code": "34744-3990", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.castlechurchbrewing.com", + "state": "Florida", + "street": null + }, + { + "id": "7440477a-6410-4967-b856-c031ced810b3", + "name": "Castle Danger Brewery", + "brewery_type": "micro", + "address_1": "17 7th St", + "address_2": null, + "address_3": null, + "city": "Two Harbors", + "state_province": "Minnesota", + "postal_code": "55616-1672", + "country": "United States", + "longitude": -91.6731853, + "latitude": 47.0194124, + "phone": "2188345800", + "website_url": "http://www.castledangerbrewery.com", + "state": "Minnesota", + "street": "17 7th St" + }, + { + "id": "de3d4ee8-375c-4980-8ed1-c053afaf121e", + "name": "Castle Island Brewing Co.", + "brewery_type": "micro", + "address_1": "31 Astor Ave", + "address_2": null, + "address_3": null, + "city": "Norwood", + "state_province": "Massachusetts", + "postal_code": "02062-5016", + "country": "United States", + "longitude": -71.19186438, + "latitude": 42.16931297, + "phone": "7819512029", + "website_url": "http://www.castleislandbeer.com", + "state": "Massachusetts", + "street": "31 Astor Ave" + }, + { + "id": "fdeb1948-d245-4ab5-986f-5b5e42e5633b", + "name": "Castle Point Brewery", + "brewery_type": "contract", + "address_1": "200 Garden St C/O Red Bridge Homes", + "address_2": null, + "address_3": null, + "city": "Hoboken", + "state_province": "New Jersey", + "postal_code": "07030-3793", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9185328525", + "website_url": "http://www.castlepointbrewery.com", + "state": "New Jersey", + "street": "200 Garden St C/O Red Bridge Homes" + }, + { + "id": "51a0b7c1-2250-44a6-a188-7bfd732ef861", + "name": "Castle Rock Beer Company", + "brewery_type": "closed", + "address_1": "514 Perry St Ste C106", + "address_2": null, + "address_3": null, + "city": "Castle Rock", + "state_province": "Colorado", + "postal_code": "80104-1711", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7203289008", + "website_url": "http://www.castlerockbeerco.com", + "state": "Colorado", + "street": "514 Perry St Ste C106" + }, + { + "id": "e815c800-2ec4-4008-96be-aef173fbe112", + "name": "Castleburg Brewery", + "brewery_type": "micro", + "address_1": "1626 Ownby Ln", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23220-1317", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8043531256", + "website_url": "http://www.castleburgbrewery.com", + "state": "Virginia", + "street": "1626 Ownby Ln" + }, + { + "id": "dd121468-1064-4fab-98b5-8b2044e3a3b4", + "name": "Casual Animal", + "brewery_type": "micro", + "address_1": "1725 McGee St", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64108", + "country": "United States", + "longitude": -94.57977386, + "latitude": 39.0924045, + "phone": "8162145388", + "website_url": "http://www.casualanimalbrewing.com", + "state": "Missouri", + "street": "1725 McGee St" + }, + { + "id": "f8d5fa60-f3d6-41b1-8e60-750dc9baf9e4", + "name": "Catalina Brewing Company", + "brewery_type": "micro", + "address_1": "6918 N Camino Martin", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85741-2281", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5203293622", + "website_url": "http://www.catalinabrewingco.com/", + "state": "Arizona", + "street": "6918 N Camino Martin" + }, + { + "id": "44c0bc74-7c1a-47d7-8bd5-535c17fef433", + "name": "Catalina Island Brew House", + "brewery_type": "micro", + "address_1": "417 Crescent Ave", + "address_2": null, + "address_3": null, + "city": "Avalon", + "state_province": "California", + "postal_code": "90704", + "country": "United States", + "longitude": -118.3256345, + "latitude": 33.3434987, + "phone": "3105906905", + "website_url": "http://www.catalinaislandbrewhouse.com", + "state": "California", + "street": "417 Crescent Ave" + }, + { + "id": "3b1a5b42-5517-4da1-b1ee-93b3e3bce99d", + "name": "Catawba Brewing Co", + "brewery_type": "regional", + "address_1": "212 S Green St", + "address_2": null, + "address_3": null, + "city": "Morganton", + "state_province": "North Carolina", + "postal_code": "28655-3525", + "country": "United States", + "longitude": -81.68543695, + "latitude": 35.74471934, + "phone": "8284306883", + "website_url": "http://www.CatawbaBrewing.com", + "state": "North Carolina", + "street": "212 S Green St" + }, + { + "id": "5d4d326a-dc02-4959-aab7-2d23a36bfc9e", + "name": "Catawba Brewing Co - Asheville", + "brewery_type": "micro", + "address_1": "63 Brook St Ste 1", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28803-2685", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8284247290", + "website_url": "http://www.catawbavalleybrewingcompany.com", + "state": "North Carolina", + "street": "63 Brook St Ste 1" + }, + { + "id": "612795ac-9fca-4569-8b5c-2e4056fdbd8f", + "name": "Catawba Brewing Co - Charlotte", + "brewery_type": "micro", + "address_1": "933 Louise Ave Ste 105", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28204-2299", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9804986145", + "website_url": null, + "state": "North Carolina", + "street": "933 Louise Ave Ste 105" + }, + { + "id": "476e6a16-b68f-4b13-ac67-b8774e4bfa23", + "name": "Catawba Island Brewing Company", + "brewery_type": "micro", + "address_1": "2330 East Harbor Rd", + "address_2": null, + "address_3": null, + "city": "Port Clinton", + "state_province": "Ohio", + "postal_code": "43452-1517", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4199607764", + "website_url": "http://catawbaislandbrewing.com", + "state": "Ohio", + "street": "2330 East Harbor Rd" + }, + { + "id": "45b6de21-e201-4f1d-b85e-54cf94bb0444", + "name": "CATCHMENT Ballistic Beer Company", + "brewery_type": "micro", + "address_1": "53-55 McCarthy Road", + "address_2": null, + "address_3": null, + "city": "Salisbury", + "state_province": "QLD", + "postal_code": "4107", + "country": "Australia", + "longitude": 153.0315574, + "latitude": -27.548333, + "phone": "+61 7 3277 6656", + "website_url": "https://ballisticbeer.com/", + "state": "QLD", + "street": "53-55 McCarthy Road" + }, + { + "id": "34c546e5-c3ea-43fa-b978-d388214290e9", + "name": "Catchment Brewing Co.", + "brewery_type": "micro", + "address_1": "150 Boundary Street", + "address_2": null, + "address_3": null, + "city": "West End", + "state_province": "QLD", + "postal_code": "4101", + "country": "Australia", + "longitude": 153.0121958, + "latitude": -27.4807926, + "phone": "+61 7 3846 1701", + "website_url": "http://catchmentbrewingco.com.au/", + "state": "QLD", + "street": "150 Boundary Street" + }, + { + "id": "74d481b3-ac4a-49e0-9943-e77383e707ff", + "name": "CATCHMENT Fortitude Brewing Co. (Noisy Minor)", + "brewery_type": "micro", + "address_1": "165 Long Road", + "address_2": null, + "address_3": null, + "city": "Tamborine Mountain", + "state_province": "QLD", + "postal_code": "4272", + "country": "Australia", + "longitude": 153.2002252, + "latitude": -27.9255258, + "phone": "+61 7 5545 4273", + "website_url": "http://www.fortitudebrewing.com.au/", + "state": "QLD", + "street": "165 Long Road" + }, + { + "id": "c14fb00c-7034-45e9-8581-e5865bc72e0a", + "name": "Catfish Charlies / Catfish Creek Brew Pub", + "brewery_type": "brewpub", + "address_1": "1630 E 16th St", + "address_2": null, + "address_3": null, + "city": "Dubuque", + "state_province": "Iowa", + "postal_code": "52001-2306", + "country": "United States", + "longitude": -90.65372886, + "latitude": 42.51225898, + "phone": "5635828600", + "website_url": "http://www.catfishcharliesdubuque.com", + "state": "Iowa", + "street": "1630 E 16th St" + }, + { + "id": "946fddaa-7222-4ece-823e-52896e661874", + "name": "Cathedral Square Brewery", + "brewery_type": "closed", + "address_1": "3914 Lindell Blvd", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63108-3204", + "country": "United States", + "longitude": -90.2439837, + "latitude": 38.6394897, + "phone": "3148033605", + "website_url": "http://www.cathedralsquarebrewery.com", + "state": "Missouri", + "street": "3914 Lindell Blvd" + }, + { + "id": "f6695f12-3197-484d-9830-503bc41bfc74", + "name": "Catskill Brewery", + "brewery_type": "micro", + "address_1": "672 Old Route 17", + "address_2": null, + "address_3": null, + "city": "Livingston Manor", + "state_province": "New York", + "postal_code": "12758-0033", + "country": "United States", + "longitude": -74.827173, + "latitude": 41.911407, + "phone": "8454391232", + "website_url": "http://www.catskillbrewery.com", + "state": "New York", + "street": "672 Old Route 17" + }, + { + "id": "282e53a4-054a-4047-a7ff-bde26dfad708", + "name": "Cave Brewing Co", + "brewery_type": "micro", + "address_1": "1407 Seidersville Rd", + "address_2": null, + "address_3": null, + "city": "Bethlehem", + "state_province": "Pennsylvania", + "postal_code": "18015-4219", + "country": "United States", + "longitude": -75.3464618, + "latitude": 40.5910341, + "phone": "6107391381", + "website_url": "http://www.cavebrewing.com", + "state": "Pennsylvania", + "street": "1407 Seidersville Rd" + }, + { + "id": "5a4c2070-48c1-4385-8e3b-e9de15514941", + "name": "Cave Mountain Brewing Co", + "brewery_type": "brewpub", + "address_1": "5359 State Route 23", + "address_2": null, + "address_3": null, + "city": "Windham", + "state_province": "New York", + "postal_code": "12496-5906", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5187349222", + "website_url": "http://www.cavemountainbrewing.com", + "state": "New York", + "street": "5359 State Route 23" + }, + { + "id": "7cabd85d-217f-49c7-b0eb-3031a9efca4d", + "name": "Cavendish Brewing Company", + "brewery_type": "micro", + "address_1": "207 N Chester St", + "address_2": null, + "address_3": null, + "city": "Gastonia", + "state_province": "North Carolina", + "postal_code": "28052-2234", + "country": "United States", + "longitude": -81.18741223, + "latitude": 35.26577507, + "phone": "7048300435", + "website_url": "http://www.cavendishbrewing.com", + "state": "North Carolina", + "street": "207 N Chester St" + }, + { + "id": "de78fdc6-98f3-4a6b-b3f7-acce58a94271", + "name": "Cavern Brewing At Lowes Foods", + "brewery_type": "brewpub", + "address_1": "1381 Old Mill Cir Ste 200", + "address_2": null, + "address_3": null, + "city": "Winston Salem", + "state_province": "North Carolina", + "postal_code": "27103-1497", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3367753007", + "website_url": "http://www.lowesfoods.com", + "state": "North Carolina", + "street": "1381 Old Mill Cir Ste 200" + }, + { + "id": "47a74197-bf50-4776-bded-e2bf6bba9e94", + "name": "Caxton Street Brewing", + "brewery_type": "micro", + "address_1": "52 Petrie Terrace", + "address_2": null, + "address_3": null, + "city": "Petrie Terrace", + "state_province": "QLD", + "postal_code": "4000", + "country": "Australia", + "longitude": 153.0130058, + "latitude": -27.4649469, + "phone": "+61 7 3506 3656", + "website_url": "http://www.caxtonstreetbrewing.com/", + "state": "QLD", + "street": "52 Petrie Terrace" + }, + { + "id": "a134143f-1c86-4a90-8ded-458aaed9a374", + "name": "Cayucos Brewing Co", + "brewery_type": "contract", + "address_1": "136 Ocean Front Ln", + "address_2": null, + "address_3": null, + "city": "Cayucos", + "state_province": "California", + "postal_code": "93430-1649", + "country": "United States", + "longitude": -120.9021884, + "latitude": 35.44711022, + "phone": "8059951993", + "website_url": "http://www.cayucosbeer.com", + "state": "California", + "street": "136 Ocean Front Ln" + }, + { + "id": "0ff4c7dc-c0b0-4f25-8a80-effcf912ffe6", + "name": "CB Craft Brewers", + "brewery_type": "micro", + "address_1": "300 Village Square Blvd", + "address_2": null, + "address_3": null, + "city": "Honeoye Falls", + "state_province": "New York", + "postal_code": "14472-1180", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5856244386", + "website_url": "http://www.cbcraftbrewers.com", + "state": "New York", + "street": "300 Village Square Blvd" + }, + { + "id": "5b1e7138-19f6-45fa-a899-70d808b55591", + "name": "Cedar Creek Brewery", + "brewery_type": "brewpub", + "address_1": "336 E Cedar Creek Pkwy", + "address_2": null, + "address_3": null, + "city": "Seven Points", + "state_province": "Texas", + "postal_code": "75143-8395", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2145029795", + "website_url": "http://www.cedarcreekbrewery.com", + "state": "Texas", + "street": "336 E Cedar Creek Pkwy" + }, + { + "id": "9560132e-e992-4036-9274-1ba8de498c1e", + "name": "Cedar Creek Brewing Co.", + "brewery_type": "micro", + "address_1": "3820 Leonard Rd", + "address_2": null, + "address_3": null, + "city": "Martinsville", + "state_province": "Indiana", + "postal_code": "46151-5600", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7653429000", + "website_url": "http://www.drinkatthecreek.com", + "state": "Indiana", + "street": "3820 Leonard Rd" + }, + { + "id": "50da8137-1da4-4939-932d-50fa93a11ad5", + "name": "Cedar Crest Brewing and Wine Bar", + "brewery_type": "brewpub", + "address_1": "615 Main St", + "address_2": null, + "address_3": null, + "city": "Red Bluff", + "state_province": "California", + "postal_code": "96080-3343", + "country": "United States", + "longitude": -122.2344167, + "latitude": 40.17675757, + "phone": "5307279016", + "website_url": "http://www.facebook.com/enjoythestoreredbluff", + "state": "California", + "street": "615 Main St" + }, + { + "id": "efecf28c-1f97-43b4-b283-11b8ad902d42", + "name": "Cedar Point Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Scituate", + "state_province": "Massachusetts", + "postal_code": "02066-1317", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7818311724", + "website_url": null, + "state": "Massachusetts", + "street": null + }, + { + "id": "1faa8def-e465-4b92-b77c-e9da87845ff7", + "name": "Cedar Run Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Nokesville", + "state_province": "Virginia", + "postal_code": "20181-2506", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7032032641", + "website_url": null, + "state": "Virginia", + "street": null + }, + { + "id": "9552b15e-81e1-4941-a0a7-86f07ffa5d0e", + "name": "Cedar Springs Brewing Company", + "brewery_type": "brewpub", + "address_1": "95 N Main # 34", + "address_2": null, + "address_3": null, + "city": "Cedar Springs", + "state_province": "Michigan", + "postal_code": "49319-5140", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "616696", + "website_url": "http://www.CSBrew.com", + "state": "Michigan", + "street": "95 N Main # 34" + }, + { + "id": "1e5fd874-e6fa-4189-ad30-a6aab5e2ec7b", + "name": "Celis Brewery", + "brewery_type": "micro", + "address_1": "10001 Metic Blvd.", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78758", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5125242377", + "website_url": "http://www.celisbeers.com", + "state": "Texas", + "street": "10001 Metic Blvd." + }, + { + "id": "86bb1d32-ad5f-42c6-a7b9-70c92801d1d9", + "name": "Cellar Brewing Co", + "brewery_type": "brewpub", + "address_1": "133 E Division St", + "address_2": null, + "address_3": null, + "city": "Sparta", + "state_province": "Michigan", + "postal_code": "49345-1329", + "country": "United States", + "longitude": -85.70639839, + "latitude": 43.16082496, + "phone": "6168830777", + "website_url": "http://www.cellarbrewingco.com", + "state": "Michigan", + "street": "133 E Division St" + }, + { + "id": "c8914288-0a70-4f53-9c72-d65595b103f8", + "name": "Cellar West Artisan Ales", + "brewery_type": "micro", + "address_1": "1001 Lee Hill Dr Ste 10", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80302-9471", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2627198795", + "website_url": "http://www.cellarwest.com", + "state": "Colorado", + "street": "1001 Lee Hill Dr Ste 10" + }, + { + "id": "a15b076b-cec2-43fc-bd9b-dd530d8985dc", + "name": "Cellar Works Brewing Co.", + "brewery_type": "micro", + "address_1": "110 S Pike Rd Ste 205", + "address_2": null, + "address_3": null, + "city": "Sarver", + "state_province": "Pennsylvania", + "postal_code": "16055-9682", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7245242120", + "website_url": "http://www.cellarworksbrewing.com", + "state": "Pennsylvania", + "street": "110 S Pike Rd Ste 205" + }, + { + "id": "7d69186e-193b-47cd-84dc-60ccdea2b1b3", + "name": "Cellarmaker Brewing Company", + "brewery_type": "micro", + "address_1": "1150 Howard St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94103-3914", + "country": "United States", + "longitude": -122.4106996, + "latitude": 37.7771589, + "phone": "4158633940", + "website_url": "http://www.cellarmakerbrewing.com", + "state": "California", + "street": "1150 Howard St" + }, + { + "id": "8a784d6c-14f0-4df9-b49c-37950ef9c8d1", + "name": "Cellarman's Pub & Brewery", + "brewery_type": "brewpub", + "address_1": "2130 Texoma Pkwy", + "address_2": null, + "address_3": null, + "city": "Sherman", + "state_province": "Texas", + "postal_code": "75090-2622", + "country": "United States", + "longitude": -96.59953011, + "latitude": 33.66188865, + "phone": "9038130994", + "website_url": "http://www.cellarmanspub.com", + "state": "Texas", + "street": "2130 Texoma Pkwy" + }, + { + "id": "15ceab0b-ebef-46a3-9bf9-7915a219eeda", + "name": "Cellarmen's Meadery, Microbrewery and Cidery", + "brewery_type": "micro", + "address_1": "24310 John R Rd", + "address_2": null, + "address_3": null, + "city": "Hazel Park", + "state_province": "Michigan", + "postal_code": "48030-1112", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5864134206", + "website_url": "http://www.cellarmens.com", + "state": "Michigan", + "street": "24310 John R Rd" + }, + { + "id": "c37ba1f6-a014-4529-b8f0-240e95740556", + "name": "Center Ice Brewing Company", + "brewery_type": "micro", + "address_1": "3126 Olive St.", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63103", + "country": "United States", + "longitude": -90.22430637, + "latitude": 38.63530006, + "phone": "3142779843", + "website_url": "http://www.centericebrewery.com", + "state": "Missouri", + "street": "3126 Olive St." + }, + { + "id": "9b07942e-75fc-4df3-85d1-611544fb766c", + "name": "Center of the Universe Brewing Co", + "brewery_type": "micro", + "address_1": "11293 Air Park Rd", + "address_2": null, + "address_3": null, + "city": "Ashland", + "state_province": "Virginia", + "postal_code": "23005-3436", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8043680299", + "website_url": "http://www.cotubrewing.com", + "state": "Virginia", + "street": "11293 Air Park Rd" + }, + { + "id": "b77f57dd-6d85-4cf1-a1ee-bf44e3ef7935", + "name": "Center Pivot", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Quinter", + "state_province": "Kansas", + "postal_code": "67752", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7857548344", + "website_url": null, + "state": "Kansas", + "street": null + }, + { + "id": "1fcb0371-fb13-48b5-bfd4-a87939d6650c", + "name": "Center Square Brewing / Altland House", + "brewery_type": "brewpub", + "address_1": "1 Center Sq", + "address_2": null, + "address_3": null, + "city": "Abbottstown", + "state_province": "Pennsylvania", + "postal_code": "17301-9502", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7172599535", + "website_url": "http://centersquarebrew.com", + "state": "Pennsylvania", + "street": "1 Center Sq" + }, + { + "id": "542588a9-82dd-4f6f-a72c-53363d4ae57d", + "name": "Center Street Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Wallingford", + "state_province": "Connecticut", + "postal_code": "06492", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://n/a", + "state": "Connecticut", + "street": null + }, + { + "id": "20a578cc-439f-40f6-ae2d-02e6798108a1", + "name": "Centerpoint Brewing", + "brewery_type": "micro", + "address_1": "1125 E Brookside Ave", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46202-3587", + "country": "United States", + "longitude": -86.13740465, + "latitude": 39.78129031, + "phone": "3176028386", + "website_url": "http://www.centerpointbrewing.com", + "state": "Indiana", + "street": "1125 E Brookside Ave" + }, + { + "id": "f72eb79f-b910-4ab2-bee9-6af0c1abb7e7", + "name": "Central 28 Beer Company", + "brewery_type": "micro", + "address_1": "290 Springview Commerce Dr Ste 1", + "address_2": null, + "address_3": null, + "city": "Debary", + "state_province": "Florida", + "postal_code": "32713-4848", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3866682811", + "website_url": "http://www.central28beer.com", + "state": "Florida", + "street": "290 Springview Commerce Dr Ste 1" + }, + { + "id": "b067aab3-c4e6-4417-b84f-3f8b4290084b", + "name": "Central Coast Brewing Co - Higuera St.", + "brewery_type": "brewpub", + "address_1": "6 Higuera St.", + "address_2": null, + "address_3": null, + "city": "San Luis Obispo", + "state_province": "California", + "postal_code": "93401", + "country": "United States", + "longitude": -120.6709908, + "latitude": 35.2651725, + "phone": "8057832739", + "website_url": null, + "state": "California", + "street": "6 Higuera St." + }, + { + "id": "ec8490e6-a241-47af-8746-eb5f95a2012f", + "name": "Central Coast Brewing Co - Monterey St.", + "brewery_type": "micro", + "address_1": "1422 Monterey St Ste B100", + "address_2": null, + "address_3": null, + "city": "San Luis Obispo", + "state_province": "California", + "postal_code": "93401-2900", + "country": "United States", + "longitude": -120.655724, + "latitude": 35.28597462, + "phone": "8057832739", + "website_url": "http://www.centralcoastbrewing.com", + "state": "California", + "street": "1422 Monterey St Ste B100" + }, + { + "id": "729fb6cc-0d37-4179-81fe-73a18e67b667", + "name": "Central Machine Works", + "brewery_type": "micro", + "address_1": "4824 E Cesar Chavez St", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78702-5135", + "country": "United States", + "longitude": -97.7037665, + "latitude": 30.2520225, + "phone": "512-220-2340", + "website_url": "http://cmwbrewery.com/", + "state": "Texas", + "street": "4824 E Cesar Chavez St" + }, + { + "id": "3e9028ae-2464-4ab9-b852-26d54695af7a", + "name": "Central Standard Brewing", + "brewery_type": "micro", + "address_1": "156 S Greenwood St", + "address_2": null, + "address_3": null, + "city": "Wichita", + "state_province": "Kansas", + "postal_code": "67211-1815", + "country": "United States", + "longitude": -97.3184245, + "latitude": 37.6846165, + "phone": "3162608515", + "website_url": "http://www.drinkcsb.com", + "state": "Kansas", + "street": "156 S Greenwood St" + }, + { + "id": "dcef9d1b-d9c0-4512-aeb6-eb22c60de041", + "name": "Central State Brewing", + "brewery_type": "micro", + "address_1": "4001 E 26th St", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46218", + "country": "United States", + "longitude": -86.099105, + "latitude": 39.805091, + "phone": "3174079855", + "website_url": "http://centralstatebrewing.com", + "state": "Indiana", + "street": "4001 E 26th St" + }, + { + "id": "4ef7f47b-2152-427e-89a8-bc3326630ed4", + "name": "Central Waters Brewing Co", + "brewery_type": "regional", + "address_1": "351 Allen St", + "address_2": null, + "address_3": null, + "city": "Amherst", + "state_province": "Wisconsin", + "postal_code": "54406-8954", + "country": "United States", + "longitude": -89.27970182, + "latitude": 44.4422503, + "phone": "7158242739", + "website_url": "http://www.centralwaters.com", + "state": "Wisconsin", + "street": "351 Allen St" + }, + { + "id": "e3c0946f-f098-4820-baf7-65cba1c2abca", + "name": "Cerberus Brewing Company", + "brewery_type": "brewpub", + "address_1": "702 W Colorado Ave", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80905-1539", + "country": "United States", + "longitude": -104.8374071, + "latitude": 38.8330574, + "phone": "7196362337", + "website_url": "http://www.cerberusbrewingco.com", + "state": "Colorado", + "street": "702 W Colorado Ave" + }, + { + "id": "780ad4bb-6a56-4af5-a613-5551fd00166a", + "name": "Cercis Brewing Company", + "brewery_type": "micro", + "address_1": "106 N Dickason Blvd", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Wisconsin", + "postal_code": "53925-", + "country": "United States", + "longitude": -89.01542922, + "latitude": 43.33907788, + "phone": "9203500500", + "website_url": "https://www.cercisbrewingco.com", + "state": "Wisconsin", + "street": "106 N Dickason Blvd" + }, + { + "id": "d41989d3-e3a4-47c0-a0eb-cdcfe61a1066", + "name": "Cerebral Brewing", + "brewery_type": "micro", + "address_1": "1477 Monroe St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80206-2708", + "country": "United States", + "longitude": -104.9451783, + "latitude": 39.73968253, + "phone": "3039277365", + "website_url": "http://www.cerebralbrewing.com", + "state": "Colorado", + "street": "1477 Monroe St" + }, + { + "id": "73c91f80-e751-43d0-9ac4-7cde2bd2a171", + "name": "Ceres Brewery", + "brewery_type": "micro", + "address_1": "Loxtonia Farm", + "address_2": "Ezelsfontein Road", + "address_3": null, + "city": "Ceres", + "state_province": "Western Cape", + "postal_code": "6835", + "country": "South Africa", + "longitude": 19.2845, + "latitude": -33.2431, + "phone": "+27 23 004 0930", + "website_url": "https://www.ceresbrewery.co.za/", + "state": "Western Cape", + "street": "Loxtonia Farm" + }, + { + "id": "979f53b8-e18d-45d6-a893-bd7f3419f803", + "name": "Cervecentro", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "Florida", + "postal_code": "33181-3404", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3055171656", + "website_url": "http://www.cervecentro.com.ve", + "state": "Florida", + "street": null + }, + { + "id": "6ee6cc71-b24b-481e-95f3-05bdefbaa41d", + "name": "Cerveceria Del Pueblo", + "brewery_type": "micro", + "address_1": "141 W Bellevue Dr", + "address_2": "#100", + "address_3": null, + "city": "Pasadena", + "state_province": "California", + "postal_code": "91105-1822", + "country": "United States", + "longitude": -118.1532146754, + "latitude": 34.138666361191, + "phone": "6266587652", + "website_url": "https://www.cerveceriadelpueblo.com/", + "state": "California", + "street": "141 W Bellevue Dr" + }, + { + "id": "5b077a9d-d97a-43d7-9c66-68e6d512f499", + "name": "Cerveja Alvoreada", + "brewery_type": "brewpub", + "address_1": "Rua Sousa Porto, 24", + "address_2": null, + "address_3": null, + "city": "Beja", + "state_province": "Beja", + "postal_code": "7800-071", + "country": "Portugal", + "longitude": -7.8538140624018, + "latitude": 38.009903135997, + "phone": "+351 963 592 133", + "website_url": null, + "state": "Beja", + "street": "Rua Sousa Porto, 24" + }, + { + "id": "7d199c4a-13fd-4568-825f-73c2b6722bb8", + "name": "Cerveza Guajira", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "Florida", + "postal_code": "33137", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3056005692", + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "c592a01a-6e1d-4f47-b65c-7d83344977b9", + "name": "CH Evans Brewing Co/Albany Pump Station", + "brewery_type": "brewpub", + "address_1": "19 Quackenbush Sq", + "address_2": null, + "address_3": null, + "city": "Albany", + "state_province": "New York", + "postal_code": "12207-2311", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5184479000", + "website_url": "http://www.evansale.com", + "state": "New York", + "street": "19 Quackenbush Sq" + }, + { + "id": "27baa23f-707d-40e8-98f5-64f94b3f19ad", + "name": "Chafunkta Brewing Co", + "brewery_type": "micro", + "address_1": "69123 Skybrook Rd. STE E", + "address_2": null, + "address_3": null, + "city": "Mandeville", + "state_province": "Louisiana", + "postal_code": "70471-7777", + "country": "United States", + "longitude": -90.035658, + "latitude": 30.432895, + "phone": "9858690716", + "website_url": "http://www.chafunkta.com", + "state": "Louisiana", + "street": "69123 Skybrook Rd. STE E" + }, + { + "id": "ecbd7424-8f25-4db0-af5e-8334991c2983", + "name": "Chagrin Beer Company", + "brewery_type": "contract", + "address_1": "178 E Washington St", + "address_2": null, + "address_3": null, + "city": "Chagrin Falls", + "state_province": "Ohio", + "postal_code": "44022-2978", + "country": "United States", + "longitude": -81.38518067, + "latitude": 41.42999722, + "phone": "2166451739", + "website_url": null, + "state": "Ohio", + "street": "178 E Washington St" + }, + { + "id": "54a938fd-f2bc-4579-b173-3657eaaed527", + "name": "Chain Reaction Brewing Company", + "brewery_type": "micro", + "address_1": "902 S Lipan St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80223-2717", + "country": "United States", + "longitude": -105.001629, + "latitude": 39.69879376, + "phone": "3039220960", + "website_url": "http://www.chainreactionbrewingco.com", + "state": "Colorado", + "street": "902 S Lipan St" + }, + { + "id": "10bbba8b-368e-4c6e-adeb-cc6ff7faa782", + "name": "Chainline Brewing Company", + "brewery_type": "closed", + "address_1": "503 6th St S", + "address_2": null, + "address_3": null, + "city": "Kirkland", + "state_province": "Washington", + "postal_code": "98033-6717", + "country": "United States", + "longitude": -122.1967583, + "latitude": 47.6717847, + "phone": "4252420923", + "website_url": "http://www.chainlinebrewing.com", + "state": "Washington", + "street": "503 6th St S" + }, + { + "id": "6df522c7-de96-4790-a66a-510f9591b7a2", + "name": "Chainline Brewing Company - Chainline Station", + "brewery_type": "taproom", + "address_1": "604 5th Pl S", + "address_2": null, + "address_3": null, + "city": "Kirkland", + "state_province": "Washington", + "postal_code": "98033-6673", + "country": "United States", + "longitude": -122.19816854523, + "latitude": 47.670639091347, + "phone": "4255424550", + "website_url": "https://chainlinebrewing.com", + "state": "Washington", + "street": "604 5th Pl S" + }, + { + "id": "9a5923b4-e597-40e8-8b91-8ae103c1fa03", + "name": "Chainline Brewing Company Taproom at Urban", + "brewery_type": "micro", + "address_1": "500 Uptown Ct Ste 210", + "address_2": null, + "address_3": null, + "city": "Kirkland", + "state_province": "Washington", + "postal_code": "98033-5375", + "country": "United States", + "longitude": -122.19855, + "latitude": 47.67924, + "phone": "4252420923", + "website_url": "http://www.chainlinebrewing.com", + "state": "Washington", + "street": "500 Uptown Ct Ste 210" + }, + { + "id": "ccdcafc4-b513-4979-b45c-b4103b1d5a9a", + "name": "Champion Brewing Company", + "brewery_type": "micro", + "address_1": "324 6th St SE", + "address_2": null, + "address_3": null, + "city": "Charlottesville", + "state_province": "Virginia", + "postal_code": "22902-5655", + "country": "United States", + "longitude": -78.4784691, + "latitude": 38.0277402, + "phone": "4342952739", + "website_url": "http://www.championbrewingcompany.com", + "state": "Virginia", + "street": "324 6th St SE" + }, + { + "id": "6e39f621-d0ff-4765-97c2-53224a0d3825", + "name": "Chandeleur Island Brewing Company", + "brewery_type": "micro", + "address_1": "2711 14th St", + "address_2": null, + "address_3": null, + "city": "Gulfport", + "state_province": "Mississippi", + "postal_code": "39501-1928", + "country": "United States", + "longitude": -89.09540702, + "latitude": 30.367827, + "phone": "2287019985", + "website_url": "http://www.chandeleurbrew.com", + "state": "Mississippi", + "street": "2711 14th St" + }, + { + "id": "852afa33-abfd-43c6-8a70-25726671635f", + "name": "Chandler's Ford Brewing LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Huntsville", + "state_province": "Alabama", + "postal_code": "35802", + "country": "United States", + "longitude": -86.5859011, + "latitude": 34.729847, + "phone": "2564576999", + "website_url": "http://chandlersfordbrewing.com", + "state": "Alabama", + "street": null + }, + { + "id": "60b2dd42-d68e-482b-a6a9-5b67213fd4d4", + "name": "Channel Brewing Co.", + "brewery_type": "micro", + "address_1": "110 N San Joaquin St", + "address_2": null, + "address_3": null, + "city": "Stockton", + "state_province": "California", + "postal_code": "95209-4506", + "country": "United States", + "longitude": -121.2874106, + "latitude": 37.95439196, + "phone": "2094904133", + "website_url": "http://www.channelbrewing.co", + "state": "California", + "street": "110 N San Joaquin St" + }, + { + "id": "50f44b4d-4e59-4fbb-9a62-f10bb61496c5", + "name": "Chaos Bay Brewing Co", + "brewery_type": "closed", + "address_1": "2901 Perry Ave", + "address_2": null, + "address_3": null, + "city": "Bremerton", + "state_province": "Washington", + "postal_code": "98310-4945", + "country": "United States", + "longitude": -122.6145084, + "latitude": 47.58932601, + "phone": "3603772344", + "website_url": "https://www.chaosbaybrewing.com", + "state": "Washington", + "street": "2901 Perry Ave" + }, + { + "id": "82055805-2151-4d92-aa60-9f30c6c0457c", + "name": "Chaos Brewing", + "brewery_type": "micro", + "address_1": "112 S Main St", + "address_2": null, + "address_3": null, + "city": "Joplin", + "state_province": "Missouri", + "postal_code": "64801", + "country": "United States", + "longitude": -94.514437, + "latitude": 37.1027, + "phone": null, + "website_url": "http://www.chaosbrewing.beer", + "state": "Missouri", + "street": "112 S Main St" + }, + { + "id": "5afdddcd-a7dc-4667-bef8-0da63fe4c00f", + "name": "Chaos Mountain Brewing, LLC", + "brewery_type": "micro", + "address_1": "3135 Dillons Mill Rd", + "address_2": null, + "address_3": null, + "city": "Callaway", + "state_province": "Virginia", + "postal_code": "24067-2615", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5403341600", + "website_url": "http://www.chaosmountainbrewing.com", + "state": "Virginia", + "street": "3135 Dillons Mill Rd" + }, + { + "id": "fa90e092-28ce-4e31-98d3-d2afd28c26f3", + "name": "Chapeau Brewing Co", + "brewery_type": "micro", + "address_1": "Redkiln Close", + "address_2": null, + "address_3": null, + "city": "Horsham", + "state_province": "West Sussex", + "postal_code": "RH13 5QL", + "country": "England", + "longitude": -0.30833, + "latitude": 51.070596, + "phone": "1403252459", + "website_url": "https://www.chapeaubrewing.com/", + "state": "West Sussex", + "street": "Redkiln Close" + }, + { + "id": "c34f869b-04f7-4614-bfbc-9a0d9f142ed8", + "name": "Chapel + Main", + "brewery_type": "brewpub", + "address_1": "83 Main St", + "address_2": null, + "address_3": null, + "city": "Dover", + "state_province": "New Hampshire", + "postal_code": "03820", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6038425170", + "website_url": null, + "state": "New Hampshire", + "street": "83 Main St" + }, + { + "id": "e2a24eaa-1fc3-44a9-b05b-38820ef4a978", + "name": "Chapel Brewing", + "brewery_type": "micro", + "address_1": "15 Hester St E", + "address_2": null, + "address_3": null, + "city": "Dundas", + "state_province": "Minnesota", + "postal_code": "55019-3942", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5076641300", + "website_url": "http://www.chapelbrewing.com", + "state": "Minnesota", + "street": "15 Hester St E" + }, + { + "id": "96ac0045-d677-4fe5-8dba-ba3fca9f2fe1", + "name": "Chapman Crafted Beer", + "brewery_type": "micro", + "address_1": "123 N Cypress St", + "address_2": null, + "address_3": null, + "city": "Orange", + "state_province": "California", + "postal_code": "92866-1309", + "country": "United States", + "longitude": -117.856454, + "latitude": 33.788493, + "phone": "8448552337", + "website_url": "http://www.chapmancrafted.beer", + "state": "California", + "street": "123 N Cypress St" + }, + { + "id": "d4df1800-b94f-47bf-bb45-c8fa08d2f766", + "name": "Chapman's Brewing Company", + "brewery_type": "brewpub", + "address_1": "300 Industrial Dr", + "address_2": null, + "address_3": null, + "city": "Angola", + "state_province": "Indiana", + "postal_code": "46703-1053", + "country": "United States", + "longitude": -85.00164782, + "latitude": 41.64836256, + "phone": "2603195495", + "website_url": "http://www.chapmansbrewing.com", + "state": "Indiana", + "street": "300 Industrial Dr" + }, + { + "id": "84bda627-35de-4adc-89a8-d55ea166b330", + "name": "Chapman's Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Wabash", + "state_province": "Indiana", + "postal_code": "46992-3131", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.chapmansbrewing.com", + "state": "Indiana", + "street": null + }, + { + "id": "d672e35e-6486-4d98-9343-994e67768660", + "name": "Chappapeela Farms Brewery", + "brewery_type": "micro", + "address_1": "57542 Hillcrest School Rd", + "address_2": null, + "address_3": null, + "city": "Amite", + "state_province": "Louisiana", + "postal_code": "70422-4922", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2252819474", + "website_url": "http://www.chapbrewery.com", + "state": "Louisiana", + "street": "57542 Hillcrest School Rd" + }, + { + "id": "98c74480-648c-4e48-9740-bfef75a0310e", + "name": "Charles Towne Fermentory", + "brewery_type": "micro", + "address_1": "809 Savannah Hwy", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "South Carolina", + "postal_code": "29407-7278", + "country": "United States", + "longitude": -79.985096, + "latitude": 32.781811, + "phone": "8436410431", + "website_url": "http://www.chsfermentory.com", + "state": "South Carolina", + "street": "809 Savannah Hwy" + }, + { + "id": "323df94a-cbe9-4948-afef-dccd585de0a5", + "name": "Charleston Nano Brewery", + "brewery_type": "nano", + "address_1": "320 W Washington St", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "West Virginia", + "postal_code": "25302-2231", + "country": "United States", + "longitude": -81.61537541623, + "latitude": 38.377733897225, + "phone": "3043437289", + "website_url": "http://www.charlestonnano.com", + "state": "West Virginia", + "street": "320 W Washington St" + }, + { + "id": "d03afb99-77f5-472e-add0-52b4da9d6b59", + "name": "Charleville Vineyard & Microbrewery", + "brewery_type": "micro", + "address_1": "16937 Boyd Rd", + "address_2": null, + "address_3": null, + "city": "Sainte Genevieve", + "state_province": "Missouri", + "postal_code": "63670-7914", + "country": "United States", + "longitude": -90.150279, + "latitude": 37.757916, + "phone": "5737564537", + "website_url": "http://www.charlevillevineyard.com", + "state": "Missouri", + "street": "16937 Boyd Rd" + }, + { + "id": "44c7a96e-0bb9-4477-9302-9571d15068bf", + "name": "Charlie and Jakes Brewery and Grille", + "brewery_type": "brewpub", + "address_1": "6300 N Wickham Rd Ste 137", + "address_2": null, + "address_3": null, + "city": "Melbourne", + "state_province": "Florida", + "postal_code": "32940-2037", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3217527675", + "website_url": "http://www.cjbrewery.com", + "state": "Florida", + "street": "6300 N Wickham Rd Ste 137" + }, + { + "id": "e1677dd0-b321-4dd6-be81-713226ddd0bc", + "name": "Charlie's Steak, Ribs & Ale", + "brewery_type": "brewpub", + "address_1": "3009 W 76 Country Blvd", + "address_2": null, + "address_3": null, + "city": "Branson", + "state_province": "Missouri", + "postal_code": "65616-8312", + "country": "United States", + "longitude": -93.275808, + "latitude": 36.639618, + "phone": "4173346090", + "website_url": "http://www.charliesbranson.com", + "state": "Missouri", + "street": "3009 W 76 Country Blvd" + }, + { + "id": "d7646611-58cd-4b1d-9572-c373a8c33401", + "name": "Charlton Beer Company", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Charlton", + "state_province": "Massachusetts", + "postal_code": "01507", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5082485627", + "website_url": "http://www.charltonbeercompany.com", + "state": "Massachusetts", + "street": null + }, + { + "id": "e01090fe-7c0c-42b6-ab1a-7f47b734dab9", + "name": "Charter Oak Brewing Company LLC", + "brewery_type": "contract", + "address_1": "39B Shelter Rock Rd", + "address_2": null, + "address_3": null, + "city": "Danbury", + "state_province": "Connecticut", + "postal_code": "06810-7043", + "country": "United States", + "longitude": -73.40421711, + "latitude": 41.3961903, + "phone": "2036165268", + "website_url": "http://www.charteroakbrewing.com", + "state": "Connecticut", + "street": "39B Shelter Rock Rd" + }, + { + "id": "117fca17-2f1b-48dc-9036-b64d39dc0711", + "name": "Chase Brewing Company / Chase Tap Room", + "brewery_type": "brewpub", + "address_1": "266 Jefferson St", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "Kentucky", + "postal_code": "40508-1217", + "country": "United States", + "longitude": -84.4986682, + "latitude": 38.0546834, + "phone": "8597973113", + "website_url": "http://www.chasebrewing.com", + "state": "Kentucky", + "street": "266 Jefferson St" + }, + { + "id": "c1955297-f27b-4cdd-a34d-83626a1d7593", + "name": "Chatham Brewing LLC", + "brewery_type": "micro", + "address_1": "59 Main St", + "address_2": null, + "address_3": null, + "city": "Chatham", + "state_province": "New York", + "postal_code": "12037-1249", + "country": "United States", + "longitude": -73.59546931, + "latitude": 42.36315065, + "phone": "5186970202", + "website_url": "http://www.chathambrewing.com", + "state": "New York", + "street": "59 Main St" + }, + { + "id": "c7b4ae17-1cbd-4a08-9b21-07a7a0bf1689", + "name": "Chatoe Rogue Farmstead Brewery", + "brewery_type": "closed", + "address_1": "3590 Wigrich Rd", + "address_2": null, + "address_3": null, + "city": "Independence", + "state_province": "Oregon", + "postal_code": "97351-9708", + "country": "United States", + "longitude": -123.0958477, + "latitude": 44.80583507, + "phone": "5038389813", + "website_url": "http://www.rogue.com", + "state": "Oregon", + "street": "3590 Wigrich Rd" + }, + { + "id": "32e080ba-5023-493a-a6ea-0a13f5be02fb", + "name": "Chattabrewchee Southern Brewhouse", + "brewery_type": "micro", + "address_1": "709 4th Ave", + "address_2": null, + "address_3": null, + "city": "West Point", + "state_province": "Georgia", + "postal_code": "31833-1506", + "country": "United States", + "longitude": -85.18536152, + "latitude": 32.87625763, + "phone": "7065011151", + "website_url": "http://www.chattabrewchee.com", + "state": "Georgia", + "street": "709 4th Ave" + }, + { + "id": "42e77bcd-0745-4456-bd46-4a917ce4e790", + "name": "Chattahoochee Brewing Co", + "brewery_type": "micro", + "address_1": "505 13th St Ste A", + "address_2": null, + "address_3": null, + "city": "Phenix City", + "state_province": "Alabama", + "postal_code": "36867-5128", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3345590663", + "website_url": "http://www.beerontheriver.com", + "state": "Alabama", + "street": "505 13th St Ste A" + }, + { + "id": "2df305d1-54c9-4414-aa77-cb4cd99044bd", + "name": "Chattanooga Brewing Co", + "brewery_type": "micro", + "address_1": "1804 Chestnut St", + "address_2": null, + "address_3": null, + "city": "Chattanooga", + "state_province": "Tennessee", + "postal_code": "37408-1027", + "country": "United States", + "longitude": -85.31443025, + "latitude": 35.03633349, + "phone": "4237029958", + "website_url": "http://www.chattabrew.com", + "state": "Tennessee", + "street": "1804 Chestnut St" + }, + { + "id": "047bcd29-88dc-4b9d-843d-502921e8001e", + "name": "Chatty Monks Brewing Company", + "brewery_type": "brewpub", + "address_1": "610 Penn Ave", + "address_2": null, + "address_3": null, + "city": "West Reading", + "state_province": "Pennsylvania", + "postal_code": "19611-1004", + "country": "United States", + "longitude": -75.95000063, + "latitude": 40.3357192, + "phone": "4848180176", + "website_url": "http://www.chattymonks.com", + "state": "Pennsylvania", + "street": "610 Penn Ave" + }, + { + "id": "468df106-530f-47c1-956a-8544beb7c6d6", + "name": "Chau Tien Beer Company", + "brewery_type": "contract", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fairfield", + "state_province": "California", + "postal_code": "94533-0244", + "country": "United States", + "longitude": -122.0399663, + "latitude": 38.2493581, + "phone": "7072808044", + "website_url": "http://www.paleale.com", + "state": "California", + "street": null + }, + { + "id": "18b7d2b2-1f37-41af-a89f-837ce6e80691", + "name": "Cheaha Brewing Co", + "brewery_type": "brewpub", + "address_1": "1208 Walnut Ave", + "address_2": null, + "address_3": null, + "city": "Anniston", + "state_province": "Alabama", + "postal_code": "36201-4526", + "country": "United States", + "longitude": -85.83377405, + "latitude": 33.6601671, + "phone": "2567707300", + "website_url": "http://www.cheahabrewingcompany.com", + "state": "Alabama", + "street": "1208 Walnut Ave" + }, + { + "id": "b7f56781-add6-4bba-a3df-62a254f64971", + "name": "Cheboygan Brewing Co", + "brewery_type": "micro", + "address_1": "101 N Main St", + "address_2": null, + "address_3": null, + "city": "Cheboygan", + "state_province": "Michigan", + "postal_code": "49721-1637", + "country": "United States", + "longitude": -84.4743633, + "latitude": 45.647403, + "phone": "2312683277", + "website_url": "http://www.cheboyganbrewing.com", + "state": "Michigan", + "street": "101 N Main St" + }, + { + "id": "101dd923-8a78-4db5-9902-663d4e80b07c", + "name": "Check Six Brewing Co", + "brewery_type": "micro", + "address_1": "5130 Southport Supply Rd SE", + "address_2": null, + "address_3": null, + "city": "Southport", + "state_province": "North Carolina", + "postal_code": "28461-9261", + "country": "United States", + "longitude": -78.0477587, + "latitude": 33.952339, + "phone": "9104779280", + "website_url": "http://www.checksixbeer.com", + "state": "North Carolina", + "street": "5130 Southport Supply Rd SE" + }, + { + "id": "6264ddf4-1dc2-4591-baed-ad889c0b5230", + "name": "Checkerspot Brewing Company", + "brewery_type": "brewpub", + "address_1": "175 W Ostend St", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21230", + "country": "United States", + "longitude": -76.6195028, + "latitude": 39.2749156, + "phone": "4105915527", + "website_url": "http://www.checkerspotbrewing.com", + "state": "Maryland", + "street": "175 W Ostend St" + }, + { + "id": "58144e11-89a4-41bd-b65f-5b33de2b654a", + "name": "Cheeky Monkey Brewing Co / Lucky Strike Jillians", + "brewery_type": "brewpub", + "address_1": "3 Lansdowne St", + "address_2": null, + "address_3": null, + "city": "Boston", + "state_province": "Massachusetts", + "postal_code": "02215-3412", + "country": "United States", + "longitude": -71.0946215, + "latitude": 42.34729, + "phone": "6178590030", + "website_url": "http://www.cheekymonkeyboston.com", + "state": "Massachusetts", + "street": "3 Lansdowne St" + }, + { + "id": "5450f71d-24e7-414c-920d-e847da6912b0", + "name": "Chehalem Valley Brewery", + "brewery_type": "brewpub", + "address_1": "2515 Portland Rd Ste B", + "address_2": null, + "address_3": null, + "city": "Newberg", + "state_province": "Oregon", + "postal_code": "97132-1940", + "country": "United States", + "longitude": -122.9532838, + "latitude": 45.3057205, + "phone": "9718328131", + "website_url": "http://www.chehalemvalleybrewery.com", + "state": "Oregon", + "street": "2515 Portland Rd Ste B" + }, + { + "id": "307dd9fc-a513-4e7a-902b-6f9c75a33db5", + "name": "Chelsea Alehouse Brewery", + "brewery_type": "brewpub", + "address_1": "420 N Main St Ste 100", + "address_2": null, + "address_3": null, + "city": "Chelsea", + "state_province": "Michigan", + "postal_code": "48118-1299", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7344335500", + "website_url": "http://www.chelseaalehouse.com", + "state": "Michigan", + "street": "420 N Main St Ste 100" + }, + { + "id": "f036f7ce-8dcf-4941-bf0c-310f7f7c1e7c", + "name": "Chelsea Craft Brewing Co Llc", + "brewery_type": "micro", + "address_1": "463 E 173rd St", + "address_2": null, + "address_3": null, + "city": "Bronx", + "state_province": "New York", + "postal_code": "10457-8105", + "country": "United States", + "longitude": -73.9015282, + "latitude": 40.841904, + "phone": "7184848850", + "website_url": "http://www.chelseacraftbrewing.com", + "state": "New York", + "street": "463 E 173rd St" + }, + { + "id": "05386e92-6e04-44c0-93a1-549eca0cc645", + "name": "Cheluna Brewing Company", + "brewery_type": "micro", + "address_1": "2501 Dallas St Unit 148", + "address_2": null, + "address_3": null, + "city": "Aurora", + "state_province": "Colorado", + "postal_code": "80010-1045", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7206000020", + "website_url": "http://www.cheluna.com", + "state": "Colorado", + "street": "2501 Dallas St Unit 148" + }, + { + "id": "0aa7e0cb-3465-42c8-a6cd-2af04701f286", + "name": "Cherokee Brewing + Pizza Company", + "brewery_type": "brewpub", + "address_1": "207-B West Cuyler St", + "address_2": null, + "address_3": null, + "city": "Dalton", + "state_province": "Georgia", + "postal_code": "30720", + "country": "United States", + "longitude": -84.96940721, + "latitude": 34.76976664, + "phone": "7065299478", + "website_url": "http://www.cherokeebrewingandpizza.com", + "state": "Georgia", + "street": "207-B West Cuyler St" + }, + { + "id": "7646821c-eb5d-4e8f-888e-d1f76f9cb366", + "name": "Chesapeake Brewing Co", + "brewery_type": "brewpub", + "address_1": "114 West St", + "address_2": null, + "address_3": null, + "city": "Annapolis", + "state_province": "Maryland", + "postal_code": "21401-2802", + "country": "United States", + "longitude": -76.4974843, + "latitude": 38.9780984, + "phone": "4102680000", + "website_url": "http://www.chesbrewco.com", + "state": "Maryland", + "street": "114 West St" + }, + { + "id": "b2763258-7b12-4551-b16f-3c9deba2bc7e", + "name": "Chesepiooc Real Ale Brewery", + "brewery_type": "micro", + "address_1": "2408 Crofton Blvd", + "address_2": null, + "address_3": null, + "city": "Crofton", + "state_province": "Maryland", + "postal_code": "21114", + "country": "United States", + "longitude": -76.69804666, + "latitude": 39.01687169, + "phone": "4106301579", + "website_url": "http://www.brewcrab.com", + "state": "Maryland", + "street": "2408 Crofton Blvd" + }, + { + "id": "e59e1145-0db1-4918-bf40-860407a2ca11", + "name": "Cheshmeh Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "White Plains", + "state_province": "New York", + "postal_code": "10605-3517", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "ad90e19c-cc4a-47ff-ba91-8779d55aa040", + "name": "Chestnut Brew Works", + "brewery_type": "micro", + "address_1": "444 Brockway Ave", + "address_2": null, + "address_3": null, + "city": "Morgantown", + "state_province": "West Virginia", + "postal_code": "26501", + "country": "United States", + "longitude": -79.9507513, + "latitude": 39.6272755, + "phone": "3042762737", + "website_url": "http://www.chestnutbrewworks.com", + "state": "West Virginia", + "street": "444 Brockway Ave" + }, + { + "id": "4fbae1fe-8335-4381-becb-3412e5fa3763", + "name": "Chetco Brewing Company", + "brewery_type": "micro", + "address_1": "830 Railroad St", + "address_2": null, + "address_3": null, + "city": "Brookings", + "state_province": "Oregon", + "postal_code": "97415", + "country": "United States", + "longitude": -124.2875954, + "latitude": 42.0521588, + "phone": "5416615347", + "website_url": "http://www.chetcobrew.com", + "state": "Oregon", + "street": "830 Railroad St" + }, + { + "id": "3c820163-0cdf-4f61-a2d7-bb294da08380", + "name": "Chicago Beer Company", + "brewery_type": "contract", + "address_1": "1140 W Randolph St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60607-1619", + "country": "United States", + "longitude": -87.65589165, + "latitude": 41.88434, + "phone": "7732448696", + "website_url": "http://www.chicagobeerco.com", + "state": "Illinois", + "street": "1140 W Randolph St" + }, + { + "id": "d1998a9b-eacd-439c-be7f-09b9b84fc95a", + "name": "Chicago Brewing Co - NV", + "brewery_type": "brewpub", + "address_1": "2201 S Fort Apache Rd", + "address_2": null, + "address_3": null, + "city": "Las Vegas", + "state_province": "Nevada", + "postal_code": "89117-5704", + "country": "United States", + "longitude": -115.2983835, + "latitude": 36.1475868, + "phone": "7022543333", + "website_url": "http://www.chicagobrewingcolv.com", + "state": "Nevada", + "street": "2201 S Fort Apache Rd" + }, + { + "id": "653a1d3f-2589-46f0-b8f5-e76db412ae53", + "name": "Chili Line Brewing Co.", + "brewery_type": "brewpub", + "address_1": "204 N. Guadalupe St.", + "address_2": null, + "address_3": null, + "city": "Santa Fe", + "state_province": "New Mexico", + "postal_code": "87501-1827", + "country": "United States", + "longitude": -105.9435314, + "latitude": 35.68947555, + "phone": "5055007903", + "website_url": "http://www.chililinebrewery@gmail.com", + "state": "New Mexico", + "street": "204 N. Guadalupe St." + }, + { + "id": "0e0f9002-fe65-4484-a951-03045a1e08b1", + "name": "CHILLAX Brewing Company LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Milford", + "state_province": "Michigan", + "postal_code": "48381-2243", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2483883458", + "website_url": null, + "state": "Michigan", + "street": null + }, + { + "id": "b7ba052d-c12c-4548-8727-0e949508d9e3", + "name": "Chilly Water Brewing Company", + "brewery_type": "brewpub", + "address_1": "719 Virginia Ave Ste 105", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46203-1976", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3179640518", + "website_url": "http://www.chillywaterbrewing.com", + "state": "Indiana", + "street": "719 Virginia Ave Ste 105" + }, + { + "id": "c2f3c08f-5b47-4dba-93c4-328762b5a266", + "name": "Chimera Brewing Company", + "brewery_type": "brewpub", + "address_1": "1001 W Magnolia Ave", + "address_2": null, + "address_3": null, + "city": "Fort Worth", + "state_province": "Texas", + "postal_code": "76104-4504", + "country": "United States", + "longitude": -97.33528782, + "latitude": 32.7303843, + "phone": "8179238000", + "website_url": "http://www.chimerabrew.com", + "state": "Texas", + "street": "1001 W Magnolia Ave" + }, + { + "id": "d048e2ca-6b0b-43b3-ac7b-2422af3aef33", + "name": "Chino Hills Brewing Co.", + "brewery_type": "brewpub", + "address_1": "3280 Chino Hills Pkwy #1", + "address_2": null, + "address_3": null, + "city": "Chino Hills", + "state_province": "California", + "postal_code": "91709", + "country": "United States", + "longitude": -117.7341019, + "latitude": 33.98303313, + "phone": "9092471800", + "website_url": "http://www.chinohillsbrewingco.com", + "state": "California", + "street": "3280 Chino Hills Pkwy #1" + }, + { + "id": "d93058cf-49b3-4703-b194-d92f827e778f", + "name": "Chino Valley Brewery", + "brewery_type": "closed", + "address_1": "1609 E. Grove Ave, Unit 109", + "address_2": null, + "address_3": null, + "city": "Ontario", + "state_province": "California", + "postal_code": "91761-5786", + "country": "United States", + "longitude": -117.627567, + "latitude": 34.05034112, + "phone": "9512917117", + "website_url": "http://www.chinovalleybrewery.com", + "state": "California", + "street": "1609 E. Grove Ave, Unit 109" + }, + { + "id": "8028941f-0c22-42e0-a99a-2e86a655aac5", + "name": "Choc Beer Co", + "brewery_type": "micro", + "address_1": "120 S West 8th St", + "address_2": null, + "address_3": null, + "city": "Krebs", + "state_province": "Oklahoma", + "postal_code": "74554-0066", + "country": "United States", + "longitude": -95.7247222, + "latitude": 34.9258333, + "phone": "9183023002", + "website_url": "http://www.petes.org", + "state": "Oklahoma", + "street": "120 S West 8th St" + }, + { + "id": "01d63632-5f2c-4cae-82b3-a85ad36b0aa3", + "name": "ChopHouse and Brewery - Denver", + "brewery_type": "brewpub", + "address_1": "1735 19th St Ste 100", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80202-6002", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3032960800", + "website_url": "http://www.craftworksrestaurants.com", + "state": "Colorado", + "street": "1735 19th St Ste 100" + }, + { + "id": "7ff6ddb0-bd1e-4e5c-b2a3-bf66fac6e6d7", + "name": "Choteau Creek Brewing Company", + "brewery_type": "micro", + "address_1": "40228 296th St", + "address_2": null, + "address_3": null, + "city": "Wagner", + "state_province": "South Dakota", + "postal_code": "57380-6968", + "country": "United States", + "longitude": -98.1387997, + "latitude": 43.11037166, + "phone": null, + "website_url": "http://www.facebook.com/loveourbeer", + "state": "South Dakota", + "street": "40228 296th St" + }, + { + "id": "cee664ba-c129-45ea-a00e-8fad713dcea0", + "name": "Christian Moerlein Brewing Co", + "brewery_type": "regional", + "address_1": "1621 Moore St", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45202-6438", + "country": "United States", + "longitude": -84.51533432, + "latitude": 39.11322509, + "phone": "5138276025", + "website_url": "http://www.christianmoerlein.com", + "state": "Ohio", + "street": "1621 Moore St" + }, + { + "id": "bbae1c38-aaae-4d38-b72a-9ed1ded92f05", + "name": "Chubby Squirrel Brewing Company", + "brewery_type": "brewpub", + "address_1": "10382 Willard Way", + "address_2": null, + "address_3": null, + "city": "Fairfax", + "state_province": "Virginia", + "postal_code": "22030-2508", + "country": "United States", + "longitude": -77.30201557, + "latitude": 38.84818941, + "phone": "5405588040", + "website_url": "http://www.chubbysquirrelbrewing.com", + "state": "Virginia", + "street": "10382 Willard Way" + }, + { + "id": "6f6cb9ee-d0f7-4d49-a1a7-977cf0e50194", + "name": "Chuck and Son’s Brewing Co.", + "brewery_type": "micro", + "address_1": "1-7 Unwins Bridge Road", + "address_2": "Unit 3E-3F", + "address_3": null, + "city": "Saint Peters", + "state_province": "NSW", + "postal_code": "2044", + "country": "Australia", + "longitude": 151.1749563, + "latitude": -33.9094685, + "phone": null, + "website_url": "https://chuckandsonsbrewing.com.au/", + "state": "NSW", + "street": "1-7 Unwins Bridge Road" + }, + { + "id": "65025df7-32bc-4a38-a4f5-09492aa403bb", + "name": "ChuckAlek Independent Brewers", + "brewery_type": "closed", + "address_1": "2330 Main St Ste C", + "address_2": null, + "address_3": null, + "city": "Ramona", + "state_province": "California", + "postal_code": "92065-2539", + "country": "United States", + "longitude": -116.8892394, + "latitude": 33.02777389, + "phone": null, + "website_url": "http://www.chuckalek.com", + "state": "California", + "street": "2330 Main St Ste C" + }, + { + "id": "44b14d44-1156-467f-b3dc-c04127bccc6f", + "name": "Chuckanut - South Nut", + "brewery_type": "micro", + "address_1": "11937 Higgins Airport Way", + "address_2": null, + "address_3": null, + "city": "Burlington", + "state_province": "Washington", + "postal_code": "98233-5312", + "country": "United States", + "longitude": -122.411968, + "latitude": 48.473804, + "phone": "3607523377", + "website_url": "https://chuckanutbrewery.com/south-nut/", + "state": "Washington", + "street": "11937 Higgins Airport Way" + }, + { + "id": "813e88ed-ddef-4c0c-9151-66ab6f745a2e", + "name": "Chuckanut Brewery - North Nut", + "brewery_type": "closed", + "address_1": "601 W Holly St", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98225-3920", + "country": "United States", + "longitude": -122.4851164, + "latitude": 48.7533261, + "phone": "3607523377", + "website_url": "https://chuckanutbrewery.com/north-nut/", + "state": "Washington", + "street": "601 W Holly St" + }, + { + "id": "9c5edc2a-5f36-449f-b407-dc124c466fe9", + "name": "Chula Vista Brewery", + "brewery_type": "micro", + "address_1": "294 Third Ave", + "address_2": null, + "address_3": null, + "city": "Chula Vista", + "state_province": "California", + "postal_code": "91910-2701", + "country": "United States", + "longitude": -117.080369, + "latitude": 32.641495, + "phone": "6196168806", + "website_url": "http://www.chulavistabrewery.com", + "state": "California", + "street": "294 Third Ave" + }, + { + "id": "f644ee47-6458-4a46-9c25-b7e1ef8dd2e0", + "name": "Church Brew Works/Lawrenceville Brewery Inc.", + "brewery_type": "brewpub", + "address_1": "3525 Liberty Ave", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15201-1324", + "country": "United States", + "longitude": -79.9643613, + "latitude": 40.4620769, + "phone": "4126888200", + "website_url": "http://www.churchbrew.com", + "state": "Pennsylvania", + "street": "3525 Liberty Ave" + }, + { + "id": "3c601a1e-82a4-4cc3-a407-3a5e6306438a", + "name": "Church Owl Beer", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Stratford", + "state_province": "Connecticut", + "postal_code": "06615-7320", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.churchowlbeer.com", + "state": "Connecticut", + "street": null + }, + { + "id": "6fae9a05-6763-4a14-9812-bc6101b5860c", + "name": "Church Street Brewing Company", + "brewery_type": "micro", + "address_1": "1480 Industrial Dr Ste C", + "address_2": null, + "address_3": null, + "city": "Itasca", + "state_province": "Illinois", + "postal_code": "60143-1857", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6307098851", + "website_url": "http://www.churchstreetbrew.com", + "state": "Illinois", + "street": "1480 Industrial Dr Ste C" + }, + { + "id": "14ea4e7c-498c-417e-89e9-eabaf9b7051f", + "name": "Cibolo Creek Brewing Co.", + "brewery_type": "brewpub", + "address_1": "448 S Main St", + "address_2": null, + "address_3": null, + "city": "Boerne", + "state_province": "Texas", + "postal_code": "78006-2338", + "country": "United States", + "longitude": -98.72996029, + "latitude": 29.79015427, + "phone": "8308165275", + "website_url": "http://www.cibolocreekbrewing.com", + "state": "Texas", + "street": "448 S Main St" + }, + { + "id": "acf2e29a-72cf-4d57-8de8-99681e6cf598", + "name": "Ciclops Cyderi and Brewery", + "brewery_type": "brewpub", + "address_1": "197 E Saint John St", + "address_2": null, + "address_3": null, + "city": "Spartanburg", + "state_province": "South Carolina", + "postal_code": "29306-5121", + "country": "United States", + "longitude": -81.92952168, + "latitude": 34.95241345, + "phone": "8647049080", + "website_url": "http://www.ciclopscyderiandbrewery.com", + "state": "South Carolina", + "street": "197 E Saint John St" + }, + { + "id": "028c442f-1eaa-45b0-b4be-3871ed49f217", + "name": "Cigar City Airport Location", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33607", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "1eff0c5d-93dc-4b96-acec-cdcfd85b6769", + "name": "Cigar City Brewing Co", + "brewery_type": "regional", + "address_1": "3924 W Spruce St", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33607-2441", + "country": "United States", + "longitude": -82.509195, + "latitude": 27.959172, + "phone": "8133486363", + "website_url": "http://www.cigarcitybrewing.com", + "state": "Florida", + "street": "3924 W Spruce St" + }, + { + "id": "863f291f-32aa-40df-8810-f37911e4ae6a", + "name": "Cinco Chagas", + "brewery_type": "micro", + "address_1": "Rua das Cavadas N8", + "address_2": "Vale do Boi", + "address_3": "Moita", + "city": "Anadia", + "state_province": "Aveiro", + "postal_code": "3780-482", + "country": "Portugal", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "https://cincochagas.pt", + "state": "Aveiro", + "street": "Rua das Cavadas N8" + }, + { + "id": "e26d38f2-3c74-4256-b0a8-971d3225aef0", + "name": "Cinder Block Brewery", + "brewery_type": "brewpub", + "address_1": "110 E 18th Ave", + "address_2": null, + "address_3": null, + "city": "North Kansas City", + "state_province": "Missouri", + "postal_code": "64116-3635", + "country": "United States", + "longitude": -94.57946521, + "latitude": 39.14033716, + "phone": "8165608365", + "website_url": "http://www.cinderblockbrewery.com", + "state": "Missouri", + "street": "110 E 18th Ave" + }, + { + "id": "0331a476-a7f7-4c43-ab9f-00e427225443", + "name": "Cinderlands Beer Co.", + "brewery_type": "brewpub", + "address_1": "3705 Butler St", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15201-1819", + "country": "United States", + "longitude": -79.9224894, + "latitude": 40.4884044, + "phone": "4122510656", + "website_url": "http://www.cinderlands.com", + "state": "Pennsylvania", + "street": "3705 Butler St" + }, + { + "id": "e5ab0f7c-9606-42ce-8131-a8f6aa5af100", + "name": "Circa Brewing Co", + "brewery_type": "brewpub", + "address_1": "141 Lawrence St", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11201", + "country": "United States", + "longitude": -73.986155, + "latitude": 40.6917243, + "phone": "7188580055", + "website_url": "http://www.circabrewing.co", + "state": "New York", + "street": "141 Lawrence St" + }, + { + "id": "6305c46c-4977-4df8-9f2e-fc98709f971f", + "name": "Circle 7 Brew Works", + "brewery_type": "closed", + "address_1": "20290 Corbridge Rd SE", + "address_2": null, + "address_3": null, + "city": "Monroe", + "state_province": "Washington", + "postal_code": "98272-8602", + "country": "United States", + "longitude": -121.9584645, + "latitude": 47.86794845, + "phone": "2067470269", + "website_url": null, + "state": "Washington", + "street": "20290 Corbridge Rd SE" + }, + { + "id": "1e40495c-ca51-455d-a24b-6769efc04060", + "name": "Circle 9 Brewing", + "brewery_type": "micro", + "address_1": "7292 Opportunity Rd Ste C", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92111-2223", + "country": "United States", + "longitude": -117.160822, + "latitude": 32.82600737, + "phone": "8582569462", + "website_url": "https://ataraxiaaleworks.com/", + "state": "California", + "street": "7292 Opportunity Rd Ste C" + }, + { + "id": "acb378f5-15e7-4a1a-b73b-c1e49f17d8a1", + "name": "Circle 9 Brewing", + "brewery_type": "closed", + "address_1": "7292 Opportunity Rd Ste C", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92111-2223", + "country": "United States", + "longitude": -117.160822, + "latitude": 32.82600737, + "phone": "8586342537", + "website_url": "http://www.circle9brewing.com", + "state": "California", + "street": "7292 Opportunity Rd Ste C" + }, + { + "id": "40c6daa0-a9f0-4ad9-94ab-b08c8848dad8", + "name": "Circle and Square Brewery", + "brewery_type": "micro", + "address_1": "100 Depot St", + "address_2": null, + "address_3": null, + "city": "Oxford", + "state_province": "Mississippi", + "postal_code": "38655", + "country": "United States", + "longitude": -89.52775101, + "latitude": 34.36809, + "phone": "6622050128", + "website_url": "https://circleandsquare.beer/", + "state": "Mississippi", + "street": "100 Depot St" + }, + { + "id": "b9ff8168-abfc-429d-b6d4-8322c671a96d", + "name": "Circle Brewing Company", + "brewery_type": "micro", + "address_1": "2340 W Braker Ln Ste B", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78758-4542", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5128147599", + "website_url": "http://www.circlebrewing.com", + "state": "Texas", + "street": "2340 W Braker Ln Ste B" + }, + { + "id": "7e749a31-8ae6-4997-9847-b3cdbd2e7c9e", + "name": "Cisco Brewers", + "brewery_type": "micro", + "address_1": "5 Bartlett Farm Rd", + "address_2": null, + "address_3": null, + "city": "Nantucket", + "state_province": "Massachusetts", + "postal_code": "02554-4341", + "country": "United States", + "longitude": -70.1292845, + "latitude": 41.26135815, + "phone": "5083255929", + "website_url": "http://www.ciscobrewers.com", + "state": "Massachusetts", + "street": "5 Bartlett Farm Rd" + }, + { + "id": "b8ad748d-59b1-4860-a062-94cad3f77a70", + "name": "Cismontane Brewing Co", + "brewery_type": "micro", + "address_1": "1409 E Warner Ave Ste C", + "address_2": null, + "address_3": null, + "city": "Santa Ana", + "state_province": "California", + "postal_code": "92705-5432", + "country": "United States", + "longitude": -117.8518941, + "latitude": 33.71623805, + "phone": "9498882739", + "website_url": "http://www.cismontanebrewing.com", + "state": "California", + "street": "1409 E Warner Ave Ste C" + }, + { + "id": "151d81b1-6d9b-4c31-80da-c8005d5e6205", + "name": "Citizen Brewers", + "brewery_type": "micro", + "address_1": "5837 Mission Gorge Rd Ste A", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92120-4060", + "country": "United States", + "longitude": -117.1003579, + "latitude": 32.78109987, + "phone": "7605877989", + "website_url": "http://www.citizenbrewers.com", + "state": "California", + "street": "5837 Mission Gorge Rd Ste A" + }, + { + "id": "5eaf3169-986e-40f9-9f2b-426f04fee23b", + "name": "City Acre Brewing Co", + "brewery_type": "brewpub", + "address_1": "3418 Topping St", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77093", + "country": "United States", + "longitude": -95.3350882, + "latitude": 29.8570358, + "phone": "8323770237", + "website_url": "http://www.cityacrebrewing.com", + "state": "Texas", + "street": "3418 Topping St" + }, + { + "id": "1070f42d-7db8-46a3-8f09-ec835be0ef1f", + "name": "City Barrel Brewing + Kitchen", + "brewery_type": "brewpub", + "address_1": "1740 Holmes St", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64108-1803", + "country": "United States", + "longitude": -94.575464, + "latitude": 39.091892, + "phone": "8162987008", + "website_url": "http://www.citybarrelbrewing.com", + "state": "Missouri", + "street": "1740 Holmes St" + }, + { + "id": "5476e31e-0ce8-4fdf-9502-ef3e89d34832", + "name": "City Brewing Co", + "brewery_type": "regional", + "address_1": "925 3rd St S", + "address_2": null, + "address_3": null, + "city": "La Crosse", + "state_province": "Wisconsin", + "postal_code": "54601-4411", + "country": "United States", + "longitude": -91.25335046, + "latitude": 43.80435523, + "phone": "6087854200", + "website_url": "http://www.citybrewery.com", + "state": "Wisconsin", + "street": "925 3rd St S" + }, + { + "id": "6812d6f9-b113-48c1-902a-dd2b0f1e5874", + "name": "City Built Brewing Company", + "brewery_type": "brewpub", + "address_1": "820 Monroe Ave NW Ste 155", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49503-1413", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6168055755", + "website_url": "http://www.citybuiltbrewing.com", + "state": "Michigan", + "street": "820 Monroe Ave NW Ste 155" + }, + { + "id": "f0f38619-5ed5-4064-83b0-e48f05783d4c", + "name": "City Lights Brewing Co.", + "brewery_type": "micro", + "address_1": "2200 W Mount Vernon Ave", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53233-2672", + "country": "United States", + "longitude": -88.0118646, + "latitude": 43.0339815, + "phone": "4145209692", + "website_url": "http://www.citylightsbrewing.com", + "state": "Wisconsin", + "street": "2200 W Mount Vernon Ave" + }, + { + "id": "190bb19b-1b65-4585-8ba8-55bbcf1efebe", + "name": "City Service Brewing", + "brewery_type": "micro", + "address_1": "404 Main St", + "address_2": null, + "address_3": null, + "city": "Darlington", + "state_province": "Wisconsin", + "postal_code": "53530-1428", + "country": "United States", + "longitude": -90.11787155, + "latitude": 42.68028418, + "phone": null, + "website_url": "http://www.cityservicebrewing.wixsite.com", + "state": "Wisconsin", + "street": "404 Main St" + }, + { + "id": "d2333318-4e2a-4d4d-b7d7-a31af733822d", + "name": "City Star Brewing", + "brewery_type": "micro", + "address_1": "321 Mountain Avenue", + "address_2": null, + "address_3": null, + "city": "Berthoud", + "state_province": "Colorado", + "postal_code": "80513-", + "country": "United States", + "longitude": -105.0809465, + "latitude": 40.30505214, + "phone": "9705327827", + "website_url": "http://www.citystarbrewing.com", + "state": "Colorado", + "street": "321 Mountain Avenue" + }, + { + "id": "b352a68f-2c4f-476c-a552-7a4fa911d64e", + "name": "City Steam Brewery", + "brewery_type": "closed", + "address_1": "942 Main St Lbby 3", + "address_2": null, + "address_3": null, + "city": "Hartford", + "state_province": "Connecticut", + "postal_code": "06103-1215", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8605251600", + "website_url": null, + "state": "Connecticut", + "street": "942 Main St Lbby 3" + }, + { + "id": "4da39580-1cf8-436a-bcd9-ce44d8b07896", + "name": "City-State Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "District of Columbia", + "postal_code": "20017-2518", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2025310481", + "website_url": "http://citystatebrewing.com", + "state": "District of Columbia", + "street": null + }, + { + "id": "728581d2-7245-4303-b6c9-2b003ed185fd", + "name": "Civil Life Brewing Company", + "brewery_type": "brewpub", + "address_1": "3714 Holt Ave", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63116-2614", + "country": "United States", + "longitude": -90.25807165, + "latitude": 38.5908973, + "phone": null, + "website_url": "http://www.thecivillife.com", + "state": "Missouri", + "street": "3714 Holt Ave" + }, + { + "id": "3e4025f3-efcc-4913-a66b-a6985899ad29", + "name": "Civil Society Brewing Co", + "brewery_type": "micro", + "address_1": "1200 Town Center Dr Ste 101", + "address_2": null, + "address_3": null, + "city": "Jupiter", + "state_province": "Florida", + "postal_code": "33458-5257", + "country": "United States", + "longitude": -80.11462571, + "latitude": 26.88964636, + "phone": "5618556680", + "website_url": "http://www.civilsocietybrewing.com", + "state": "Florida", + "street": "1200 Town Center Dr Ste 101" + }, + { + "id": "c4cefd05-1142-4287-9509-e6e7bbeb61b9", + "name": "Civilian Brewing Corps", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Bloomington", + "state_province": "Indiana", + "postal_code": "47403-9658", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Indiana", + "street": null + }, + { + "id": "cba5abaf-d710-42d9-9ba8-e73cf378c245", + "name": "CJs Brewing Co", + "brewery_type": "brewpub", + "address_1": "8115 Richardson Rd", + "address_2": null, + "address_3": null, + "city": "Commerce Township", + "state_province": "Michigan", + "postal_code": "48390-4131", + "country": "United States", + "longitude": -83.44295839, + "latitude": 42.57743694, + "phone": "2483667979", + "website_url": "http://www.cjsbrewingcompany.com", + "state": "Michigan", + "street": "8115 Richardson Rd" + }, + { + "id": "58fcc35e-a5d6-404e-999c-516782165368", + "name": "CL River Outpost Brewing", + "brewery_type": "brewpub", + "address_1": "5 John Walsh Blvd", + "address_2": null, + "address_3": null, + "city": "Peekskill", + "state_province": "New York", + "postal_code": "10566", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://riveroutpostbrewing.com", + "state": "New York", + "street": "5 John Walsh Blvd" + }, + { + "id": "6e2d96e1-062d-4e05-b0df-5b11a252fbfc", + "name": "Claim 52 Brewing", + "brewery_type": "micro", + "address_1": "1030 Tyinn St Ste 1", + "address_2": null, + "address_3": null, + "city": "Eugene", + "state_province": "Oregon", + "postal_code": "97402-6933", + "country": "United States", + "longitude": -123.1379662, + "latitude": 44.04917678, + "phone": "5415546786", + "website_url": null, + "state": "Oregon", + "street": "1030 Tyinn St Ste 1" + }, + { + "id": "97a6271c-ac6c-47e4-97b4-7af02ee7ad88", + "name": "Claimstake Brewing Company", + "brewery_type": "micro", + "address_1": "11366 Monier Park Pl", + "address_2": null, + "address_3": null, + "city": "Rancho Cordova", + "state_province": "California", + "postal_code": "95742-6856", + "country": "United States", + "longitude": -121.2607634, + "latitude": 38.58185916, + "phone": "9166615249", + "website_url": "http://www.claimstakebrewing.com", + "state": "California", + "street": "11366 Monier Park Pl" + }, + { + "id": "9f0fb9c0-49ca-4c1e-aa52-ca9b099a317c", + "name": "Clairvoyant Brewing - Boise", + "brewery_type": "micro", + "address_1": "2800 W Idaho St", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83702-4628", + "country": "United States", + "longitude": -116.225417, + "latitude": 43.622812, + "phone": "2089960095", + "website_url": "http://www.clairvoyantbrewing.com", + "state": "Idaho", + "street": "2800 W Idaho St" + }, + { + "id": "7cc65ee3-40e0-483b-bf33-589945cb5610", + "name": "Clairvoyant Brewing - West", + "brewery_type": "micro", + "address_1": "9115 W Chinden Blvd Ste 107", + "address_2": null, + "address_3": null, + "city": "Garden City", + "state_province": "Idaho", + "postal_code": "83714", + "country": "United States", + "longitude": -116.2958998, + "latitude": 43.654831, + "phone": null, + "website_url": "https://www.clairvoyantbrewing.com", + "state": "Idaho", + "street": "9115 W Chinden Blvd Ste 107" + }, + { + "id": "18783ef1-06c4-496e-a25b-110032b07619", + "name": "Clam Lake Beer Co", + "brewery_type": "brewpub", + "address_1": "106 S Mitchell St Ste A", + "address_2": null, + "address_3": null, + "city": "Cadillac", + "state_province": "Michigan", + "postal_code": "49601-2177", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2317756150", + "website_url": "http://www.clamlakebeerco.com", + "state": "Michigan", + "street": "106 S Mitchell St Ste A" + }, + { + "id": "62f9023b-c528-4366-8348-3e25c6edfe53", + "name": "Clandestine Brewing", + "brewery_type": "micro", + "address_1": "980 S 1st Ste B", + "address_2": null, + "address_3": null, + "city": "San Jose", + "state_province": "California", + "postal_code": "95110-3127", + "country": "United States", + "longitude": -121.8786694, + "latitude": 37.32187322, + "phone": null, + "website_url": "http://www.clandestinebrewing.com", + "state": "California", + "street": "980 S 1st Ste B" + }, + { + "id": "54622678-f89c-4ce7-bc09-3a27808a6225", + "name": "Claremont Craft Ales", + "brewery_type": "micro", + "address_1": "1420 N Claremont Blvd Ste 204C", + "address_2": null, + "address_3": null, + "city": "Claremont", + "state_province": "California", + "postal_code": "91711-3528", + "country": "United States", + "longitude": -117.7017202, + "latitude": 34.10939116, + "phone": "9096255350", + "website_url": "http://www.claremontcraftales.com", + "state": "California", + "street": "1420 N Claremont Blvd Ste 204C" + }, + { + "id": "578f1099-d868-437e-b602-2a3531f708fd", + "name": "Clarens Brewery", + "brewery_type": "brewpub", + "address_1": "361 Main Street", + "address_2": null, + "address_3": null, + "city": "Clarens", + "state_province": "Free State", + "postal_code": "9707", + "country": "South Africa", + "longitude": 28.5173, + "latitude": -28.4187, + "phone": "+27 58 256 1193", + "website_url": "https://www.clarensbrewery.co.za/", + "state": "Free State", + "street": "361 Main Street" + }, + { + "id": "a33ce0a4-eaf9-4807-bd2b-ecc104b186c4", + "name": "Clarion River Brewing Company", + "brewery_type": "brewpub", + "address_1": "600 Main St # 604", + "address_2": null, + "address_3": null, + "city": "Clarion", + "state_province": "Pennsylvania", + "postal_code": "16214-1108", + "country": "United States", + "longitude": -79.6789283, + "latitude": 41.14649162, + "phone": "8142978399", + "website_url": "http://www.clarionriverbrew.com", + "state": "Pennsylvania", + "street": "600 Main St # 604" + }, + { + "id": "088d36c6-2be1-4c07-8da1-d8c64f5800de", + "name": "Clayton Brewing Co", + "brewery_type": "contract", + "address_1": "661 W Arrow Hwy", + "address_2": null, + "address_3": null, + "city": "San Dimas", + "state_province": "California", + "postal_code": "91773-2936", + "country": "United States", + "longitude": -117.826752, + "latitude": 34.1066017, + "phone": "9093944900", + "website_url": "http://www.claytonbrewingco.com", + "state": "California", + "street": "661 W Arrow Hwy" + }, + { + "id": "252f7a2b-637c-4a90-bce9-5fab3e0d6702", + "name": "CLE Brewing", + "brewery_type": "micro", + "address_1": "9431 Mercantile Dr", + "address_2": null, + "address_3": null, + "city": "Mentor", + "state_province": "Ohio", + "postal_code": "44060", + "country": "United States", + "longitude": -81.30644573, + "latitude": 41.69622887, + "phone": "4405278330", + "website_url": "http://www.smarterbrewing.com", + "state": "Ohio", + "street": "9431 Mercantile Dr" + }, + { + "id": "da01256e-6b46-4fb2-94e4-e18d5fe01b65", + "name": "Clemson Bros. Brewery", + "brewery_type": "brewpub", + "address_1": "22 Cottage St", + "address_2": null, + "address_3": null, + "city": "Middletown", + "state_province": "New York", + "postal_code": "10940-5059", + "country": "United States", + "longitude": -74.41622495, + "latitude": 41.44693028, + "phone": "8457754638", + "website_url": "http://www.clemsonbrewing.com", + "state": "New York", + "street": "22 Cottage St" + }, + { + "id": "41f88027-2cd2-4988-bd1c-0869bec82d61", + "name": "Clendenin Brewing Co", + "brewery_type": "micro", + "address_1": "2 Main St", + "address_2": null, + "address_3": null, + "city": "Clendenin", + "state_province": "West Virginia", + "postal_code": "25045-1001", + "country": "United States", + "longitude": -81.326984312027, + "latitude": 38.534742386751, + "phone": "3045484505", + "website_url": "https://clendenin.beer", + "state": "West Virginia", + "street": "2 Main St" + }, + { + "id": "418f4dca-b6cc-46ef-bdd8-fb7a4febb9e8", + "name": "Cleophus Quealy Beer Company", + "brewery_type": "micro", + "address_1": "448 Hester St", + "address_2": null, + "address_3": null, + "city": "San Leandro", + "state_province": "California", + "postal_code": "94577-1024", + "country": "United States", + "longitude": -122.1914202, + "latitude": 37.72210256, + "phone": null, + "website_url": "http://www.cleoph.us", + "state": "California", + "street": "448 Hester St" + }, + { + "id": "84229303-605d-4216-be85-cd5ad19ccb91", + "name": "Clermont Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Clermont", + "state_province": "Florida", + "postal_code": "34711-2108", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "a630d9e9-b184-4c4f-aa32-56e61cfd6c92", + "name": "Cleveland Brewing Company @ Butcher and The Brewer", + "brewery_type": "brewpub", + "address_1": "2043 E 4th St", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44115-1023", + "country": "United States", + "longitude": -81.690036, + "latitude": 41.4991502, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": "2043 E 4th St" + }, + { + "id": "9aab61ae-eeb8-493e-8c80-92e79bd86a2c", + "name": "Cliffside Brewing", + "brewery_type": "closed", + "address_1": "16B Center St", + "address_2": null, + "address_3": null, + "city": "Wallingford", + "state_province": "Connecticut", + "postal_code": "06492-4110", + "country": "United States", + "longitude": -72.8236736, + "latitude": 41.45664583, + "phone": null, + "website_url": "http://www.cliffsidebrewing.com", + "state": "Connecticut", + "street": "16B Center St" + }, + { + "id": "f899a5de-68f7-481a-b3fd-fb3bdd91b1f8", + "name": "Clifton Hill Brewpub", + "brewery_type": "micro", + "address_1": "89 Queens Parade", + "address_2": null, + "address_3": null, + "city": "Clifton Hill", + "state_province": "VIC", + "postal_code": "3068", + "country": "Australia", + "longitude": 144.9890488, + "latitude": -37.7897212, + "phone": "+61 3 9489 8705", + "website_url": "http://www.thecliftonhillhotel.com.au/", + "state": "VIC", + "street": "89 Queens Parade" + }, + { + "id": "8690decb-8627-47c1-8a42-bf73cca5662e", + "name": "Climate City Brewing Co.", + "brewery_type": "brewpub", + "address_1": "509 SW G St", + "address_2": null, + "address_3": null, + "city": "Grants Pass", + "state_province": "Oregon", + "postal_code": "97526-2472", + "country": "United States", + "longitude": -123.3313287, + "latitude": 42.4401171, + "phone": "5414793725", + "website_url": "http://www.climatecitybrewing.com", + "state": "Oregon", + "street": "509 SW G St" + }, + { + "id": "3f324410-c135-498c-b5cc-4116df6d9f8f", + "name": "Climax Brewing Co", + "brewery_type": "micro", + "address_1": "112 Valley Rd", + "address_2": null, + "address_3": null, + "city": "Roselle Park", + "state_province": "New Jersey", + "postal_code": "07204-1402", + "country": "United States", + "longitude": -74.28252639, + "latitude": 40.65943179, + "phone": "9086209585", + "website_url": "http://www.climaxbrewing.com", + "state": "New Jersey", + "street": "112 Valley Rd" + }, + { + "id": "03c5e7d6-e98d-481f-ad60-64d363f20446", + "name": "Climber Nine Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Cameron Park", + "state_province": "California", + "postal_code": "95682-8975", + "country": "United States", + "longitude": -120.9851442, + "latitude": 38.68200185, + "phone": null, + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "d11bf284-2d00-4915-bd7d-1f8c7b8a43f2", + "name": "Climbing Bines Craft Ale Company", + "brewery_type": "micro", + "address_1": "511 Hanson Point Rd", + "address_2": null, + "address_3": null, + "city": "Penn Yan", + "state_province": "New York", + "postal_code": "14527-9718", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6077450221", + "website_url": "http://www.climbingbineshopfarm.com", + "state": "New York", + "street": "511 Hanson Point Rd" + }, + { + "id": "09345655-ad47-4b71-ba33-61c1c16550a0", + "name": "Clinch River Brewing", + "brewery_type": "brewpub", + "address_1": "2045 Norris Freeway", + "address_2": null, + "address_3": null, + "city": "Norris", + "state_province": "Tennessee", + "postal_code": "37828", + "country": "United States", + "longitude": -84.0448186, + "latitude": 36.1696625, + "phone": "2763561847", + "website_url": "http://www.clinchriverbrewing.com", + "state": "Tennessee", + "street": "2045 Norris Freeway" + }, + { + "id": "a4f67a90-e30b-4e7b-949c-1ab62077742c", + "name": "Clock House Brewing", + "brewery_type": "micro", + "address_1": "600 1st St SE", + "address_2": null, + "address_3": null, + "city": "Cedar Rapids", + "state_province": "Iowa", + "postal_code": "52401", + "country": "United States", + "longitude": -91.665354, + "latitude": 41.973813, + "phone": "3192004099", + "website_url": "http://www.clockhousebrewing.com", + "state": "Iowa", + "street": "600 1st St SE" + }, + { + "id": "80315299-debd-4568-8975-a06f1d0038f3", + "name": "Clockwerks Brewing", + "brewery_type": "brewpub", + "address_1": "25 N 4th St", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55401-1719", + "country": "United States", + "longitude": -93.27195031, + "latitude": 44.98071827, + "phone": "6123399375", + "website_url": "http://www.clockwerksbrewing.com", + "state": "Minnesota", + "street": "25 N 4th St" + }, + { + "id": "292c3038-e1ab-415f-a817-7cf8e02cea4c", + "name": "Clockwork Brewhouse", + "brewery_type": "brewpub", + "address_1": "60 Station Road", + "address_2": null, + "address_3": null, + "city": "Cartwrights flat", + "state_province": "KwaZulu-Natal", + "postal_code": "4390", + "country": "South Africa", + "longitude": 30.4357, + "latitude": -29.6267, + "phone": "+27 60 762 9713", + "website_url": null, + "state": "KwaZulu-Natal", + "street": "60 Station Road" + }, + { + "id": "beccac0a-ce7c-420f-a548-67ce2b84d7eb", + "name": "Cloud 9 Brewery", + "brewery_type": "brewpub", + "address_1": "1750 W State St", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83702-3923", + "country": "United States", + "longitude": -116.2116802, + "latitude": 43.62441063, + "phone": "2083360681", + "website_url": "http://www.cloud9brewery.com", + "state": "Idaho", + "street": "1750 W State St" + }, + { + "id": "b93ef9fe-5adc-4dae-a5e8-49c94cd7cfd0", + "name": "Cloudburst Brewing", + "brewery_type": "micro", + "address_1": "2116 Western Ave", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98121-2110", + "country": "United States", + "longitude": -122.3452717, + "latitude": 47.6116138, + "phone": "2066026061", + "website_url": "http://www.cloudburstbrew.com", + "state": "Washington", + "street": "2116 Western Ave" + }, + { + "id": "5382a775-e629-49a1-8774-712525404364", + "name": "Cloudburst Brewing on Shilshole", + "brewery_type": "micro", + "address_1": "5456 Shilshole Ave NW", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98107-4022", + "country": "United States", + "longitude": -122.3865589, + "latitude": 47.66806551, + "phone": null, + "website_url": "http://www.cloudburstbrew.com", + "state": "Washington", + "street": "5456 Shilshole Ave NW" + }, + { + "id": "eaed88bf-4da0-43bc-bf43-4ed6299752a3", + "name": "Clouds Brewing", + "brewery_type": "micro", + "address_1": "1233 Front St Ste E", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27609-7534", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9197474863", + "website_url": "http://www.cloudsbrewing.com", + "state": "North Carolina", + "street": "1233 Front St Ste E" + }, + { + "id": "f5d75c6d-8d8a-439c-92f9-73edb3574aba", + "name": "Clouds Brewing", + "brewery_type": "micro", + "address_1": "905 W Main St", + "address_2": "#22", + "address_3": null, + "city": "Durham", + "state_province": "North Carolina", + "postal_code": "27701", + "country": "United States", + "longitude": -78.9104658, + "latitude": 36.0000041, + "phone": "9192518096", + "website_url": "http://www.cloudsbrewing.com", + "state": "North Carolina", + "street": "905 W Main St" + }, + { + "id": "67e50b38-80ff-431e-a5eb-d9e49db207cf", + "name": "Cloverdale Ale Company's Ruth McGowan's Brewpub", + "brewery_type": "brewpub", + "address_1": "131 E 1st St", + "address_2": null, + "address_3": null, + "city": "Cloverdale", + "state_province": "California", + "postal_code": "95425-3701", + "country": "United States", + "longitude": -123.0165729, + "latitude": 38.80532322, + "phone": "7078949610", + "website_url": "http://www.ruthmcgowansbrewpub.com", + "state": "California", + "street": "131 E 1st St" + }, + { + "id": "81228a3c-b30b-426b-bbb4-00fcc575e858", + "name": "Clubhouse Brewing Company Ltd", + "brewery_type": "micro", + "address_1": "668 N River Rd NW", + "address_2": null, + "address_3": null, + "city": "Warren", + "state_province": "Ohio", + "postal_code": "44483", + "country": "United States", + "longitude": -80.82676867, + "latitude": 41.26602856, + "phone": "3305487854", + "website_url": null, + "state": "Ohio", + "street": "668 N River Rd NW" + }, + { + "id": "e55521d5-aded-4bd6-9bed-072d74a2f8c8", + "name": "CNB Brewpub", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sarasota", + "state_province": "Florida", + "postal_code": "34242-3811", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9418096760", + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "e5028c3e-023e-4987-94a5-58ab9ff94fa0", + "name": "CO-Brew", + "brewery_type": "micro", + "address_1": "1133 N Broadway", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80203-2106", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7204854959", + "website_url": "http://www.cobrewdenver.com", + "state": "Colorado", + "street": "1133 N Broadway" + }, + { + "id": "86dcbf88-9ef0-4f73-a021-330198902ad0", + "name": "Coachella Valley Brewing Co", + "brewery_type": "micro", + "address_1": "30-640 Gunther St", + "address_2": null, + "address_3": null, + "city": "Thousand Palms", + "state_province": "California", + "postal_code": "92276-2333", + "country": "United States", + "longitude": -116.401697, + "latitude": 33.826202, + "phone": "7603435973", + "website_url": "http://www.cvbco.com", + "state": "California", + "street": "30-640 Gunther St" + }, + { + "id": "29f4510e-d3c3-4166-ab94-ee1879962000", + "name": "Coal Country Brewing", + "brewery_type": "micro", + "address_1": "625 W High St", + "address_2": null, + "address_3": null, + "city": "Ebensburg", + "state_province": "Pennsylvania", + "postal_code": "15931", + "country": "United States", + "longitude": -78.730634, + "latitude": 40.485306, + "phone": "8144198648", + "website_url": "http://www.coalcountrybrewing.net", + "state": "Pennsylvania", + "street": "625 W High St" + }, + { + "id": "8f9a9b92-eedd-4ca0-9fd6-01299cb0c74e", + "name": "Coal Creek TAP", + "brewery_type": "micro", + "address_1": "108 E Grand Ave", + "address_2": null, + "address_3": null, + "city": "Laramie", + "state_province": "Wyoming", + "postal_code": "82070-3638", + "country": "United States", + "longitude": -105.5952184, + "latitude": 41.31105578, + "phone": "3074609556", + "website_url": "http://www.coalcreektap.com", + "state": "Wyoming", + "street": "108 E Grand Ave" + }, + { + "id": "3b896acb-c1d6-42e9-add5-2d9fc30ff260", + "name": "Coal Mine Ave Brewing Company", + "brewery_type": "micro", + "address_1": "9719 W Coal Mine Ave Unit A", + "address_2": null, + "address_3": null, + "city": "Littleton", + "state_province": "Colorado", + "postal_code": "80123-8000", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7205044866", + "website_url": "http://www.coalmineavebrewing.com", + "state": "Colorado", + "street": "9719 W Coal Mine Ave Unit A" + }, + { + "id": "ee2bb5ba-1f1c-4ba3-9087-3cb9df5f4323", + "name": "Coal Tipple Brewery / Kramer Farms", + "brewery_type": "micro", + "address_1": "1905 Steubenville Rike", + "address_2": null, + "address_3": null, + "city": "Burgettstown", + "state_province": "Pennsylvania", + "postal_code": "15021", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7248993344", + "website_url": "http://www.coaltipplebrewery.com", + "state": "Pennsylvania", + "street": "1905 Steubenville Rike" + }, + { + "id": "08155729-56b6-4a82-a43e-5b458dd01c2e", + "name": "Coalition Brewing Co", + "brewery_type": "closed", + "address_1": "2705 SE Ankeny St Ste C", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97214-1817", + "country": "United States", + "longitude": -122.6381854, + "latitude": 45.5225809, + "phone": "5038948080", + "website_url": "http://www.coalitionbrewing.com", + "state": "Oregon", + "street": "2705 SE Ankeny St Ste C" + }, + { + "id": "1c445860-c350-45a3-9550-184e36f4c863", + "name": "COAST Brewing Co", + "brewery_type": "micro", + "address_1": "1250 N 2nd St", + "address_2": null, + "address_3": null, + "city": "North Charleston", + "state_province": "South Carolina", + "postal_code": "29405-1804", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8433434727", + "website_url": "http://www.coastbrewing.com", + "state": "South Carolina", + "street": "1250 N 2nd St" + }, + { + "id": "1d3693d3-b9ef-48b5-b76d-4464725c6064", + "name": "Coastal Bend Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Corpus Christi", + "state_province": "Texas", + "postal_code": "78418-6697", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5126901050", + "website_url": "http://www.coastalbendbrewing.com", + "state": "Texas", + "street": null + }, + { + "id": "8f79511b-78db-4478-980f-82b9219e5916", + "name": "Coastal Empire Beer Co", + "brewery_type": "micro", + "address_1": "79 Ross Rd", + "address_2": null, + "address_3": null, + "city": "Savannah", + "state_province": "Georgia", + "postal_code": "31405-1660", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9124287911", + "website_url": "http://www.coastalempirebeer.com", + "state": "Georgia", + "street": "79 Ross Rd" + }, + { + "id": "db18bb6e-f763-4c39-a823-a961aa19c5a1", + "name": "Coastal Rhythm", + "brewery_type": "bar", + "address_1": "1206A East Coast Parkway", + "address_2": "Singapore Wake Park", + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "449891", + "country": "Singapore", + "longitude": 1.3058550499371, + "latitude": 103.9316688, + "phone": "+65 6636 3705", + "website_url": "https://www.coastalrhythm.sg/", + "state": "Singapore", + "street": "1206A East Coast Parkway" + }, + { + "id": "5b5da0b9-7219-4bcf-a841-ceb5388ef7da", + "name": "Coastal Star Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Santa Maria", + "state_province": "California", + "postal_code": "93455-1722", + "country": "United States", + "longitude": -120.4358577, + "latitude": 34.9531295, + "phone": "8053284677", + "website_url": "http://www.coastalstarbrewing.com", + "state": "California", + "street": null + }, + { + "id": "981cd7dd-8130-4eda-899c-70f3a556e1bd", + "name": "Cobblehaus Brewing Company", + "brewery_type": "micro", + "address_1": "1021 5th Ave", + "address_2": null, + "address_3": null, + "city": "Coraopolis", + "state_province": "Pennsylvania", + "postal_code": "15108-1803", + "country": "United States", + "longitude": -80.16333048, + "latitude": 40.5174116, + "phone": "4122648000", + "website_url": "http://www.cobblehauspa.com", + "state": "Pennsylvania", + "street": "1021 5th Ave" + }, + { + "id": "b757743f-6586-498f-84f0-8d92d0b5ae6e", + "name": "Cocoa Beach Brewing Co", + "brewery_type": "brewpub", + "address_1": "150 N Atlantic Ave", + "address_2": null, + "address_3": null, + "city": "Cocoa Beach", + "state_province": "Florida", + "postal_code": "32931-2960", + "country": "United States", + "longitude": -80.6090792, + "latitude": 28.3213572, + "phone": "3216132941", + "website_url": "http://www.cocoabeachbrewingcompany.com", + "state": "Florida", + "street": "150 N Atlantic Ave" + }, + { + "id": "ffeb7b6f-b61d-4ed8-aee3-f2fdcda4250e", + "name": "CoConspirators Brewing", + "brewery_type": "micro", + "address_1": "377 Victoria Street", + "address_2": null, + "address_3": null, + "city": "Brunswick", + "state_province": "VIC", + "postal_code": "3056", + "country": "Australia", + "longitude": 144.9568143, + "latitude": -37.7662408, + "phone": "+61 3 9193 9765", + "website_url": "http://www.coconspirators.com.au/", + "state": "VIC", + "street": "377 Victoria Street" + }, + { + "id": "4ce01b93-8d28-4041-b335-0929841001e6", + "name": "CoConspirators Brewing Co", + "brewery_type": "micro", + "address_1": "377 Victoria Street", + "address_2": null, + "address_3": null, + "city": "Brunswick", + "state_province": "VIC", + "postal_code": "3056", + "country": "Australia", + "longitude": 144.9568143, + "latitude": -37.7662408, + "phone": "+61 3 9193 9765", + "website_url": "http://www.coconspirators.com.au/", + "state": "VIC", + "street": "377 Victoria Street" + }, + { + "id": "c97cbf45-cb24-4b09-ab4d-cb6859e12e03", + "name": "Cocoon Brewing", + "brewery_type": "micro", + "address_1": "2233 Kaftan Way", + "address_2": null, + "address_3": null, + "city": "De Pere", + "state_province": "Wisconsin", + "postal_code": "54115-4052", + "country": "United States", + "longitude": -88.019933915533, + "latitude": 44.430195378172, + "phone": "9204254888", + "website_url": "http://www.cocoonbrewing.com", + "state": "Wisconsin", + "street": "2233 Kaftan Way" + }, + { + "id": "c0a80da7-b2b4-4376-824f-dc3e33180948", + "name": "Coda Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Golden", + "state_province": "Colorado", + "postal_code": "80401", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3038956475", + "website_url": "http://codabrewing.com", + "state": "Colorado", + "street": null + }, + { + "id": "c8e457a7-0753-4e02-a20e-cda524635a0e", + "name": "Coddington Brewing Co", + "brewery_type": "brewpub", + "address_1": "210 Coddington Hwy", + "address_2": null, + "address_3": null, + "city": "Middletown", + "state_province": "Rhode Island", + "postal_code": "02842-4884", + "country": "United States", + "longitude": -71.3049167, + "latitude": 41.51869514, + "phone": "4018476690", + "website_url": "https://coddbrew.com", + "state": "Rhode Island", + "street": "210 Coddington Hwy" + }, + { + "id": "a7ba0514-376a-46d5-9827-230e5467c0bb", + "name": "Code Beer Co.", + "brewery_type": "micro", + "address_1": "200 S Antelope Valley Pkwy", + "address_2": null, + "address_3": null, + "city": "Lincoln", + "state_province": "Nebraska", + "postal_code": "68510-1016", + "country": "United States", + "longitude": -96.69344422, + "latitude": 40.8123075, + "phone": "4023185888", + "website_url": "http://www.codebeer.co", + "state": "Nebraska", + "street": "200 S Antelope Valley Pkwy" + }, + { + "id": "6d50dc8a-94a9-4490-996d-cb2e79325a69", + "name": "Cody Craft Brewing", + "brewery_type": "micro", + "address_1": "1732 Sheridan Ave", + "address_2": null, + "address_3": null, + "city": "Cody", + "state_province": "Wyoming", + "postal_code": "82414-3848", + "country": "United States", + "longitude": -109.05007769427, + "latitude": 44.531821077441, + "phone": "3075788126", + "website_url": "https://www.codycraftbrewing.com", + "state": "Wyoming", + "street": "1732 Sheridan Ave" + }, + { + "id": "ac955d91-37e9-4289-890c-5367864962b4", + "name": "Coelacanth Brewing", + "brewery_type": "micro", + "address_1": "760A W 22nd St", + "address_2": null, + "address_3": null, + "city": "Norfolk", + "state_province": "Virginia", + "postal_code": "23517-1925", + "country": "United States", + "longitude": -76.29561292, + "latitude": 36.87169977, + "phone": "7573836438", + "website_url": "http://www.coelacanth.com", + "state": "Virginia", + "street": "760A W 22nd St" + }, + { + "id": "87b5537d-1ade-42da-9df2-1274eaf3298d", + "name": "Cognition Brewing Company", + "brewery_type": "micro", + "address_1": "113 E Canda St", + "address_2": null, + "address_3": null, + "city": "Ishpeming", + "state_province": "Michigan", + "postal_code": "49849-1904", + "country": "United States", + "longitude": -87.6681955, + "latitude": 46.4916806, + "phone": "9062042724", + "website_url": "http://www.cognitionbrewing.com", + "state": "Michigan", + "street": "113 E Canda St" + }, + { + "id": "2d069653-3988-44e6-a58e-89de3d646223", + "name": "Cognito Brewing Company", + "brewery_type": "brewpub", + "address_1": "142 W Monroe St", + "address_2": null, + "address_3": null, + "city": "Bangor", + "state_province": "Michigan", + "postal_code": "49013-1333", + "country": "United States", + "longitude": -86.11152208, + "latitude": 42.31308099, + "phone": "9718088863", + "website_url": "http://www.cognitobrewingcompany.com", + "state": "Michigan", + "street": "142 W Monroe St" + }, + { + "id": "701f40c6-bf18-4462-bac2-003ed612b484", + "name": "Cogstone Brewing Co", + "brewery_type": "brewpub", + "address_1": "3858 Village Seven Rd", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80917-2801", + "country": "United States", + "longitude": -104.75566, + "latitude": 38.87959595, + "phone": "7194186595", + "website_url": "http://www.cogstonebrewing.com", + "state": "Colorado", + "street": "3858 Village Seven Rd" + }, + { + "id": "81538993-ea66-450c-a41e-6023267081f8", + "name": "Cohort Craft Brewery", + "brewery_type": "micro", + "address_1": "4905 5th Street", + "address_2": null, + "address_3": null, + "city": "Rapid City", + "state_province": "South Dakota", + "postal_code": "57701-6032", + "country": "United States", + "longitude": -103.2166522, + "latitude": 44.03542851, + "phone": "4023504624", + "website_url": "http://www.cohortbrewery.com", + "state": "South Dakota", + "street": "4905 5th Street" + }, + { + "id": "6d974500-ddaf-4742-8426-da9c7a9e5016", + "name": "Coin Toss Brewing Co", + "brewery_type": "micro", + "address_1": "14214 Fir St Ste H", + "address_2": null, + "address_3": null, + "city": "Oregon City", + "state_province": "Oregon", + "postal_code": "97045-6837", + "country": "United States", + "longitude": -122.5784543, + "latitude": 45.33224121, + "phone": "5033056220", + "website_url": "http://www.cointossbrewing.com", + "state": "Oregon", + "street": "14214 Fir St Ste H" + }, + { + "id": "ec0384fd-8f69-4853-918d-bbc46329e657", + "name": "Cold Crash Brewing", + "brewery_type": "closed", + "address_1": "4507 48th Ave SW", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98116-4039", + "country": "United States", + "longitude": -122.39395, + "latitude": 47.56329, + "phone": "2064864644", + "website_url": "https://www.coldcrashbrewing.com", + "state": "Washington", + "street": "4507 48th Ave SW" + }, + { + "id": "350327f4-3d45-4c30-9651-349f7d8615ac", + "name": "Cold Creek Brewery", + "brewery_type": "micro", + "address_1": "6 Industrial Dr", + "address_2": null, + "address_3": null, + "city": "Ellington", + "state_province": "Connecticut", + "postal_code": "06029-2632", + "country": "United States", + "longitude": -72.456028, + "latitude": 41.9209531, + "phone": "8608581900", + "website_url": "http://coldcreekbrewery.com", + "state": "Connecticut", + "street": "6 Industrial Dr" + }, + { + "id": "09a05c1a-a28b-4226-9e8b-6d6925d19bc5", + "name": "Cold Fusion Brewing LLC", + "brewery_type": "micro", + "address_1": "4711 Morton Place Way", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37912-4162", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8652035948", + "website_url": "http://www.facebook.com/ColdFusionBrewery/?ref=bookmarks", + "state": "Tennessee", + "street": "4711 Morton Place Way" + }, + { + "id": "6214314a-396b-4807-be4f-6033a61341ce", + "name": "Cold Harbor Brewing Company", + "brewery_type": "micro", + "address_1": "108 Milk St Ste 6", + "address_2": null, + "address_3": null, + "city": "Westborough", + "state_province": "Massachusetts", + "postal_code": "01581-1228", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.coldharborbrewing.com", + "state": "Massachusetts", + "street": "108 Milk St Ste 6" + }, + { + "id": "8adecd1d-7e2e-4724-836a-a13c4d145996", + "name": "Cold Iron Brewing", + "brewery_type": "micro", + "address_1": "104 S Lowell St", + "address_2": null, + "address_3": null, + "city": "Ironwood", + "state_province": "Michigan", + "postal_code": "49938-2044", + "country": "United States", + "longitude": -90.16984913, + "latitude": 46.45390575, + "phone": "9062857020", + "website_url": "http://www.coldironbrewing.com", + "state": "Michigan", + "street": "104 S Lowell St" + }, + { + "id": "7a5ad53c-84cd-4843-aaf7-6fb870588538", + "name": "Cold Spring Brewery", + "brewery_type": "micro", + "address_1": "733 Seashore Rd", + "address_2": null, + "address_3": null, + "city": "Cape May", + "state_province": "New Jersey", + "postal_code": "08204-4634", + "country": "United States", + "longitude": -74.9127483, + "latitude": 38.97816685, + "phone": "6098543077", + "website_url": "http://www.hcsv.org", + "state": "New Jersey", + "street": "733 Seashore Rd" + }, + { + "id": "7c7015c0-c7af-41f9-bab3-1cb9e4db0c7f", + "name": "Cold Water Brewery and Grill", + "brewery_type": "brewpub", + "address_1": "2544 Lake Tahoe Blvd", + "address_2": null, + "address_3": null, + "city": "South Lake Tahoe", + "state_province": "California", + "postal_code": "96150-7707", + "country": "United States", + "longitude": -119.986213, + "latitude": 38.925231, + "phone": "5305444677", + "website_url": "http://www.tahoecoldwaterbrewery.com", + "state": "California", + "street": "2544 Lake Tahoe Blvd" + }, + { + "id": "14e3a304-2a09-4148-b701-db23ca91deb2", + "name": "Coldfire Brewing", + "brewery_type": "micro", + "address_1": "263 Mill St", + "address_2": null, + "address_3": null, + "city": "Eugene", + "state_province": "Oregon", + "postal_code": "97401-2410", + "country": "United States", + "longitude": -123.0864976, + "latitude": 44.05674657, + "phone": "5415569374", + "website_url": "http://www.coldfirebrewing.com", + "state": "Oregon", + "street": "263 Mill St" + }, + { + "id": "b89a46c4-2677-425f-b81d-665b9261ba0b", + "name": "Coldstream Brewery", + "brewery_type": "micro", + "address_1": "694 Maroondah Highway", + "address_2": null, + "address_3": null, + "city": "Coldstream", + "state_province": "VIC", + "postal_code": "3770", + "country": "Australia", + "longitude": 145.379093, + "latitude": -37.724435, + "phone": "+61 3 9739 1794", + "website_url": "http://coldstreambrewery.com.au/", + "state": "VIC", + "street": "694 Maroondah Highway" + }, + { + "id": "7097997a-1a61-4da8-a549-f823db3a908a", + "name": "Cole Street Brewery", + "brewery_type": "micro", + "address_1": "1627 Cole St", + "address_2": null, + "address_3": null, + "city": "Enumclaw", + "state_province": "Washington", + "postal_code": "98022-3640", + "country": "United States", + "longitude": -121.988911, + "latitude": 47.204514, + "phone": "2539516656", + "website_url": "https://www.beercolestreetbrew.com", + "state": "Washington", + "street": "1627 Cole St" + }, + { + "id": "cd33914f-7327-49ec-b05e-9ca93e0d709b", + "name": "Coles Road Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Cromwell", + "state_province": "Connecticut", + "postal_code": "06416-1113", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://ColesRoadBrewing.com", + "state": "Connecticut", + "street": null + }, + { + "id": "c76631f7-1fa9-4b31-b126-bedd85f363dd", + "name": "Colfax Ale Cellar", + "brewery_type": "micro", + "address_1": "215 S 2nd St", + "address_2": null, + "address_3": null, + "city": "Raton", + "state_province": "New Mexico", + "postal_code": "87740-3907", + "country": "United States", + "longitude": -104.4396637, + "latitude": 36.90092538, + "phone": "5754459727", + "website_url": "Http://www.ColfaxAleCellar.com", + "state": "New Mexico", + "street": "215 S 2nd St" + }, + { + "id": "ee97bdcf-d7b4-48f3-82a1-7983a370b7b1", + "name": "Collection Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27614-8519", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "North Carolina", + "street": null + }, + { + "id": "e099a46e-0e6a-4b90-9f77-432fd55ef3f6", + "name": "College Point Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "College Point", + "state_province": "New York", + "postal_code": "11356-2715", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "c96029a1-cb59-4de2-9a2b-3a8380964bde", + "name": "College Street Brewhouse and Pub", + "brewery_type": "micro", + "address_1": "1940 College Dr", + "address_2": null, + "address_3": null, + "city": "Lake Havasu City", + "state_province": "Arizona", + "postal_code": "86403-1981", + "country": "United States", + "longitude": -114.3475961, + "latitude": 34.50754044, + "phone": "9288542739", + "website_url": null, + "state": "Arizona", + "street": "1940 College Dr" + }, + { + "id": "98e114d3-a3df-40c9-aab9-dc4d7b0287ce", + "name": "Collision Bend Brewing Co", + "brewery_type": "brewpub", + "address_1": "1250 Old River Rd", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44113-1243", + "country": "United States", + "longitude": -81.7039719, + "latitude": 41.49884829, + "phone": "2162737879", + "website_url": "http://www.collisionbendbrewery.com", + "state": "Ohio", + "street": "1250 Old River Rd" + }, + { + "id": "64dc6a70-6169-4a42-9102-c6abf362bb9c", + "name": "Colludium Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Hattiesburg", + "state_province": "Mississippi", + "postal_code": "39401", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6015202789", + "website_url": "http://www.colludiumbrewery.com", + "state": "Mississippi", + "street": null + }, + { + "id": "ffe2b950-fcdc-4262-afa4-08f4efe138d7", + "name": "Collusion Tap Works", + "brewery_type": "brewpub", + "address_1": "105 S Howard St", + "address_2": null, + "address_3": null, + "city": "York", + "state_province": "Pennsylvania", + "postal_code": "17401-2001", + "country": "United States", + "longitude": -76.72393735, + "latitude": 39.9618357, + "phone": "7178488400", + "website_url": "http://www.collusiontapworks.com", + "state": "Pennsylvania", + "street": "105 S Howard St" + }, + { + "id": "d4cd9789-f251-4b02-ba16-000fc8dc50b4", + "name": "Colonial Brewing Company", + "brewery_type": "regional", + "address_1": "89 Bertie Street", + "address_2": null, + "address_3": null, + "city": "Port Melbourne", + "state_province": "VIC", + "postal_code": "3207", + "country": "Australia", + "longitude": 144.9370538, + "latitude": -37.8285701, + "phone": "+61 3 8644 4044", + "website_url": "http://www.cbco.beer/", + "state": "VIC", + "street": "89 Bertie Street" + }, + { + "id": "ad5ab314-fdc4-4f12-a3d5-6fbb4f8ed7a3", + "name": "Colonsay Ales", + "brewery_type": "micro", + "address_1": "Colonsay Brewery", + "address_2": "Dunoran", + "address_3": "Scalasaig", + "city": "Isle of Colonsay", + "state_province": "Argyll", + "postal_code": "PA61 7YZ", + "country": "Scotland", + "longitude": -6.2600129, + "latitude": 56.0703454, + "phone": "1951200190", + "website_url": "https://colonsaybrewery.co.uk/", + "state": "Argyll", + "street": "Colonsay Brewery" + }, + { + "id": "6d861790-9ecf-490c-80b5-418ff488de5d", + "name": "Colorado Boy Pizzeria", + "brewery_type": "brewpub", + "address_1": "320 E Main St", + "address_2": null, + "address_3": null, + "city": "Montrose", + "state_province": "Colorado", + "postal_code": "81401-3928", + "country": "United States", + "longitude": -107.877366, + "latitude": 38.47887872, + "phone": "9702402790", + "website_url": "http://www.coloradoboy.com", + "state": "Colorado", + "street": "320 E Main St" + }, + { + "id": "c0b1eb89-c49e-4506-88b7-a0c17c3e2243", + "name": "Colorado Boy Pub & Brewery", + "brewery_type": "brewpub", + "address_1": "602 Clinton St.", + "address_2": null, + "address_3": null, + "city": "Ridgway", + "state_province": "Colorado", + "postal_code": "81432-0877", + "country": "United States", + "longitude": -107.7577685, + "latitude": 38.152358, + "phone": "9706265333", + "website_url": "http://www.coloradoboy.com", + "state": "Colorado", + "street": "602 Clinton St." + }, + { + "id": "aaf6059a-1d65-4e9f-9b58-bb23474087da", + "name": "Colorado Farm Brewery", + "brewery_type": "micro", + "address_1": "2070 County Road 12 S", + "address_2": null, + "address_3": null, + "city": "Alamosa", + "state_province": "Colorado", + "postal_code": "81101-9116", + "country": "United States", + "longitude": -105.9855918, + "latitude": 37.40026048, + "phone": "7195800051", + "website_url": "http://www.cofarmbeer.com", + "state": "Colorado", + "street": "2070 County Road 12 S" + }, + { + "id": "ced7171c-5a4d-451b-9f7a-a8d9dc5a8ebc", + "name": "Colorado Mountain Brewery", + "brewery_type": "micro", + "address_1": "1110 Interquest Pkwy", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80921-4182", + "country": "United States", + "longitude": -104.8083989, + "latitude": 38.99103716, + "phone": "7192717951", + "website_url": "http://www.cmbrew.com", + "state": "Colorado", + "street": "1110 Interquest Pkwy" + }, + { + "id": "092060be-42d8-4b37-8d91-d364b37109ea", + "name": "Colorado Mountain Brewery At the Roundhouse", + "brewery_type": "brewpub", + "address_1": "600 S 21st St Unit 180", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80904-3714", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7194668240", + "website_url": "http://www.cmbrew.com", + "state": "Colorado", + "street": "600 S 21st St Unit 180" + }, + { + "id": "f589e0ef-f14c-4a54-9745-c8f2ce1d5a53", + "name": "Colorado Plus", + "brewery_type": "brewpub", + "address_1": "6995 W 38th Ave", + "address_2": null, + "address_3": null, + "city": "Wheat Ridge", + "state_province": "Colorado", + "postal_code": "80033-4965", + "country": "United States", + "longitude": -105.0916384, + "latitude": 39.7693524, + "phone": "3038775957", + "website_url": "http://coloradoplus.net", + "state": "Colorado", + "street": "6995 W 38th Ave" + }, + { + "id": "19199c69-60da-4683-a8ef-242e4d76bdf3", + "name": "Columbia Craft Brewing Company", + "brewery_type": "brewpub", + "address_1": "520 Greene St", + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "South Carolina", + "postal_code": "29201-3612", + "country": "United States", + "longitude": -81.04200957, + "latitude": 33.99236663, + "phone": "8037996027", + "website_url": "http://www.columbiacraft.com", + "state": "South Carolina", + "street": "520 Greene St" + }, + { + "id": "efa39c35-5c38-490a-bd58-186a75a6ab61", + "name": "Columbia Kettle Works", + "brewery_type": "brewpub", + "address_1": "40 N 3rd St", + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "Pennsylvania", + "postal_code": "17512-1104", + "country": "United States", + "longitude": -76.50358705, + "latitude": 40.03264918, + "phone": "7173422374", + "website_url": "http://www.columbiakettleworks.com", + "state": "Pennsylvania", + "street": "40 N 3rd St" + }, + { + "id": "da404ea3-c676-4894-b0db-eafe6df0e76e", + "name": "Columbia River Brewing Co", + "brewery_type": "brewpub", + "address_1": "1728 NE 40th Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97212-5306", + "country": "United States", + "longitude": -122.6217524, + "latitude": 45.5357321, + "phone": "5039436157", + "website_url": "http://www.columbiariverbrewpub.com", + "state": "Oregon", + "street": "1728 NE 40th Ave" + }, + { + "id": "d1fed527-6586-44e0-a8e4-cf5e10b4bb9c", + "name": "Columbia Valley Brewing", + "brewery_type": "micro", + "address_1": "538 Riverside Dr", + "address_2": null, + "address_3": null, + "city": "Wenatchee", + "state_province": "Washington", + "postal_code": "98801-6133", + "country": "United States", + "longitude": -120.3140272, + "latitude": 47.43353015, + "phone": "5098889993", + "website_url": "http://www.columbiavalleybrewing.com", + "state": "Washington", + "street": "538 Riverside Dr" + }, + { + "id": "bbcde627-f506-4691-952b-2cf82d65addd", + "name": "Columbus Brewing Co", + "brewery_type": "regional", + "address_1": "2555 Harrison Rd", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43204-3511", + "country": "United States", + "longitude": -83.0692897, + "latitude": 39.9675898, + "phone": "6142243626", + "website_url": "http://www.columbusbrewing.com", + "state": "Ohio", + "street": "2555 Harrison Rd" + }, + { + "id": "6cc3bad6-987e-4b2b-87cf-a54860eabb33", + "name": "Columbus House Brewery", + "brewery_type": "micro", + "address_1": "701 W North St", + "address_2": null, + "address_3": null, + "city": "Fayetteville", + "state_province": "Arkansas", + "postal_code": "72701-1865", + "country": "United States", + "longitude": -94.16886854, + "latitude": 36.0771652, + "phone": "4799353752", + "website_url": null, + "state": "Arkansas", + "street": "701 W North St" + }, + { + "id": "44892f34-eb78-4fc3-ace4-80a59ca7236b", + "name": "Comanche Creek Brewing Co", + "brewery_type": "micro", + "address_1": "225 Comanche Creek Road", + "address_2": null, + "address_3": null, + "city": "Eagle Nest", + "state_province": "New Mexico", + "postal_code": "87718", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5753772337", + "website_url": "http://www.comanchecreekbrewingco.com", + "state": "New Mexico", + "street": "225 Comanche Creek Road" + }, + { + "id": "e6bce769-14cc-4451-b15e-789526980662", + "name": "Combustion Brewery", + "brewery_type": "micro", + "address_1": "80 W Church St Ste 101", + "address_2": null, + "address_3": null, + "city": "Pickerington", + "state_province": "Ohio", + "postal_code": "43147-1484", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6143628450", + "website_url": "http://www.combustionbrewing.com", + "state": "Ohio", + "street": "80 W Church St Ste 101" + }, + { + "id": "9140eb7f-d86d-4fee-981e-4f7527d91a22", + "name": "Commerce Street Brewery Hotel", + "brewery_type": "brewpub", + "address_1": "23 Commerce St", + "address_2": null, + "address_3": null, + "city": "Mineral Point", + "state_province": "Wisconsin", + "postal_code": "53565-1368", + "country": "United States", + "longitude": -90.17712179, + "latitude": 42.85729962, + "phone": "6089873298", + "website_url": "http://www.commercehotel.com", + "state": "Wisconsin", + "street": "23 Commerce St" + }, + { + "id": "1b88bddd-2c59-40db-b4de-91da36b0db0f", + "name": "Common Block Brewing Company", + "brewery_type": "contract", + "address_1": "315 E 5th Street", + "address_2": null, + "address_3": null, + "city": "Medford", + "state_province": "Oregon", + "postal_code": "97501", + "country": "United States", + "longitude": -122.872489, + "latitude": 42.32896155, + "phone": "5413262277", + "website_url": "http://www.commonblockbrewing.com", + "state": "Oregon", + "street": "315 E 5th Street" + }, + { + "id": "2b4c2853-9c07-49c6-a9bc-4953a248a6e3", + "name": "Common Bond Brewers, LLC", + "brewery_type": "micro", + "address_1": "424 Bibb Street Suite 150", + "address_2": null, + "address_3": null, + "city": "Montgomery", + "state_province": "Alabama", + "postal_code": "36104", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3346762292", + "website_url": "http://www.commonbondbrewers.com", + "state": "Alabama", + "street": "424 Bibb Street Suite 150" + }, + { + "id": "24bbe3c8-8c8c-482a-90f7-a9543ea9cfee", + "name": "Common Ground Brewing", + "brewery_type": "micro", + "address_1": "35 Railway Terrace", + "address_2": null, + "address_3": null, + "city": "Milton", + "state_province": "QLD", + "postal_code": "4064", + "country": "Australia", + "longitude": 153.005565, + "latitude": -27.4691679, + "phone": "+61 7 3368 1608", + "website_url": "https://www.miltoncommon.com.au/", + "state": "QLD", + "street": "35 Railway Terrace" + }, + { + "id": "ea4549e2-a9e1-42db-a431-2e6299712c50", + "name": "Common John Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Manchester", + "state_province": "Tennessee", + "postal_code": "37355-6064", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9314090630", + "website_url": "http://www.commonjohnbc.com", + "state": "Tennessee", + "street": null + }, + { + "id": "2bfeed7b-26d7-49d5-96ce-67fd61260eac", + "name": "Common People Brewing Co.", + "brewery_type": "micro", + "address_1": "9 Dudgeons Lane", + "address_2": null, + "address_3": null, + "city": "Bangalow", + "state_province": "NSW", + "postal_code": "2479", + "country": "Australia", + "longitude": 153.5089795, + "latitude": -28.6980155, + "phone": "+61 491 971 199", + "website_url": "https://commonpeoplebrewing.com.au/", + "state": "NSW", + "street": "9 Dudgeons Lane" + }, + { + "id": "27deece5-5ab9-4506-9b46-33f0a44fc8b4", + "name": "Common Roots Brewing Company", + "brewery_type": "micro", + "address_1": "58 Saratoga Ave", + "address_2": null, + "address_3": null, + "city": "South Glens Falls", + "state_province": "New York", + "postal_code": "12803-4837", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5184098248", + "website_url": "http://www.commonrootsbrewing.com", + "state": "New York", + "street": "58 Saratoga Ave" + }, + { + "id": "986f0534-cf91-42e9-ac9c-7a481baf74e1", + "name": "Common Sense Brewing", + "brewery_type": "micro", + "address_1": "102 Farnsworth Ave", + "address_2": null, + "address_3": null, + "city": "Bordentown", + "state_province": "New Jersey", + "postal_code": "08505-1308", + "country": "United States", + "longitude": -74.71372844, + "latitude": 40.14847167, + "phone": "6095268651", + "website_url": "http://www.commonsensebrewing.com", + "state": "New Jersey", + "street": "102 Farnsworth Ave" + }, + { + "id": "be75d031-fb04-4805-9de2-962ea65fe830", + "name": "Common Space Brewery", + "brewery_type": "micro", + "address_1": "3411 W El Segundo Blvd", + "address_2": null, + "address_3": null, + "city": "Hawthorne", + "state_province": "California", + "postal_code": "90250-4816", + "country": "United States", + "longitude": -118.3328574, + "latitude": 33.91653119, + "phone": "3106662825", + "website_url": "http://www.commonspace.la", + "state": "California", + "street": "3411 W El Segundo Blvd" + }, + { + "id": "e99f22dd-9f82-4a46-9666-dbf81cec179f", + "name": "Commoners Brewing Company", + "brewery_type": "micro", + "address_1": "1048 Copperfield Blvd Ste 101", + "address_2": null, + "address_3": null, + "city": "Concord", + "state_province": "North Carolina", + "postal_code": "28025", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7048866002", + "website_url": "http://www.commonersbrewingcompany.com", + "state": "North Carolina", + "street": "1048 Copperfield Blvd Ste 101" + }, + { + "id": "ef9f8a53-3e7e-4d5b-acb1-82692306aa19", + "name": "Commonhouse Ales", + "brewery_type": "micro", + "address_1": "535 Short St", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43215-5614", + "country": "United States", + "longitude": -83.00367741, + "latitude": 39.95045334, + "phone": "6142530272", + "website_url": "http://www.commonhouseales.com", + "state": "Ohio", + "street": "535 Short St" + }, + { + "id": "8566eecd-9030-4cd7-9b06-5202a6b4e7c2", + "name": "Commonhouse Aleworks", + "brewery_type": "micro", + "address_1": "4831 Ohear Ave", + "address_2": null, + "address_3": null, + "city": "North Charleston", + "state_province": "South Carolina", + "postal_code": "29405-4925", + "country": "United States", + "longitude": -79.9755638, + "latitude": 32.88299711, + "phone": "8436081331", + "website_url": "http://www.commonhousealeworks.com", + "state": "South Carolina", + "street": "4831 Ohear Ave" + }, + { + "id": "99a4ae42-941c-455f-a6c7-f37276961d4e", + "name": "Commonwealth Brewing Co.", + "brewery_type": "micro", + "address_1": "2444 Pleasure House Rd", + "address_2": null, + "address_3": null, + "city": "Virginia Beach", + "state_province": "Virginia", + "postal_code": "23455-1348", + "country": "United States", + "longitude": -76.1318655, + "latitude": 36.9135253, + "phone": "7573059652", + "website_url": "http://www.commonwealthbrewco.com", + "state": "Virginia", + "street": "2444 Pleasure House Rd" + }, + { + "id": "c7cc73b0-4c36-44e8-9514-ce6413a20eff", + "name": "Communion Brewing Co.", + "brewery_type": "micro", + "address_1": "57 Wilmot Street", + "address_2": null, + "address_3": null, + "city": "Burnie", + "state_province": "TAS", + "postal_code": "7320", + "country": "Australia", + "longitude": 145.9034064, + "latitude": -41.0507952, + "phone": "+61 3 6431 2141", + "website_url": "http://www.communionbrewing.com.au/", + "state": "TAS", + "street": "57 Wilmot Street" + }, + { + "id": "ff07eef9-fd76-4909-9f8b-e3d690dab516", + "name": "Community Beer Co", + "brewery_type": "regional", + "address_1": "1530 Inspiration Dr # 200", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75207-3703", + "country": "United States", + "longitude": -96.81658792, + "latitude": 32.79177896, + "phone": null, + "website_url": null, + "state": "Texas", + "street": "1530 Inspiration Dr # 200" + }, + { + "id": "9d79e9ce-34c7-4232-b9b6-f218a0fdfde6", + "name": "Community Beer Works", + "brewery_type": "micro", + "address_1": "15 Lafayette Ave", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14213-1344", + "country": "United States", + "longitude": -78.8980697, + "latitude": 42.9198446, + "phone": "7167594677", + "website_url": "http://www.communitybeerworks.com", + "state": "New York", + "street": "15 Lafayette Ave" + }, + { + "id": "5eaaf2e2-d018-49d9-96fb-b9792b7f0576", + "name": "Compadre Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Aound Rock", + "state_province": "Texas", + "postal_code": "78660", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3615103472", + "website_url": "http://www.compadrebrewing.com", + "state": "Texas", + "street": null + }, + { + "id": "15a2144f-9a86-48fd-9fc4-5c450fd828fd", + "name": "Company Brewing Co", + "brewery_type": "brewpub", + "address_1": "735 E Center St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53212-2944", + "country": "United States", + "longitude": -87.90182086, + "latitude": 43.0672919, + "phone": "4149300909", + "website_url": "https://www.companybrewing.com", + "state": "Wisconsin", + "street": "735 E Center St" + }, + { + "id": "07e76f00-bcbc-4134-a322-679dbcc0b8ec", + "name": "Compass Rose", + "brewery_type": "micro", + "address_1": "3201 Northside Dr, Ste. 101", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27615-4126", + "country": "United States", + "longitude": -78.582171, + "latitude": 35.883411, + "phone": "9198755683", + "website_url": "http://www.compassrosebrewery.com", + "state": "North Carolina", + "street": "3201 Northside Dr, Ste. 101" + }, + { + "id": "e0b5cb85-eab8-400f-85b7-95a600e7740b", + "name": "Component Brewing Co", + "brewery_type": "micro", + "address_1": "2018 S 1st St Ste 207", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53207", + "country": "United States", + "longitude": -87.910782559756, + "latitude": 43.006897276507, + "phone": "4149791088", + "website_url": "http://www.componentbrewing.com", + "state": "Wisconsin", + "street": "2018 S 1st St Ste 207" + }, + { + "id": "828523e3-2c37-43f8-bcda-31932e088de0", + "name": "Comrade Brewing Company", + "brewery_type": "micro", + "address_1": "7667 E Iliff Ave Ste F", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80231-5361", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7207480700", + "website_url": "http://comradebrewing.com", + "state": "Colorado", + "street": "7667 E Iliff Ave Ste F" + }, + { + "id": "6c091b85-b347-4bdf-994a-6f1bdd0d9461", + "name": "Conclave Brewing", + "brewery_type": "micro", + "address_1": "15 Minneakoning Rd Ste 202", + "address_2": null, + "address_3": null, + "city": "Flemington", + "state_province": "New Jersey", + "postal_code": "08822-5750", + "country": "United States", + "longitude": -74.842079, + "latitude": 40.53132933, + "phone": "9083920893", + "website_url": "http://www.conclavebrewing.com", + "state": "New Jersey", + "street": "15 Minneakoning Rd Ste 202" + }, + { + "id": "fecd5791-19fe-43ae-b618-3ddf1e3d9761", + "name": "Concord Craft Brewery", + "brewery_type": "micro", + "address_1": "117 Storrs St", + "address_2": null, + "address_3": null, + "city": "Concord", + "state_province": "New Hampshire", + "postal_code": "03301-4839", + "country": "United States", + "longitude": -71.534205, + "latitude": 43.204108, + "phone": "6038567625", + "website_url": "http://www.concordcraftbrewing.com", + "state": "New Hampshire", + "street": "117 Storrs St" + }, + { + "id": "048b7e46-aa54-4397-8f42-93b9fd2cd93c", + "name": "Concrete Beach Brewery", + "brewery_type": "micro", + "address_1": "325 NW 24th St", + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "Florida", + "postal_code": "33127-4325", + "country": "United States", + "longitude": -80.20091709, + "latitude": 25.800254, + "phone": "3057962727", + "website_url": "http://www.concretebeachbrewery.com/", + "state": "Florida", + "street": "325 NW 24th St" + }, + { + "id": "260ec59d-2c3d-4fb1-957b-ec0a6d2cee5a", + "name": "Coney Island Beer", + "brewery_type": "micro", + "address_1": "1904 Surf Ave", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11224-2410", + "country": "United States", + "longitude": -73.98572367, + "latitude": 40.57502661, + "phone": "8184518452", + "website_url": "http://www.coneyislandbeer.com", + "state": "New York", + "street": "1904 Surf Ave" + }, + { + "id": "5447d888-e88c-4480-9258-a649dbd94cdd", + "name": "Confluence Brewing Co", + "brewery_type": "micro", + "address_1": "1235 Thomas Beck Rd Ste A", + "address_2": null, + "address_3": null, + "city": "Des Moines", + "state_province": "Iowa", + "postal_code": "50315-1055", + "country": "United States", + "longitude": -93.6324853, + "latitude": 41.5681381, + "phone": "5152859005", + "website_url": "http://www.confluencebrewing.com", + "state": "Iowa", + "street": "1235 Thomas Beck Rd Ste A" + }, + { + "id": "4ee8dcea-2193-4a19-bd89-15e6e5591ca4", + "name": "Conflux Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Missoula", + "state_province": "Montana", + "postal_code": "59802-4418", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Montana", + "street": null + }, + { + "id": "4f1c4d66-e46d-46bf-97e9-ed62f2355058", + "name": "ConfluxCity Brewing Company", + "brewery_type": "micro", + "address_1": "110 N Water St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Michigan", + "postal_code": "48875", + "country": "United States", + "longitude": -84.90321484, + "latitude": 42.87142429, + "phone": "5175269091", + "website_url": "http://www.confluxcitybrew.com", + "state": "Michigan", + "street": "110 N Water St" + }, + { + "id": "e75b5599-7133-4cb8-ab49-0048d0f4443a", + "name": "Congregation Brewery & Cocina - Azusa", + "brewery_type": "brewpub", + "address_1": "619 N Azusa Ave", + "address_2": null, + "address_3": null, + "city": "Azusa", + "state_province": "California", + "postal_code": "91702-2910", + "country": "United States", + "longitude": -117.90714661424, + "latitude": 34.13253856095, + "phone": "6263342337", + "website_url": "https://congregationbreweryandcocina.com/", + "state": "California", + "street": "619 N Azusa Ave" + }, + { + "id": "9e73dde9-85f0-4bef-bcd9-9ddbd2eee3bf", + "name": "Congregation Brewery & Cocina - Pasadena", + "brewery_type": "brewpub", + "address_1": "300 S Raymond Ave", + "address_2": null, + "address_3": null, + "city": "Pasadena", + "state_province": "California", + "postal_code": "91105", + "country": "United States", + "longitude": -118.14557859162, + "latitude": 34.141383597502, + "phone": "6264032337", + "website_url": "https://congregationbreweryandcocina.com/", + "state": "California", + "street": "300 S Raymond Ave" + }, + { + "id": "34f16f3a-223b-4c32-9729-634f90e7275f", + "name": "Connecticut Valley Brewing Company", + "brewery_type": "micro", + "address_1": "765 Sullivan Ave", + "address_2": null, + "address_3": null, + "city": "South Windsor", + "state_province": "Connecticut", + "postal_code": "06074-1945", + "country": "United States", + "longitude": -72.57147904, + "latitude": 41.84872829, + "phone": "8606442707", + "website_url": "http://www.ctvalleybrewing.com", + "state": "Connecticut", + "street": "765 Sullivan Ave" + }, + { + "id": "dc8fb319-acd5-4342-a3f1-bfaeddd2107e", + "name": "Conner Fields Brewing", + "brewery_type": "brewpub", + "address_1": "121 SW H St", + "address_2": null, + "address_3": null, + "city": "Grants Pass", + "state_province": "Oregon", + "postal_code": "97526-2505", + "country": "United States", + "longitude": -123.3284921, + "latitude": 42.43842401, + "phone": "5415082337", + "website_url": "http://www.connerfields.com", + "state": "Oregon", + "street": "121 SW H St" + }, + { + "id": "469a31a8-89e0-49be-9bde-62b45673e040", + "name": "Conny Creek Brewing Co", + "brewery_type": "micro", + "address_1": "4323 Shearsburg Rd", + "address_2": null, + "address_3": null, + "city": "New Kensington", + "state_province": "Pennsylvania", + "postal_code": "15068-6845", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.facebook.com/ConnyCreekBrewing/", + "state": "Pennsylvania", + "street": "4323 Shearsburg Rd" + }, + { + "id": "a05beba6-5429-43ed-8bd2-df1075116219", + "name": "Conquest Brewing Co.", + "brewery_type": "micro", + "address_1": "947 S Stadium Rd", + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "South Carolina", + "postal_code": "29201-4724", + "country": "United States", + "longitude": -81.02382212, + "latitude": 33.97100882, + "phone": "8037123063", + "website_url": "http://www.conquestbrewing.com", + "state": "South Carolina", + "street": "947 S Stadium Rd" + }, + { + "id": "ff77cd4b-5573-4fce-a1af-bd454e814fd4", + "name": "Conshohocken Brewing - Bridgeport", + "brewery_type": "brewpub", + "address_1": "3 DeKalb St", + "address_2": null, + "address_3": null, + "city": "Bridgeport", + "state_province": "Pennsylvania", + "postal_code": "19405-1074", + "country": "United States", + "longitude": -75.3467908, + "latitude": 40.1057904, + "phone": null, + "website_url": "http://www.conshohockenbrewing.com", + "state": "Pennsylvania", + "street": "3 DeKalb St" + }, + { + "id": "4aa64271-2075-4f5c-8c6b-4e9982852d1a", + "name": "Conshohocken Brewing Co.", + "brewery_type": "brewpub", + "address_1": "739 E Elm St Ste B", + "address_2": null, + "address_3": null, + "city": "Conshohocken", + "state_province": "Pennsylvania", + "postal_code": "19428-2301", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6108978962", + "website_url": "http://www.conshohockenbrewing.com", + "state": "Pennsylvania", + "street": "739 E Elm St Ste B" + }, + { + "id": "9c2b12cc-2909-47a2-8d5e-39fc21ba51d4", + "name": "Constantine Brewing Co", + "brewery_type": "brewpub", + "address_1": "145 S Washington St", + "address_2": null, + "address_3": null, + "city": "Constantine", + "state_province": "Michigan", + "postal_code": "49042-1047", + "country": "United States", + "longitude": -85.66859588, + "latitude": 41.84164216, + "phone": "2694351230", + "website_url": "http://www.constantinebrewingco.com", + "state": "Michigan", + "street": "145 S Washington St" + }, + { + "id": "9e9d2ed9-ee58-44ce-8694-374196db165e", + "name": "Constellation Brands", + "brewery_type": "closed", + "address_1": "9045 Caroll Way", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92121", + "country": "United States", + "longitude": -117.1578979, + "latitude": 32.88808261, + "phone": null, + "website_url": null, + "state": "California", + "street": "9045 Caroll Way" + }, + { + "id": "342cfb9f-a0bf-4a4b-a50c-4d66174ed767", + "name": "Contrary Brewing Co", + "brewery_type": "micro", + "address_1": "411 W Mississippi Dr", + "address_2": null, + "address_3": null, + "city": "Muscatine", + "state_province": "Iowa", + "postal_code": "52761-3150", + "country": "United States", + "longitude": -91.05121455, + "latitude": 41.41700522, + "phone": "5632997894", + "website_url": "http://www.contrarybrewing.com", + "state": "Iowa", + "street": "411 W Mississippi Dr" + }, + { + "id": "9df45ed5-3546-43e7-a1dd-3311c0c1176b", + "name": "Converge Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Paso Robles", + "state_province": "California", + "postal_code": "93446-8360", + "country": "United States", + "longitude": -120.6912456, + "latitude": 35.6267654, + "phone": "3076908538", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "ed8d31a5-35b4-48fb-b2df-971d9951e915", + "name": "Conversations Brewing", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Battle Ground", + "state_province": "Washington", + "postal_code": "98604", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Washington", + "street": null + }, + { + "id": "bd4d649c-04c2-480a-b08a-1f7b77599a6e", + "name": "Conversion Brewing", + "brewery_type": "brewpub", + "address_1": "833 S Main St", + "address_2": null, + "address_3": null, + "city": "Lebanon", + "state_province": "Oregon", + "postal_code": "97355-3211", + "country": "United States", + "longitude": -122.9070824, + "latitude": 44.5247777, + "phone": "5412592337", + "website_url": "http://www.conversionbrewingcompany.com", + "state": "Oregon", + "street": "833 S Main St" + }, + { + "id": "7526c8dc-2807-49a7-a518-96fc77c78f8a", + "name": "Conyngham Brewing Company", + "brewery_type": "micro", + "address_1": "309 Main St", + "address_2": null, + "address_3": null, + "city": "Conyngham", + "state_province": "Pennsylvania", + "postal_code": "18219-0910", + "country": "United States", + "longitude": -76.0585835, + "latitude": 40.9922807, + "phone": "5707105752", + "website_url": "http://www.conynghambrewing.com", + "state": "Pennsylvania", + "street": "309 Main St" + }, + { + "id": "2e6814a0-f256-4825-8f63-edad88ba3736", + "name": "Cool Beerwerks", + "brewery_type": "brewpub", + "address_1": "5020 Ellinghouse Dr", + "address_2": null, + "address_3": null, + "city": "Cool", + "state_province": "California", + "postal_code": "95614-9569", + "country": "United States", + "longitude": -121.0145495, + "latitude": 38.88649696, + "phone": "5308855866", + "website_url": "http://www.cbwbeer.com", + "state": "California", + "street": "5020 Ellinghouse Dr" + }, + { + "id": "468d04c3-f53d-44da-b79e-534193126c0b", + "name": "Cool City Brewing Company", + "brewery_type": "micro", + "address_1": "1718 W Park St", + "address_2": null, + "address_3": null, + "city": "Two Rivers", + "state_province": "Wisconsin", + "postal_code": "54241-3060", + "country": "United States", + "longitude": -87.569031644378, + "latitude": 44.149609038574, + "phone": "9206571325", + "website_url": "http://www.coolcitybrewing.com", + "state": "Wisconsin", + "street": "1718 W Park St" + }, + { + "id": "6e971ebb-6b06-41a0-befc-d67e9d0a16d7", + "name": "Cool Springs Brewery", + "brewery_type": "brewpub", + "address_1": "600A Frazier Dr Ste 135", + "address_2": null, + "address_3": null, + "city": "Franklin", + "state_province": "Tennessee", + "postal_code": "37067-4677", + "country": "United States", + "longitude": -86.820912, + "latitude": 35.944623, + "phone": "6155039626", + "website_url": "http://www.coolspringsbrewery.com", + "state": "Tennessee", + "street": "600A Frazier Dr Ste 135" + }, + { + "id": "c8a69d07-794b-45fc-8269-14cafaadde50", + "name": "Cooling Pond Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mineral", + "state_province": "Virginia", + "postal_code": "23117", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5409055430", + "website_url": null, + "state": "Virginia", + "street": null + }, + { + "id": "84b769ca-926a-4fc5-a1dc-f7cdce4eea06", + "name": "COOP Ale Works", + "brewery_type": "micro", + "address_1": "4745 Council Heights Rd", + "address_2": null, + "address_3": null, + "city": "Oklahoma City", + "state_province": "Oklahoma", + "postal_code": "73179-4600", + "country": "United States", + "longitude": -97.65776203, + "latitude": 35.4185472, + "phone": "4058422667", + "website_url": "http://www.coopaleworks.com", + "state": "Oklahoma", + "street": "4745 Council Heights Rd" + }, + { + "id": "b18961e9-ba20-4b30-86f7-0c2366b042d7", + "name": "Cooper Family", + "brewery_type": "large", + "address_1": "230 Regency Road", + "address_2": null, + "address_3": null, + "city": "Regency Park", + "state_province": "SA", + "postal_code": "5010", + "country": "Australia", + "longitude": 138.5737899, + "latitude": -34.8748433, + "phone": "+61 8 8440 1800", + "website_url": "https://coopers.com.au/", + "state": "SA", + "street": "230 Regency Road" + }, + { + "id": "3ef69ed1-3521-4034-902c-878887461a33", + "name": "Cooper House Project", + "brewery_type": "nano", + "address_1": "906 S. Cooper Street", + "address_2": null, + "address_3": null, + "city": "Memphis", + "state_province": "Tennessee", + "postal_code": "38104", + "country": "United States", + "longitude": -89.990736, + "latitude": 35.12097, + "phone": null, + "website_url": "https://www.cooperhouseproject.com/", + "state": "Tennessee", + "street": "906 S. Cooper Street" + }, + { + "id": "bd647651-c56e-42ad-a5f8-51f1767bb362", + "name": "Cooper Landing Brewing Company", + "brewery_type": "micro", + "address_1": "21879 Sterling Hwy", + "address_2": null, + "address_3": null, + "city": "Cooper Landing", + "state_province": "Alaska", + "postal_code": "99572", + "country": "United States", + "longitude": -149.8478495, + "latitude": 60.4952185, + "phone": "9075952522", + "website_url": "http://www.cooperlandingbrewing.com", + "state": "Alaska", + "street": "21879 Sterling Hwy" + }, + { + "id": "df6e1686-5503-432e-8604-bc3546bc6374", + "name": "Cooper Mountain Ale Works", + "brewery_type": "micro", + "address_1": "15855 SW Kestrel Ct", + "address_2": null, + "address_3": null, + "city": "Beaverton", + "state_province": "Oregon", + "postal_code": "97007-9200", + "country": "United States", + "longitude": -122.8400333, + "latitude": 45.4314259, + "phone": "5035807175", + "website_url": "http://www.coopermountainaleworks.com", + "state": "Oregon", + "street": "15855 SW Kestrel Ct" + }, + { + "id": "beb63dd2-5dc8-4774-a77a-5d6819782627", + "name": "Cooper River Brewing Company", + "brewery_type": "micro", + "address_1": "2201-B Mechanic St", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "South Carolina", + "postal_code": "29405", + "country": "United States", + "longitude": -79.954817, + "latitude": 32.817102, + "phone": "8434057979", + "website_url": "http://www.cooperriverbrewing.com", + "state": "South Carolina", + "street": "2201-B Mechanic St" + }, + { + "id": "62418a35-3a11-48f5-8b17-69f7cf65de0e", + "name": "Cooperage Brewing Co.", + "brewery_type": "micro", + "address_1": "981 Airway Ct Ste G", + "address_2": null, + "address_3": null, + "city": "Santa Rosa", + "state_province": "California", + "postal_code": "95403-2049", + "country": "United States", + "longitude": -122.7359139, + "latitude": 38.47534267, + "phone": "7072939787", + "website_url": "http://www.cooperagebrewing.com", + "state": "California", + "street": "981 Airway Ct Ste G" + }, + { + "id": "931e2b28-419d-4a36-9e8e-eca1b849f1a9", + "name": "Coopers Cave Ale Co", + "brewery_type": "brewpub", + "address_1": "2 Sagamore St", + "address_2": null, + "address_3": null, + "city": "Glens Falls", + "state_province": "New York", + "postal_code": "12801-3179", + "country": "United States", + "longitude": -73.6399437, + "latitude": 43.3177399, + "phone": "5187920007", + "website_url": "http://www.cooperscaveale.com", + "state": "New York", + "street": "2 Sagamore St" + }, + { + "id": "781937cb-face-47db-a452-fc3997cca025", + "name": "CooperSmiths Pub and Brewing", + "brewery_type": "brewpub", + "address_1": "5 Old Town Sq", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80524-2446", + "country": "United States", + "longitude": -105.0755188, + "latitude": 40.5873784, + "phone": "9704980483", + "website_url": "http://www.coopersmithspub.com", + "state": "Colorado", + "street": "5 Old Town Sq" + }, + { + "id": "df6b62fb-899b-4181-a56f-f4c067e9723b", + "name": "Cooperstown Brewing Co", + "brewery_type": "proprietor", + "address_1": "41 Browne St.", + "address_2": null, + "address_3": null, + "city": "Oneonta", + "state_province": "New York", + "postal_code": "13820", + "country": "United States", + "longitude": -75.10942405, + "latitude": 42.45118586, + "phone": null, + "website_url": null, + "state": "New York", + "street": "41 Browne St." + }, + { + "id": "bad8c409-2e39-4ebc-847c-c74865fa30d6", + "name": "Copp Brewery & Winery", + "brewery_type": "micro", + "address_1": "11 NE 4th Ave", + "address_2": null, + "address_3": null, + "city": "Crystal River", + "state_province": "Florida", + "postal_code": "34429-4246", + "country": "United States", + "longitude": -82.58738072, + "latitude": 28.89472626, + "phone": "3525649463", + "website_url": "http://www.coppbrewery.com", + "state": "Florida", + "street": "11 NE 4th Ave" + }, + { + "id": "85ad59c1-6545-4ab2-84a4-219d39e47cea", + "name": "Copper Brothel Brewery", + "brewery_type": "micro", + "address_1": "3112 Hwy 83", + "address_2": null, + "address_3": null, + "city": "Sonoita", + "state_province": "Arizona", + "postal_code": "85637", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5204056721", + "website_url": "http://www.copperbrothelbrewery.com", + "state": "Arizona", + "street": "3112 Hwy 83" + }, + { + "id": "8a48a9ba-b7ac-4afc-be40-834fa496cb74", + "name": "Copper City Brewing Company", + "brewery_type": "micro", + "address_1": "1111 Oneida St", + "address_2": null, + "address_3": null, + "city": "Rome", + "state_province": "New York", + "postal_code": "13440-", + "country": "United States", + "longitude": -75.43229951, + "latitude": 43.20521338, + "phone": "3152818987", + "website_url": "http://www.coppercitybrewing.com", + "state": "New York", + "street": "1111 Oneida St" + }, + { + "id": "84379397-fb21-4348-9e5b-d536d31f2ad0", + "name": "Copper Club Brewing Co", + "brewery_type": "micro", + "address_1": "233 E Aspen Ave", + "address_2": null, + "address_3": null, + "city": "Fruita", + "state_province": "Colorado", + "postal_code": "81521-2205", + "country": "United States", + "longitude": -108.7314921, + "latitude": 39.1591638, + "phone": "9708588318", + "website_url": "http://www.copperclubbrew.com", + "state": "Colorado", + "street": "233 E Aspen Ave" + }, + { + "id": "78c42e60-7bd8-40cf-94c6-9079a36ee84b", + "name": "Copper Kettle Brewing Co", + "brewery_type": "micro", + "address_1": "557 Greenfield Ave", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15207-1093", + "country": "United States", + "longitude": -79.94040826, + "latitude": 40.42611867, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": "557 Greenfield Ave" + }, + { + "id": "da0cdbd7-87e0-4722-ab5e-018582374a43", + "name": "Copper Kettle Brewing Company", + "brewery_type": "micro", + "address_1": "1338 S Valentia St Ste 100", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80247-2167", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7204432522", + "website_url": "http://www.copperkettledenver.com", + "state": "Colorado", + "street": "1338 S Valentia St Ste 100" + }, + { + "id": "49cb4f39-b586-4949-911c-a05435c9850f", + "name": "Copper Mine Brewing Co", + "brewery_type": "micro", + "address_1": "3455 S Palo Verde Rd STE 135", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85713", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5203336140", + "website_url": "http://www.copperminebrewing.com", + "state": "Arizona", + "street": "3455 S Palo Verde Rd STE 135" + }, + { + "id": "dc9adb8d-5b69-44fb-9a80-46a9b3fd4688", + "name": "Copper Pig Brewery", + "brewery_type": "brewpub", + "address_1": "1 Middle St", + "address_2": null, + "address_3": null, + "city": "Lancaster", + "state_province": "New Hampshire", + "postal_code": "03584", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6036312273", + "website_url": "https://www.copperpigbrewery.com/", + "state": "New Hampshire", + "street": "1 Middle St" + }, + { + "id": "6383b0a3-75af-4db1-9c58-744f9b019426", + "name": "Copper State Brewing Co", + "brewery_type": "brewpub", + "address_1": "313 Dousman St", + "address_2": null, + "address_3": null, + "city": "Green Bay", + "state_province": "Wisconsin", + "postal_code": "54303-2713", + "country": "United States", + "longitude": -88.01916054, + "latitude": 44.51896164, + "phone": "9204898575", + "website_url": "http://www.copperstate.beer", + "state": "Wisconsin", + "street": "313 Dousman St" + }, + { + "id": "baecf304-6a51-4e6e-a488-4b5ee0e199af", + "name": "Copper Trail Brewing Co.", + "brewery_type": "micro", + "address_1": "410 30th Ave E Ste 103", + "address_2": null, + "address_3": null, + "city": "Alexandria", + "state_province": "Minnesota", + "postal_code": "56308-4770", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3202196688", + "website_url": "http://www.coppertrailbrewing.com", + "state": "Minnesota", + "street": "410 30th Ave E Ste 103" + }, + { + "id": "de768791-bb67-44f8-a4f7-db4f26d9f580", + "name": "Copper Turret Restaurant and Brewhouse", + "brewery_type": "brewpub", + "address_1": "17 W Main St", + "address_2": null, + "address_3": null, + "city": "Morrisville", + "state_province": "New York", + "postal_code": "13408-", + "country": "United States", + "longitude": -75.6487902, + "latitude": 42.89903413, + "phone": "3158257910", + "website_url": "http://www.copperturret.com", + "state": "New York", + "street": "17 W Main St" + }, + { + "id": "1bf9a380-d39f-486b-81b0-96b6c90a413d", + "name": "Copperhead Brewery", + "brewery_type": "micro", + "address_1": "822 N Frazier St", + "address_2": null, + "address_3": null, + "city": "Conroe", + "state_province": "Texas", + "postal_code": "77301-2305", + "country": "United States", + "longitude": -95.46266, + "latitude": 30.316443, + "phone": "2819196134", + "website_url": "http://www.copperheadbrewery.com", + "state": "Texas", + "street": "822 N Frazier St" + }, + { + "id": "2970bd5a-39c6-4555-a4e1-a173624b40ad", + "name": "Copperlake Breweries", + "brewery_type": "brewpub", + "address_1": "1006 Bultfontein Street", + "address_2": null, + "address_3": null, + "city": "Pretoria", + "state_province": "Gauteng", + "postal_code": "0182", + "country": "South Africa", + "longitude": 28.1635, + "latitude": -25.9081, + "phone": "+27 82 929 1222", + "website_url": "https://copperlake.co.za/", + "state": "Gauteng", + "street": "1006 Bultfontein Street" + }, + { + "id": "7c9e6e7e-f4cd-4f59-b928-f9c1ffd3833a", + "name": "Copperlode Brewing Co.", + "brewery_type": "micro", + "address_1": "1b Hargreaves Street", + "address_2": null, + "address_3": null, + "city": "Edmonton", + "state_province": "QLD", + "postal_code": "4869", + "country": "Australia", + "longitude": 145.744946, + "latitude": -17.0038068, + "phone": null, + "website_url": "https://copperlodebrewing.com.au/", + "state": "QLD", + "street": "1b Hargreaves Street" + }, + { + "id": "322308d2-d7e1-4faf-84e6-77b5948aaffc", + "name": "Copperpoint Brewing Company", + "brewery_type": "micro", + "address_1": "151 Commerce Rd", + "address_2": null, + "address_3": null, + "city": "Boynton Beach", + "state_province": "Florida", + "postal_code": "33426-9365", + "country": "United States", + "longitude": -80.073376, + "latitude": 26.55907743, + "phone": null, + "website_url": null, + "state": "Florida", + "street": "151 Commerce Rd" + }, + { + "id": "070be339-1a2e-4ec9-a995-23a55599dc0f", + "name": "Coppertail Brewing", + "brewery_type": "micro", + "address_1": "2601 E 2nd Ave", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33605-5503", + "country": "United States", + "longitude": -82.430498, + "latitude": 27.956553, + "phone": "8132471500", + "website_url": "http://www.coppertailbrewing.com", + "state": "Florida", + "street": "2601 E 2nd Ave" + }, + { + "id": "2810105c-ee25-4e8b-9fc7-4c1042f3434b", + "name": "Coppertop Alehouse and Still Works", + "brewery_type": "brewpub", + "address_1": "220 S Montezuma St", + "address_2": null, + "address_3": null, + "city": "Prescott", + "state_province": "Arizona", + "postal_code": "86303-4720", + "country": "United States", + "longitude": -112.470304, + "latitude": 34.53851944, + "phone": "9283517712", + "website_url": "http://www.coppertopalehouse.com", + "state": "Arizona", + "street": "220 S Montezuma St" + }, + { + "id": "e5baf906-8eae-49ee-9442-8920c002d9b8", + "name": "Coral Sea Brewing", + "brewery_type": "micro", + "address_1": "Bank Lane", + "address_2": null, + "address_3": null, + "city": "Cairns City", + "state_province": "QLD", + "postal_code": "4870", + "country": "Australia", + "longitude": 145.7781083, + "latitude": -16.9238084, + "phone": "+61 466 597 629", + "website_url": "http://www.coralseabrewing.com.au/", + "state": "QLD", + "street": "Bank Lane" + }, + { + "id": "36d6a22f-9824-44f8-b095-9435e0314276", + "name": "Corbett Brewing Company", + "brewery_type": "micro", + "address_1": "309 E 7th St", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85705", + "country": "United States", + "longitude": -110.96679, + "latitude": 32.22634085, + "phone": null, + "website_url": null, + "state": "Arizona", + "street": "309 E 7th St" + }, + { + "id": "48997c3a-bfc2-4a18-9fb0-37882a9c5fdb", + "name": "Corcoran Brewing", + "brewery_type": "micro", + "address_1": "205 Hirst Rd Ste 105", + "address_2": null, + "address_3": null, + "city": "Purcellville", + "state_province": "Virginia", + "postal_code": "20132-6199", + "country": "United States", + "longitude": -77.71365587, + "latitude": 39.14390693, + "phone": "5408829073", + "website_url": "http://www.corcoranbrewing.com", + "state": "Virginia", + "street": "205 Hirst Rd Ste 105" + }, + { + "id": "c614c0cf-6aa1-4e5a-b295-cbb5c951594c", + "name": "Core Brewing - Hot Springs", + "brewery_type": "brewpub", + "address_1": "833 Central Ave", + "address_2": null, + "address_3": null, + "city": "Hot Springs National Park", + "state_province": "Arkansas", + "postal_code": "71901", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4793068898", + "website_url": null, + "state": "Arkansas", + "street": "833 Central Ave" + }, + { + "id": "c4faa1d2-a2b6-4f9d-b725-be2423d56d6c", + "name": "Core Brewing - SoMa", + "brewery_type": "brewpub", + "address_1": "1214 S. Main St", + "address_2": null, + "address_3": null, + "city": "Little Rock", + "state_province": "Arkansas", + "postal_code": "72202", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4793068898", + "website_url": null, + "state": "Arkansas", + "street": "1214 S. Main St" + }, + { + "id": "db2a9bf5-2c02-4f7f-af91-76a96aee2e31", + "name": "Core Brewing & Distilling Co", + "brewery_type": "micro", + "address_1": "2470 N Lowell Rd Ste A3", + "address_2": null, + "address_3": null, + "city": "Springdale", + "state_province": "Arkansas", + "postal_code": "72764-1819", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4793068898", + "website_url": "http://www.corebeer.com", + "state": "Arkansas", + "street": "2470 N Lowell Rd Ste A3" + }, + { + "id": "af950b93-c6c2-42b4-a341-f24b75bbbfb4", + "name": "Corn Coast Brewing Company", + "brewery_type": "micro", + "address_1": "1433 Dahlberg Dr", + "address_2": null, + "address_3": null, + "city": "Lincoln", + "state_province": "Nebraska", + "postal_code": "68512-9267", + "country": "United States", + "longitude": -96.708351097198, + "latitude": 40.776599003296, + "phone": "4024132288", + "website_url": "https://www.corncoastbrewing.com", + "state": "Nebraska", + "street": "1433 Dahlberg Dr" + }, + { + "id": "1a7ee0ba-4199-42c1-845a-c41800af60d8", + "name": "Corner Pub Brewery", + "brewery_type": "brewpub", + "address_1": "100 E Main St", + "address_2": null, + "address_3": null, + "city": "Reedsburg", + "state_province": "Wisconsin", + "postal_code": "53959-1967", + "country": "United States", + "longitude": -90.009938544398, + "latitude": 43.532514205315, + "phone": "6085248989", + "website_url": null, + "state": "Wisconsin", + "street": "100 E Main St" + }, + { + "id": "d2f08212-1e67-4c5e-bd67-371a41000fa3", + "name": "Cornerstone Brewing Co", + "brewery_type": "brewpub", + "address_1": "58 Front St", + "address_2": null, + "address_3": null, + "city": "Berea", + "state_province": "Ohio", + "postal_code": "44017-1911", + "country": "United States", + "longitude": -81.85304867, + "latitude": 41.36685385, + "phone": "4402399820", + "website_url": null, + "state": "Ohio", + "street": "58 Front St" + }, + { + "id": "ec621443-0cb1-44c5-9b60-0ee49bc0b672", + "name": "Cornerstone Brewing Co", + "brewery_type": "brewpub", + "address_1": "70 W Main St", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Ohio", + "postal_code": "44057-3126", + "country": "United States", + "longitude": -81.04814066, + "latitude": 41.77136994, + "phone": "4402399820", + "website_url": null, + "state": "Ohio", + "street": "70 W Main St" + }, + { + "id": "95a442ca-6893-4e6a-abc2-1c51f125fefa", + "name": "Coronado Brewing Co", + "brewery_type": "regional", + "address_1": "170 Orange Ave", + "address_2": null, + "address_3": null, + "city": "Coronado", + "state_province": "California", + "postal_code": "92118-1409", + "country": "United States", + "longitude": -117.1791416, + "latitude": 32.6873641, + "phone": "6194374452", + "website_url": "http://www.coronadobrewingcompany.com", + "state": "California", + "street": "170 Orange Ave" + }, + { + "id": "8e3d6cd2-c95c-432e-963d-2f0c4beb5dfd", + "name": "Coronado Brewing Co - Production Facility", + "brewery_type": "regional", + "address_1": "170 Orange Ave", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92118-1409", + "country": "United States", + "longitude": -117.094383, + "latitude": 32.753124, + "phone": "6192752215", + "website_url": null, + "state": "California", + "street": "170 Orange Ave" + }, + { + "id": "f851b4a2-b3f0-49c3-9691-ab4622da8a06", + "name": "Corrales Bistro Brewery", + "brewery_type": "brewpub", + "address_1": "4908 Corrales Rd", + "address_2": null, + "address_3": null, + "city": "Corrales", + "state_province": "New Mexico", + "postal_code": "87048-8613", + "country": "United States", + "longitude": -106.6127225, + "latitude": 35.2298508, + "phone": "5058971036", + "website_url": "http://www.cbbistro.com", + "state": "New Mexico", + "street": "4908 Corrales Rd" + }, + { + "id": "7dbb664f-ef54-4385-b8ea-c9d3a05c2672", + "name": "Corralitos Brewing Co", + "brewery_type": "micro", + "address_1": "2536 Freedom Blvd", + "address_2": null, + "address_3": null, + "city": "Watsonville", + "state_province": "California", + "postal_code": "95076-1046", + "country": "United States", + "longitude": -121.7623105, + "latitude": 36.9239241, + "phone": "8317282311", + "website_url": "http://www.corralitosbrewingco.com", + "state": "California", + "street": "2536 Freedom Blvd" + }, + { + "id": "99bf7864-8bb8-44cb-a933-49a45b5e47af", + "name": "Corridor Brewery & Provisions", + "brewery_type": "brewpub", + "address_1": "3446 N Southport Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60657-1420", + "country": "United States", + "longitude": -87.6643524, + "latitude": 41.9447594, + "phone": "7732704272", + "website_url": null, + "state": "Illinois", + "street": "3446 N Southport Ave" + }, + { + "id": "e5a5016b-e1ce-41c3-aad2-5fd4f1f390e7", + "name": "Corsair Artisan LLC", + "brewery_type": "micro", + "address_1": "1200 Clinton St Ste 110", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37203-2894", + "country": "United States", + "longitude": -86.794546, + "latitude": 36.165123, + "phone": "6152000320", + "website_url": "http://www.corsairartisan.com", + "state": "Tennessee", + "street": "1200 Clinton St Ste 110" + }, + { + "id": "5fbf4428-9456-456a-825d-1ce55e02d3a3", + "name": "Cortland Beer Company", + "brewery_type": "micro", + "address_1": "16 Court St", + "address_2": null, + "address_3": null, + "city": "Cortland", + "state_province": "New York", + "postal_code": "13045-2604", + "country": "United States", + "longitude": -76.17989771, + "latitude": 42.5994031, + "phone": "6076624389", + "website_url": "http://www.cortlandbeer.com", + "state": "New York", + "street": "16 Court St" + }, + { + "id": "6af2f2c7-5ed1-4f30-86b9-9a8533d01527", + "name": "Cosmic Brewery", + "brewery_type": "micro", + "address_1": "20316 Gramercy Pl", + "address_2": null, + "address_3": null, + "city": "Torrance", + "state_province": "California", + "postal_code": "90501-1511", + "country": "United States", + "longitude": -118.3131167, + "latitude": 33.84500094, + "phone": "4242592337", + "website_url": "http://www.cosmicbrewery.com", + "state": "California", + "street": "20316 Gramercy Pl" + }, + { + "id": "6b743f23-0d8a-4cb5-9ea1-2fdaad3dde93", + "name": "Cosmic Eye Brewing", + "brewery_type": "micro", + "address_1": "6800 P St #300", + "address_2": null, + "address_3": null, + "city": "Lincoln", + "state_province": "Nebraska", + "postal_code": "68505-2463", + "country": "United States", + "longitude": -96.6271153, + "latitude": 40.8154683, + "phone": "5315002739", + "website_url": "http://www.cosmiceye.beer", + "state": "Nebraska", + "street": "6800 P St #300" + }, + { + "id": "d452871c-f0c1-44a2-b67b-fc50fd3d48d2", + "name": "Cosmos Brewing", + "brewery_type": "micro", + "address_1": "9480 140th St N", + "address_2": null, + "address_3": null, + "city": "Hugo", + "state_province": "Minnesota", + "postal_code": "55038-9411", + "country": "United States", + "longitude": -92.91372949, + "latitude": 45.15266627, + "phone": "6512699199", + "website_url": "http://www.cosmosbrewing.com", + "state": "Minnesota", + "street": "9480 140th St N" + }, + { + "id": "55191259-586a-4fb8-9050-33b7e0540a74", + "name": "Costa Ventosa Winery & Vineyard", + "brewery_type": "brewpub", + "address_1": "9031 Whaleyville Rd", + "address_2": null, + "address_3": null, + "city": "Whaleyville", + "state_province": "Maryland", + "postal_code": "21872-2116", + "country": "United States", + "longitude": -75.26004107, + "latitude": 38.42358687, + "phone": "4433339867", + "website_url": "http://www.costaventosa.com", + "state": "Maryland", + "street": "9031 Whaleyville Rd" + }, + { + "id": "66970f3f-1984-473a-9a3c-2dc092f54c7a", + "name": "CoStar Brewing Inc.", + "brewery_type": "micro", + "address_1": "919 N Saint Clair St", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15206-2133", + "country": "United States", + "longitude": -79.9232026, + "latitude": 40.4726062, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": "919 N Saint Clair St" + }, + { + "id": "b6e76a2f-fd9e-442e-afe8-09395bd1f4c4", + "name": "Costellos Brewing Company", + "brewery_type": "micro", + "address_1": "58D Hebron Industrial Estate", + "address_2": "Hebron Road", + "address_3": null, + "city": "Kilkenny", + "state_province": "Kilkenny", + "postal_code": "R95 AFN8", + "country": "Ireland", + "longitude": -7.2312229, + "latitude": 52.6542803, + "phone": "353868102320", + "website_url": "http://www.costellosbrewco.ie/", + "state": "Kilkenny", + "street": "58D Hebron Industrial Estate" + }, + { + "id": "c1a44969-f495-4182-9ae1-0736234cbdb7", + "name": "Cotee River Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "New Port Richey", + "state_province": "Florida", + "postal_code": "34652", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.coteeriverbrewing.com", + "state": "Florida", + "street": null + }, + { + "id": "882de869-8767-4dcc-9c5e-56ef4e3390a1", + "name": "Cotton Ball Brewing Company", + "brewery_type": "brewpub", + "address_1": "18 Old Youghal Road", + "address_2": null, + "address_3": null, + "city": "Mayfield", + "state_province": "Cork", + "postal_code": "T23 AE78", + "country": "Ireland", + "longitude": -8.4340922, + "latitude": 51.9132877, + "phone": "353214503096", + "website_url": "https://www.cottonball.ie/", + "state": "Cork", + "street": "18 Old Youghal Road" + }, + { + "id": "d2d3de44-bc8b-4fcc-921d-2340cc0bf346", + "name": "Cotton Brewing Co", + "brewery_type": "brewpub", + "address_1": "626 Oak St", + "address_2": null, + "address_3": null, + "city": "Adrian", + "state_province": "Michigan", + "postal_code": "49221-3367", + "country": "United States", + "longitude": -84.02463418, + "latitude": 41.89136136, + "phone": "5179026608", + "website_url": "http://www.cottonbrewing.com", + "state": "Michigan", + "street": "626 Oak St" + }, + { + "id": "9b04a566-cc87-47d5-9ba5-d13a35517ea4", + "name": "CottonTown Brew Lab", + "brewery_type": "micro", + "address_1": "1223 Franklin St", + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "South Carolina", + "postal_code": "29201-1958", + "country": "United States", + "longitude": -81.04004014, + "latitude": 34.01695029, + "phone": "8444273952", + "website_url": "http://www.ctbl.asurewebsites.net", + "state": "South Carolina", + "street": "1223 Franklin St" + }, + { + "id": "760afc6b-a382-428e-b9d4-074e683f7abc", + "name": "Cottrell Brewing Co", + "brewery_type": "closed", + "address_1": "100 Mechanic St", + "address_2": null, + "address_3": null, + "city": "Pawcatuck", + "state_province": "Connecticut", + "postal_code": "06379-2163", + "country": "United States", + "longitude": -71.834289, + "latitude": 41.370676, + "phone": "8605998213", + "website_url": "http://www.cottrellbrewing.com", + "state": "Connecticut", + "street": "100 Mechanic St" + }, + { + "id": "93d051c6-ba2f-4132-a8e3-27d892133bf2", + "name": "Couch Brewery", + "brewery_type": "micro", + "address_1": "1351 Washington Blvd", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15206-1801", + "country": "United States", + "longitude": -79.9090141, + "latitude": 40.4695304, + "phone": "4124411724", + "website_url": "http://www.couchbrewery.com", + "state": "Pennsylvania", + "street": "1351 Washington Blvd" + }, + { + "id": "f17f30c2-ad58-4d64-adee-493df68df07d", + "name": "Council Brewing - Magic Factory", + "brewery_type": "micro", + "address_1": "7705 Convoy Ct", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92111-1113", + "country": "United States", + "longitude": -117.1544092, + "latitude": 32.83466296, + "phone": "8582560038", + "website_url": null, + "state": "California", + "street": "7705 Convoy Ct" + }, + { + "id": "4c805f48-4d8e-4ec5-81f5-7585daa8a34f", + "name": "Council Brewing Company", + "brewery_type": "micro", + "address_1": "7705 Convoy Ct", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92111-1105", + "country": "United States", + "longitude": -117.1544092, + "latitude": 32.83466296, + "phone": "8582560038", + "website_url": "http://www.councilbrew.com", + "state": "California", + "street": "7705 Convoy Ct" + }, + { + "id": "69014e74-5051-4ea1-b08e-4568d5318ba3", + "name": "Council Brewing Company", + "brewery_type": "micro", + "address_1": "9962 Prospect Ave", + "address_2": null, + "address_3": null, + "city": "Santee", + "state_province": "California", + "postal_code": "92071", + "country": "United States", + "longitude": -116.97958, + "latitude": 32.832115, + "phone": null, + "website_url": null, + "state": "California", + "street": "9962 Prospect Ave" + }, + { + "id": "22dd315d-ec60-4af1-b125-88c3a4a4ff78", + "name": "Council Rock Brewery", + "brewery_type": "brewpub", + "address_1": "4861 State Highway 28 Ste 3", + "address_2": null, + "address_3": null, + "city": "Cooperstown", + "state_province": "New York", + "postal_code": "13326-5229", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6076433016", + "website_url": "http://www.councilrockbrewery.com", + "state": "New York", + "street": "4861 State Highway 28 Ste 3" + }, + { + "id": "dc26c773-cddd-48f4-9440-39d5a3f46cc9", + "name": "Counterbalance Brewing Company", + "brewery_type": "closed", + "address_1": "503 S Michigan St Ste B", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98108-3305", + "country": "United States", + "longitude": -122.3279252, + "latitude": 47.54555555, + "phone": "2064533615", + "website_url": "http://www.counterbalancebeer.com", + "state": "Washington", + "street": "503 S Michigan St Ste B" + }, + { + "id": "4c0b81d7-1000-4ca1-b3cf-b6ccbd609113", + "name": "Counterweight Brewing Company", + "brewery_type": "micro", + "address_1": "23 Raccio Park Rd", + "address_2": null, + "address_3": null, + "city": "Hamden", + "state_province": "Connecticut", + "postal_code": "06514-1331", + "country": "United States", + "longitude": -72.91955341, + "latitude": 41.39321167, + "phone": "2038217333", + "website_url": "http://www.Counterweightbrewing.com", + "state": "Connecticut", + "street": "23 Raccio Park Rd" + }, + { + "id": "228fc595-71eb-495b-96a8-5a7acb17af38", + "name": "Country Boy Brewing", + "brewery_type": "micro", + "address_1": "436 Chair Ave", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "Kentucky", + "postal_code": "40508-3106", + "country": "United States", + "longitude": -84.50925267, + "latitude": 38.0439487, + "phone": null, + "website_url": "http://www.countryboybrewing.com", + "state": "Kentucky", + "street": "436 Chair Ave" + }, + { + "id": "d840dd52-0f36-461f-ab74-95e588f9a02f", + "name": "Country Boy Brewing - Georgetown", + "brewery_type": "micro", + "address_1": "108 Corporate Dr", + "address_2": null, + "address_3": null, + "city": "Georgetown", + "state_province": "Kentucky", + "postal_code": "40324-0000", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8595882118", + "website_url": null, + "state": "Kentucky", + "street": "108 Corporate Dr" + }, + { + "id": "0a7c8d20-eaa1-4141-8edf-bb597c195aa5", + "name": "Country Town Farm Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Friendship", + "state_province": "New York", + "postal_code": "14739", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5858088995", + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "40450ecb-b207-4de1-9c51-2d7a3f435d6d", + "name": "County Line Brewing", + "brewery_type": "micro", + "address_1": "9115 W Chinden Blvd Ste 107", + "address_2": null, + "address_3": null, + "city": "Garden City", + "state_province": "Idaho", + "postal_code": "83714-1903", + "country": "United States", + "longitude": -116.295667, + "latitude": 43.655342, + "phone": "2088302456", + "website_url": "http://www.countylinebrewing.com", + "state": "Idaho", + "street": "9115 W Chinden Blvd Ste 107" + }, + { + "id": "7b07c312-aee4-4132-a4ac-12953862f003", + "name": "Court Avenue Brewing Co", + "brewery_type": "brewpub", + "address_1": "309 Court Ave Ste 100", + "address_2": null, + "address_3": null, + "city": "Des Moines", + "state_province": "Iowa", + "postal_code": "50309-2230", + "country": "United States", + "longitude": -93.620995, + "latitude": 41.585503, + "phone": "5152822739", + "website_url": "http://www.courtavebrew.com", + "state": "Iowa", + "street": "309 Court Ave Ste 100" + }, + { + "id": "68920a21-7bf7-4655-a5d3-824df9feec4d", + "name": "Courthouse Pub", + "brewery_type": "brewpub", + "address_1": "1001 S 8th St", + "address_2": null, + "address_3": null, + "city": "Manitowoc", + "state_province": "Wisconsin", + "postal_code": "54220-5307", + "country": "United States", + "longitude": -87.65789588, + "latitude": 44.08950638, + "phone": "9206861166", + "website_url": "http://www.courthousepub.com", + "state": "Wisconsin", + "street": "1001 S 8th St" + }, + { + "id": "d03076eb-f3a5-433b-b279-858f86c5a8cf", + "name": "Cousins Revolution Ale Works", + "brewery_type": "micro", + "address_1": "1582 US 9", + "address_2": null, + "address_3": null, + "city": "Wappingers Falls", + "state_province": "New York", + "postal_code": "12590", + "country": "United States", + "longitude": -73.91146279, + "latitude": 41.59803345, + "phone": "8452932739", + "website_url": "http://www.cousinsrevolution.com", + "state": "New York", + "street": "1582 US 9" + }, + { + "id": "2176565e-02ee-4977-bcc4-b460b3388ec0", + "name": "Covered Bridge Brewhaus Taproom", + "brewery_type": "micro", + "address_1": "506 N 8th St", + "address_2": null, + "address_3": null, + "city": "Shamokin", + "state_province": "Pennsylvania", + "postal_code": "17872-5302", + "country": "United States", + "longitude": -76.55682084, + "latitude": 40.79076037, + "phone": "5702054867", + "website_url": "http://squareup.com/store/covered-bridge-brewhaus", + "state": "Pennsylvania", + "street": "506 N 8th St" + }, + { + "id": "5598d62b-3e30-487b-b3b6-a7c6044f69ef", + "name": "Covert Artisan Ales & Cellars", + "brewery_type": "micro", + "address_1": "434 East 8th Street", + "address_2": null, + "address_3": null, + "city": "Sioux Falls", + "state_province": "South Dakota", + "postal_code": "57103-7025", + "country": "United States", + "longitude": -96.72165409, + "latitude": 43.54942193, + "phone": "6053895954", + "website_url": "http://www.covertartisanales.com", + "state": "South Dakota", + "street": "434 East 8th Street" + }, + { + "id": "11ca4b21-c34e-4857-9434-b1f264140524", + "name": "Covington Brewhouse", + "brewery_type": "closed", + "address_1": "226 E Lockwood St", + "address_2": null, + "address_3": null, + "city": "Covington", + "state_province": "Louisiana", + "postal_code": "70433-2828", + "country": "United States", + "longitude": -90.0970557, + "latitude": 30.47766326, + "phone": "9858932884", + "website_url": "http://www.covingtonbrewhouse.com", + "state": "Louisiana", + "street": "226 E Lockwood St" + }, + { + "id": "2a8d3fcd-55d7-44a0-9a56-e15aaa06a939", + "name": "Cowaramup Brewing Company", + "brewery_type": "micro", + "address_1": "229 Treeton Road North", + "address_2": null, + "address_3": null, + "city": "Cowaramup", + "state_province": "WA", + "postal_code": "6284", + "country": "Australia", + "longitude": 115.135971, + "latitude": -33.8350868, + "phone": "+61 8 9755 5822", + "website_url": "https://cowaramupbrewing.com.au/", + "state": "WA", + "street": "229 Treeton Road North" + }, + { + "id": "516bd83f-0eea-42c2-9ba7-30f987fabd39", + "name": "Cowboy State Brewing", + "brewery_type": "micro", + "address_1": "316 S Birch St", + "address_2": null, + "address_3": null, + "city": "Glenrock", + "state_province": "Wyoming", + "postal_code": "82637", + "country": "United States", + "longitude": -105.87157095793, + "latitude": 42.861818347965, + "phone": "3077971224", + "website_url": "https://www.facebook.com/CSBwyo", + "state": "Wyoming", + "street": "316 S Birch St" + }, + { + "id": "92e68f4e-6f53-436e-85e6-1a323133a8b2", + "name": "Cowiche Creek Brewing Company", + "brewery_type": "micro", + "address_1": "514 Thompson Rd BLDG #2", + "address_2": null, + "address_3": null, + "city": "Cowiche", + "state_province": "Washington", + "postal_code": "98923-9734", + "country": "United States", + "longitude": -120.6861127, + "latitude": 46.65677362, + "phone": "5096780324", + "website_url": "http://www.cowichecreekbrewing.com", + "state": "Washington", + "street": "514 Thompson Rd BLDG #2" + }, + { + "id": "7a0c3abf-985d-4803-abdb-bc6130e9328a", + "name": "Cowtown Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fort Worth", + "state_province": "Texas", + "postal_code": "76102-2408", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.cowtownbrewco.com", + "state": "Texas", + "street": null + }, + { + "id": "03299f31-afc3-43e4-b7be-0270a0fe0bc8", + "name": "CR Brewing Company", + "brewery_type": "brewpub", + "address_1": "3009 Wilmington Rd", + "address_2": null, + "address_3": null, + "city": "New Castle", + "state_province": "Pennsylvania", + "postal_code": "16105", + "country": "United States", + "longitude": -80.3493196, + "latitude": 41.0103937, + "phone": "4122987053", + "website_url": "http://www.crbrewingcompany.com", + "state": "Pennsylvania", + "street": "3009 Wilmington Rd" + }, + { + "id": "759b1509-489e-46d1-a91c-d61401cc7888", + "name": "Crabtree Brewing", + "brewery_type": "micro", + "address_1": "2961 W 29th St", + "address_2": null, + "address_3": null, + "city": "Greeley", + "state_province": "Colorado", + "postal_code": "80631-8538", + "country": "United States", + "longitude": -104.7875038, + "latitude": 40.3899004, + "phone": "9703560516", + "website_url": "http://www.crabtreebrewing.com", + "state": "Colorado", + "street": "2961 W 29th St" + }, + { + "id": "728019cb-061f-45e9-b3af-6b8ea811258d", + "name": "CRAFT 64", + "brewery_type": "contract", + "address_1": "6922 E Main St", + "address_2": null, + "address_3": null, + "city": "Scottsdale", + "state_province": "Arizona", + "postal_code": "85251-4312", + "country": "United States", + "longitude": -111.9319271, + "latitude": 33.493153, + "phone": "4809460542", + "website_url": "http://www.craft64.com", + "state": "Arizona", + "street": "6922 E Main St" + }, + { + "id": "f1ad22f6-3935-4c9c-8bc5-25352671145a", + "name": "Craft Artisan Ales", + "brewery_type": "contract", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Pacific Grove", + "state_province": "California", + "postal_code": "93950-7093", + "country": "United States", + "longitude": -121.9155906, + "latitude": 36.6174432, + "phone": "8317177543", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "74716bad-707a-449f-b278-c48148587be2", + "name": "CRAFT BEER BASE MOTHER TREE", + "brewery_type": "brewpub", + "address_1": "1-13-13 Oyodonaka", + "address_2": null, + "address_3": null, + "city": "Osaka", + "state_province": "Osaka", + "postal_code": "531-0076", + "country": "Japan", + "longitude": 135.4887076, + "latitude": 34.70512865, + "phone": "81675039795", + "website_url": "https://craftbeerbase.com/shops/mothertree", + "state": "Osaka", + "street": "1-13-13 Oyodonaka" + }, + { + "id": "312232fc-cbec-44aa-bc5b-85cac76e3c43", + "name": "Craft Brewing Company", + "brewery_type": "micro", + "address_1": "530 Crane St", + "address_2": null, + "address_3": null, + "city": "Lake Elsinore", + "state_province": "California", + "postal_code": "92530-2779", + "country": "United States", + "longitude": -117.3402489, + "latitude": 33.68673832, + "phone": "9516742562", + "website_url": "http://www.craftbrewibgcompany.com", + "state": "California", + "street": "530 Crane St" + }, + { + "id": "4a093277-4333-401e-b484-b231145a0d26", + "name": "Craft Kitchen and Brewery", + "brewery_type": "brewpub", + "address_1": "62988 Layton Ave Ste 103", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97701-6692", + "country": "United States", + "longitude": -121.2903651, + "latitude": 44.08719318, + "phone": "5416681766", + "website_url": "http://www.craftkitchenandbrewery.com", + "state": "Oregon", + "street": "62988 Layton Ave Ste 103" + }, + { + "id": "52048a4e-8f81-4515-bc5e-9289da7fcead", + "name": "Craft Life Brewing", + "brewery_type": "micro", + "address_1": "2624 Land O Lakes Blvd", + "address_2": null, + "address_3": null, + "city": "Land O Lakes", + "state_province": "Florida", + "postal_code": "34639-4910", + "country": "United States", + "longitude": -82.46477873, + "latitude": 28.19614552, + "phone": "8135758440", + "website_url": null, + "state": "Florida", + "street": "2624 Land O Lakes Blvd" + }, + { + "id": "c98eac57-3377-45db-aadb-1abe12395e10", + "name": "CraftHaus Brewery", + "brewery_type": "micro", + "address_1": "7350 Eastgate Rd Ste 110", + "address_2": null, + "address_3": null, + "city": "Henderson", + "state_province": "Nevada", + "postal_code": "89011-4071", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7024159184", + "website_url": "http://www.crafthausbrewery.com", + "state": "Nevada", + "street": "7350 Eastgate Rd Ste 110" + }, + { + "id": "200b3434-8f97-4a9d-a072-fcb7379b31d5", + "name": "CRAFTROOT", + "brewery_type": "brewpub", + "address_1": "418,Gwangwang-ro", + "address_2": null, + "address_3": null, + "city": "Sokcho-si", + "state_province": "Gangwondo", + "postal_code": "24859", + "country": "South Korea", + "longitude": 128.5377122, + "latitude": 38.19724237, + "phone": "070-8872-1001", + "website_url": "https://craftroot.co.kr/", + "state": "Gangwondo", + "street": "418,Gwangwang-ro" + }, + { + "id": "26292d30-c367-4055-937b-c5c56aa6e170", + "name": "CraftRoots Brewing, LLC.", + "brewery_type": "micro", + "address_1": "4 Industrial Rd Ste 8", + "address_2": null, + "address_3": null, + "city": "Milford", + "state_province": "Massachusetts", + "postal_code": "01757-3589", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5083811920", + "website_url": "http://www.craftrootsbrewing.com", + "state": "Massachusetts", + "street": "4 Industrial Rd Ste 8" + }, + { + "id": "de955cfc-52a1-41d5-97ad-04a85688e434", + "name": "Craftsman Brewing Co", + "brewery_type": "micro", + "address_1": "1260 Lincoln Ave Ste 100", + "address_2": null, + "address_3": null, + "city": "Pasadena", + "state_province": "California", + "postal_code": "91103-2465", + "country": "United States", + "longitude": -118.1595567, + "latitude": 34.1674435, + "phone": "6262962537", + "website_url": "http://www.craftsmanbrewing.com", + "state": "California", + "street": "1260 Lincoln Ave Ste 100" + }, + { + "id": "e2c9b160-77d6-428d-ae99-4351cb2b3405", + "name": "Craftwerk Orange Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "West Orange", + "state_province": "New Jersey", + "postal_code": "07052-2513", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2012482021", + "website_url": "http://www.craftwerkorange.com", + "state": "New Jersey", + "street": null + }, + { + "id": "07e53361-7ae0-4101-a7e9-20e19f0583c5", + "name": "Crafty Ales and Lagers", + "brewery_type": "micro", + "address_1": "2 Exchange St", + "address_2": null, + "address_3": null, + "city": "Phelps", + "state_province": "New York", + "postal_code": "14532-1010", + "country": "United States", + "longitude": -77.056976, + "latitude": 42.9579011, + "phone": "3153321606", + "website_url": "http://www.drinkcraftyales.com", + "state": "New York", + "street": "2 Exchange St" + }, + { + "id": "fb02d8d4-a2ef-4056-b04a-375abc215382", + "name": "Crafty Bastard Brewery", + "brewery_type": "micro", + "address_1": "6 Emory Pl", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37917-7317", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8657552358", + "website_url": "http://www.craftybastardbrewery.com", + "state": "Tennessee", + "street": "6 Emory Pl" + }, + { + "id": "579a7124-2729-4320-97d4-7ae1e3405562", + "name": "Crane Brewing Company", + "brewery_type": "micro", + "address_1": "6515 Railroad St", + "address_2": null, + "address_3": null, + "city": "Raytown", + "state_province": "Missouri", + "postal_code": "64133-5210", + "country": "United States", + "longitude": -94.46290138, + "latitude": 39.00524272, + "phone": "8167434132", + "website_url": "http://www.cranebrewing.com", + "state": "Missouri", + "street": "6515 Railroad St" + }, + { + "id": "b7776714-4506-42c0-8400-2fc05a1d86e6", + "name": "Crane's Castle Brewing", + "brewery_type": "micro", + "address_1": "1550 NE Riddell Rd #180", + "address_2": null, + "address_3": null, + "city": "Bremerton", + "state_province": "Washington", + "postal_code": "98310-3059", + "country": "United States", + "longitude": -122.6298609, + "latitude": 47.60799154, + "phone": "3607282926", + "website_url": "https://cranescastlebeer.com/", + "state": "Washington", + "street": "1550 NE Riddell Rd #180" + }, + { + "id": "8d3a51f6-de81-4434-a662-9e7f7f7390bf", + "name": "Crank Arm Brewing Co", + "brewery_type": "micro", + "address_1": "319 W Davie St", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27601-1718", + "country": "United States", + "longitude": -78.64405, + "latitude": 35.7756043, + "phone": null, + "website_url": "http://www.crankarmbrewing.com", + "state": "North Carolina", + "street": "319 W Davie St" + }, + { + "id": "a9d6103f-74be-43c4-9638-36342024ca78", + "name": "Crank Arm Brewing Co", + "brewery_type": "micro", + "address_1": "620 Fernway Ave", + "address_2": null, + "address_3": null, + "city": "Durham", + "state_province": "North Carolina", + "postal_code": "27701", + "country": "United States", + "longitude": -78.9050679, + "latitude": 36, + "phone": "9193243529", + "website_url": "http://www.crankarmbrewing.com", + "state": "North Carolina", + "street": "620 Fernway Ave" + }, + { + "id": "0bbfb49b-6570-462a-adff-1dd9c633e426", + "name": "Crank Handle Brewery", + "brewery_type": "micro", + "address_1": "211 Kiewa Valley Highway", + "address_2": null, + "address_3": null, + "city": "Tawonga South", + "state_province": "VIC", + "postal_code": "3698", + "country": "Australia", + "longitude": 147.158988, + "latitude": -36.736341, + "phone": "+61 3 5754 4443", + "website_url": "http://www.crankhandlebrewery.com.au/", + "state": "VIC", + "street": "211 Kiewa Valley Highway" + }, + { + "id": "7925a3a2-254e-4112-b9d8-0ab1af31664c", + "name": "Cranker's Brewery", + "brewery_type": "brewpub", + "address_1": "213 S State St", + "address_2": null, + "address_3": null, + "city": "Big Rapids", + "state_province": "Michigan", + "postal_code": "49307-1758", + "country": "United States", + "longitude": -85.483723, + "latitude": 43.688013, + "phone": "2317961919", + "website_url": null, + "state": "Michigan", + "street": "213 S State St" + }, + { + "id": "6fd44e32-4616-4f8d-9925-85a724dc188c", + "name": "Cranker's Restaurant & Brewery", + "brewery_type": "brewpub", + "address_1": "454 68th St SW", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49548-7115", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6168271919", + "website_url": "http://www.crankersbrewery.com", + "state": "Michigan", + "street": "454 68th St SW" + }, + { + "id": "d89a9d3f-30ff-45ff-9ae7-ca09c96d0484", + "name": "Cranker's Restaurant & Brewery", + "brewery_type": "brewpub", + "address_1": "1207 E Pickard St", + "address_2": null, + "address_3": null, + "city": "Mount Pleasant", + "state_province": "Michigan", + "postal_code": "48858-1901", + "country": "United States", + "longitude": -84.76071102, + "latitude": 43.61176916, + "phone": "9897791919", + "website_url": "http://www.crankersbrewery.com", + "state": "Michigan", + "street": "1207 E Pickard St" + }, + { + "id": "241d6bd0-f1c6-482b-8419-f48db87cc119", + "name": "Crasian Brewing Co", + "brewery_type": "micro", + "address_1": "207 S Railroad St Ste B", + "address_2": null, + "address_3": null, + "city": "Brookston", + "state_province": "Indiana", + "postal_code": "47923-8137", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7655638339", + "website_url": "http://www.crasianbrewing.com", + "state": "Indiana", + "street": "207 S Railroad St Ste B" + }, + { + "id": "15453364-b83a-45cf-9aa9-e6ff5997fb45", + "name": "Cravings Bistro & Pub", + "brewery_type": "brewpub", + "address_1": "1599 Mall Dr Ste B", + "address_2": null, + "address_3": null, + "city": "Benton Harbor", + "state_province": "Michigan", + "postal_code": "49022-2330", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2699349700", + "website_url": null, + "state": "Michigan", + "street": "1599 Mall Dr Ste B" + }, + { + "id": "7b60c65d-c7a2-474b-8d5b-83dc4744b4c9", + "name": "Crawford Brew Works", + "brewery_type": "micro", + "address_1": "3659 Devils Glen Rd", + "address_2": null, + "address_3": null, + "city": "Bettendorf", + "state_province": "Iowa", + "postal_code": "52722", + "country": "United States", + "longitude": -90.48344378, + "latitude": 41.55924419, + "phone": null, + "website_url": null, + "state": "Iowa", + "street": "3659 Devils Glen Rd" + }, + { + "id": "ca8bfb14-81cf-4c1c-8cd6-78b99cf7b1bd", + "name": "Crazy Mountain Brewing Co", + "brewery_type": "regional", + "address_1": "471 Kalamath St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80204-5019", + "country": "United States", + "longitude": -105.0002926, + "latitude": 39.72361171, + "phone": "9709263009", + "website_url": "http://www.crazymountainbrewery.com", + "state": "Colorado", + "street": "471 Kalamath St" + }, + { + "id": "8e1f3d7d-6e4a-433d-bdd8-4528d1613f26", + "name": "Crazy Williez Brewery", + "brewery_type": "contract", + "address_1": "546 Silver St", + "address_2": null, + "address_3": null, + "city": "Ilion", + "state_province": "New York", + "postal_code": "13357", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New York", + "street": "546 Silver St" + }, + { + "id": "9ff5bda3-04ed-48cc-8d63-9c2799a12a42", + "name": "Creature Comforts Brewing Co.", + "brewery_type": "regional", + "address_1": "271 W Hancock Ave", + "address_2": null, + "address_3": null, + "city": "Athens", + "state_province": "Georgia", + "postal_code": "30601-2727", + "country": "United States", + "longitude": -83.380087, + "latitude": 33.95919871, + "phone": "7064101043", + "website_url": "http://www.creaturecomfortsbeer.com", + "state": "Georgia", + "street": "271 W Hancock Ave" + }, + { + "id": "f4512d6a-51fd-4e2d-b601-f4666490f0a0", + "name": "Creature Comforts Production Facility At Southern Mill", + "brewery_type": "regional", + "address_1": "355 Oneta St Bldg A100", + "address_2": null, + "address_3": null, + "city": "Athens", + "state_province": "Georgia", + "postal_code": "30601", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Georgia", + "street": "355 Oneta St Bldg A100" + }, + { + "id": "e176038a-98ce-45f7-844a-e3489e34dbb1", + "name": "Creatures Of Habit Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Anderson", + "state_province": "Indiana", + "postal_code": "46016-1749", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7654000116", + "website_url": "http://facebook.com/CreaturesBrew/", + "state": "Indiana", + "street": null + }, + { + "id": "21cd8238-f678-4a95-9cf3-75b34f58d7fa", + "name": "Creek Bottom Brew LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Oldenburg", + "state_province": "Indiana", + "postal_code": "47036-9765", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8122124817", + "website_url": "http://www.creekbottombrew.com", + "state": "Indiana", + "street": null + }, + { + "id": "9cb116be-fc14-4540-9c17-4507cb5595e4", + "name": "Creek Bottom Brewing", + "brewery_type": "brewpub", + "address_1": "307 N Meadow St", + "address_2": null, + "address_3": null, + "city": "Galax", + "state_province": "Virginia", + "postal_code": "24333-3019", + "country": "United States", + "longitude": -80.92094471, + "latitude": 36.66708636, + "phone": "2762362337", + "website_url": "http://www.creekbottombrewing.com", + "state": "Virginia", + "street": "307 N Meadow St" + }, + { + "id": "6fc2720b-7757-4e50-82cf-6e27c285c590", + "name": "Crescent Brewery", + "brewery_type": "micro", + "address_1": "1521 Front St", + "address_2": null, + "address_3": null, + "city": "Nampa", + "state_province": "Idaho", + "postal_code": "83651-4331", + "country": "United States", + "longitude": -116.5550949, + "latitude": 43.57676253, + "phone": "2089681034", + "website_url": "http://www.crescentbeer.com", + "state": "Idaho", + "street": "1521 Front St" + }, + { + "id": "f7de41dc-b46c-4ab5-82bd-c437e685b48f", + "name": "Crescent City Brewhouse", + "brewery_type": "brewpub", + "address_1": "527 Decatur St", + "address_2": null, + "address_3": null, + "city": "New Orleans", + "state_province": "Louisiana", + "postal_code": "70130-1027", + "country": "United States", + "longitude": -90.0639242, + "latitude": 29.9557185, + "phone": "5045220571", + "website_url": "http://www.crescentcitybrewhouse.com", + "state": "Louisiana", + "street": "527 Decatur St" + }, + { + "id": "0e1b23f1-d957-4890-a38c-c21f687b5e96", + "name": "Creston Brewery", + "brewery_type": "brewpub", + "address_1": "1504 Plainfield Ave NE", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49505-4923", + "country": "United States", + "longitude": -85.66252661, + "latitude": 42.99120192, + "phone": "6168054523", + "website_url": "http://www.crestonbrewery.com", + "state": "Michigan", + "street": "1504 Plainfield Ave NE" + }, + { + "id": "4c16f1b4-9cea-44a9-9ddb-73b8feaa1a5c", + "name": "Crestone Brewing Company", + "brewery_type": "brewpub", + "address_1": "187 West Silver Ave.", + "address_2": null, + "address_3": null, + "city": "Crestone", + "state_province": "Colorado", + "postal_code": "81131", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7192566400", + "website_url": "http://www.crestonebrewingco.com", + "state": "Colorado", + "street": "187 West Silver Ave." + }, + { + "id": "394e227d-58e8-485e-b037-b587d9334bf3", + "name": "Crew Brewing Company", + "brewery_type": "micro", + "address_1": "35 Thomas St", + "address_2": null, + "address_3": null, + "city": "Limerick", + "state_province": "Limerick", + "postal_code": "V94 A5X4", + "country": "Ireland", + "longitude": -8.6258884, + "latitude": 52.6619598, + "phone": null, + "website_url": "http://www.crewbrewing.ie/", + "state": "Limerick", + "street": "35 Thomas St" + }, + { + "id": "97bbffd0-e943-4b0d-b8e3-3246fe173a15", + "name": "Cricket Hill Brewing Co. Inc.", + "brewery_type": "micro", + "address_1": "24 Kulick Rd", + "address_2": null, + "address_3": null, + "city": "Fairfield", + "state_province": "New Jersey", + "postal_code": "07004-3308", + "country": "United States", + "longitude": -74.2963174, + "latitude": 40.872626, + "phone": "9732769415", + "website_url": "http://www.crickethillbrewery.com", + "state": "New Jersey", + "street": "24 Kulick Rd" + }, + { + "id": "6660d8a1-2668-4096-9510-92ea23e6371e", + "name": "Crime & Punishment Brewing Company", + "brewery_type": "brewpub", + "address_1": "2711 W Girard Ave", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19130-1212", + "country": "United States", + "longitude": -75.1808422, + "latitude": 39.9743646, + "phone": "2152352739", + "website_url": "http://www.crimeandpunishmentbrewery.com", + "state": "Pennsylvania", + "street": "2711 W Girard Ave" + }, + { + "id": "9271e997-c4d7-40d7-97ae-50a5eb1d9d5f", + "name": "Crimson Finch", + "brewery_type": "micro", + "address_1": "32 Anzac Parade", + "address_2": "5", + "address_3": null, + "city": "Yeppoon", + "state_province": "QLD", + "postal_code": "4703", + "country": "Australia", + "longitude": 150.7494603, + "latitude": -23.1323504, + "phone": "+61 406 656 355", + "website_url": "http://www.crimsonfinch.com/", + "state": "QLD", + "street": "32 Anzac Parade" + }, + { + "id": "6e35969e-ccfc-4f69-b738-0748b0d3a591", + "name": "Crisis Brewing LLC", + "brewery_type": "micro", + "address_1": "210 S Archibald Yell Blvd", + "address_2": null, + "address_3": null, + "city": "Fayetteville", + "state_province": "Arkansas", + "postal_code": "72701-4459", + "country": "United States", + "longitude": -94.16087539, + "latitude": 36.05959704, + "phone": "4795822337", + "website_url": "http://www.crisisbrew.com", + "state": "Arkansas", + "street": "210 S Archibald Yell Blvd" + }, + { + "id": "7b67ad3f-b68c-4fae-af3a-4a3aef7b7f74", + "name": "Critz Farms Brewing & Cider Co.", + "brewery_type": "micro", + "address_1": "3232 Rippleton Rd", + "address_2": null, + "address_3": null, + "city": "Cazenovia", + "state_province": "New York", + "postal_code": "13035-9693", + "country": "United States", + "longitude": -75.8746342, + "latitude": 42.8805302, + "phone": "3156623355", + "website_url": "http://www.critzfarms.com", + "state": "New York", + "street": "3232 Rippleton Rd" + }, + { + "id": "ef8cb80a-8a31-4038-834a-a27874bfa9d8", + "name": "Crooked Can Brewing Co", + "brewery_type": "micro", + "address_1": "426 W Plant St", + "address_2": null, + "address_3": null, + "city": "Winter Garden", + "state_province": "Florida", + "postal_code": "34787-3014", + "country": "United States", + "longitude": -81.590376, + "latitude": 28.5639024, + "phone": null, + "website_url": "http://www.crookedcan.com", + "state": "Florida", + "street": "426 W Plant St" + }, + { + "id": "9b94f17c-c19e-4a58-8621-a0beef7db4cd", + "name": "Crooked Crab Brewing Company", + "brewery_type": "micro", + "address_1": "8251 Telegraph Rd", + "address_2": null, + "address_3": null, + "city": "Odenton", + "state_province": "Maryland", + "postal_code": "21113", + "country": "United States", + "longitude": -76.69482405, + "latitude": 39.09729159, + "phone": "4435699187", + "website_url": "http://www.cookedcrabbrewing.com", + "state": "Maryland", + "street": "8251 Telegraph Rd" + }, + { + "id": "59c2cac1-d48e-4ee3-bbea-8d19cc1cfcbe", + "name": "Crooked Current Brewery", + "brewery_type": "micro", + "address_1": "560 Mineral Spring Ave Ste 2-112", + "address_2": null, + "address_3": null, + "city": "Pawtucket", + "state_province": "Rhode Island", + "postal_code": "02860-8612", + "country": "United States", + "longitude": -71.4057415, + "latitude": 41.8726983, + "phone": "4014738312", + "website_url": "http://www.crookedcurrentbrewery.com", + "state": "Rhode Island", + "street": "560 Mineral Spring Ave Ste 2-112" + }, + { + "id": "c4322724-2b2e-41bc-80bc-6d74e08bc915", + "name": "Crooked Ewe Brewery & Ale House", + "brewery_type": "brewpub", + "address_1": "1047 Lincoln Way E", + "address_2": null, + "address_3": null, + "city": "South Bend", + "state_province": "Indiana", + "postal_code": "46601-3726", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5742170881", + "website_url": "http://www.crookedewe.com", + "state": "Indiana", + "street": "1047 Lincoln Way E" + }, + { + "id": "c38f360f-89b2-427f-89b2-39c66b9cb9cd", + "name": "Crooked Eye Brewery", + "brewery_type": "micro", + "address_1": "13 E Montgomery Ave Ste 2", + "address_2": null, + "address_3": null, + "city": "Hatboro", + "state_province": "Pennsylvania", + "postal_code": "19040-2618", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2152859253", + "website_url": "http://crookedeyebrewery.com", + "state": "Pennsylvania", + "street": "13 E Montgomery Ave Ste 2" + }, + { + "id": "6ea64715-be41-4897-9b8a-496911ce26ec", + "name": "Crooked Fence Brewing", + "brewery_type": "micro", + "address_1": "5220 N Sawyer Ave", + "address_2": null, + "address_3": null, + "city": "Garden City", + "state_province": "Idaho", + "postal_code": "83714", + "country": "United States", + "longitude": -116.268704, + "latitude": 43.646739, + "phone": "2083757907", + "website_url": "http://www.crookedfencebrewing.com", + "state": "Idaho", + "street": "5220 N Sawyer Ave" + }, + { + "id": "d0b18089-fdea-44aa-9b99-fe28ce55b4ea", + "name": "Crooked Furrow Brewing", + "brewery_type": "micro", + "address_1": "2801 N Roberts Ave", + "address_2": null, + "address_3": null, + "city": "Helena", + "state_province": "Montana", + "postal_code": "59601", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4064225975", + "website_url": "http://www.crookedfurrowbrewing.com", + "state": "Montana", + "street": "2801 N Roberts Ave" + }, + { + "id": "dd4507bb-0b17-429e-b3b8-f4065c53d487", + "name": "Crooked Goat Brewing", + "brewery_type": "micro", + "address_1": "120 Morris St Ste 120", + "address_2": null, + "address_3": null, + "city": "Sebastopol", + "state_province": "California", + "postal_code": "95472-3867", + "country": "United States", + "longitude": -122.8196789, + "latitude": 38.40410225, + "phone": "7078273893", + "website_url": "http://www.crookedgoatbrewing.com", + "state": "California", + "street": "120 Morris St Ste 120" + }, + { + "id": "ae710b07-f1bc-42fa-a2ef-47e1ad43f5bf", + "name": "Crooked Hammock Brewery", + "brewery_type": "brewpub", + "address_1": "36707 Crooked Hammock Way", + "address_2": null, + "address_3": null, + "city": "Lewes", + "state_province": "Delaware", + "postal_code": "19958-4877", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Delaware", + "street": "36707 Crooked Hammock Way" + }, + { + "id": "74cbeded-8edb-49ef-95a4-f0a1cb372a7e", + "name": "Crooked Handle Brewing Co.", + "brewery_type": "micro", + "address_1": "760 N Main St", + "address_2": null, + "address_3": null, + "city": "Springboro", + "state_province": "Ohio", + "postal_code": "45066-8944", + "country": "United States", + "longitude": -84.23082816, + "latitude": 39.57664643, + "phone": "9377903450", + "website_url": "http://www.crookedhandle.com", + "state": "Ohio", + "street": "760 N Main St" + }, + { + "id": "e7b3c72d-7795-4882-81ed-2c4362ed4ece", + "name": "Crooked Label Brewing Company", + "brewery_type": "micro", + "address_1": "773 Village Way", + "address_2": null, + "address_3": null, + "city": "Monroe", + "state_province": "Washington", + "postal_code": "98272-2171", + "country": "United States", + "longitude": -121.9807376, + "latitude": 47.85092868, + "phone": "3602178741", + "website_url": "https://www.facebook.com/Crooked-Label-Brewing-Company-873921246124558/", + "state": "Washington", + "street": "773 Village Way" + }, + { + "id": "7eb998d5-80d4-4d93-9695-b1a3e6a8dbb5", + "name": "Crooked Ladder Brewery", + "brewery_type": "micro", + "address_1": "70 W Main St", + "address_2": null, + "address_3": null, + "city": "Riverhead", + "state_province": "New York", + "postal_code": "11901-2802", + "country": "United States", + "longitude": -72.66319867, + "latitude": 40.91701672, + "phone": "6319025335", + "website_url": "http://www.crookedladderbrewingco.com", + "state": "New York", + "street": "70 W Main St" + }, + { + "id": "134c8b3a-98f6-436b-a31a-2d8b717f3d80", + "name": "Crooked Lane Brewing Co", + "brewery_type": "micro", + "address_1": "536 Grass Valley Hwy", + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "California", + "postal_code": "95603-3807", + "country": "United States", + "longitude": -121.0769384, + "latitude": 38.90869888, + "phone": "5306137434", + "website_url": "http://www.crookedlanebrewing.com", + "state": "California", + "street": "536 Grass Valley Hwy" + }, + { + "id": "7ccad05b-4094-411f-8e22-e68cb5eb4bba", + "name": "Crooked Letter Brewing Co", + "brewery_type": "brewpub", + "address_1": "503 Porter Ave", + "address_2": null, + "address_3": null, + "city": "Ocean Springs", + "state_province": "Mississippi", + "postal_code": "39564", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2282353994", + "website_url": "http://www.crookedletterbrewery.com", + "state": "Mississippi", + "street": "503 Porter Ave" + }, + { + "id": "ba9ac1f0-2b7d-4cc2-ab55-9eaa479fee80", + "name": "Crooked Pecker Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Newbury", + "state_province": "Ohio", + "postal_code": "44065-9735", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4404763427", + "website_url": null, + "state": "Ohio", + "street": null + }, + { + "id": "903ba837-e27a-48b6-8287-da98c01e0b35", + "name": "Crooked Rooster Brewery LLC.", + "brewery_type": "micro", + "address_1": "1478 S 6th St", + "address_2": null, + "address_3": null, + "city": "Macclenny", + "state_province": "Florida", + "postal_code": "32063", + "country": "United States", + "longitude": -82.1223325, + "latitude": 30.2707152, + "phone": "9046532337", + "website_url": "http://www.crookedroosterbrews.com", + "state": "Florida", + "street": "1478 S 6th St" + }, + { + "id": "7aa49d30-257e-4d82-9bfe-e7181f309a3d", + "name": "Crooked Run Brewing", + "brewery_type": "micro", + "address_1": "205 Harrison St SE", + "address_2": null, + "address_3": null, + "city": "Leesburg", + "state_province": "Virginia", + "postal_code": "20175-3702", + "country": "United States", + "longitude": -77.56287085, + "latitude": 39.11226781, + "phone": "5713752652", + "website_url": "http://crookedrunbrewing.com", + "state": "Virginia", + "street": "205 Harrison St SE" + }, + { + "id": "e26fbcf7-5991-4cae-8c54-15a107fba85d", + "name": "Crooked Stave Artisan Beer Project", + "brewery_type": "micro", + "address_1": "1441 W 46th Ave Unit 17", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80211-2338", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7205083292", + "website_url": "http://www.crookedstave.com", + "state": "Colorado", + "street": "1441 W 46th Ave Unit 17" + }, + { + "id": "ee71a877-46d6-45a9-9e2d-6291f4609de6", + "name": "Crooked Thumb Brewery", + "brewery_type": "micro", + "address_1": "555 10th Ave S", + "address_2": null, + "address_3": null, + "city": "Safety Harbor", + "state_province": "Florida", + "postal_code": "34695-3821", + "country": "United States", + "longitude": -82.6986687, + "latitude": 27.9874212, + "phone": "7277245953", + "website_url": "http://www.crookedthumbbrew.com", + "state": "Florida", + "street": "555 10th Ave S" + }, + { + "id": "8d2c978f-56a4-4df1-849f-93733f45cc21", + "name": "Crooked Tongue Brewing", + "brewery_type": "micro", + "address_1": "2516 Benjamin Franklin Hwy", + "address_2": null, + "address_3": null, + "city": "Edinburg", + "state_province": "Pennsylvania", + "postal_code": "16116-4302", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7248563765", + "website_url": "http://www.crookedtonguebrewing.com", + "state": "Pennsylvania", + "street": "2516 Benjamin Franklin Hwy" + }, + { + "id": "df821532-ffc3-417b-9b56-3de17c9bceac", + "name": "Crooked Tooth Brewing Co.", + "brewery_type": "micro", + "address_1": "228 E 6th St", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85705-8424", + "country": "United States", + "longitude": -110.9677332, + "latitude": 32.22762302, + "phone": "5204445305", + "website_url": "http://www.crookedtoothbrewing.com", + "state": "Arizona", + "street": "228 E 6th St" + }, + { + "id": "976f21bd-4435-4c9f-8342-451f89029b11", + "name": "Cross Country Brewing", + "brewery_type": "micro", + "address_1": "320 E Allard St", + "address_2": null, + "address_3": null, + "city": "Glendive", + "state_province": "Montana", + "postal_code": "59330-2719", + "country": "United States", + "longitude": -104.70579, + "latitude": 47.11209, + "phone": "4063772739", + "website_url": null, + "state": "Montana", + "street": "320 E Allard St" + }, + { + "id": "f6c9d376-e9a6-412a-a3bf-cf47acf0b749", + "name": "Cross Keys Brewing Co", + "brewery_type": "micro", + "address_1": "1038 N Main St", + "address_2": null, + "address_3": null, + "city": "Williamstown", + "state_province": "New Jersey", + "postal_code": "08094-3161", + "country": "United States", + "longitude": -75.0079984, + "latitude": 39.69627246, + "phone": "8569066481", + "website_url": "http://www.ckbcbeer.com", + "state": "New Jersey", + "street": "1038 N Main St" + }, + { + "id": "8360b304-8e43-49e6-ae58-d66e12df2c3e", + "name": "Cross Plains Brewery Inc.", + "brewery_type": "contract", + "address_1": "2109 Hickory St", + "address_2": null, + "address_3": null, + "city": "Cross Plains", + "state_province": "Wisconsin", + "postal_code": "53528-9700", + "country": "United States", + "longitude": -89.65293922, + "latitude": 43.11427765, + "phone": "6087983911", + "website_url": "http://www.essersbest.com", + "state": "Wisconsin", + "street": "2109 Hickory St" + }, + { + "id": "49e104a3-2c71-4f23-ad40-628d6084d570", + "name": "Cross-Eyed Owl Brewing Co.", + "brewery_type": "micro", + "address_1": "105 1st Ave NE", + "address_2": null, + "address_3": null, + "city": "Decatur", + "state_province": "Alabama", + "postal_code": "35601-2301", + "country": "United States", + "longitude": -86.98663302, + "latitude": 34.60412065, + "phone": "2564310931", + "website_url": "http://www.xeobrewing.com", + "state": "Alabama", + "street": "105 1st Ave NE" + }, + { + "id": "a3defe47-f327-4d0f-b2e8-ce85297dab21", + "name": "Crossed Arrows Brewery", + "brewery_type": "micro", + "address_1": "1091 SW Fleet St", + "address_2": null, + "address_3": null, + "city": "Oak Harbor", + "state_province": "Washington", + "postal_code": "98277-3168", + "country": "United States", + "longitude": -122.6658157317, + "latitude": 48.289645059207, + "phone": null, + "website_url": "https://www.crossedarrowsbrewery.com/", + "state": "Washington", + "street": "1091 SW Fleet St" + }, + { + "id": "76c1cb37-657f-4367-901f-ae1fa7436562", + "name": "Crossroads Brewing Co", + "brewery_type": "brewpub", + "address_1": "21 2nd St", + "address_2": null, + "address_3": null, + "city": "Athens", + "state_province": "New York", + "postal_code": "12015-1327", + "country": "United States", + "longitude": -73.8100641, + "latitude": 42.2605541, + "phone": "5189452337", + "website_url": "http://www.crossroadsbrewingco.com", + "state": "New York", + "street": "21 2nd St" + }, + { + "id": "10bd658f-7260-4535-9f5a-ecdaf3496444", + "name": "Crosstown Brewing Company", + "brewery_type": "micro", + "address_1": "1264 Concourse Ave", + "address_2": null, + "address_3": null, + "city": "Memphis", + "state_province": "Tennessee", + "postal_code": "38104-7022", + "country": "United States", + "longitude": -90.0129924, + "latitude": 35.1515547, + "phone": "9015297611", + "website_url": "http://www.crosstownbeer.com", + "state": "Tennessee", + "street": "1264 Concourse Ave" + }, + { + "id": "20d95606-a290-43fb-b8a4-2319b269c943", + "name": "Crow Hop Brewing Co. Ltd.", + "brewery_type": "micro", + "address_1": "214 E 4th St", + "address_2": null, + "address_3": null, + "city": "Loveland", + "state_province": "Colorado", + "postal_code": "80537-5632", + "country": "United States", + "longitude": -105.0735144, + "latitude": 40.39536486, + "phone": "9706330643", + "website_url": "http://www.crowhopbrewing.com", + "state": "Colorado", + "street": "214 E 4th St" + }, + { + "id": "b3a266ac-9340-4322-a7ca-3ec0062d59e5", + "name": "Crow Peak Brewing Co", + "brewery_type": "micro", + "address_1": "125 W Highway 14", + "address_2": null, + "address_3": null, + "city": "Spearfish", + "state_province": "South Dakota", + "postal_code": "57783-1150", + "country": "United States", + "longitude": -103.8706684, + "latitude": 44.5175219, + "phone": "6057170006", + "website_url": "http://www.crowpeakbrewing.com", + "state": "South Dakota", + "street": "125 W Highway 14" + }, + { + "id": "35056c86-03bb-4790-8b27-5241f914f73d", + "name": "Crowded Castle Brewing Co. Inc.", + "brewery_type": "brewpub", + "address_1": "242 Bridge St", + "address_2": null, + "address_3": null, + "city": "Phoenixville", + "state_province": "Pennsylvania", + "postal_code": "19460-3450", + "country": "United States", + "longitude": -75.51762814, + "latitude": 40.13370414, + "phone": "4842520077", + "website_url": "http://www.crowdedcastle.com", + "state": "Pennsylvania", + "street": "242 Bridge St" + }, + { + "id": "e57a94bd-f81c-409c-992d-6a093856121c", + "name": "Crowing Hen", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Carlton", + "state_province": "Oregon", + "postal_code": "97111-9668", + "country": "United States", + "longitude": -123.0986999, + "latitude": 45.29153898, + "phone": "5038520037", + "website_url": null, + "state": "Oregon", + "street": null + }, + { + "id": "fba9c7a9-0edc-44d8-8fdb-0c8544987a17", + "name": "Crown Brewing Co", + "brewery_type": "brewpub", + "address_1": "211 S East St", + "address_2": null, + "address_3": null, + "city": "Crown Point", + "state_province": "Indiana", + "postal_code": "46307-4058", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2196634545", + "website_url": "http://www.crownbrewing.com", + "state": "Indiana", + "street": "211 S East St" + }, + { + "id": "5a29edb9-1db8-432e-b45c-1bd6588b6c5a", + "name": "Crown Valley Brewing & Distilling Co", + "brewery_type": "micro", + "address_1": "23589 State Route Ww", + "address_2": null, + "address_3": null, + "city": "Sainte Genevieve", + "state_province": "Missouri", + "postal_code": "63670-9039", + "country": "United States", + "longitude": -90.21257, + "latitude": 37.777679, + "phone": "5737569700", + "website_url": "http://www.crownvalleybrewery.com", + "state": "Missouri", + "street": "23589 State Route Ww" + }, + { + "id": "d7d0c62b-5b9a-4317-9953-d125d066adc4", + "name": "Crucible Brewing - Everett Foundry", + "brewery_type": "micro", + "address_1": "909 SE Everett Mall Way Ste D440", + "address_2": null, + "address_3": null, + "city": "Everett", + "state_province": "Washington", + "postal_code": "98208-3755", + "country": "United States", + "longitude": -122.220239, + "latitude": 47.911765, + "phone": "4253747293", + "website_url": "http://www.cruciblebrewing.com", + "state": "Washington", + "street": "909 SE Everett Mall Way Ste D440" + }, + { + "id": "6fd8fda4-acc3-447c-ae41-254d581bbe25", + "name": "Crucible Brewing - Woodinville Forge", + "brewery_type": "closed", + "address_1": "12826 NE 178th St Ste C", + "address_2": null, + "address_3": null, + "city": "Woodinville", + "state_province": "Washington", + "postal_code": "98072-8737", + "country": "United States", + "longitude": -122.167861, + "latitude": 47.757935, + "phone": "4254839855", + "website_url": "http://www.cruciblebrewing.com", + "state": "Washington", + "street": "12826 NE 178th St Ste C" + }, + { + "id": "96380a97-d12b-423e-9a03-a42991ecfb16", + "name": "Crue Brew Brewery", + "brewery_type": "micro", + "address_1": "95 Ryan Dr Ste 6", + "address_2": null, + "address_3": null, + "city": "Raynham", + "state_province": "Massachusetts", + "postal_code": "02767-1992", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5082726090", + "website_url": "http://www.cruebrewbrewery.com", + "state": "Massachusetts", + "street": "95 Ryan Dr Ste 6" + }, + { + "id": "731ea370-dfdb-4e79-a63f-b7acd4e32481", + "name": "Crux Fermentation Project", + "brewery_type": "regional", + "address_1": "50 SW Division St", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97702-1600", + "country": "United States", + "longitude": -121.3079657, + "latitude": 44.05092629, + "phone": "5413887558", + "website_url": "http://www.cruxfermentation.com", + "state": "Oregon", + "street": "50 SW Division St" + }, + { + "id": "eff4b8a3-9aef-4d32-bce1-593b1935aa67", + "name": "Crux Fermentation Project - Crux2", + "brewery_type": "micro", + "address_1": "63065 NE 18th St", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97701-9981", + "country": "United States", + "longitude": -121.2824469, + "latitude": 44.08947729, + "phone": null, + "website_url": null, + "state": "Oregon", + "street": "63065 NE 18th St" + }, + { + "id": "1d2b23a3-7fdf-4f47-b96d-36bd027fe822", + "name": "Cruz Blanca Brewery", + "brewery_type": "brewpub", + "address_1": "904 W Randolph St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60607-2208", + "country": "United States", + "longitude": -87.6501403, + "latitude": 41.8846013, + "phone": "3127331975", + "website_url": "http://www.cruzblanca.com", + "state": "Illinois", + "street": "904 W Randolph St" + }, + { + "id": "534c0a74-1e1a-422a-894a-1fe55ea95af4", + "name": "Crying Eagle Brewing Company", + "brewery_type": "micro", + "address_1": "1165 E McNeese St", + "address_2": null, + "address_3": null, + "city": "Lake Charles", + "state_province": "Louisiana", + "postal_code": "70607-4753", + "country": "United States", + "longitude": -93.20515133, + "latitude": 30.17626439, + "phone": "3379904871", + "website_url": "http://www.cryingeagle.com", + "state": "Louisiana", + "street": "1165 E McNeese St" + }, + { + "id": "52177169-ec91-4785-8c44-d8fbb2d2ed2b", + "name": "Crystal Ball Brewing", + "brewery_type": "micro", + "address_1": "1612 W King St", + "address_2": null, + "address_3": null, + "city": "York", + "state_province": "Pennsylvania", + "postal_code": "17404-5618", + "country": "United States", + "longitude": -76.76273652, + "latitude": 39.94891984, + "phone": null, + "website_url": "http://www.crystalballbrewing.com", + "state": "Pennsylvania", + "street": "1612 W King St" + }, + { + "id": "e7828fc7-72e4-4f74-b2e5-afedfedf49c7", + "name": "Crystal Coast Brewing Company LLC", + "brewery_type": "micro", + "address_1": "702 Arendell St", + "address_2": null, + "address_3": null, + "city": "Morehead City", + "state_province": "North Carolina", + "postal_code": "28557-4234", + "country": "United States", + "longitude": -76.71137408, + "latitude": 34.72105219, + "phone": "7044513618", + "website_url": "http://www.CrystalCoastBrewingCompany.com", + "state": "North Carolina", + "street": "702 Arendell St" + }, + { + "id": "e8cad295-e28e-4bb1-8101-5de1049846b2", + "name": "Crystal Lake Brewing Co.", + "brewery_type": "micro", + "address_1": "150 N Main St", + "address_2": null, + "address_3": null, + "city": "Crystal Lake", + "state_province": "Illinois", + "postal_code": "60014-4433", + "country": "United States", + "longitude": -88.316204, + "latitude": 42.2413125, + "phone": null, + "website_url": null, + "state": "Illinois", + "street": "150 N Main St" + }, + { + "id": "313df964-9854-4ab9-9733-c29aad544c45", + "name": "Crystal Springs Brewing Co", + "brewery_type": "micro", + "address_1": "657 S Taylor Ave", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Colorado", + "postal_code": "80027-3063", + "country": "United States", + "longitude": -105.119781, + "latitude": 39.964883, + "phone": "3038845602", + "website_url": "http://www.crystalspringsbrewing.com", + "state": "Colorado", + "street": "657 S Taylor Ave" + }, + { + "id": "02523ad4-26bb-4dc1-8349-c9fe53180604", + "name": "CTKiR Browar Probus", + "brewery_type": "brewpub", + "address_1": "Młyńska 16", + "address_2": null, + "address_3": null, + "city": "Oława", + "state_province": "dolnośląskie", + "postal_code": "55-200", + "country": "Poland", + "longitude": 17.3013828, + "latitude": 50.9419716, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Młyńska 16" + }, + { + "id": "8fa3418a-4274-4842-82ef-e0d0d3461e05", + "name": "Cubby Haus Brewing", + "brewery_type": "micro", + "address_1": "884 Humffray Street South", + "address_2": null, + "address_3": null, + "city": "Mount Pleasant", + "state_province": "VIC", + "postal_code": "3350", + "country": "Australia", + "longitude": 143.8497352, + "latitude": -37.5777782, + "phone": "+61 3 4343 1777", + "website_url": "https://cubbyhausbrewing.com.au/", + "state": "VIC", + "street": "884 Humffray Street South" + }, + { + "id": "e031e745-1aab-47a5-8f44-728abdf4bc76", + "name": "Cueni Brewing Co.", + "brewery_type": "micro", + "address_1": "945 Huntley Ave", + "address_2": null, + "address_3": null, + "city": "Dunedin", + "state_province": "Florida", + "postal_code": "34698-5722", + "country": "United States", + "longitude": -82.78928423, + "latitude": 28.01440368, + "phone": "7272664102", + "website_url": "http://www.cuenibrewing.com", + "state": "Florida", + "street": "945 Huntley Ave" + }, + { + "id": "b62dcc90-f21d-4afb-86e1-dbd0cf9e98fa", + "name": "Culmination Brewing Co", + "brewery_type": "micro", + "address_1": "2117 NE Oregon St Ste 600", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97232-2796", + "country": "United States", + "longitude": -122.64393, + "latitude": 45.52893, + "phone": "9712549114", + "website_url": "http://www.culminationbrewing.com", + "state": "Oregon", + "street": "2117 NE Oregon St Ste 600" + }, + { + "id": "425d365e-db70-46c4-be09-d000727eb003", + "name": "Cult Classic Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Stevensville", + "state_province": "Maryland", + "postal_code": "21666-4051", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4432236480", + "website_url": "http://www.cultclassicbrewing.com", + "state": "Maryland", + "street": null + }, + { + "id": "0c58d384-889a-4706-a7bd-51522207eb5d", + "name": "Culture Brewing Co", + "brewery_type": "micro", + "address_1": "629 S Coast Hwy 101", + "address_2": null, + "address_3": null, + "city": "Encinitas", + "state_province": "California", + "postal_code": "92024", + "country": "United States", + "longitude": -117.2934305, + "latitude": 33.04448784, + "phone": "3105040082", + "website_url": "http://www.culturebrewingco.com", + "state": "California", + "street": "629 S Coast Hwy 101" + }, + { + "id": "d2ef5819-6b47-4bfc-9df9-0acf1ab4151a", + "name": "Culture Brewing Co", + "brewery_type": "micro", + "address_1": "327 Manhattan Beach Blvd", + "address_2": null, + "address_3": null, + "city": "Manhattan Beach", + "state_province": "California", + "postal_code": "90266", + "country": "United States", + "longitude": -118.4090881, + "latitude": 33.88569802, + "phone": "3105040082", + "website_url": "http://www.culturebrewingco.com", + "state": "California", + "street": "327 Manhattan Beach Blvd" + }, + { + "id": "dcbcdb37-cd5e-4775-a861-da963f72bcd5", + "name": "Culture Brewing Co", + "brewery_type": "micro", + "address_1": "111 S Cedros Ave Ste 200", + "address_2": null, + "address_3": null, + "city": "Solana Beach", + "state_province": "California", + "postal_code": "92075-2906", + "country": "United States", + "longitude": -117.2706515, + "latitude": 32.99180086, + "phone": "8583451144", + "website_url": "http://www.culturebrewingco.com", + "state": "California", + "street": "111 S Cedros Ave Ste 200" + }, + { + "id": "28872ed7-5cb0-4a4d-9efc-eec26f7033b9", + "name": "Culver Beer Company", + "brewery_type": "micro", + "address_1": "2719 Loker Ave W Ste D", + "address_2": null, + "address_3": null, + "city": "Carlsbad", + "state_province": "California", + "postal_code": "92010-6679", + "country": "United States", + "longitude": -117.258331, + "latitude": 33.13307453, + "phone": "7608142355", + "website_url": "http://www.culverbeer.com", + "state": "California", + "street": "2719 Loker Ave W Ste D" + }, + { + "id": "5fd712d7-706d-4dd0-b471-88232373121c", + "name": "Cumberland Brewery", + "brewery_type": "brewpub", + "address_1": "1576 Bardstown Rd", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40205-1154", + "country": "United States", + "longitude": -85.70553172, + "latitude": 38.23084195, + "phone": "5024594706", + "website_url": null, + "state": "Kentucky", + "street": "1576 Bardstown Rd" + }, + { + "id": "d418185e-3746-4aa3-83f3-c93a3278f8b3", + "name": "Currahee Brewing Company", + "brewery_type": "micro", + "address_1": "100 Lakeside Dr", + "address_2": null, + "address_3": null, + "city": "Franklin", + "state_province": "North Carolina", + "postal_code": "28734-9706", + "country": "United States", + "longitude": -83.37194784, + "latitude": 35.18754718, + "phone": "8286340078", + "website_url": "http://www.curraheebrew.com", + "state": "North Carolina", + "street": "100 Lakeside Dr" + }, + { + "id": "35d4bdfd-bad4-4438-b690-d49cc685d774", + "name": "Currahee Brewing Company", + "brewery_type": "micro", + "address_1": "25 S Main St", + "address_2": null, + "address_3": null, + "city": "Alpharetta", + "state_province": "Georgia", + "postal_code": "30009", + "country": "United States", + "longitude": -84.2967826, + "latitude": 34.0711104, + "phone": null, + "website_url": null, + "state": "Georgia", + "street": "25 S Main St" + }, + { + "id": "31faee5a-2a58-4708-9c78-7cda5832207c", + "name": "Curran Brewing Co", + "brewery_type": "micro", + "address_1": "6230 Bloomington Rd", + "address_2": null, + "address_3": null, + "city": "Moscow", + "state_province": "Pennsylvania", + "postal_code": "18444-6634", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5707959490", + "website_url": "http://www.curranbrewing.com", + "state": "Pennsylvania", + "street": "6230 Bloomington Rd" + }, + { + "id": "8d28a416-b855-4299-9428-f91817f8e874", + "name": "Cushnoc Brewing Company", + "brewery_type": "brewpub", + "address_1": "243 Water St", + "address_2": null, + "address_3": null, + "city": "Augusta", + "state_province": "Maine", + "postal_code": "04330-4615", + "country": "United States", + "longitude": -69.77344232, + "latitude": 44.31664349, + "phone": "2072136332", + "website_url": "http://www.cushnocbrewing.com", + "state": "Maine", + "street": "243 Water St" + }, + { + "id": "f9be35ca-e823-4321-b7be-837ac5c152a3", + "name": "Cushwa Brewing Co", + "brewery_type": "micro", + "address_1": "10212 Governor Lane Blvd Ste 1012", + "address_2": null, + "address_3": null, + "city": "Williamsport", + "state_province": "Maryland", + "postal_code": "21795", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.cushwabrewing.com", + "state": "Maryland", + "street": "10212 Governor Lane Blvd Ste 1012" + }, + { + "id": "35a38bfb-a121-4fd6-bbcb-05329a9c4d3d", + "name": "Cut Bank Creek Brewery", + "brewery_type": "micro", + "address_1": "315 E Railroad St", + "address_2": null, + "address_3": null, + "city": "Cut Bank", + "state_province": "Montana", + "postal_code": "59427-3021", + "country": "United States", + "longitude": -112.3270765, + "latitude": 48.63443064, + "phone": "4062290298", + "website_url": "http://www.cutbankcreekbrewery.com", + "state": "Montana", + "street": "315 E Railroad St" + }, + { + "id": "bd226b9c-1b32-4c16-a6b8-499c82f1f375", + "name": "Cuyuna Brewing Company", + "brewery_type": "micro", + "address_1": "1 E Main St", + "address_2": null, + "address_3": null, + "city": "Crosby", + "state_province": "Minnesota", + "postal_code": "56441-1613", + "country": "United States", + "longitude": -93.950606, + "latitude": 46.482495, + "phone": "2188660914", + "website_url": "http://cuyunabrewing.com", + "state": "Minnesota", + "street": "1 E Main St" + }, + { + "id": "378ffef4-9cee-40e2-b61e-d08262e6ac49", + "name": "Cycle Brewing", + "brewery_type": "micro", + "address_1": "534 Central Ave", + "address_2": null, + "address_3": null, + "city": "St Petersburg", + "state_province": "Florida", + "postal_code": "33701-3704", + "country": "United States", + "longitude": -82.6409282, + "latitude": 27.7709069, + "phone": "7273207954", + "website_url": "http://www.cyclebrewing.com", + "state": "Florida", + "street": "534 Central Ave" + }, + { + "id": "6b7fe7b8-047b-4f6e-96b3-1ae1efa5ae73", + "name": "Cycle Brewing Production and Warehouse", + "brewery_type": "micro", + "address_1": "2135 5th Ave S", + "address_2": null, + "address_3": null, + "city": "Saint Petersburg", + "state_province": "Florida", + "postal_code": "33712-1304", + "country": "United States", + "longitude": -82.66222158, + "latitude": 27.76663544, + "phone": null, + "website_url": null, + "state": "Florida", + "street": "2135 5th Ave S" + }, + { + "id": "7fc36c9a-6806-40c8-9e3a-b6586c1e32c8", + "name": "Cycler's Brewing", + "brewery_type": "micro", + "address_1": "17105 Osborn Rd", + "address_2": null, + "address_3": null, + "city": "Montgomery", + "state_province": "Texas", + "postal_code": "77356", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7135692485", + "website_url": "http://www.cyclersbrewing.com", + "state": "Texas", + "street": "17105 Osborn Rd" + }, + { + "id": "19f5dd52-2120-49b5-8d2a-0d89bc617f93", + "name": "Cynosure Brewing", + "brewery_type": "micro", + "address_1": "144 E Potter Dr Unit E", + "address_2": null, + "address_3": null, + "city": "Anchorage", + "state_province": "Alaska", + "postal_code": "99518-1363", + "country": "United States", + "longitude": -149.881789, + "latitude": 61.168841, + "phone": "9075632966", + "website_url": "https://www.cynosure.beer", + "state": "Alaska", + "street": "144 E Potter Dr Unit E" + }, + { + "id": "6c4d6ae2-dc6d-4e00-95e0-7b89a2b07e4e", + "name": "Cypher Brewing Co.", + "brewery_type": "micro", + "address_1": "35 Hinder Street", + "address_2": "Unit 3", + "address_3": null, + "city": "Gungahlin", + "state_province": "ACT", + "postal_code": "2912", + "country": "Australia", + "longitude": 149.1376555, + "latitude": -35.1861056, + "phone": "+61 423 244 404", + "website_url": "http://www.cypherbrewing.com.au/", + "state": "ACT", + "street": "35 Hinder Street" + }, + { + "id": "4b031da7-db66-4d57-995d-cb1473236ba3", + "name": "Cypress and Grove Brewing Company", + "brewery_type": "micro", + "address_1": "1001 NW 4th Street", + "address_2": null, + "address_3": null, + "city": "Gainesville", + "state_province": "Florida", + "postal_code": "32601-4256", + "country": "United States", + "longitude": -82.328751, + "latitude": 29.661257, + "phone": "6419900950", + "website_url": "http://www.cypressandgrove.com", + "state": "Florida", + "street": "1001 NW 4th Street" + }, + { + "id": "93f912a8-83ce-4c31-a953-bd4c2b093f9a", + "name": "Cypress Brewing Company", + "brewery_type": "micro", + "address_1": "30 Nixon Ln Unit E", + "address_2": null, + "address_3": null, + "city": "Edison", + "state_province": "New Jersey", + "postal_code": "08837-3844", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7322439565", + "website_url": "http://www.cypressbrewing.com", + "state": "New Jersey", + "street": "30 Nixon Ln Unit E" + }, + { + "id": "34b894d8-4439-4e1d-ad43-8764f5630483", + "name": "Cypress Creek Southern Ales", + "brewery_type": "micro", + "address_1": "200 E Carnegie St", + "address_2": null, + "address_3": null, + "city": "Winnsboro", + "state_province": "Texas", + "postal_code": "75494-3206", + "country": "United States", + "longitude": -95.288727, + "latitude": 32.955986, + "phone": "2088414159", + "website_url": "http://www.cypresscreeksouthernales.com", + "state": "Texas", + "street": "200 E Carnegie St" + }, + { + "id": "4ab58ce4-055e-47bc-9e86-49af2f0f8c84", + "name": "Czann's Brewing", + "brewery_type": "micro", + "address_1": "505 Lea Ave", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37203-4499", + "country": "United States", + "longitude": -86.77422743, + "latitude": 36.1533486, + "phone": "6154033517", + "website_url": "http://czanns.com", + "state": "Tennessee", + "street": "505 Lea Ave" + }, + { + "id": "b5e8e408-be62-4fbb-9798-7f6473f7bdbd", + "name": "Cześć Brat!", + "brewery_type": "micro", + "address_1": "Polna 38", + "address_2": null, + "address_3": null, + "city": "Jelcz-Laskowice", + "state_province": "dolnośląskie", + "postal_code": "55-220", + "country": "Poland", + "longitude": 17.3502609, + "latitude": 51.0389077, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Polna 38" + }, + { + "id": "a7a2afd9-f3c5-4343-a6d7-828a1656e33a", + "name": "Czig Meister Brewing Co.", + "brewery_type": "micro", + "address_1": "106 Valentine St", + "address_2": null, + "address_3": null, + "city": "Hackettstown", + "state_province": "New Jersey", + "postal_code": "07840-2156", + "country": "United States", + "longitude": -74.83148308, + "latitude": 40.8543396, + "phone": "2018747342", + "website_url": "http://www.CzigMeisterBrewing.com", + "state": "New Jersey", + "street": "106 Valentine St" + }, + { + "id": "a87c4a6f-2633-4c4d-af52-09b8b7ee3425", + "name": "D and G Brewing", + "brewery_type": "micro", + "address_1": "303 N 4th St Suite A", + "address_2": null, + "address_3": null, + "city": "Saint Charles", + "state_province": "Illinois", + "postal_code": "60174-4591", + "country": "United States", + "longitude": -88.3189398069, + "latitude": 41.91614479378, + "phone": "7732032325", + "website_url": "https://dandgbrewing.com", + "state": "Illinois", + "street": "303 N 4th St Suite A" + }, + { + "id": "ed77e7da-44ac-45b2-bb8c-10285691a58f", + "name": "D. G. Yuengling and Son Inc", + "brewery_type": "regional", + "address_1": "500 Mahantongo St", + "address_2": null, + "address_3": null, + "city": "Pottsville", + "state_province": "Pennsylvania", + "postal_code": "17901", + "country": "United States", + "longitude": -76.198585, + "latitude": 40.682674, + "phone": "5706224141", + "website_url": "http://www.yuengling.com", + "state": "Pennsylvania", + "street": "500 Mahantongo St" + }, + { + "id": "9cb69d16-aaf2-4692-b06f-877f2d69ec8c", + "name": "D. G. Yuengling and Son Inc", + "brewery_type": "regional", + "address_1": "310 Mill Creek Ave", + "address_2": null, + "address_3": null, + "city": "Pottsville", + "state_province": "Pennsylvania", + "postal_code": "17901-8692", + "country": "United States", + "longitude": -76.1832368, + "latitude": 40.6982044, + "phone": "2156319461", + "website_url": "http://www.yuengling.com", + "state": "Pennsylvania", + "street": "310 Mill Creek Ave" + }, + { + "id": "285cd494-30a4-4dd7-8034-5c0c648cde0a", + "name": "D. G. Yuengling and Son Inc", + "brewery_type": "regional", + "address_1": "11111 N 30th St", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33612-6439", + "country": "United States", + "longitude": -82.42608918, + "latitude": 28.04767978, + "phone": "8139728552", + "website_url": "http://www.yuengling.com", + "state": "Florida", + "street": "11111 N 30th St" + }, + { + "id": "5036c9a3-e210-4fa0-8a95-0a9bb054bcc0", + "name": "D. MANATEE HOLDINGS, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "Florida", + "postal_code": "33131-1210", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.tiliaventure.com", + "state": "Florida", + "street": null + }, + { + "id": "fd475f2e-1e9e-4cd4-a9eb-e78f995a9300", + "name": "D.C. Oakes Brewhouse and Eatery", + "brewery_type": "brewpub", + "address_1": "3581 E Harmony Suite 110", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80528", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3034061757", + "website_url": "http://www.dcoakesbrewhouse.com", + "state": "Colorado", + "street": "3581 E Harmony Suite 110" + }, + { + "id": "8167d47e-1fb4-44b8-b3db-6e33bee6a966", + "name": "D.L. Geary Brewing Co Inc.", + "brewery_type": "micro", + "address_1": "38 Evergreen Dr", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04103-1066", + "country": "United States", + "longitude": -70.31484813, + "latitude": 43.70767416, + "phone": "2078782337", + "website_url": "http://www.gearybrewing.com", + "state": "Maine", + "street": "38 Evergreen Dr" + }, + { + "id": "49f7e647-2035-4e16-a37e-6aa327acaa7f", + "name": "D9 Brewing Company", + "brewery_type": "micro", + "address_1": "11138 Treynorth Dr Ste C", + "address_2": null, + "address_3": null, + "city": "Cornelius", + "state_province": "North Carolina", + "postal_code": "28031-8186", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7044579368", + "website_url": "http://www.d9brewing.com", + "state": "North Carolina", + "street": "11138 Treynorth Dr Ste C" + }, + { + "id": "6b46a5ee-d6a2-4b9c-ac32-f6a9e6e42c9a", + "name": "Dad & Dave’s Brewing", + "brewery_type": "micro", + "address_1": "45 Mitchell Road", + "address_2": null, + "address_3": null, + "city": "Brookvale", + "state_province": "NSW", + "postal_code": "2100", + "country": "Australia", + "longitude": 151.2743232, + "latitude": -33.7660591, + "phone": "+61 452 661 839", + "website_url": "http://www.dadndavesbrewing.com/", + "state": "NSW", + "street": "45 Mitchell Road" + }, + { + "id": "1e0f99d5-0a6b-498a-beca-2d2c21b4bdd9", + "name": "Dad & Dudes Breweria", + "brewery_type": "brewpub", + "address_1": "6730 S Cornerstar Way Ste D", + "address_2": null, + "address_3": null, + "city": "Aurora", + "state_province": "Colorado", + "postal_code": "80016-1571", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3034005699", + "website_url": "http://breweria.com", + "state": "Colorado", + "street": "6730 S Cornerstar Way Ste D" + }, + { + "id": "55deb669-5df9-4850-8639-166a87b59949", + "name": "Daft Badger Brewing", + "brewery_type": "brewpub", + "address_1": "1710 N 2nd St", + "address_2": null, + "address_3": null, + "city": "Coeur D Alene", + "state_province": "Idaho", + "postal_code": "83814-3403", + "country": "United States", + "longitude": -116.783116, + "latitude": 47.692323, + "phone": "2086659892", + "website_url": "https://www.facebook.com/daftbadgerbrewing", + "state": "Idaho", + "street": "1710 N 2nd St" + }, + { + "id": "901cb5e0-ac27-411f-a530-76d7322e2674", + "name": "Dainton Beer", + "brewery_type": "micro", + "address_1": "560 Frankston - Dandenong Road", + "address_2": null, + "address_3": null, + "city": "Carrum Downs", + "state_province": "VIC", + "postal_code": "3201", + "country": "Australia", + "longitude": 145.1704142, + "latitude": -38.1014115, + "phone": "+61 488 330 292", + "website_url": "https://www.dainton.beer/", + "state": "VIC", + "street": "560 Frankston - Dandenong Road" + }, + { + "id": "30b94075-ba6b-4e1f-9f35-519f7490af97", + "name": "Dakota Point Brewing LLC", + "brewery_type": "micro", + "address_1": "405 Canal St Ste 1200", + "address_2": null, + "address_3": null, + "city": "Rapid City", + "state_province": "South Dakota", + "postal_code": "57701-2577", + "country": "United States", + "longitude": -103.2437026, + "latitude": 44.0830123, + "phone": "6057912739", + "website_url": "http://www.dakotapointbrewing.com", + "state": "South Dakota", + "street": "405 Canal St Ste 1200" + }, + { + "id": "56b77af4-f236-477b-8e5d-0d01a88bce58", + "name": "Dakota Shivers Brewing", + "brewery_type": "micro", + "address_1": "717 W Main St", + "address_2": null, + "address_3": null, + "city": "Lead", + "state_province": "South Dakota", + "postal_code": "57754-1539", + "country": "United States", + "longitude": -103.7721626, + "latitude": 44.35111622, + "phone": "6054155352", + "website_url": "http://www.dakotashiversbrewing.com", + "state": "South Dakota", + "street": "717 W Main St" + }, + { + "id": "b2648189-33cc-4205-ad69-87d9f1e5abe1", + "name": "Dakota Territory Brewing", + "brewery_type": "closed", + "address_1": "224 S Main St", + "address_2": null, + "address_3": null, + "city": "Aberdeen", + "state_province": "South Dakota", + "postal_code": "57401-4138", + "country": "United States", + "longitude": -98.48853502, + "latitude": 45.46249262, + "phone": "6052166650", + "website_url": "http://www.facebook.com/DakotaTerritoryBrewing", + "state": "South Dakota", + "street": "224 S Main St" + }, + { + "id": "85b56270-6c8c-41dd-9499-a6b5abc62160", + "name": "Dalton Union Winery & Brewery", + "brewery_type": "micro", + "address_1": "2110 Shirk Rd", + "address_2": null, + "address_3": null, + "city": "Marysville", + "state_province": "Ohio", + "postal_code": "43040", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9373193667", + "website_url": "http://www.daltonunion.com", + "state": "Ohio", + "street": "2110 Shirk Rd" + }, + { + "id": "ad4d68e3-5b1d-4255-aa5d-a7a90685bba7", + "name": "DAMARKOM, INC.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Seaside", + "state_province": "Oregon", + "postal_code": "97138-5803", + "country": "United States", + "longitude": -123.915501, + "latitude": 46.00331776, + "phone": null, + "website_url": null, + "state": "Oregon", + "street": null + }, + { + "id": "042e48a4-d4c8-4d67-847b-46dfcec72dd5", + "name": "Damascus Brewery", + "brewery_type": "micro", + "address_1": "32173 Government Rd", + "address_2": null, + "address_3": null, + "city": "Damascus", + "state_province": "Virginia", + "postal_code": "24236-", + "country": "United States", + "longitude": -81.80251841, + "latitude": 36.63973356, + "phone": "2764691069", + "website_url": "http://www.thedamascusbrewery.com", + "state": "Virginia", + "street": "32173 Government Rd" + }, + { + "id": "763d83ba-226c-477f-bc3c-da3a63280115", + "name": "Damgoode Pies", + "brewery_type": "brewpub", + "address_1": "500 President Clinton Ave", + "address_2": null, + "address_3": null, + "city": "Little Rock", + "state_province": "Arkansas", + "postal_code": "72201-1756", + "country": "United States", + "longitude": -92.2653101, + "latitude": 34.7475388, + "phone": "5016642239", + "website_url": "http://www.damgoodepies.com", + "state": "Arkansas", + "street": "500 President Clinton Ave" + }, + { + "id": "8e53e0f0-49ad-47a6-a80a-0a5e8c419339", + "name": "Dancing Gnome Beer", + "brewery_type": "micro", + "address_1": "925 Main St", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15215-2301", + "country": "United States", + "longitude": -79.84116859, + "latitude": 40.39862051, + "phone": "4124082083", + "website_url": "http://www.dancinggnomebeer.com", + "state": "Pennsylvania", + "street": "925 Main St" + }, + { + "id": "f2966753-8d96-4939-bf1a-7802016e9d56", + "name": "Dangerous Man Brewing Co", + "brewery_type": "micro", + "address_1": "1300 2nd St NE", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55413-1132", + "country": "United States", + "longitude": -93.26664, + "latitude": 45.046388, + "phone": "6122364087", + "website_url": "http://www.dangerousmanbrewing.com", + "state": "Minnesota", + "street": "1300 2nd St NE" + }, + { + "id": "96602876-0631-4e93-ae60-25bfaac0a6ae", + "name": "Dangerous Minds Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Pompano Beach", + "state_province": "Florida", + "postal_code": "33062", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9549181698", + "website_url": "https://dangerousmindsbrewing.com/", + "state": "Florida", + "street": null + }, + { + "id": "5d604aea-8602-4e77-98a3-f7d7c7650575", + "name": "Danielmark's Brewing Company", + "brewery_type": "micro", + "address_1": "209 E 18th St", + "address_2": null, + "address_3": null, + "city": "Cheyenne", + "state_province": "Wyoming", + "postal_code": "82001-4507", + "country": "United States", + "longitude": -104.8139377, + "latitude": 41.13534815, + "phone": "4024508044", + "website_url": "https://www.facebook.com/danielmarksbrewing", + "state": "Wyoming", + "street": "209 E 18th St" + }, + { + "id": "5fac14bb-dfe3-4d40-b056-d8d4353b80a9", + "name": "DankHouse Brewing Company", + "brewery_type": "micro", + "address_1": "161 Forry St", + "address_2": null, + "address_3": null, + "city": "Newark", + "state_province": "Ohio", + "postal_code": "43055-3760", + "country": "United States", + "longitude": -82.41720528, + "latitude": 40.0442341, + "phone": null, + "website_url": "http://www.dankhousebrewing.com", + "state": "Ohio", + "street": "161 Forry St" + }, + { + "id": "67935791-24ca-4793-ad6f-5755a7189645", + "name": "Danny Boy Beer Works", + "brewery_type": "brewpub", + "address_1": "12702 Meeting House Rd", + "address_2": null, + "address_3": null, + "city": "Carmel", + "state_province": "Indiana", + "postal_code": "46032-7292", + "country": "United States", + "longitude": -86.1971767, + "latitude": 39.971556, + "phone": "3176698080", + "website_url": "http://www.dannyboybeerworks.com", + "state": "Indiana", + "street": "12702 Meeting House Rd" + }, + { + "id": "7f63c398-c085-4201-8d68-41f2daad913f", + "name": "Danville Brewing Company", + "brewery_type": "brewpub", + "address_1": "200 Railroad Ave Ste A", + "address_2": null, + "address_3": null, + "city": "Danville", + "state_province": "California", + "postal_code": "94526-3855", + "country": "United States", + "longitude": -122.0001333, + "latitude": 37.82112378, + "phone": null, + "website_url": null, + "state": "California", + "street": "200 Railroad Ave Ste A" + }, + { + "id": "bc1c658f-3780-4a49-b62a-ba9da764cf15", + "name": "Daredevil Brewing Company", + "brewery_type": "micro", + "address_1": "1151 Main St", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46224-6976", + "country": "United States", + "longitude": -86.64727, + "latitude": 39.844367, + "phone": null, + "website_url": "http://www.daredevilbeer.com", + "state": "Indiana", + "street": "1151 Main St" + }, + { + "id": "e819c7a4-d8a6-4999-b99f-1e7f45b46d71", + "name": "Dark City Brewing Company", + "brewery_type": "micro", + "address_1": "801 Second Ave", + "address_2": null, + "address_3": null, + "city": "Asbury Park", + "state_province": "New Jersey", + "postal_code": "07712-", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7324553792", + "website_url": "http://www.darkcitybrewing.com", + "state": "New Jersey", + "street": "801 Second Ave" + }, + { + "id": "70dbd577-56bb-4480-b51c-6f33123147d3", + "name": "Dark Horse Brewing Co", + "brewery_type": "micro", + "address_1": "511 S Kalamazoo Ave", + "address_2": null, + "address_3": null, + "city": "Marshall", + "state_province": "Michigan", + "postal_code": "49068-1718", + "country": "United States", + "longitude": -84.96397652, + "latitude": 42.26638824, + "phone": "2697819940", + "website_url": "http://www.darkhorsebrewery.com", + "state": "Michigan", + "street": "511 S Kalamazoo Ave" + }, + { + "id": "9011ccfc-f054-47f3-9cdd-b52191746738", + "name": "Dark Nebula Brewing Co", + "brewery_type": "planning", + "address_1": "612 Tenney Mountain Highway", + "address_2": null, + "address_3": null, + "city": "Plymouth", + "state_province": "New Hampshire", + "postal_code": "03264", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6033694211", + "website_url": "https://www.darknebulabrewing.com/", + "state": "New Hampshire", + "street": "612 Tenney Mountain Highway" + }, + { + "id": "eca31bef-2859-48a2-b933-bb9908a600f5", + "name": "Dark Sea Cinema And Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94609-1804", + "country": "United States", + "longitude": -122.2713563, + "latitude": 37.8044557, + "phone": null, + "website_url": "http://microcinemabrewery.com", + "state": "California", + "street": null + }, + { + "id": "f9d22f56-1b7d-4483-afe6-66526c954861", + "name": "Dark Sky Brewing Co.", + "brewery_type": "micro", + "address_1": "117 N Beaver St Ste A", + "address_2": null, + "address_3": null, + "city": "Flagstaff", + "state_province": "Arizona", + "postal_code": "86001-5677", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9282354525", + "website_url": "http://www.darkskybrewing.com", + "state": "Arizona", + "street": "117 N Beaver St Ste A" + }, + { + "id": "bb8e4f8e-3197-4ce7-9ee5-41f3f8f2c192", + "name": "Dark Star Brewing Co Ltd", + "brewery_type": "taproom", + "address_1": "Star Road", + "address_2": null, + "address_3": null, + "city": "Horsham", + "state_province": "West Sussex", + "postal_code": "RH13 8RA", + "country": "England", + "longitude": -0.304978, + "latitude": 50.957145, + "phone": "1403713085", + "website_url": "https://www.darkstarbrewing.co.uk/", + "state": "West Sussex", + "street": "Star Road" + }, + { + "id": "227fad1b-8030-4628-b62c-e82e544d7783", + "name": "Darkness Brewing", + "brewery_type": "micro", + "address_1": "224 Fairfield Ave", + "address_2": null, + "address_3": null, + "city": "Bellevue", + "state_province": "Kentucky", + "postal_code": "41073-1041", + "country": "United States", + "longitude": -84.48468072, + "latitude": 39.10500991, + "phone": null, + "website_url": null, + "state": "Kentucky", + "street": "224 Fairfield Ave" + }, + { + "id": "80e73c47-eb4c-43ef-ac47-e23e00c3fbc6", + "name": "Darling Brew", + "brewery_type": "brewpub", + "address_1": "48 Caledon Street", + "address_2": null, + "address_3": null, + "city": "Darling", + "state_province": "Western Cape", + "postal_code": "7345", + "country": "South Africa", + "longitude": 18.3804, + "latitude": -33.3797, + "phone": "+27 21 286 1099", + "website_url": "https://darlingbrew.co.za/", + "state": "Western Cape", + "street": "48 Caledon Street" + }, + { + "id": "57e52f8c-6b7f-4a55-83f1-203e2faa7f60", + "name": "Darwin Brewing Co", + "brewery_type": "micro", + "address_1": "803 17th Ave W", + "address_2": null, + "address_3": null, + "city": "Bradenton", + "state_province": "Florida", + "postal_code": "34205-7608", + "country": "United States", + "longitude": -82.57040458, + "latitude": 27.48432988, + "phone": "9417471970", + "website_url": "http://www.darwinbrewingco.com", + "state": "Florida", + "street": "803 17th Ave W" + }, + { + "id": "fd74cc7b-1172-4664-9166-e9a7788d84c2", + "name": "Daugherty Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Erie", + "state_province": "Pennsylvania", + "postal_code": "16510-3680", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.daughertybrewingcompany.com", + "state": "Pennsylvania", + "street": null + }, + { + "id": "77fbe71c-77bd-4ace-99d6-e519f1f84f03", + "name": "Dauntless Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Farmers Branch", + "state_province": "Texas", + "postal_code": "75234-2334", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9035213472", + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "ef1cf3fb-430d-4334-a7db-69ea18ecead9", + "name": "Dave's Brew Farm", + "brewery_type": "closed", + "address_1": "2470 Wilson St", + "address_2": null, + "address_3": null, + "city": "Wilson", + "state_province": "Wisconsin", + "postal_code": "54027-3950", + "country": "United States", + "longitude": -92.176188, + "latitude": 44.959339, + "phone": "6124328130", + "website_url": "http://www.brewfarm.com", + "state": "Wisconsin", + "street": "2470 Wilson St" + }, + { + "id": "0487123b-a36d-410a-8154-8e6f6b5f9bb0", + "name": "Davidson Brothers Restaurant and Brewery", + "brewery_type": "brewpub", + "address_1": "184 Glen St Rte 9", + "address_2": null, + "address_3": null, + "city": "Glens Falls", + "state_province": "New York", + "postal_code": "12801-0409", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5187439026", + "website_url": "http://www.davidsonbrothers.com", + "state": "New York", + "street": "184 Glen St Rte 9" + }, + { + "id": "cd47e129-f9a4-4744-9f43-de3638550dbe", + "name": "Day Block Brewing Company", + "brewery_type": "brewpub", + "address_1": "1105 Washington Ave S", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55415-1225", + "country": "United States", + "longitude": -93.253074, + "latitude": 44.9751757, + "phone": "6126177793", + "website_url": "http://Dayblockbrewing.com", + "state": "Minnesota", + "street": "1105 Washington Ave S" + }, + { + "id": "5abd655a-b5ac-4a21-b014-1f88ffae1641", + "name": "Daydreaming Brewing Company", + "brewery_type": "micro", + "address_1": "1 1/2 E Broadway", + "address_2": null, + "address_3": null, + "city": "Derry", + "state_province": "New Hampshire", + "postal_code": "03038", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6039653454", + "website_url": null, + "state": "New Hampshire", + "street": "1 1/2 E Broadway" + }, + { + "id": "94cd9d0e-312e-4f41-8162-50179ef32e8a", + "name": "Dayton Beer Co Production Brewery & Bierhall", + "brewery_type": "micro", + "address_1": "41 Madison St", + "address_2": null, + "address_3": null, + "city": "Dayton", + "state_province": "Ohio", + "postal_code": "45402-2105", + "country": "United States", + "longitude": -84.18528868, + "latitude": 39.76226676, + "phone": "9372282337", + "website_url": "http://www.thedaytonbeerco.com", + "state": "Ohio", + "street": "41 Madison St" + }, + { + "id": "4fe3ec65-0606-43e6-9eeb-33151ac9ce76", + "name": "Daytona Beach Brewing Company", + "brewery_type": "micro", + "address_1": "482 Fentress Blvd Ste N", + "address_2": null, + "address_3": null, + "city": "Daytona Beach", + "state_province": "Florida", + "postal_code": "32114-1298", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3866792337", + "website_url": "http://www.daytonabeachbrewingcompany.com", + "state": "Florida", + "street": "482 Fentress Blvd Ste N" + }, + { + "id": "1cd1dfd7-851b-4912-9bfe-2828dddc6540", + "name": "DC Brau Brewing Company", + "brewery_type": "regional", + "address_1": "3178 Bladensburg Rd NE Ste B", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "District of Columbia", + "postal_code": "20018-2214", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2026218890", + "website_url": "http://www.dcbrau.com", + "state": "District of Columbia", + "street": "3178 Bladensburg Rd NE Ste B" + }, + { + "id": "59f9f6fc-ea91-4fb3-9445-2f21156b1e6d", + "name": "De Bine Brewing Company", + "brewery_type": "micro", + "address_1": "993 Florida Ave", + "address_2": null, + "address_3": null, + "city": "Palm Harbor", + "state_province": "Florida", + "postal_code": "34683-4224", + "country": "United States", + "longitude": -82.76761678, + "latitude": 28.07847685, + "phone": "7272337964", + "website_url": "http://www.debinebrewingco.com", + "state": "Florida", + "street": "993 Florida Ave" + }, + { + "id": "d563d869-5b6e-4da1-acf8-479d5d39dd6d", + "name": "De Garde Brewing", + "brewery_type": "micro", + "address_1": "114 Ivy Ave", + "address_2": null, + "address_3": null, + "city": "Tillamook", + "state_province": "Oregon", + "postal_code": "97141-2214", + "country": "United States", + "longitude": -123.8454035, + "latitude": 45.45730575, + "phone": "5038151635", + "website_url": "http://www.degardebrewing.com/", + "state": "Oregon", + "street": "114 Ivy Ave" + }, + { + "id": "82d6623d-c9e3-4d5f-a2ae-82d175bf00e6", + "name": "De La Vega’s Pecan Grill and Brewery", + "brewery_type": "contract", + "address_1": "500 S Telshor Blvd", + "address_2": null, + "address_3": null, + "city": "Las Cruces", + "state_province": "New Mexico", + "postal_code": "88011-4613", + "country": "United States", + "longitude": -106.7374222, + "latitude": 32.3019659, + "phone": "5755211099", + "website_url": "http://www.pecangrill.com", + "state": "New Mexico", + "street": "500 S Telshor Blvd" + }, + { + "id": "620a0c65-51c4-4be2-be16-025a3f102fbc", + "name": "Dead Armadillo Brewery", + "brewery_type": "micro", + "address_1": "1004 E 4th St", + "address_2": null, + "address_3": null, + "city": "Tulsa", + "state_province": "Oklahoma", + "postal_code": "74120-3222", + "country": "United States", + "longitude": -95.97958641, + "latitude": 36.15561908, + "phone": "9189499233", + "website_url": "http://www.dabrewery.com", + "state": "Oklahoma", + "street": "1004 E 4th St" + }, + { + "id": "629f9712-6143-43a5-a29c-bf2a8396ea1d", + "name": "Dead Bear Brewing Co", + "brewery_type": "brewpub", + "address_1": "2552 S I 75 Business Loop", + "address_2": null, + "address_3": null, + "city": "Grayling", + "state_province": "Michigan", + "postal_code": "49738-2010", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9897456289", + "website_url": null, + "state": "Michigan", + "street": "2552 S I 75 Business Loop" + }, + { + "id": "5f82df6e-52a9-4143-8ea5-93294d43d645", + "name": "Dead Bird Brewing Company", + "brewery_type": "micro", + "address_1": "1726 N 5th St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53212", + "country": "United States", + "longitude": -87.91702858859, + "latitude": 43.05338836859, + "phone": null, + "website_url": "http://www.deadbirdbrewing.com", + "state": "Wisconsin", + "street": "1726 N 5th St" + }, + { + "id": "e34b5399-e300-423a-8c2e-34f1091878b1", + "name": "Dead Centre Brewing", + "brewery_type": "brewpub", + "address_1": "Custume Pier Appartments", + "address_2": null, + "address_3": null, + "city": "Athlone", + "state_province": "Westmeath", + "postal_code": "N37 N1F2", + "country": "Ireland", + "longitude": -7.9428529, + "latitude": 53.4236546, + "phone": "353906420883", + "website_url": "http://deadcentrebrewing.com/", + "state": "Westmeath", + "street": "Custume Pier Appartments" + }, + { + "id": "8fbdcf95-99f8-4543-ad86-4e9ef3dd2819", + "name": "Dead Eric Brewing Co. LLC", + "brewery_type": "micro", + "address_1": "433 Old House Rd", + "address_2": null, + "address_3": null, + "city": "Ridgeland", + "state_province": "South Carolina", + "postal_code": "29936-6946", + "country": "United States", + "longitude": -83.042921, + "latitude": 34.723368, + "phone": "8433383693", + "website_url": "http://www.deadericbrewing.com", + "state": "South Carolina", + "street": "433 Old House Rd" + }, + { + "id": "1d032e21-1272-4825-b33b-f3f6d4c6ec43", + "name": "Dead Hippie Brewing", + "brewery_type": "micro", + "address_1": "3701 S Santa Fe Dr Unit 7", + "address_2": null, + "address_3": null, + "city": "Sheridan", + "state_province": "Colorado", + "postal_code": "80110-3344", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7204467961", + "website_url": "http://www.deadhippiebrewing.com", + "state": "Colorado", + "street": "3701 S Santa Fe Dr Unit 7" + }, + { + "id": "53b24a8d-eb78-4361-8cf8-c060925d2f73", + "name": "Dead Lizard Brewing Company", + "brewery_type": "micro", + "address_1": "4507 36th St Ste C", + "address_2": null, + "address_3": null, + "city": "Orlando", + "state_province": "Florida", + "postal_code": "32811-6520", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4077108949", + "website_url": "http://www.deadlizardbrewing.com", + "state": "Florida", + "street": "4507 36th St Ste C" + }, + { + "id": "7324090e-aaf4-4a30-8370-e8eb664445d0", + "name": "Dead Low Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45230", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5132909434", + "website_url": "http://www.deadlowbrewing.com", + "state": "Ohio", + "street": null + }, + { + "id": "ccb30821-042d-43fc-a8a1-1ef9f9c6a288", + "name": "Dead Oak Brewing Company", + "brewery_type": "micro", + "address_1": "5925 Entrada Ave", + "address_2": null, + "address_3": null, + "city": "Atascadero", + "state_province": "California", + "postal_code": "93422-4223", + "country": "United States", + "longitude": -120.6687359, + "latitude": 35.4897884, + "phone": "6023327027", + "website_url": "http://www.facebook.com/deadoakbrewing", + "state": "California", + "street": "5925 Entrada Ave" + }, + { + "id": "61101f4b-cd7e-401e-bab1-159dc83df85a", + "name": "Deadbeach Brewery", + "brewery_type": "brewpub", + "address_1": "406 S Durango St", + "address_2": null, + "address_3": null, + "city": "El Paso", + "state_province": "Texas", + "postal_code": "79901-1063", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9158012337", + "website_url": "http://www.deadbeach.com", + "state": "Texas", + "street": "406 S Durango St" + }, + { + "id": "e6e3663e-f931-44f1-ba5b-a9191f3eef41", + "name": "Deadbeat Brewing Co", + "brewery_type": "micro", + "address_1": "14258 W Club Deluxe Rd", + "address_2": null, + "address_3": null, + "city": "Hammond", + "state_province": "Louisiana", + "postal_code": "70403", + "country": "United States", + "longitude": -90.492386, + "latitude": 30.475008, + "phone": "9856620445", + "website_url": "https://deadbeatbrewing.company.site", + "state": "Louisiana", + "street": "14258 W Club Deluxe Rd" + }, + { + "id": "c6c9841a-2199-4cf7-9892-4fcaa46d7fa1", + "name": "Deadly Sins Brewing", + "brewery_type": "micro", + "address_1": "750 Jackson Ave Ste 102", + "address_2": null, + "address_3": null, + "city": "Winter Park", + "state_province": "Florida", + "postal_code": "32789-4673", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4079008726", + "website_url": "http://www.deadlysinsbrewing.com", + "state": "Florida", + "street": "750 Jackson Ave Ste 102" + }, + { + "id": "d2f3c749-faf4-4551-a912-c207ccbc141a", + "name": "Deadwood Brewery / Boston Bowl", + "brewery_type": "brewpub", + "address_1": "820 William T Morrissey Blvd", + "address_2": null, + "address_3": null, + "city": "Boston", + "state_province": "Massachusetts", + "postal_code": "02122-3404", + "country": "United States", + "longitude": -71.04799748, + "latitude": 42.29485605, + "phone": "6177401440", + "website_url": "http://www.deadwoodbrewery.com", + "state": "Massachusetts", + "street": "820 William T Morrissey Blvd" + }, + { + "id": "e18fd074-fb35-422b-85bd-b5ce56b72d2a", + "name": "Dean and Co", + "brewery_type": "micro", + "address_1": "201 Grant St", + "address_2": null, + "address_3": null, + "city": "La Junta", + "state_province": "Colorado", + "postal_code": "81050", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "201 Grant St" + }, + { + "id": "532b0c2e-6f35-448e-8f77-2e4042be5e9b", + "name": "Deanitude Brewing Company, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75225-0734", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2143600004", + "website_url": "http://www.deanitudebrewing.com", + "state": "Texas", + "street": null + }, + { + "id": "6204438f-fe47-448d-9f43-25a19793d874", + "name": "Deans Brothers Brewing Co.", + "brewery_type": "micro", + "address_1": "1006 S Hathaway St", + "address_2": null, + "address_3": null, + "city": "Santa Ana", + "state_province": "California", + "postal_code": "92705-4129", + "country": "United States", + "longitude": -117.853182, + "latitude": 33.7353305, + "phone": "7145422001", + "website_url": "http://www.deansbros.com", + "state": "California", + "street": "1006 S Hathaway St" + }, + { + "id": "1d6ae265-d8dd-4a19-9524-801019b356c6", + "name": "Dearborn Brewing", + "brewery_type": "micro", + "address_1": "21930 Michigan Ave", + "address_2": null, + "address_3": null, + "city": "Dearborn", + "state_province": "Michigan", + "postal_code": "48124-2351", + "country": "United States", + "longitude": -83.2433835, + "latitude": 42.30664415, + "phone": "3139144187", + "website_url": "http://www.dearbornbrewing.com", + "state": "Michigan", + "street": "21930 Michigan Ave" + }, + { + "id": "c3a06a86-327d-43f5-8305-bef7578db4e9", + "name": "Death Avenue", + "brewery_type": "brewpub", + "address_1": "315 10th Ave B/W 28th & 29th St.", + "address_2": null, + "address_3": null, + "city": "New York", + "state_province": "New York", + "postal_code": "10001-1416", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2126958080", + "website_url": "http://www.deathave.com", + "state": "New York", + "street": "315 10th Ave B/W 28th & 29th St." + }, + { + "id": "37534d85-42a3-4ba2-ac1f-96a207b20c80", + "name": "Death Of The Fox", + "brewery_type": "micro", + "address_1": "119 Berkley Rd Ste B", + "address_2": null, + "address_3": null, + "city": "Clarksboro", + "state_province": "New Jersey", + "postal_code": "08020-1161", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.deathofthefoxbrewing.com", + "state": "New Jersey", + "street": "119 Berkley Rd Ste B" + }, + { + "id": "ce7b7506-b385-43ad-96d9-4736c60a8843", + "name": "Death Valley Brewing", + "brewery_type": "micro", + "address_1": "102 Old Spanish Trail Hwy", + "address_2": null, + "address_3": null, + "city": "Tecopa", + "state_province": "California", + "postal_code": "92389", + "country": "United States", + "longitude": -116.2063394, + "latitude": 35.84889235, + "phone": "7608524273", + "website_url": "http://www.deathvalleybrewing.com", + "state": "California", + "street": "102 Old Spanish Trail Hwy" + }, + { + "id": "1aa70549-6274-422c-ac3f-9c2e9df3b210", + "name": "Deb's Brewtopia", + "brewery_type": "micro", + "address_1": "106 Cedar St", + "address_2": null, + "address_3": null, + "city": "Elkader", + "state_province": "Iowa", + "postal_code": "52043", + "country": "United States", + "longitude": -91.40608353, + "latitude": 42.85486681, + "phone": "5632453737", + "website_url": "http://www.debsbrewtopia.com", + "state": "Iowa", + "street": "106 Cedar St" + }, + { + "id": "9e543dda-cb7f-4dc9-a43d-e5c730b02ef0", + "name": "Decadent Ales", + "brewery_type": "micro", + "address_1": "607A E Boston Post Rd", + "address_2": null, + "address_3": null, + "city": "Mamaroneck", + "state_province": "New York", + "postal_code": "10543-", + "country": "United States", + "longitude": -73.72755206, + "latitude": 40.95193675, + "phone": "8005981085", + "website_url": "http://www.decadentales.com", + "state": "New York", + "street": "607A E Boston Post Rd" + }, + { + "id": "cfb26ba4-d716-495e-9ce8-b40d3a0cf9f3", + "name": "Decatur Brew Works", + "brewery_type": "micro", + "address_1": "101 N Main St", + "address_2": null, + "address_3": null, + "city": "Decatur", + "state_province": "Illinois", + "postal_code": "62523-1206", + "country": "United States", + "longitude": -88.95573973, + "latitude": 39.84128742, + "phone": "2173308683", + "website_url": "http://www.decaturbrewworks.com", + "state": "Illinois", + "street": "101 N Main St" + }, + { + "id": "4e286a11-b83b-4b84-9cc7-26165de8cbb7", + "name": "Deception Brewing Company", + "brewery_type": "closed", + "address_1": "1174 SW Highway 99W", + "address_2": null, + "address_3": null, + "city": "Dundee", + "state_province": "Oregon", + "postal_code": "97115", + "country": "United States", + "longitude": -123.0147466, + "latitude": 45.27437643, + "phone": "9718328054", + "website_url": "http://www.deceptionbrewingco.com", + "state": "Oregon", + "street": "1174 SW Highway 99W" + }, + { + "id": "3bdba496-2442-4bef-b18d-08d6f2c525b3", + "name": "Decibel Brewing Co", + "brewery_type": "closed", + "address_1": "18204 Bothell Everett Hwy Ste C", + "address_2": null, + "address_3": null, + "city": "Bothell", + "state_province": "Washington", + "postal_code": "98012-6869", + "country": "United States", + "longitude": -122.210174, + "latitude": 47.833364, + "phone": "4254081946", + "website_url": "http://www.decibelbrewing.com", + "state": "Washington", + "street": "18204 Bothell Everett Hwy Ste C" + }, + { + "id": "f8eb2cdf-8cda-482f-9df5-53e7bdc3d42f", + "name": "Deciduous Brewing Company", + "brewery_type": "micro", + "address_1": "12 Weaver St", + "address_2": null, + "address_3": null, + "city": "Newmarket", + "state_province": "New Hampshire", + "postal_code": "03857-2307", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6032925809", + "website_url": null, + "state": "New Hampshire", + "street": "12 Weaver St" + }, + { + "id": "e2610530-7819-4b89-80e6-86ea6fd7ff44", + "name": "Deck Beer Garden", + "brewery_type": "brewpub", + "address_1": "Av. Aida 63", + "address_2": null, + "address_3": null, + "city": "Estoril", + "state_province": "Lisboa", + "postal_code": "2765-187", + "country": "Portugal", + "longitude": -9.3993510993256, + "latitude": 38.704282297252, + "phone": "+351 21 468 2661", + "website_url": "https://www.facebook.com/deckbeerlab", + "state": "Lisboa", + "street": "Av. Aida 63" + }, + { + "id": "9fbd0b0c-5aa5-417c-a699-85aa4dc90f86", + "name": "Declaration Brewing Company", + "brewery_type": "micro", + "address_1": "2030 S Cherokee St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80223-3917", + "country": "United States", + "longitude": -104.9910056, + "latitude": 39.67973155, + "phone": "3039557410", + "website_url": "http://www.declarationbrewing.com", + "state": "Colorado", + "street": "2030 S Cherokee St" + }, + { + "id": "834fe52a-5b2a-416e-9805-04afa1ab2693", + "name": "Deeds Brewing", + "brewery_type": "micro", + "address_1": "4 Paran Place", + "address_2": null, + "address_3": null, + "city": "Glen Iris", + "state_province": "VIC", + "postal_code": "3146", + "country": "Australia", + "longitude": 145.0576826, + "latitude": -37.8592362, + "phone": "+61 2 0217 3633", + "website_url": "http://www.deedsbrewing.com.au/", + "state": "VIC", + "street": "4 Paran Place" + }, + { + "id": "60e1a83a-3b06-4d02-aef9-7e1ae7e9feec", + "name": "Deep Brewing Company", + "brewery_type": "micro", + "address_1": "2524 Cathay Ct STE 2", + "address_2": null, + "address_3": null, + "city": "Tallahassee", + "state_province": "Florida", + "postal_code": "32308-4248", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8505701478", + "website_url": "http://www.deepbrewing.com", + "state": "Florida", + "street": "2524 Cathay Ct STE 2" + }, + { + "id": "658724f7-f038-4554-80b9-7da1a0a5e9e2", + "name": "Deep Creek Brewing", + "brewery_type": "micro", + "address_1": "52 Wellington Vale Road", + "address_2": null, + "address_3": null, + "city": "Deepwater", + "state_province": "NSW", + "postal_code": "2371", + "country": "Australia", + "longitude": 151.8404349, + "latitude": -29.4444164, + "phone": null, + "website_url": "https://www.deepwaterbrewing.com.au/", + "state": "NSW", + "street": "52 Wellington Vale Road" + }, + { + "id": "ca92dd91-e748-41dc-a471-e87554a91a06", + "name": "Deep Draft Brewing", + "brewery_type": "micro", + "address_1": "3536 W Belfair Valley Rd", + "address_2": null, + "address_3": null, + "city": "Bremerton", + "state_province": "Washington", + "postal_code": "98312-4928", + "country": "United States", + "longitude": -122.698446, + "latitude": 47.53034342, + "phone": "3605504438", + "website_url": "https://www.deepdraftbrew.com/", + "state": "Washington", + "street": "3536 W Belfair Valley Rd" + }, + { + "id": "1998961a-6504-470f-af2a-15cef23e71b0", + "name": "Deep Ellum Brewing Co", + "brewery_type": "regional", + "address_1": "2821 Saint Louis St", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75226-1904", + "country": "United States", + "longitude": -96.78156845, + "latitude": 32.78062733, + "phone": "2148883322", + "website_url": "http://www.deepellumbrewing.com", + "state": "Texas", + "street": "2821 Saint Louis St" + }, + { + "id": "a20aa253-c1dc-4922-a3f5-7e905f774d8d", + "name": "Deep River Brewing Company", + "brewery_type": "micro", + "address_1": "700 W Main St Ste 102", + "address_2": null, + "address_3": null, + "city": "Clayton", + "state_province": "North Carolina", + "postal_code": "27520-1657", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9193683243", + "website_url": "http://www.deepriverbrewing.com", + "state": "North Carolina", + "street": "700 W Main St Ste 102" + }, + { + "id": "26540a50-0fa6-4fcc-85e0-5079d118c6ee", + "name": "Deep Roots Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85007-3115", + "country": "United States", + "longitude": -112.0773456, + "latitude": 33.4485866, + "phone": "6023306790", + "website_url": "http://www.deeprootsbrewing.com", + "state": "Arizona", + "street": null + }, + { + "id": "a50dfe25-5de9-4b5f-8a1a-b04a489e26ea", + "name": "Deep Sleep Brewing Company LLC", + "brewery_type": "closed", + "address_1": "6891 Whiskey Creek Rd.", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "Missouri", + "postal_code": "63090", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3142395801", + "website_url": null, + "state": "Missouri", + "street": "6891 Whiskey Creek Rd." + }, + { + "id": "7ebe9596-9eff-4093-9c5c-58df6d611232", + "name": "Deep South Brewing Co.", + "brewery_type": "micro", + "address_1": "220 Argyle Street", + "address_2": null, + "address_3": null, + "city": "North Hobart", + "state_province": "TAS", + "postal_code": "7000", + "country": "Australia", + "longitude": 147.3208706, + "latitude": -42.8751325, + "phone": "+61 3 6231 9939", + "website_url": "https://www.deepsouthbrewing.co/", + "state": "TAS", + "street": "220 Argyle Street" + }, + { + "id": "c9e5fb87-9609-4683-81ea-a90dc6c8b50f", + "name": "Deep Space Brewing / Out of This World Pizza", + "brewery_type": "brewpub", + "address_1": "6255 NE Century Blvd", + "address_2": null, + "address_3": null, + "city": "Hillsboro", + "state_province": "Oregon", + "postal_code": "97124-8621", + "country": "United States", + "longitude": -122.912049, + "latitude": 45.564963, + "phone": "5036298700", + "website_url": null, + "state": "Oregon", + "street": "6255 NE Century Blvd" + }, + { + "id": "8476a30e-0e24-40a2-907e-92109c972a03", + "name": "DeepWater Brewing Company", + "brewery_type": "micro", + "address_1": "33 Tenney Hl", + "address_2": null, + "address_3": null, + "city": "Blue Hill", + "state_province": "Maine", + "postal_code": "04614", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2073742411", + "website_url": "http://www.arborvine.com", + "state": "Maine", + "street": "33 Tenney Hl" + }, + { + "id": "4000af9a-d444-4ec9-9561-8dfab554e043", + "name": "Deer Creek Brewery", + "brewery_type": "micro", + "address_1": "17661 Cumberland Rd", + "address_2": null, + "address_3": null, + "city": "Noblesville", + "state_province": "Indiana", + "postal_code": "46060-", + "country": "United States", + "longitude": -85.9962796, + "latitude": 40.0443978, + "phone": "3176748266", + "website_url": "http://www.deercreekbrewery.com", + "state": "Indiana", + "street": "17661 Cumberland Rd" + }, + { + "id": "a3f25ad0-001b-4e6b-8dd3-cbcbd0962654", + "name": "Dees Brothers Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Orlando", + "state_province": "Florida", + "postal_code": "32807-1633", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4072575104", + "website_url": "http://www.deesbrosbrew.com", + "state": "Florida", + "street": null + }, + { + "id": "7606b693-f67c-4f45-8d3c-8b81d2c9b415", + "name": "Defeat River Brewery", + "brewery_type": "micro", + "address_1": "473 Fir Avenue", + "address_2": null, + "address_3": null, + "city": "Reedsport", + "state_province": "Oregon", + "postal_code": "97467", + "country": "United States", + "longitude": -124.0974021, + "latitude": 43.70234471, + "phone": "5418088862", + "website_url": "http://www.defeatriverbrewery.com", + "state": "Oregon", + "street": "473 Fir Avenue" + }, + { + "id": "7b891d71-9462-467d-ad32-54fd732162ea", + "name": "Defiance Brewing Co.", + "brewery_type": "micro", + "address_1": "2050 E US Highway 40", + "address_2": null, + "address_3": null, + "city": "Hays", + "state_province": "Kansas", + "postal_code": "67601-9310", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7853012337", + "website_url": "http://www.defiancebeer.com", + "state": "Kansas", + "street": "2050 E US Highway 40" + }, + { + "id": "47b0b67c-099f-47ba-a549-4144f69c0234", + "name": "Defiant Brewing Co", + "brewery_type": "brewpub", + "address_1": "6 E Dexter Plz", + "address_2": null, + "address_3": null, + "city": "Pearl River", + "state_province": "New York", + "postal_code": "10965-2360", + "country": "United States", + "longitude": -74.02302217, + "latitude": 41.06015492, + "phone": "8459208602", + "website_url": "http://www.defiantbrewing.com", + "state": "New York", + "street": "6 E Dexter Plz" + }, + { + "id": "8f2ea1f7-965f-4106-ab3c-46efecfb941e", + "name": "Definitive Brewing Company", + "brewery_type": "micro", + "address_1": "35 Industrial Way", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04103-1071", + "country": "United States", + "longitude": -70.3142737, + "latitude": 43.70629522, + "phone": null, + "website_url": "http://www.definitivebrewing.com", + "state": "Maine", + "street": "35 Industrial Way" + }, + { + "id": "0338af09-60df-4e16-9fd6-89d3033c9cc2", + "name": "Deft Brewing", + "brewery_type": "micro", + "address_1": "5328 Banks St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92110-4008", + "country": "United States", + "longitude": -117.1993433, + "latitude": 32.76435432, + "phone": "8589995728", + "website_url": "http://www.deftbrewing.com", + "state": "California", + "street": "5328 Banks St" + }, + { + "id": "121c725d-bf10-4f10-8e7f-73bbbd76fbd2", + "name": "Del Cielo Brewing Co.", + "brewery_type": "micro", + "address_1": "701 Escobar St Ste A", + "address_2": null, + "address_3": null, + "city": "Martinez", + "state_province": "California", + "postal_code": "94553-1150", + "country": "United States", + "longitude": -122.1369329, + "latitude": 38.01845197, + "phone": "9253301229", + "website_url": "http://www.delcielobrewing.com", + "state": "California", + "street": "701 Escobar St Ste A" + }, + { + "id": "199fdb4e-b2aa-4f46-a43e-832a6f07b879", + "name": "Delafield Brewhaus", + "brewery_type": "brewpub", + "address_1": "3832 Hillside Dr", + "address_2": null, + "address_3": null, + "city": "Delafield", + "state_province": "Wisconsin", + "postal_code": "53018-2174", + "country": "United States", + "longitude": -88.350304, + "latitude": 43.048373, + "phone": "2626467821", + "website_url": "http://www.delafield-brewhaus.com", + "state": "Wisconsin", + "street": "3832 Hillside Dr" + }, + { + "id": "0ab6f6fc-b741-4c2e-8e03-6987401a3837", + "name": "Delicious Science Brewing", + "brewery_type": "closed", + "address_1": "11626 Sterling Ave Ste G", + "address_2": null, + "address_3": null, + "city": "Riverside", + "state_province": "California", + "postal_code": "92503-4991", + "country": "United States", + "longitude": -117.4850052, + "latitude": 33.89543379, + "phone": "9513522739", + "website_url": "http://www.delicioussciencebreing.com", + "state": "California", + "street": "11626 Sterling Ave Ste G" + }, + { + "id": "e272df56-966d-4587-8e7c-46adda39ccba", + "name": "Delta Sunshine Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Memphis", + "state_province": "Tennessee", + "postal_code": "38120-8859", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9016748330", + "website_url": null, + "state": "Tennessee", + "street": null + }, + { + "id": "7dc2107f-007b-4435-a23b-9d4278512460", + "name": "Deluxe Brewing Co", + "brewery_type": "micro", + "address_1": "PO Box 3358", + "address_2": null, + "address_3": null, + "city": "Albany", + "state_province": "Oregon", + "postal_code": "97321-0713", + "country": "United States", + "longitude": -123.0981451, + "latitude": 44.63937563, + "phone": "5419287699", + "website_url": "http://www.deluxebrewing.com", + "state": "Oregon", + "street": "PO Box 3358" + }, + { + "id": "d28cea89-9e32-40a6-8a98-684ca83c54ca", + "name": "Demented Brewing Co.", + "brewery_type": "micro", + "address_1": "600 Lincoln Blvd", + "address_2": null, + "address_3": null, + "city": "Middlesex", + "state_province": "New Jersey", + "postal_code": "08846-2443", + "country": "United States", + "longitude": -74.4946842, + "latitude": 40.5707752, + "phone": "7326298260", + "website_url": "http://www.dementedbrewing.com", + "state": "New Jersey", + "street": "600 Lincoln Blvd" + }, + { + "id": "a78baae3-6e1e-496a-b014-544a5dc5d8d0", + "name": "Democracy Brewing", + "brewery_type": "brewpub", + "address_1": "35 Temple Pl", + "address_2": null, + "address_3": null, + "city": "Boston", + "state_province": "Massachusetts", + "postal_code": "02111", + "country": "United States", + "longitude": -71.06231578, + "latitude": 42.35529623, + "phone": "8572172739", + "website_url": "http://www.democracybrewing.com", + "state": "Massachusetts", + "street": "35 Temple Pl" + }, + { + "id": "da34f414-042a-4e65-ad6e-3069b6a205d0", + "name": "Dempsey's Brew Pub and Restaurant - Baltimore", + "brewery_type": "brewpub", + "address_1": "333 W Camden St", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21201", + "country": "United States", + "longitude": -76.62013833, + "latitude": 39.28518467, + "phone": "4108437901", + "website_url": "http://www.dempseysbaltimore.com", + "state": "Maryland", + "street": "333 W Camden St" + }, + { + "id": "0d2f7fc6-727f-47ac-a931-00117b5aa2db", + "name": "Dempsey's Restaurant And Brewery", + "brewery_type": "brewpub", + "address_1": "50 E Washington St", + "address_2": null, + "address_3": null, + "city": "Petaluma", + "state_province": "California", + "postal_code": "94952-3115", + "country": "United States", + "longitude": -122.6391907, + "latitude": 38.2348199, + "phone": "7077659694", + "website_url": "http://www.dempseys.com", + "state": "California", + "street": "50 E Washington St" + }, + { + "id": "cff33451-0f08-4488-9233-0f3f5876a1a5", + "name": "Dempseys Brewery, Pub", + "brewery_type": "brewpub", + "address_1": "127 N Broadway", + "address_2": null, + "address_3": null, + "city": "Watertown", + "state_province": "South Dakota", + "postal_code": "57201-3525", + "country": "United States", + "longitude": -97.11389409, + "latitude": 44.90302636, + "phone": "6058829760", + "website_url": "http://www.dempseybrewpub.com", + "state": "South Dakota", + "street": "127 N Broadway" + }, + { + "id": "6cfdd1a7-5875-490d-ac21-972b403aaf56", + "name": "Denali Brewing Company", + "brewery_type": "micro", + "address_1": "37083 Talkeetna Spur Rd", + "address_2": null, + "address_3": null, + "city": "Talkeetna", + "state_province": "Alaska", + "postal_code": "99676", + "country": "United States", + "longitude": -150.029188, + "latitude": 62.161453, + "phone": "9077332536", + "website_url": "http://www.denalibrewing.com", + "state": "Alaska", + "street": "37083 Talkeetna Spur Rd" + }, + { + "id": "1a390f44-9b37-4c41-b482-c974f068092a", + "name": "Denizens Brewing Company", + "brewery_type": "brewpub", + "address_1": "1115 E West Hwy", + "address_2": null, + "address_3": null, + "city": "Silver Spring", + "state_province": "Maryland", + "postal_code": "20910-4852", + "country": "United States", + "longitude": -77.02848142, + "latitude": 38.98957715, + "phone": "3015579818", + "website_url": "http://www.denizensbrewingco.com", + "state": "Maryland", + "street": "1115 E West Hwy" + }, + { + "id": "887a5d64-2fa8-4695-9265-8bc11cfd686f", + "name": "DeNovo Beverage of Monmouth", + "brewery_type": "micro", + "address_1": "105 S A St", + "address_2": null, + "address_3": null, + "city": "Monmouth", + "state_province": "Illinois", + "postal_code": "61462-1706", + "country": "United States", + "longitude": -90.64964464, + "latitude": 40.9112055, + "phone": null, + "website_url": "http://www.denovobrewing.co", + "state": "Illinois", + "street": "105 S A St" + }, + { + "id": "72d8f50e-0dff-46ec-9251-e79c917786b2", + "name": "Dented Face Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Delta", + "state_province": "Colorado", + "postal_code": "81416", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "fc88252f-a4fb-4016-a929-6111f6c15eb5", + "name": "Denton County Brewing Company", + "brewery_type": "micro", + "address_1": "200 E McKinney St", + "address_2": null, + "address_3": null, + "city": "Denton", + "state_province": "Texas", + "postal_code": "76201-4230", + "country": "United States", + "longitude": -97.131672, + "latitude": 33.216517, + "phone": "9404350710", + "website_url": "http://www.dentoncountybrewingco.com", + "state": "Texas", + "street": "200 E McKinney St" + }, + { + "id": "4405d177-19d8-44d4-bbf2-3b94894d460c", + "name": "Denver Beer Co", + "brewery_type": "micro", + "address_1": "1695 Platte St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80202-1123", + "country": "United States", + "longitude": -105.0072502, + "latitude": 39.7583143, + "phone": "3034332739", + "website_url": "http://www.denverbeerco.com", + "state": "Colorado", + "street": "1695 Platte St" + }, + { + "id": "eb2ea321-605f-44aa-9d83-5887126370ee", + "name": "Denver Beer Co - Littleton", + "brewery_type": "micro", + "address_1": "2409 Main St", + "address_2": null, + "address_3": null, + "city": "Littleton", + "state_province": "Colorado", + "postal_code": "80120", + "country": "United States", + "longitude": -105.0165076, + "latitude": 39.6138263, + "phone": "7205239146", + "website_url": "https://denverbeerco.com/taprooms/littleton/", + "state": "Colorado", + "street": "2409 Main St" + }, + { + "id": "4b5c7db7-9157-47f7-ac78-299248150164", + "name": "Denver Beer Co Canworks", + "brewery_type": "micro", + "address_1": "4455 Jason St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80211-2412", + "country": "United States", + "longitude": -105.0008302, + "latitude": 39.7769429, + "phone": "7202954781", + "website_url": null, + "state": "Colorado", + "street": "4455 Jason St" + }, + { + "id": "29c1c73e-3eac-4a09-8fd2-16967e838f9e", + "name": "Denver Beer Co Olde Town Arvada", + "brewery_type": "micro", + "address_1": "5768 Olde Wadsworth Blvd", + "address_2": null, + "address_3": null, + "city": "Arvada", + "state_province": "Colorado", + "postal_code": "80002-2549", + "country": "United States", + "longitude": -105.0814554, + "latitude": 39.801625, + "phone": "7208925367", + "website_url": "https://denverbeerco.com/taprooms/olde-town-arvada/", + "state": "Colorado", + "street": "5768 Olde Wadsworth Blvd" + }, + { + "id": "1890caa7-06e0-4bb9-8a98-2c1a21480ae7", + "name": "Departed Soles Brewing", + "brewery_type": "micro", + "address_1": "150 Bay Street, Commercial Side", + "address_2": null, + "address_3": null, + "city": "Jersey City", + "state_province": "New Jersey", + "postal_code": "07302-2900", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2014798578", + "website_url": "http://www.departedsoles.com", + "state": "New Jersey", + "street": "150 Bay Street, Commercial Side" + }, + { + "id": "6d646324-bf6f-49c8-b9d9-e2d2cf508e2f", + "name": "Department Coffee", + "brewery_type": "contract", + "address_1": "1940 N 30th Rd", + "address_2": null, + "address_3": null, + "city": "Hollywood", + "state_province": "Florida", + "postal_code": "33021-4401", + "country": "United States", + "longitude": -80.16836199, + "latitude": 26.02618324, + "phone": "3235382955", + "website_url": "http://www.depatmentcoffee.com", + "state": "Florida", + "street": "1940 N 30th Rd" + }, + { + "id": "56f04d87-5af1-4dc7-829e-55826de2e88c", + "name": "Depot Brewery", + "brewery_type": "micro", + "address_1": "1 Frederick Street", + "address_2": null, + "address_3": null, + "city": "Artarmon", + "state_province": "NSW", + "postal_code": "2064", + "country": "Australia", + "longitude": 151.1882365, + "latitude": -33.817241, + "phone": "+61 1800 729 000", + "website_url": "https://www.depot.beer/", + "state": "NSW", + "street": "1 Frederick Street" + }, + { + "id": "574d5320-9db5-4b09-a017-5d0eeb92dba3", + "name": "Depot Deli and Lounge", + "brewery_type": "brewpub", + "address_1": "101 N Railroad St", + "address_2": null, + "address_3": null, + "city": "Shenandoah", + "state_province": "Iowa", + "postal_code": "51601-1158", + "country": "United States", + "longitude": -95.376823, + "latitude": 40.765042, + "phone": "7122464444", + "website_url": "http://www.depotdeli.com", + "state": "Iowa", + "street": "101 N Railroad St" + }, + { + "id": "80e88a16-8dd6-4d29-a518-32ecd2ffdfe3", + "name": "Depot Saloon", + "brewery_type": "brewpub", + "address_1": "9 S Race St", + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "Pennsylvania", + "postal_code": "16125-2213", + "country": "United States", + "longitude": -80.390239, + "latitude": 41.40444, + "phone": "7245884201", + "website_url": "http://www.depotsaloon.com", + "state": "Pennsylvania", + "street": "9 S Race St" + }, + { + "id": "afa9d016-15d3-4fd1-b8f1-ede356fc0da7", + "name": "Depot Street Brewing Co", + "brewery_type": "micro", + "address_1": "904 Depot St", + "address_2": null, + "address_3": null, + "city": "Jonesborough", + "state_province": "Tennessee", + "postal_code": "37659-5662", + "country": "United States", + "longitude": -82.48054524, + "latitude": 36.28765395, + "phone": "4237537628", + "website_url": "http://www.depotstreetbrewing.com", + "state": "Tennessee", + "street": "904 Depot St" + }, + { + "id": "afcd66d0-520e-456b-a377-caeda279a70e", + "name": "Der Blokken Brewery", + "brewery_type": "closed", + "address_1": "1100 Perry Ave Unit C", + "address_2": null, + "address_3": null, + "city": "Bremerton", + "state_province": "Washington", + "postal_code": "98310-4945", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3603772344", + "website_url": "http://www.derblokken.com", + "state": "Washington", + "street": "1100 Perry Ave Unit C" + }, + { + "id": "09c632a5-61d8-4653-abd0-e2f55da61d8a", + "name": "Derive Brewing company", + "brewery_type": "micro", + "address_1": "2808 N. High St.", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43206", + "country": "United States", + "longitude": -83.01185, + "latitude": 40.01939, + "phone": "614-732-4186", + "website_url": "https://www.derivebeer.com/", + "state": "Ohio", + "street": "2808 N. High St." + }, + { + "id": "03345ba6-46c2-4ab9-88f5-d872169e99cc", + "name": "Descendants Brewing Company", + "brewery_type": "brewpub", + "address_1": "61 Bridge St", + "address_2": null, + "address_3": null, + "city": "Milford", + "state_province": "New Jersey", + "postal_code": "08848-1264", + "country": "United States", + "longitude": -75.095372, + "latitude": 40.568461, + "phone": null, + "website_url": null, + "state": "New Jersey", + "street": "61 Bridge St" + }, + { + "id": "9e06a19e-312b-4d45-b264-cecf6e51a783", + "name": "Deschutes Brewery", + "brewery_type": "regional", + "address_1": "901 SW Simpson Ave", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97702-3118", + "country": "United States", + "longitude": -121.3246184, + "latitude": 44.04780638, + "phone": "5413858606", + "website_url": "http://www.deschutesbrewery.com", + "state": "Oregon", + "street": "901 SW Simpson Ave" + }, + { + "id": "481d796e-a8aa-4253-b188-960dd7862ddc", + "name": "Deschutes Brewery & Public House", + "brewery_type": "brewpub", + "address_1": "1044 NW Bond St", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97703-2002", + "country": "United States", + "longitude": -121.3113845, + "latitude": 44.05941415, + "phone": "5413829242", + "website_url": "http://www.deschutesbrewery.com", + "state": "Oregon", + "street": "1044 NW Bond St" + }, + { + "id": "620e6a25-dd43-4c59-9598-226c62829135", + "name": "Deschutes Brewery & Public House", + "brewery_type": "brewpub", + "address_1": "210 NW 11th Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97209-2929", + "country": "United States", + "longitude": -122.6818808, + "latitude": 45.52468, + "phone": "5032964906", + "website_url": "http://www.deschutesbrewery.com", + "state": "Oregon", + "street": "210 NW 11th Ave" + }, + { + "id": "0e67f77f-badf-42fe-98c0-c746c6e9140c", + "name": "Desert Barn Brewing Co.", + "brewery_type": "brewpub", + "address_1": "11352 Hesperia Rd Ste B", + "address_2": null, + "address_3": null, + "city": "Hesperia", + "state_province": "California", + "postal_code": "92345-2165", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "California", + "street": "11352 Hesperia Rd Ste B" + }, + { + "id": "9c367e3f-82fc-4d51-bc2c-05c6aa90d708", + "name": "Desert Eagle Brewing Company", + "brewery_type": "micro", + "address_1": "150 W Main St", + "address_2": null, + "address_3": null, + "city": "Mesa", + "state_province": "Arizona", + "postal_code": "85201-7310", + "country": "United States", + "longitude": -111.8568311, + "latitude": 33.4148261, + "phone": "4806562662", + "website_url": "http://www.deserteaglebrewing.com", + "state": "Arizona", + "street": "150 W Main St" + }, + { + "id": "3c7bbeb4-bb5b-4cdf-a5e9-e5ded84078c8", + "name": "Desert Edge Brewery", + "brewery_type": "brewpub", + "address_1": "551 E 600 S", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84102-2717", + "country": "United States", + "longitude": -111.8750211, + "latitude": 40.75639108, + "phone": "8015218917", + "website_url": "http://www.desertedgebrewery.com", + "state": "Utah", + "street": "551 E 600 S" + }, + { + "id": "f6253cbe-624f-4eb4-8aa5-5e6e0eca41ae", + "name": "Desert Monks Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Gilbert", + "state_province": "Arizona", + "postal_code": "85296-3480", + "country": "United States", + "longitude": -111.7890239, + "latitude": 33.3528259, + "phone": "4805257444", + "website_url": "https://www.desertmonksbrewing.com/", + "state": "Arizona", + "street": null + }, + { + "id": "cd625c02-0023-4fdd-803c-34a1343d37da", + "name": "Desert Valley Brewing Co.", + "brewery_type": "micro", + "address_1": "2809 Broadbent Pkwy NE, Suite D C/O The Craftroom", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87107-1613", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5057171985", + "website_url": null, + "state": "New Mexico", + "street": "2809 Broadbent Pkwy NE, Suite D C/O The Craftroom" + }, + { + "id": "17f2475a-d7b2-4565-b9c3-cfccbb44a5cf", + "name": "Desi Firangi", + "brewery_type": "bar", + "address_1": "97 East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "428794", + "country": "Singapore", + "longitude": 1.3058652675834, + "latitude": 103.9041354, + "phone": "+65 8518 4250", + "website_url": "https://www.desifirangi.sg/", + "state": "Singapore", + "street": "97 East Coast Road" + }, + { + "id": "1a9e21df-18dd-4373-a41c-a54d949336e8", + "name": "Deslogetown Brewery", + "brewery_type": "brewpub", + "address_1": "1669 Pine Ridge Trail", + "address_2": null, + "address_3": null, + "city": "Park Hills", + "state_province": "Missouri", + "postal_code": "63601", + "country": "United States", + "longitude": -90.561161, + "latitude": 37.830972, + "phone": "5734314294", + "website_url": "http://stfrancoiswinery.com", + "state": "Missouri", + "street": "1669 Pine Ridge Trail" + }, + { + "id": "59d438c2-772b-46ff-b357-e12068eba653", + "name": "Desperate Times Brewing Co", + "brewery_type": "brewpub", + "address_1": "1201 Carlisle Springs Rd", + "address_2": null, + "address_3": null, + "city": "Carlisle", + "state_province": "Pennsylvania", + "postal_code": "17013-1554", + "country": "United States", + "longitude": -77.187054, + "latitude": 40.213096, + "phone": "7177063192", + "website_url": "http://www.desperatetimesbrewery.com", + "state": "Pennsylvania", + "street": "1201 Carlisle Springs Rd" + }, + { + "id": "e8cf3258-6464-4de0-8769-40027573fc5f", + "name": "DeSteeg Brewing Co/Blind Faith Brewing", + "brewery_type": "micro", + "address_1": "4342 Tennyson St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80212-2308", + "country": "United States", + "longitude": -105.0438193, + "latitude": 39.7760619, + "phone": "3034849698", + "website_url": "http://www.desteegbrewing.com", + "state": "Colorado", + "street": "4342 Tennyson St" + }, + { + "id": "bebafffa-c64f-4b11-8497-7b3ec0648bfd", + "name": "DESTIHL - Champaign", + "brewery_type": "brewpub", + "address_1": "301 N Neil St", + "address_2": null, + "address_3": null, + "city": "Champaign", + "state_province": "Illinois", + "postal_code": "61820-3163", + "country": "United States", + "longitude": -88.2437783, + "latitude": 40.1184918, + "phone": "2173560301", + "website_url": "http://www.destihl.com", + "state": "Illinois", + "street": "301 N Neil St" + }, + { + "id": "088897ee-bbe3-4ba5-9aaf-5ff9618cf260", + "name": "DESTIHL - Normal", + "brewery_type": "brewpub", + "address_1": "318 S Towanda Ave", + "address_2": null, + "address_3": null, + "city": "Normal", + "state_province": "Illinois", + "postal_code": "61761-2212", + "country": "United States", + "longitude": -88.960562, + "latitude": 40.509706, + "phone": "3098622337", + "website_url": "http://www.destihl.com", + "state": "Illinois", + "street": "318 S Towanda Ave" + }, + { + "id": "74311046-203d-4c6e-b156-1100b4b7a2eb", + "name": "DESTIHL Brewery", + "brewery_type": "micro", + "address_1": "1200 Greenbriar Dr", + "address_2": null, + "address_3": null, + "city": "Normal", + "state_province": "Illinois", + "postal_code": "61761-6459", + "country": "United States", + "longitude": -88.94598211, + "latitude": 40.52905465, + "phone": "3092209901", + "website_url": "http://www.destihl.com", + "state": "Illinois", + "street": "1200 Greenbriar Dr" + }, + { + "id": "89e47f0f-7710-4478-ac7e-ddb8268e7897", + "name": "Destin Brewery", + "brewery_type": "micro", + "address_1": "505 Mountain Dr Ste N", + "address_2": null, + "address_3": null, + "city": "Destin", + "state_province": "Florida", + "postal_code": "32541-7334", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.destinbrewery.com", + "state": "Florida", + "street": "505 Mountain Dr Ste N" + }, + { + "id": "c1c9dd61-20c0-463f-aa57-1e756c379e38", + "name": "Destination Brewery & Distillery", + "brewery_type": "micro", + "address_1": "9 Hi-Tech Place", + "address_2": "Unit 7", + "address_3": null, + "city": "Rowville", + "state_province": "VIC", + "postal_code": "3178", + "country": "Australia", + "longitude": 145.2461347, + "latitude": -37.909791, + "phone": null, + "website_url": "https://www.loadedbarreldistillery.com/", + "state": "VIC", + "street": "9 Hi-Tech Place" + }, + { + "id": "e4895f5c-e308-4d17-893f-2f86bb50868d", + "name": "Destination Brewing Company", + "brewery_type": "contract", + "address_1": "2708 Lawrence Drive", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78734", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5129659858", + "website_url": "http://www.destinationbrewing.co", + "state": "Texas", + "street": "2708 Lawrence Drive" + }, + { + "id": "06aa77d8-4925-448f-9f0b-183a1c0b9d31", + "name": "Destination Unknown Beer Company", + "brewery_type": "micro", + "address_1": "1 S Chicago Ave Unit C", + "address_2": null, + "address_3": null, + "city": "Bay Shore", + "state_province": "New York", + "postal_code": "11706-7000", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6314852232", + "website_url": "http://www.destinationunknownbeercompany.com", + "state": "New York", + "street": "1 S Chicago Ave Unit C" + }, + { + "id": "51d1d1c9-4e63-4517-8538-419e8fb18042", + "name": "Detroit Beer Co", + "brewery_type": "brewpub", + "address_1": "1529 Broadway St Ste 100", + "address_2": null, + "address_3": null, + "city": "Detroit", + "state_province": "Michigan", + "postal_code": "48226-2141", + "country": "United States", + "longitude": -83.04871786, + "latitude": 42.335962, + "phone": "3139621529", + "website_url": "http://www.detroitbeerco.com", + "state": "Michigan", + "street": "1529 Broadway St Ste 100" + }, + { + "id": "7ff0b266-a8d0-423a-a831-2df0fca90a5a", + "name": "Deviant Wolfe Brewing", + "brewery_type": "micro", + "address_1": "121 W 1st St", + "address_2": null, + "address_3": null, + "city": "Sanford", + "state_province": "Florida", + "postal_code": "32771-1201", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4078786239", + "website_url": "http://www.facebook.com/DeviantWolfeBrewing", + "state": "Florida", + "street": "121 W 1st St" + }, + { + "id": "2c39f664-b7ea-4886-9534-d2bb13bc775b", + "name": "Deviate Brewing Co", + "brewery_type": "micro", + "address_1": "4004 W 96th St", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46268-2909", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.deviatebrewing.com", + "state": "Indiana", + "street": "4004 W 96th St" + }, + { + "id": "d681717b-abd3-4c20-a9fb-18cbda1254ec", + "name": "Device Brewing Company", + "brewery_type": "micro", + "address_1": "8166 14th Ave", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95826-4722", + "country": "United States", + "longitude": -121.4059371, + "latitude": 38.53949252, + "phone": "9167372739", + "website_url": "http://www.devicebrewing.com", + "state": "California", + "street": "8166 14th Ave" + }, + { + "id": "bec65b87-eadc-4db1-b303-f0ee724f4988", + "name": "Devil and the Deep", + "brewery_type": "micro", + "address_1": "2425 Postoffice St", + "address_2": null, + "address_3": null, + "city": "Galveston", + "state_province": "Texas", + "postal_code": "77550-4629", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7134028868", + "website_url": "http://www.devilandthedeep.com", + "state": "Texas", + "street": "2425 Postoffice St" + }, + { + "id": "ce046f9c-50f8-433e-93a5-1fede0c47538", + "name": "Devil Wind Brewing LLC", + "brewery_type": "micro", + "address_1": "130 S Detroit St", + "address_2": null, + "address_3": null, + "city": "Xenia", + "state_province": "Ohio", + "postal_code": "45385", + "country": "United States", + "longitude": -83.92913685, + "latitude": 39.68294798, + "phone": "9376090002", + "website_url": "http://www.devilwindbrewing.com", + "state": "Ohio", + "street": "130 S Detroit St" + }, + { + "id": "82b4a5a5-31a0-4e82-8f9d-1b8e6e4d39de", + "name": "Devil's Canyon Brewing Company", + "brewery_type": "micro", + "address_1": "935 Washington St", + "address_2": null, + "address_3": null, + "city": "San Carlos", + "state_province": "California", + "postal_code": "94070-5316", + "country": "United States", + "longitude": -122.2445413, + "latitude": 37.49896576, + "phone": "6505922739", + "website_url": "http://www.DevilsCanyon.com", + "state": "California", + "street": "935 Washington St" + }, + { + "id": "f4a8753b-095c-470b-9336-f639441ba51c", + "name": "Devil's Club Brewing", + "brewery_type": "brewpub", + "address_1": "100 N Franklin St", + "address_2": null, + "address_3": null, + "city": "Juneau", + "state_province": "Alaska", + "postal_code": "99801-1223", + "country": "United States", + "longitude": -134.406956, + "latitude": 58.301309, + "phone": "9077232337", + "website_url": "http://www.devilsclubbrewing.com", + "state": "Alaska", + "street": "100 N Franklin St" + }, + { + "id": "def7fa43-5b3d-46a1-98ca-a413882988e2", + "name": "Devil's Creek Brewery", + "brewery_type": "micro", + "address_1": "1 Powell Ln", + "address_2": null, + "address_3": null, + "city": "Collingswood", + "state_province": "New Jersey", + "postal_code": "08108-1945", + "country": "United States", + "longitude": -75.0712461, + "latitude": 39.9169234, + "phone": "8564252520", + "website_url": "http://www.DevilsCreekBrewery.com", + "state": "New Jersey", + "street": "1 Powell Ln" + }, + { + "id": "23b771c4-9506-47a1-b9e3-f1a6db08f975", + "name": "Devil’s Hollow Brewery", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Dubbo", + "state_province": "NSW", + "postal_code": "2830", + "country": "Australia", + "longitude": 148.6533563, + "latitude": -32.261173, + "phone": "+61 2 8328 0060", + "website_url": "https://www.devilshollow.com.au/", + "state": "NSW", + "street": null + }, + { + "id": "58ff2d70-8794-4eac-ba96-2ec4c590539d", + "name": "Devil's Kettle Brewing", + "brewery_type": "micro", + "address_1": "97 Columbus Rd", + "address_2": null, + "address_3": null, + "city": "Athens", + "state_province": "Ohio", + "postal_code": "45701-1313", + "country": "United States", + "longitude": -82.09543176, + "latitude": 39.34871425, + "phone": "7405897187", + "website_url": "http://www.devilskettlebrewing.com", + "state": "Ohio", + "street": "97 Columbus Rd" + }, + { + "id": "88910cf5-944c-4b41-96bd-fe90946cca8d", + "name": "Devil’s Peak Brewing Company", + "brewery_type": "brewpub", + "address_1": "95 Durham Avenue", + "address_2": "Salt River", + "address_3": null, + "city": "Cape Town", + "state_province": "Western Cape", + "postal_code": "7925", + "country": "South Africa", + "longitude": 18.4595, + "latitude": -33.9348, + "phone": "+27 21 200 5818", + "website_url": "https://www.devilspeak.beer/", + "state": "Western Cape", + "street": "95 Durham Avenue" + }, + { + "id": "1da0090d-b471-4667-b4e5-e440f35ac023", + "name": "Devil's Potion Brewing Company LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Escondido", + "state_province": "California", + "postal_code": "92026-3187", + "country": "United States", + "longitude": -117.0814849, + "latitude": 33.1216751, + "phone": "7605329091", + "website_url": "http://www.devilspotion.com", + "state": "California", + "street": null + }, + { + "id": "31a96dc8-4986-42df-98d3-484a727f3ead", + "name": "Devil's Purse Brewing Co", + "brewery_type": "micro", + "address_1": "120 Great Western Rd", + "address_2": null, + "address_3": null, + "city": "South Dennis", + "state_province": "Massachusetts", + "postal_code": "02660-3715", + "country": "United States", + "longitude": -70.1416854, + "latitude": 41.6885379, + "phone": "5086947171", + "website_url": "http://www.devilspurse.com", + "state": "Massachusetts", + "street": "120 Great Western Rd" + }, + { + "id": "b837ff0c-ea8e-40c2-885d-2a4bd4b04c3d", + "name": "Devil's Trumpet Brewing Co", + "brewery_type": "micro", + "address_1": "8250 Utah St", + "address_2": null, + "address_3": null, + "city": "Merrillville", + "state_province": "Indiana", + "postal_code": "46410-6578", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2195767118", + "website_url": "http://www.thedevilstrumpet.com", + "state": "Indiana", + "street": "8250 Utah St" + }, + { + "id": "cff02790-1ce3-4e6d-92cd-ee274279f1fc", + "name": "Devilbend Farm Beer Co.", + "brewery_type": "micro", + "address_1": "990 Stumpy Gully Road", + "address_2": null, + "address_3": null, + "city": "Tuerong", + "state_province": "VIC", + "postal_code": "3915", + "country": "Australia", + "longitude": 145.1276772, + "latitude": -38.2852944, + "phone": "+61 472 877 079", + "website_url": "http://www.devilbend.beer/", + "state": "VIC", + "street": "990 Stumpy Gully Road" + }, + { + "id": "74495b65-cdc1-4197-9f23-baaf2f7c02af", + "name": "Devils Backbone Brewing Co - Basecamp", + "brewery_type": "large", + "address_1": "200 Mosbys Run", + "address_2": null, + "address_3": null, + "city": "Roseland", + "state_province": "Virginia", + "postal_code": "22967-8551", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4343611001", + "website_url": "http://www.dbbrewingcompany.com", + "state": "Virginia", + "street": "200 Mosbys Run" + }, + { + "id": "ddc7e926-0165-4586-89bd-c42fbcbb9fe9", + "name": "Devils Backbone Brewing Co - Outpost Production Facility", + "brewery_type": "large", + "address_1": "50 Northwind Ln", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "Virginia", + "postal_code": "24450-3303", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4343611001", + "website_url": "http://www.dbbrewingcompany.com", + "state": "Virginia", + "street": "50 Northwind Ln" + }, + { + "id": "82606c09-9315-47f5-9754-5149dc8a1205", + "name": "Devour Brewing Co", + "brewery_type": "micro", + "address_1": "1500 SW 30th Ave Ste 4", + "address_2": null, + "address_3": null, + "city": "Boynton Beach", + "state_province": "Florida", + "postal_code": "33426-9044", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5618066011", + "website_url": "http://www.devourbrewing.com", + "state": "Florida", + "street": "1500 SW 30th Ave Ste 4" + }, + { + "id": "b7f79d7b-c8c8-45de-bbe0-2764c8be72d2", + "name": "Devout Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Export", + "state_province": "Pennsylvania", + "postal_code": "15632", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.devoutbrewingco.com", + "state": "Pennsylvania", + "street": null + }, + { + "id": "14f7353b-3b35-4e62-8a41-5d2a0b87ef59", + "name": "Dew Point Brewing", + "brewery_type": "brewpub", + "address_1": "2878 Creek Rd", + "address_2": null, + "address_3": null, + "city": "Yorklyn", + "state_province": "Delaware", + "postal_code": "19736-", + "country": "United States", + "longitude": -75.6729188, + "latitude": 39.8100606, + "phone": "3025183636", + "website_url": "http://www.dewpointbrewing.com", + "state": "Delaware", + "street": "2878 Creek Rd" + }, + { + "id": "23bca581-dd99-43ea-9fe1-6ebf78c7a6ec", + "name": "Dewey Beer Co.", + "brewery_type": "brewpub", + "address_1": "2100 Coastal Hwy", + "address_2": null, + "address_3": null, + "city": "Dewey Beach", + "state_province": "Delaware", + "postal_code": "19971-2317", + "country": "United States", + "longitude": -75.07497503, + "latitude": 38.6961465, + "phone": "3022271182", + "website_url": "http://www.deweybeerco.com", + "state": "Delaware", + "street": "2100 Coastal Hwy" + }, + { + "id": "74ded0c0-4d57-423b-943c-166cb125402c", + "name": "Dialectic Brewing Company", + "brewery_type": "micro", + "address_1": "416 W Main St", + "address_2": null, + "address_3": null, + "city": "Mandan", + "state_province": "North Dakota", + "postal_code": "58554-3145", + "country": "United States", + "longitude": -100.8950937, + "latitude": 46.82578828, + "phone": "7013181328", + "website_url": "http://www.dialecticbrewingcompany.com", + "state": "North Dakota", + "street": "416 W Main St" + }, + { + "id": "483666c9-df7b-48b6-a09e-9dc2c39ddd22", + "name": "Dialogue Brewing", + "brewery_type": "micro", + "address_1": "1501 1st St NW", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87102-1535", + "country": "United States", + "longitude": -106.6456104, + "latitude": 35.0976942, + "phone": "5055851501", + "website_url": "http://www.dialoguebrewing.com", + "state": "New Mexico", + "street": "1501 1st St NW" + }, + { + "id": "83e2f163-0cbf-4473-8edd-48456837a603", + "name": "Diamond Bear Brewing Co", + "brewery_type": "micro", + "address_1": "600 N Broadway St", + "address_2": null, + "address_3": null, + "city": "North Little Rock", + "state_province": "Arkansas", + "postal_code": "72114-5381", + "country": "United States", + "longitude": -92.27268921, + "latitude": 34.75942775, + "phone": "5017082739", + "website_url": "http://www.diamondbear.com", + "state": "Arkansas", + "street": "600 N Broadway St" + }, + { + "id": "812c75c6-5a52-4b6a-84b8-384f8745fd3e", + "name": "Diamond Knot Brewery B2 Brewery & Taproom", + "brewery_type": "micro", + "address_1": "4602 Chennault Beach Rd Ste B2", + "address_2": null, + "address_3": null, + "city": "Mukilteo", + "state_province": "Washington", + "postal_code": "98275-5016", + "country": "United States", + "longitude": -122.2955193, + "latitude": 47.89611026, + "phone": "4253554488", + "website_url": "http://www.diamondknot.com", + "state": "Washington", + "street": "4602 Chennault Beach Rd Ste B2" + }, + { + "id": "41fbdb32-a0ba-4893-a16f-442598b23832", + "name": "Diamond Knot Craft Brewery - Brewpub @ MLT", + "brewery_type": "brewpub", + "address_1": "5602 232rd St SW", + "address_2": null, + "address_3": null, + "city": "Mountlake Terrace", + "state_province": "Washington", + "postal_code": "98043", + "country": "United States", + "longitude": -122.3095359, + "latitude": 47.78800503, + "phone": "4253554488", + "website_url": "http://www.diamondknot.com", + "state": "Washington", + "street": "5602 232rd St SW" + }, + { + "id": "308265eb-0865-41bc-ae74-b8b494521be9", + "name": "Diamond Knot Craft Brewing - Brewery & Alehouse", + "brewery_type": "brewpub", + "address_1": "621 Front St", + "address_2": null, + "address_3": null, + "city": "Mukilteo", + "state_province": "Washington", + "postal_code": "98275-1557", + "country": "United States", + "longitude": -122.3047075, + "latitude": 47.9484603, + "phone": "4253554488", + "website_url": "http://www.diamondknot.com", + "state": "Washington", + "street": "621 Front St" + }, + { + "id": "56159d4d-8d37-41c1-a6d3-5193a66a15e9", + "name": "Diamond Mountain Brewery", + "brewery_type": "brewpub", + "address_1": "900 Skyline Dr", + "address_2": null, + "address_3": null, + "city": "Susanville", + "state_province": "California", + "postal_code": "96130-6071", + "country": "United States", + "longitude": -120.6575072, + "latitude": 40.43092351, + "phone": "5302521369", + "website_url": "http://www.diamondmountainbrewery.com", + "state": "California", + "street": "900 Skyline Dr" + }, + { + "id": "8ed61459-cc2b-41c2-925a-a6c622e65d49", + "name": "Dicks Brewing Co", + "brewery_type": "micro", + "address_1": "3516 Galvin Rd", + "address_2": null, + "address_3": null, + "city": "Centralia", + "state_province": "Washington", + "postal_code": "98531-9002", + "country": "United States", + "longitude": -122.9999693, + "latitude": 46.73549248, + "phone": "3607367760", + "website_url": "http://www.dicksbeer.com", + "state": "Washington", + "street": "3516 Galvin Rd" + }, + { + "id": "16fb2c6e-c7e1-4d46-b9d0-1c86816eb129", + "name": "Die Bierbotschaft", + "brewery_type": "brewpub", + "address_1": "Ponigler Str. 52", + "address_2": null, + "address_3": null, + "city": "Wundschuh", + "state_province": "Steiermark", + "postal_code": "8142", + "country": "Austria", + "longitude": 15.45518681346, + "latitude": 46.912915905258, + "phone": "+436763530560", + "website_url": "https://www.bierbotschaft.at", + "state": "Steiermark", + "street": "Ponigler Str. 52" + }, + { + "id": "6f89022e-0f54-4054-b37f-919c1ed4218c", + "name": "Diebolt Brewing", + "brewery_type": "micro", + "address_1": "3855 Mariposa St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80211-2647", + "country": "United States", + "longitude": -105.0032079, + "latitude": 39.770332, + "phone": "7206435940", + "website_url": "http://www.dieboltbrewing.com", + "state": "Colorado", + "street": "3855 Mariposa St" + }, + { + "id": "dac4379b-8ecd-4a9c-ba7f-8042580c72fc", + "name": "Dillinger Brewing Company", + "brewery_type": "micro", + "address_1": "3895 N Oracle Rd", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85705-3228", + "country": "United States", + "longitude": -110.9785303, + "latitude": 32.2997436, + "phone": "5202072312", + "website_url": "http://www.dillingerbrewing.com", + "state": "Arizona", + "street": "3895 N Oracle Rd" + }, + { + "id": "d40976bd-2a96-41ed-81b1-3b6c3eab2843", + "name": "Dillon Dam Brewery", + "brewery_type": "brewpub", + "address_1": "100 Little Dam Street", + "address_2": null, + "address_3": null, + "city": "Dillon", + "state_province": "Colorado", + "postal_code": "80435-4845", + "country": "United States", + "longitude": -106.0603129, + "latitude": 39.62760465, + "phone": "9702627777", + "website_url": "http://www.dambrewery.com", + "state": "Colorado", + "street": "100 Little Dam Street" + }, + { + "id": "0bcb0b7a-5328-4186-9264-1a068316de22", + "name": "Dimensional Brewing Co.", + "brewery_type": "micro", + "address_1": "67 Main St", + "address_2": null, + "address_3": null, + "city": "Dubuque", + "state_province": "Iowa", + "postal_code": "52001-7627", + "country": "United States", + "longitude": -90.664108, + "latitude": 42.494438, + "phone": null, + "website_url": "http://www.dimensionalbrewing.com", + "state": "Iowa", + "street": "67 Main St" + }, + { + "id": "fd4412ec-311a-4e87-8b55-10dca2b00b94", + "name": "Dimes Brewhouse", + "brewery_type": "micro", + "address_1": "145 N Bridge St", + "address_2": null, + "address_3": null, + "city": "Dimondale", + "state_province": "Michigan", + "postal_code": "48821-9201", + "country": "United States", + "longitude": -84.6483014, + "latitude": 42.64660055, + "phone": "5173032067", + "website_url": "http://www.dimesbrewhouse.com", + "state": "Michigan", + "street": "145 N Bridge St" + }, + { + "id": "d9640321-8cf9-41bd-aeb8-9a2163e23f42", + "name": "Dingo Dog Brewing Co", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Carrboro", + "state_province": "North Carolina", + "postal_code": "27510", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9198859793", + "website_url": "http://www.dingodogbrewing.com", + "state": "North Carolina", + "street": null + }, + { + "id": "31050850-d1fd-433f-98a2-b19bf07a29f1", + "name": "Dionysus Brewing Co.", + "brewery_type": "micro", + "address_1": "6201 Schirra Ct Ste 13", + "address_2": null, + "address_3": null, + "city": "Bakersfield", + "state_province": "California", + "postal_code": "93313-2119", + "country": "United States", + "longitude": -119.0716427, + "latitude": 35.31614762, + "phone": "6618336000", + "website_url": "http://www.dionysusbrewing.com", + "state": "California", + "street": "6201 Schirra Ct Ste 13" + }, + { + "id": "3cf021a2-dc21-469c-a56d-2bd377e3a1eb", + "name": "Dirigo Brewing Co.", + "brewery_type": "micro", + "address_1": "28 Pearl St", + "address_2": null, + "address_3": null, + "city": "Biddeford", + "state_province": "Maine", + "postal_code": "04005-2040", + "country": "United States", + "longitude": -70.45608584, + "latitude": 43.49545704, + "phone": "2078385321", + "website_url": "http://www.dirigobrewingcompany.com", + "state": "Maine", + "street": "28 Pearl St" + }, + { + "id": "7f16cd0c-2a66-4b93-9c1f-c3d6386c2550", + "name": "Dirt Farm Brewing", + "brewery_type": "brewpub", + "address_1": "18701 Foggy Bottom Rd", + "address_2": null, + "address_3": null, + "city": "Bluemont", + "state_province": "Virginia", + "postal_code": "20135-1858", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5405542337", + "website_url": "http://www.dirtfarmbrewing.com", + "state": "Virginia", + "street": "18701 Foggy Bottom Rd" + }, + { + "id": "b5449cda-10d5-4356-a60e-aca42e338b18", + "name": "Dirt Road Brewing", + "brewery_type": "planning", + "address_1": "1301 Main St", + "address_2": null, + "address_3": null, + "city": "Philomath", + "state_province": "Oregon", + "postal_code": "97370", + "country": "United States", + "longitude": -123.3677101, + "latitude": 44.54045973, + "phone": "5419297818", + "website_url": "http://dirtroadbrewing.com", + "state": "Oregon", + "street": "1301 Main St" + }, + { + "id": "48ff4878-7666-422c-8ba0-6107382ff258", + "name": "Dirtbag Ales Brewery and Taproom", + "brewery_type": "micro", + "address_1": "5435 Corporation Dr", + "address_2": null, + "address_3": null, + "city": "Hope Mills", + "state_province": "North Carolina", + "postal_code": "28348-8413", + "country": "United States", + "longitude": -78.92209697, + "latitude": 34.99397526, + "phone": "9104262537", + "website_url": "http://www.dirtbagales.com", + "state": "North Carolina", + "street": "5435 Corporation Dr" + }, + { + "id": "57143be8-1253-4486-a45e-f725021068a5", + "name": "Dirty Bucket Brewery", + "brewery_type": "closed", + "address_1": "19151 144th Ave NE", + "address_2": null, + "address_3": null, + "city": "Woodinville", + "state_province": "Washington", + "postal_code": "98072-4374", + "country": "United States", + "longitude": -122.1484843, + "latitude": 47.7661918, + "phone": "2068191570", + "website_url": "http://www.dirtybucketbrewery.com", + "state": "Washington", + "street": "19151 144th Ave NE" + }, + { + "id": "8a5a869c-247b-4c5a-bb78-c092abed8440", + "name": "Dirty Couch Brewing", + "brewery_type": "micro", + "address_1": "2715 W Fort St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98199-1224", + "country": "United States", + "longitude": -122.392155, + "latitude": 47.66192056, + "phone": "2063959414", + "website_url": "http://www.dirtycouchbrewing.com", + "state": "Washington", + "street": "2715 W Fort St" + }, + { + "id": "ad8c6d2f-e4bf-4a8c-86d7-11e87f36bf9a", + "name": "Dirty Job Brewing", + "brewery_type": "micro", + "address_1": "117 N Main St", + "address_2": null, + "address_3": null, + "city": "Mansfield", + "state_province": "Texas", + "postal_code": "76063", + "country": "United States", + "longitude": -97.14195567, + "latitude": 32.56489124, + "phone": "6825181791", + "website_url": "http://www.dirtyjobbrewing.com", + "state": "Texas", + "street": "117 N Main St" + }, + { + "id": "77fc61b5-b1e7-4ee3-a28c-823a3de62365", + "name": "Dirty Oar Beer Company", + "brewery_type": "micro", + "address_1": "329 W King St", + "address_2": null, + "address_3": null, + "city": "Cocoa", + "state_province": "Florida", + "postal_code": "32922-4607", + "country": "United States", + "longitude": -80.7473064, + "latitude": 28.355795, + "phone": null, + "website_url": "http://dirtyoarbeercompany.com/", + "state": "Florida", + "street": "329 W King St" + }, + { + "id": "02368546-6d67-4e2f-8d45-917628306622", + "name": "Discovery Bay Brewing", + "brewery_type": "micro", + "address_1": "948 N Park Avenue", + "address_2": null, + "address_3": null, + "city": "Port Townsend", + "state_province": "Washington", + "postal_code": "98368-1512", + "country": "United States", + "longitude": -122.8030594, + "latitude": 48.1065812, + "phone": "3603442999", + "website_url": null, + "state": "Washington", + "street": "948 N Park Avenue" + }, + { + "id": "76286586-a06b-4609-b971-615cb56607ed", + "name": "Discretion Brewing", + "brewery_type": "micro", + "address_1": "2703 41st Ave Ste A& # B", + "address_2": null, + "address_3": null, + "city": "Soquel", + "state_province": "California", + "postal_code": "95073-3104", + "country": "United States", + "longitude": -121.9659512, + "latitude": 36.98629328, + "phone": "8313160662", + "website_url": "http://www.discretionbrewing.com", + "state": "California", + "street": "2703 41st Ave Ste A& # B" + }, + { + "id": "c6dd7547-06f7-4cc6-8041-f1fab596b201", + "name": "Disgruntled Brewing", + "brewery_type": "micro", + "address_1": "735 2nd St NE", + "address_2": null, + "address_3": null, + "city": "Perham", + "state_province": "Minnesota", + "postal_code": "56573-1828", + "country": "United States", + "longitude": -95.55777031, + "latitude": 46.59047473, + "phone": "2183464677", + "website_url": "http://www.disgruntledbeer.com", + "state": "Minnesota", + "street": "735 2nd St NE" + }, + { + "id": "b67ada4b-9179-4e79-ba2f-70d956f0af1c", + "name": "Dissent Craft Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "5518 Haines Rd N", + "address_2": null, + "address_3": null, + "city": "Saint Petersburg", + "state_province": "Florida", + "postal_code": "33714-1999", + "country": "United States", + "longitude": -82.66998676, + "latitude": 27.82225781, + "phone": "7273420255", + "website_url": "http://www.dissentcraftbrewing.com", + "state": "Florida", + "street": "5518 Haines Rd N" + }, + { + "id": "ad2e2d38-f7f8-4c10-899a-9b14ad947743", + "name": "Dissident Brewing", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53207-3221", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4145171845", + "website_url": "http://www.dissidentbrewing.com", + "state": "Wisconsin", + "street": null + }, + { + "id": "57b8c4a5-0975-4916-ab6b-661e85a1fe4c", + "name": "Distraction Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Roslindale", + "state_province": "Massachusetts", + "postal_code": "02131-3006", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.distractionbrewingco.com", + "state": "Massachusetts", + "street": null + }, + { + "id": "30f9fd9f-a8c2-46c2-863d-2dcf129b12fe", + "name": "District 1 Brewing Company", + "brewery_type": "micro", + "address_1": "200 Division St N", + "address_2": null, + "address_3": null, + "city": "Stevens Point", + "state_province": "Wisconsin", + "postal_code": "54481", + "country": "United States", + "longitude": -89.5634341, + "latitude": 44.3786458, + "phone": "7155446707", + "website_url": "http://www.district1brewing.com", + "state": "Wisconsin", + "street": "200 Division St N" + }, + { + "id": "f6f63bf2-1334-4a58-8254-a0ac22457e05", + "name": "District 14 Brewery & Pub", + "brewery_type": "closed", + "address_1": "2273 S Howell Ave", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53207-1325", + "country": "United States", + "longitude": -87.9095587, + "latitude": 42.9581912, + "phone": "4147440399", + "website_url": null, + "state": "Wisconsin", + "street": "2273 S Howell Ave" + }, + { + "id": "e69d7c0d-f29a-4668-9419-f74ffc9e19cf", + "name": "District 96 Beer Factory", + "brewery_type": "brewpub", + "address_1": "395 S Main St", + "address_2": null, + "address_3": null, + "city": "New City", + "state_province": "New York", + "postal_code": "10956", + "country": "United States", + "longitude": -73.99100071, + "latitude": 41.13457391, + "phone": "8454992409", + "website_url": "http://www.district96beer.com", + "state": "New York", + "street": "395 S Main St" + }, + { + "id": "98946d35-5b30-40ae-9028-951bca3bfb59", + "name": "District Brewing", + "brewery_type": "brewpub", + "address_1": "520 S Main St", + "address_2": null, + "address_3": null, + "city": "Mount Vernon", + "state_province": "Washington", + "postal_code": "98273-3840", + "country": "United States", + "longitude": -122.338828, + "latitude": 48.419204, + "phone": "3608736714", + "website_url": "https://districtbrewco.com", + "state": "Washington", + "street": "520 S Main St" + }, + { + "id": "4c507b39-6134-4932-8515-7004e4d5876f", + "name": "District Brewing - Ferndale", + "brewery_type": "taproom", + "address_1": "2000 Main St", + "address_2": null, + "address_3": null, + "city": "Ferndale", + "state_province": "Washington", + "postal_code": "98248-4035", + "country": "United States", + "longitude": -122.58975789629, + "latitude": 48.846822336495, + "phone": "3603920808", + "website_url": "https://www.districtbrewco.com/ferndale", + "state": "Washington", + "street": "2000 Main St" + }, + { + "id": "a5f7b66a-2f51-4161-9365-0eef5aa282a5", + "name": "District ChopHouse and Brewery", + "brewery_type": "brewpub", + "address_1": "509 7th St NW", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "District of Columbia", + "postal_code": "20004-1600", + "country": "United States", + "longitude": -77.0216694, + "latitude": 38.8965132, + "phone": "2023473434", + "website_url": "http://www.districtchophouse.com", + "state": "District of Columbia", + "street": "509 7th St NW" + }, + { + "id": "e6521135-22e0-458a-9245-16e9625f700b", + "name": "Dive Bar Brewing Company", + "brewery_type": "proprietor", + "address_1": "5994 S Holly Street #146", + "address_2": null, + "address_3": null, + "city": "Greenwood Village", + "state_province": "Colorado", + "postal_code": "80111", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3039134355", + "website_url": "http://divebarbeer.com", + "state": "Colorado", + "street": "5994 S Holly Street #146" + }, + { + "id": "45fc6ccc-c048-4964-9093-a18c6daa430d", + "name": "Diversion Brewing Co", + "brewery_type": "micro", + "address_1": "729 Wyncoop Creek Rd", + "address_2": null, + "address_3": null, + "city": "Chemung", + "state_province": "New York", + "postal_code": "14825-9755", + "country": "United States", + "longitude": -76.62211, + "latitude": 42.019871, + "phone": "6075429168", + "website_url": "http://www.diversionbrewing.com", + "state": "New York", + "street": "729 Wyncoop Creek Rd" + }, + { + "id": "24b9cbee-b251-4444-b5b1-714b0cb90c0c", + "name": "Divine Barrel Brewing", + "brewery_type": "micro", + "address_1": "3701 N Davidson St Ste 203", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28205-1303", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9802371803", + "website_url": "http://www.divinebarrel.com", + "state": "North Carolina", + "street": "3701 N Davidson St Ste 203" + }, + { + "id": "ec0363c4-8d72-4b1a-b7c9-9aeb1637cbd7", + "name": "Divine Swine BBQ", + "brewery_type": "brewpub", + "address_1": "2684 Lebanon Rd", + "address_2": null, + "address_3": null, + "city": "Manheim", + "state_province": "Pennsylvania", + "postal_code": "17545-9524", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7178799494", + "website_url": "http://www.divine-swine-bbq.com", + "state": "Pennsylvania", + "street": "2684 Lebanon Rd" + }, + { + "id": "ecb3dc09-11f9-4844-8cac-83340856e42d", + "name": "Diving Dog Brewhouse", + "brewery_type": "micro", + "address_1": "1802 Telegraph Ave", + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94612-2110", + "country": "United States", + "longitude": -122.2698881, + "latitude": 37.807739, + "phone": "5103061914", + "website_url": "http://www.divingdogbrew.com", + "state": "California", + "street": "1802 Telegraph Ave" + }, + { + "id": "887c1eb4-f403-4081-9dff-e8d0867b04ed", + "name": "Division 23 Brewing", + "brewery_type": "micro", + "address_1": "7408 Trade St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92121-3415", + "country": "United States", + "longitude": -117.162908, + "latitude": 32.890353, + "phone": "8587521924", + "website_url": "http://www.division23brewing.com", + "state": "California", + "street": "7408 Trade St" + }, + { + "id": "ae6e6e2a-84f4-45c2-adce-e5b80997f35c", + "name": "Division Brewing", + "brewery_type": "micro", + "address_1": "506 E Main St", + "address_2": null, + "address_3": null, + "city": "Arlington", + "state_province": "Texas", + "postal_code": "76010-1228", + "country": "United States", + "longitude": -97.10256904, + "latitude": 32.73630741, + "phone": "2146978350", + "website_url": "http://www.divisionbrewing.com", + "state": "Texas", + "street": "506 E Main St" + }, + { + "id": "4e240752-baf7-4fb7-8f32-c22e7a1e9933", + "name": "Divots Brewery", + "brewery_type": "brewpub", + "address_1": "4200 W Norfolk Ave", + "address_2": null, + "address_3": null, + "city": "Norfolk", + "state_province": "Nebraska", + "postal_code": "68701-9202", + "country": "United States", + "longitude": -97.466386, + "latitude": 42.032539, + "phone": "4028442985", + "website_url": "http://www.divotsbrewery.com", + "state": "Nebraska", + "street": "4200 W Norfolk Ave" + }, + { + "id": "ee957438-dbb4-4cc4-8731-d3482d3a4775", + "name": "Dixie Brewing Co Inc.", + "brewery_type": "closed", + "address_1": "6221 S Claiborne Ave Ste 101", + "address_2": null, + "address_3": null, + "city": "New Orleans", + "state_province": "Louisiana", + "postal_code": "70125-4191", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5048228711", + "website_url": null, + "state": "Louisiana", + "street": "6221 S Claiborne Ave Ste 101" + }, + { + "id": "2795f339-b872-44dd-af71-e79550711989", + "name": "Dixie Brewing Company, LLC", + "brewery_type": "closed", + "address_1": "1450 Poydras St Ste 580", + "address_2": null, + "address_3": null, + "city": "New Orleans", + "state_province": "Louisiana", + "postal_code": "70112-1227", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5059176071", + "website_url": "http://www.dixiebeer.com", + "state": "Louisiana", + "street": "1450 Poydras St Ste 580" + }, + { + "id": "f4b8dca8-d143-4ec1-ad09-9bc6426723be", + "name": "Dixie Grill & Brewery", + "brewery_type": "brewpub", + "address_1": "5101 South Dixie Highway", + "address_2": null, + "address_3": null, + "city": "West Palm Beach", + "state_province": "Florida", + "postal_code": "33405", + "country": "United States", + "longitude": -80.055437, + "latitude": 26.667349, + "phone": "5615863189", + "website_url": null, + "state": "Florida", + "street": "5101 South Dixie Highway" + }, + { + "id": "0e0d87e1-64b3-423d-a658-a81fc56341c2", + "name": "Dobra Zupas", + "brewery_type": "brewpub", + "address_1": "600 S Oakwood Ave", + "address_2": null, + "address_3": null, + "city": "Beckley", + "state_province": "West Virginia", + "postal_code": "25801-5928", + "country": "United States", + "longitude": -81.196413, + "latitude": 37.770874, + "phone": "3042539872", + "website_url": "http://www.dobrazupas.com", + "state": "West Virginia", + "street": "600 S Oakwood Ave" + }, + { + "id": "dfc62a12-e290-4c54-b40f-9ce1eb11e683", + "name": "Doc G's Brewing Company", + "brewery_type": "brewpub", + "address_1": "208 W Long Ave", + "address_2": null, + "address_3": null, + "city": "Du Bois", + "state_province": "Pennsylvania", + "postal_code": "15801-2106", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8142997938", + "website_url": null, + "state": "Pennsylvania", + "street": "208 W Long Ave" + }, + { + "id": "869a2ee4-c387-4263-b1b7-e620d903a829", + "name": "Docent Brewing", + "brewery_type": "brewpub", + "address_1": "33049 Calle Aviador Ste C", + "address_2": null, + "address_3": null, + "city": "San Juan Capistrano", + "state_province": "California", + "postal_code": "92675-4785", + "country": "United States", + "longitude": -117.675787, + "latitude": 33.48333541, + "phone": null, + "website_url": "http://www.docentbrewing.com", + "state": "California", + "street": "33049 Calle Aviador Ste C" + }, + { + "id": "850ac35e-0bdb-4662-a133-22c819b5620e", + "name": "Dock Street Brewery", + "brewery_type": "brewpub", + "address_1": "701 S 50th St Fl 1", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19143-1689", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2157262337", + "website_url": "http://www.dockstreetbeer.com", + "state": "Pennsylvania", + "street": "701 S 50th St Fl 1" + }, + { + "id": "5235f708-e30a-49ae-8681-0ff7167c8e76", + "name": "Dock Street Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19146", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "93306d28-6e24-47ea-af40-dac378f99ea5", + "name": "Dockery's", + "brewery_type": "brewpub", + "address_1": "186 Seven Farms Dr Ste F399", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "South Carolina", + "postal_code": "29492-8510", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8432841173", + "website_url": "http://www.dockerysdi.com", + "state": "South Carolina", + "street": "186 Seven Farms Dr Ste F399" + }, + { + "id": "7f4c815f-5a2f-4e29-adc0-88bcec5acac4", + "name": "Dockside Waterfront Biergarten and Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Milford", + "state_province": "Connecticut", + "postal_code": "06460", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Connecticut", + "street": null + }, + { + "id": "56dce899-ff23-4f0e-be56-05900ecac53e", + "name": "Dodge City Brewing", + "brewery_type": "brewpub", + "address_1": "701 3rd Ave", + "address_2": null, + "address_3": null, + "city": "Dodge City", + "state_province": "Kansas", + "postal_code": "67801-4336", + "country": "United States", + "longitude": -100.020307, + "latitude": 37.754632, + "phone": "6203713999", + "website_url": "http://www.dodgecitybrewing.com", + "state": "Kansas", + "street": "701 3rd Ave" + }, + { + "id": "87250580-6954-4d75-972d-75f7759fefc0", + "name": "Dodgeton Creek Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Trinidad", + "state_province": "Colorado", + "postal_code": "81082-9788", + "country": "United States", + "longitude": -104.5005411, + "latitude": 37.169397, + "phone": "7198462339", + "website_url": "http://www.dodgetoncreek.com", + "state": "Colorado", + "street": null + }, + { + "id": "ac4fe7b3-c512-4b96-9953-27e8362101ff", + "name": "Dodging Duck Brewhaus", + "brewery_type": "brewpub", + "address_1": "402 River Rd", + "address_2": null, + "address_3": null, + "city": "Boerne", + "state_province": "Texas", + "postal_code": "78006-2312", + "country": "United States", + "longitude": -98.72596163, + "latitude": 29.78961761, + "phone": "8302483825", + "website_url": "http://www.dodgingduck.com", + "state": "Texas", + "street": "402 River Rd" + }, + { + "id": "78c50e54-34e3-415d-9574-ac0cc0505113", + "name": "Dog & Pony Alehouse and Grill", + "brewery_type": "closed", + "address_1": "351 Park Ave N", + "address_2": null, + "address_3": null, + "city": "Renton", + "state_province": "Washington", + "postal_code": "98057-5716", + "country": "United States", + "longitude": -122.2023129, + "latitude": 47.48758261, + "phone": "4252548080", + "website_url": "http://www.thedogandpony.com", + "state": "Washington", + "street": "351 Park Ave N" + }, + { + "id": "b29882fe-e037-4e4a-a164-eb76723893ac", + "name": "Dog and Pony Brewing Company", + "brewery_type": "taproom", + "address_1": "5427 Binder Rd", + "address_2": null, + "address_3": null, + "city": "Cashmere", + "state_province": "Washington", + "postal_code": "98815-9690", + "country": "United States", + "longitude": -120.47773889783, + "latitude": 47.508453646467, + "phone": "5092640800", + "website_url": "https://www.facebook.com/DogAndPonybrewing", + "state": "Washington", + "street": "5427 Binder Rd" + }, + { + "id": "c27f55b4-f410-4389-ae35-a5a9bada3578", + "name": "Dog Days Brewing", + "brewery_type": "brewpub", + "address_1": "260 4th St", + "address_2": null, + "address_3": null, + "city": "Bremerton", + "state_province": "Washington", + "postal_code": "98337-1813", + "country": "United States", + "longitude": -122.6259002, + "latitude": 47.5658843, + "phone": "3606279925", + "website_url": "https://www.dogdaysbrewing.com", + "state": "Washington", + "street": "260 4th St" + }, + { + "id": "e7663a51-2d14-4e31-b52b-a3cd846fd19a", + "name": "Dog Money Restaurant", + "brewery_type": "brewpub", + "address_1": "50 Catoctin Cir NE STE 100", + "address_2": null, + "address_3": null, + "city": "Leesburg", + "state_province": "Virginia", + "postal_code": "20176-3102", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7035775452", + "website_url": "http://dogmoneyllc.com", + "state": "Virginia", + "street": "50 Catoctin Cir NE STE 100" + }, + { + "id": "fe4c36a3-d900-46b0-b445-a4f951b9f7e2", + "name": "Dog Rose Brewing Company", + "brewery_type": "micro", + "address_1": "77 Bridge St", + "address_2": null, + "address_3": null, + "city": "Saint Augustine", + "state_province": "Florida", + "postal_code": "32084-4335", + "country": "United States", + "longitude": -81.31306668, + "latitude": 29.88948146, + "phone": "9042173355", + "website_url": "http://www.dogrosebrewing.com", + "state": "Florida", + "street": "77 Bridge St" + }, + { + "id": "e4054c02-8992-4c0c-8954-89f0d6ebaead", + "name": "Dog Tag Brewing", + "brewery_type": "contract", + "address_1": "2042 Stadium Dr Ste 2", + "address_2": null, + "address_3": null, + "city": "Bozeman", + "state_province": "Montana", + "postal_code": "59715-0710", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.dogtagbrewing.org", + "state": "Montana", + "street": "2042 Stadium Dr Ste 2" + }, + { + "id": "9144058f-df13-47b0-b656-4c4384058085", + "name": "DogBerry Brewing LLC", + "brewery_type": "micro", + "address_1": "9964 Crescent Park Dr", + "address_2": null, + "address_3": null, + "city": "West Chester", + "state_province": "Ohio", + "postal_code": "45069", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5138478208", + "website_url": "http://www.dogberrybrewing.com", + "state": "Ohio", + "street": "9964 Crescent Park Dr" + }, + { + "id": "7a6bd1cf-4385-4677-a9d7-3507535399e4", + "name": "Dogfish Head Brewings & Eats", + "brewery_type": "brewpub", + "address_1": "320 Rehoboth Ave", + "address_2": null, + "address_3": null, + "city": "Rehoboth Beach", + "state_province": "Delaware", + "postal_code": "19971-3108", + "country": "United States", + "longitude": -75.08731545, + "latitude": 38.7151767, + "phone": "3022262739", + "website_url": "http://www.dogfish.com", + "state": "Delaware", + "street": "320 Rehoboth Ave" + }, + { + "id": "281e6980-e2e2-4493-9896-3517e8cafe21", + "name": "Dogfish Head Craft Brewery", + "brewery_type": "regional", + "address_1": "6 Cannery Village Ctr", + "address_2": null, + "address_3": null, + "city": "Milton", + "state_province": "Delaware", + "postal_code": "19968-1308", + "country": "United States", + "longitude": -75.31158206, + "latitude": 38.76691205, + "phone": "3026841000", + "website_url": "http://www.dogfish.com", + "state": "Delaware", + "street": "6 Cannery Village Ctr" + }, + { + "id": "c117151a-0efe-4a7a-bbab-ce130ffc2f08", + "name": "Doghaus Brewery", + "brewery_type": "micro", + "address_1": "321 9th St", + "address_2": null, + "address_3": null, + "city": "Leavenworth", + "state_province": "Washington", + "postal_code": "98826-1464", + "country": "United States", + "longitude": -120.6598225, + "latitude": 47.59460883, + "phone": "5098601446", + "website_url": "http://www.doghausbrewery.com", + "state": "Washington", + "street": "321 9th St" + }, + { + "id": "b391b3db-33bf-47d4-8878-ab3f8b610bde", + "name": "Dogtown Brewing", + "brewery_type": "brewpub", + "address_1": "1209 Hull St", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23224", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8047242337", + "website_url": "https://www.dogtownbrewingco.com/", + "state": "Virginia", + "street": "1209 Hull St" + }, + { + "id": "27d18114-31bb-4baf-b330-71bcba80cc8a", + "name": "Dois Corvos Cervejeira, Lda.", + "brewery_type": "micro", + "address_1": "Rua Capitão Leitão, 94", + "address_2": null, + "address_3": null, + "city": "Lisboa", + "state_province": "Lisboa", + "postal_code": "1950-052", + "country": "Portugal", + "longitude": -9.1054830846961, + "latitude": 38.738267427921, + "phone": "+351 211 331 093", + "website_url": "https://www.doiscorvos.pt", + "state": "Lisboa", + "street": "Rua Capitão Leitão, 94" + }, + { + "id": "612d5f63-901f-4b34-abac-cf88157db26c", + "name": "Dolores River Brewery", + "brewery_type": "brewpub", + "address_1": "100 S. 4th St.", + "address_2": null, + "address_3": null, + "city": "Dolores", + "state_province": "Colorado", + "postal_code": "81323-1003", + "country": "United States", + "longitude": -108.504562, + "latitude": 37.47323, + "phone": "9708824677", + "website_url": "http://www.doloresriverbrewery.com", + "state": "Colorado", + "street": "100 S. 4th St." + }, + { + "id": "bf311f48-d8a7-46f6-aa24-cdffee1423d0", + "name": "Donavon Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Arvada", + "state_province": "Colorado", + "postal_code": "80005-3644", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3039975920", + "website_url": "http://www.donavonbrewing.com", + "state": "Colorado", + "street": null + }, + { + "id": "44684d87-a612-43d1-9eda-afd9357f3af1", + "name": "Donegal Brewing Company", + "brewery_type": "regional", + "address_1": "Unit 1 Erneside Business Park", + "address_2": "Portnason", + "address_3": null, + "city": "Ballyshannon", + "state_province": "Donegal", + "postal_code": "F94 Y2NE", + "country": "Ireland", + "longitude": -8.2142367, + "latitude": 54.4977199, + "phone": "353719852434", + "website_url": "https://mcmbrands.ie/beer/", + "state": "Donegal", + "street": "Unit 1 Erneside Business Park" + }, + { + "id": "966c6f2f-fc9a-4d45-84f1-43a7934069b4", + "name": "Donum Dei Brewery", + "brewery_type": "brewpub", + "address_1": "3211 Grant Line Rd Ste 3", + "address_2": null, + "address_3": null, + "city": "New Albany", + "state_province": "Indiana", + "postal_code": "47150-2175", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5025412950", + "website_url": null, + "state": "Indiana", + "street": "3211 Grant Line Rd Ste 3" + }, + { + "id": "388db412-bf61-4655-a93e-24367b6db51c", + "name": "Doomsday Brewing Company and Pizza - Washougal", + "brewery_type": "brewpub", + "address_1": "421 C St Ste 3", + "address_2": null, + "address_3": null, + "city": "Washougal", + "state_province": "Washington", + "postal_code": "98671-2169", + "country": "United States", + "longitude": -122.3735012, + "latitude": 45.58111086, + "phone": "3603359909", + "website_url": "http://www.doomsdaybrewing.com", + "state": "Washington", + "street": "421 C St Ste 3" + }, + { + "id": "55608d36-62d6-449d-a7f6-a1e0df277831", + "name": "Doomsday Brewing Pub and Pizza - Vancouver", + "brewery_type": "closed", + "address_1": "9301 NE 5th Ave Ste 120", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98665-8271", + "country": "United States", + "longitude": -122.6666369, + "latitude": 45.68816081, + "phone": "3605598241", + "website_url": "http://www.doomsdaybrewing.com", + "state": "Washington", + "street": "9301 NE 5th Ave Ste 120" + }, + { + "id": "d916d0af-0cad-4876-a015-d44411332878", + "name": "Doomsday Brewing Safe House", + "brewery_type": "micro", + "address_1": "1919 Main St", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98660-2634", + "country": "United States", + "longitude": -122.6712833, + "latitude": 45.6364012, + "phone": "3605037649", + "website_url": "http://www.doomsdaybrewing.com", + "state": "Washington", + "street": "1919 Main St" + }, + { + "id": "d4a27cbf-93bd-4b3d-89b3-3b1898336f74", + "name": "Door 4 Brewing Co", + "brewery_type": "micro", + "address_1": "1214 W Cerro Gordo St", + "address_2": null, + "address_3": null, + "city": "Decatur", + "state_province": "Illinois", + "postal_code": "62522-2008", + "country": "United States", + "longitude": -88.97523814, + "latitude": 39.84662586, + "phone": "2173302008", + "website_url": "http://www.door4brewing.com", + "state": "Illinois", + "street": "1214 W Cerro Gordo St" + }, + { + "id": "4761d4a5-08c2-4b99-94d6-9870a1296f0b", + "name": "Door County Brewing Co./ Hacienda Beer Co", + "brewery_type": "micro", + "address_1": "8099 State Highway 57 PO Box 201", + "address_2": null, + "address_3": null, + "city": "Baileys Harbor", + "state_province": "Wisconsin", + "postal_code": "54202-0201", + "country": "United States", + "longitude": -87.123759815512, + "latitude": 45.064548950869, + "phone": "9204931517", + "website_url": "http://doorcountybrewingco.com", + "state": "Wisconsin", + "street": "8099 State Highway 57 PO Box 201" + }, + { + "id": "113d2b74-bb5c-4954-9277-da0101571737", + "name": "Dorchester Brewing Company", + "brewery_type": "micro", + "address_1": "1250 Massachusetts Ave", + "address_2": null, + "address_3": null, + "city": "Dorchester", + "state_province": "Massachusetts", + "postal_code": "02125-1698", + "country": "United States", + "longitude": -71.0615585, + "latitude": 42.3204879, + "phone": "6175140900", + "website_url": "http://www.dorchesterbrewing.com", + "state": "Massachusetts", + "street": "1250 Massachusetts Ave" + }, + { + "id": "25dd3b18-3204-4539-b58b-95478fbcb531", + "name": "Dorcol Distilling and Brewing CO", + "brewery_type": "micro", + "address_1": "1902 S Flores St", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78204", + "country": "United States", + "longitude": -98.502373, + "latitude": 29.405708, + "phone": "2102290607", + "website_url": "http://www.dorcolspirits.com", + "state": "Texas", + "street": "1902 S Flores St" + }, + { + "id": "69303b89-551f-4ef5-8e2f-268910c9b5e6", + "name": "Dos Desperados Brewery", + "brewery_type": "micro", + "address_1": "1241 Linda Vista Dr", + "address_2": null, + "address_3": null, + "city": "San Marcos", + "state_province": "California", + "postal_code": "92078-3809", + "country": "United States", + "longitude": -117.1928216, + "latitude": 33.13740391, + "phone": "7605666209", + "website_url": "http://www.dosdesperadosbrew.com", + "state": "California", + "street": "1241 Linda Vista Dr" + }, + { + "id": "cc134379-14ee-4246-9535-ae117501b9af", + "name": "Dos Luces Brewery", + "brewery_type": "contract", + "address_1": "1236 S Broadway", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80210-1504", + "country": "United States", + "longitude": -104.9874923, + "latitude": 39.6830067, + "phone": "3037254527", + "website_url": "http://www.dosluces.com", + "state": "Colorado", + "street": "1236 S Broadway" + }, + { + "id": "b6aee9c0-d332-4363-a4af-1d89c93f134a", + "name": "Dostal Alley Brewing Co", + "brewery_type": "brewpub", + "address_1": "116 Main St", + "address_2": null, + "address_3": null, + "city": "Central City", + "state_province": "Colorado", + "postal_code": "80427", + "country": "United States", + "longitude": -105.512426, + "latitude": 39.8001431, + "phone": "3035821610", + "website_url": "http://www.dostalalley.net", + "state": "Colorado", + "street": "116 Main St" + }, + { + "id": "beb3aa65-0024-42a1-8943-74017faed659", + "name": "DOT Brew", + "brewery_type": "micro", + "address_1": "9 Dolphin's Barn", + "address_2": "Ushers", + "address_3": null, + "city": "Dublin", + "state_province": "Dublin", + "postal_code": "D08 WD35", + "country": "Ireland", + "longitude": -6.2950084, + "latitude": 53.3337548, + "phone": null, + "website_url": "https://dotbrew.ie/", + "state": "Dublin", + "street": "9 Dolphin's Barn" + }, + { + "id": "4c3bac7f-3fa2-4153-8abd-28009c6e3031", + "name": "Double Barley Brewing", + "brewery_type": "brewpub", + "address_1": "3174 US Highway 70 W", + "address_2": null, + "address_3": null, + "city": "Smithfield", + "state_province": "North Carolina", + "postal_code": "27577-7613", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9199343433", + "website_url": "http://www.doublebarleybrewing.com", + "state": "North Carolina", + "street": "3174 US Highway 70 W" + }, + { + "id": "685d73e3-bb8c-47a7-a73a-b8f168903ddd", + "name": "Double Bluff Brewing", + "brewery_type": "micro", + "address_1": "112 Anthes Ave", + "address_2": null, + "address_3": null, + "city": "Langley", + "state_province": "Washington", + "postal_code": "98260-", + "country": "United States", + "longitude": -122.4090435, + "latitude": 48.0403212, + "phone": "3603339113", + "website_url": "http://www.dblfbrewing.com", + "state": "Washington", + "street": "112 Anthes Ave" + }, + { + "id": "4de6e1d2-9c69-438d-97a6-f9adcfb4c15b", + "name": "Double D Brewing / Dommy's Pizza", + "brewery_type": "brewpub", + "address_1": "1100 Hancock Ave", + "address_2": null, + "address_3": null, + "city": "Vandergrift", + "state_province": "Pennsylvania", + "postal_code": "15690-2061", + "country": "United States", + "longitude": -79.57625, + "latitude": 40.588461, + "phone": "7245676789", + "website_url": "http://dommyspizza.com", + "state": "Pennsylvania", + "street": "1100 Hancock Ave" + }, + { + "id": "95269547-cf11-40b4-bd0c-81cf20fb49fe", + "name": "Double Edge Brewing Co", + "brewery_type": "micro", + "address_1": "158 W Chestnut St", + "address_2": null, + "address_3": null, + "city": "Lancaster", + "state_province": "Ohio", + "postal_code": "43130-4308", + "country": "United States", + "longitude": -82.6042529, + "latitude": 39.7123647, + "phone": "7402777465", + "website_url": "http://www.double-edge.beer", + "state": "Ohio", + "street": "158 W Chestnut St" + }, + { + "id": "bedc4634-4155-4448-9d33-b5a8a2e5fb71", + "name": "Double Horn Brewing Co", + "brewery_type": "brewpub", + "address_1": "208 Avenue H", + "address_2": null, + "address_3": null, + "city": "Marble Falls", + "state_province": "Texas", + "postal_code": "78654-5750", + "country": "United States", + "longitude": -98.27635445, + "latitude": 30.57127795, + "phone": "8306935165", + "website_url": "http://www.doublehornbrewing.com", + "state": "Texas", + "street": "208 Avenue H" + }, + { + "id": "128d2350-9a0a-4f2e-b327-887af1cc2f7d", + "name": "Double Mountain Brewery", + "brewery_type": "micro", + "address_1": "8 4th St Ste 204", + "address_2": null, + "address_3": null, + "city": "Hood River", + "state_province": "Oregon", + "postal_code": "97031-2123", + "country": "United States", + "longitude": -121.5145087, + "latitude": 45.71003675, + "phone": "5413870042", + "website_url": "http://www.doublemountainbrewery.com", + "state": "Oregon", + "street": "8 4th St Ste 204" + }, + { + "id": "ef9cbcd6-3087-44f1-add7-2e2ea086dc4c", + "name": "Double Nickel Brewing Company", + "brewery_type": "micro", + "address_1": "1585 Route 73", + "address_2": null, + "address_3": null, + "city": "Pennsauken", + "state_province": "New Jersey", + "postal_code": "08110-1330", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8563562499", + "website_url": "http://www.DNBCBEER.com", + "state": "New Jersey", + "street": "1585 Route 73" + }, + { + "id": "98ba45e2-9378-4b2b-8e58-82b651e99d5e", + "name": "Double Shift Brewing", + "brewery_type": "micro", + "address_1": "412 E 18th St", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64108-1410", + "country": "United States", + "longitude": -94.57868373, + "latitude": 39.09170494, + "phone": "8163047028", + "website_url": "http://www.doubleshiftbrewing.com", + "state": "Missouri", + "street": "412 E 18th St" + }, + { + "id": "1fd31bf5-ffde-495e-8bdc-cc4666cd7cb5", + "name": "Double Wing Brewing Co", + "brewery_type": "brewpub", + "address_1": "7840 Doty Rd", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Ohio", + "postal_code": "44057-9511", + "country": "United States", + "longitude": -81.00537902, + "latitude": 41.74037309, + "phone": "4404663485", + "website_url": "http://www.ratbrew.com", + "state": "Ohio", + "street": "7840 Doty Rd" + }, + { + "id": "c71cd9d0-be0f-4528-8d21-9f89957372f9", + "name": "Dovetail Brewery", + "brewery_type": "micro", + "address_1": "1800 W Belle Plaine Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60613-1827", + "country": "United States", + "longitude": -87.6743858, + "latitude": 41.9561589, + "phone": null, + "website_url": "http://www.dovetailbrewery.com", + "state": "Illinois", + "street": "1800 W Belle Plaine Ave" + }, + { + "id": "e1e4d221-608a-4a65-9a55-4f142ffb57d8", + "name": "Down the Road Brewery", + "brewery_type": "micro", + "address_1": "199 Ashland Street", + "address_2": null, + "address_3": null, + "city": "Everett", + "state_province": "Massachusetts", + "postal_code": "02149", + "country": "United States", + "longitude": -71.061481, + "latitude": 42.397645, + "phone": "6174544255", + "website_url": "http://www.downtheroadbrewery.com", + "state": "Massachusetts", + "street": "199 Ashland Street" + }, + { + "id": "ffcc9d52-9de7-41a6-956c-36875ca71dca", + "name": "Downdraft Brewing Co", + "brewery_type": "closed", + "address_1": "418 W Seltice Way", + "address_2": null, + "address_3": null, + "city": "Post Falls", + "state_province": "Idaho", + "postal_code": "83854-", + "country": "United States", + "longitude": -116.9573256, + "latitude": 47.715079, + "phone": "2082624233", + "website_url": "http://www.downdraftbrewing.com", + "state": "Idaho", + "street": "418 W Seltice Way" + }, + { + "id": "51421b18-93e4-4d09-b694-388dcb5df2fe", + "name": "Downey Brewing Company", + "brewery_type": "micro", + "address_1": "13121 Prospect St", + "address_2": null, + "address_3": null, + "city": "Dearborn", + "state_province": "Michigan", + "postal_code": "48126-3603", + "country": "United States", + "longitude": -83.17350725, + "latitude": 42.31625295, + "phone": "3132888442", + "website_url": "http://www.downeybrewingcompany.com", + "state": "Michigan", + "street": "13121 Prospect St" + }, + { + "id": "817d2caa-c087-4b68-abea-6b7b797d17f8", + "name": "Downhill Brewing", + "brewery_type": "micro", + "address_1": "18921 Plaza Dr Ste 104", + "address_2": null, + "address_3": null, + "city": "Parker", + "state_province": "Colorado", + "postal_code": "80134-9679", + "country": "United States", + "longitude": -104.7702488, + "latitude": 39.52707, + "phone": "3038052739", + "website_url": "https://www.downhillbrews.com/", + "state": "Colorado", + "street": "18921 Plaza Dr Ste 104" + }, + { + "id": "20b38dd1-4c83-4b4f-83c5-299fd1258ffe", + "name": "Downhill Brewing - Greenwood Village", + "brewery_type": "micro", + "address_1": "9672 E Arapahoe Rd", + "address_2": null, + "address_3": null, + "city": "Greenwood Village", + "state_province": "Colorado", + "postal_code": "80112", + "country": "United States", + "longitude": -104.8770221, + "latitude": 39.5947103, + "phone": "7205084210", + "website_url": "https://www.downhillbrews.com/", + "state": "Colorado", + "street": "9672 E Arapahoe Rd" + }, + { + "id": "ae2d14fa-3144-4a8d-8161-c2c3febc01bd", + "name": "Downpour Brewing LLC", + "brewery_type": "micro", + "address_1": "10991 NE State Highway 104", + "address_2": null, + "address_3": null, + "city": "Kingston", + "state_province": "Washington", + "postal_code": "98346-", + "country": "United States", + "longitude": -122.5001587, + "latitude": 47.8010831, + "phone": "3608810452", + "website_url": "http://www.downpourbrewing.com", + "state": "Washington", + "street": "10991 NE State Highway 104" + }, + { + "id": "42114875-dc49-4158-b524-f130768441c8", + "name": "Downtown Grill & Brewery / Woodruff Brewing", + "brewery_type": "brewpub", + "address_1": "424 S Gay St", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37902-1103", + "country": "United States", + "longitude": -83.9186686, + "latitude": 35.96606301, + "phone": "8656338111", + "website_url": "http://www.downtownbrewery.com", + "state": "Tennessee", + "street": "424 S Gay St" + }, + { + "id": "e7857d07-0058-48f8-b064-e76029c6ee6e", + "name": "Downtown Joes Brewery and Restaurant", + "brewery_type": "brewpub", + "address_1": "902 Main St", + "address_2": null, + "address_3": null, + "city": "Napa", + "state_province": "California", + "postal_code": "94559-3045", + "country": "United States", + "longitude": -122.2848936, + "latitude": 38.29865653, + "phone": "7072582337", + "website_url": "http://www.downtownjoes.com", + "state": "California", + "street": "902 Main St" + }, + { + "id": "6b607ba6-859a-4a16-a51f-c0f55f4a98f8", + "name": "Doylestown Brewing Co", + "brewery_type": "proprietor", + "address_1": "52 East State St.", + "address_2": null, + "address_3": null, + "city": "Doylestown", + "state_province": "Pennsylvania", + "postal_code": "18901", + "country": "United States", + "longitude": -75.1291116, + "latitude": 40.31027305, + "phone": "2153401414", + "website_url": null, + "state": "Pennsylvania", + "street": "52 East State St." + }, + { + "id": "fe0fd454-10bb-437c-912c-3fd5d416e7db", + "name": "Dr Hops Kombucha Beer", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "San Leandro", + "state_province": "California", + "postal_code": "94577-1263", + "country": "United States", + "longitude": -122.1560768, + "latitude": 37.7249296, + "phone": "3109168090", + "website_url": "http://www.DrhopsKombuchaBeer.com", + "state": "California", + "street": null + }, + { + "id": "a776c995-076a-4562-8434-467f01f3818a", + "name": "Dr Jekyll's Craft Beer", + "brewery_type": "contract", + "address_1": "825 Cambridge Ct", + "address_2": null, + "address_3": null, + "city": "Pasadena", + "state_province": "California", + "postal_code": "91107-1977", + "country": "United States", + "longitude": -118.0798642, + "latitude": 34.16059077, + "phone": "3102738339", + "website_url": "http://www.drjekylls.com", + "state": "California", + "street": "825 Cambridge Ct" + }, + { + "id": "85478ddc-a830-43e5-beeb-66cead1a99c4", + "name": "Drafting Table Brewing Company", + "brewery_type": "micro", + "address_1": "49438 Pontiac Trl", + "address_2": null, + "address_3": null, + "city": "Wixom", + "state_province": "Michigan", + "postal_code": "48393-2005", + "country": "United States", + "longitude": -83.53663792, + "latitude": 42.52440117, + "phone": "2489567279", + "website_url": "http://www.draftingtablebeer.com", + "state": "Michigan", + "street": "49438 Pontiac Trl" + }, + { + "id": "a9a0f855-a16c-4ee8-a0a2-8e9c0552b985", + "name": "Dragon Hops Brewing", + "brewery_type": "micro", + "address_1": "130 E Main St", + "address_2": null, + "address_3": null, + "city": "Purcellville", + "state_province": "Virginia", + "postal_code": "20132-3162", + "country": "United States", + "longitude": -77.69298485, + "latitude": 39.1360524, + "phone": "5404413279", + "website_url": "http://www.dragonhopsbrewing.com", + "state": "Virginia", + "street": "130 E Main St" + }, + { + "id": "9429d00b-cdaf-46a0-8073-362cc90aad08", + "name": "Dragon Run Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Manquin", + "state_province": "Virginia", + "postal_code": "23106", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8043800730", + "website_url": "http://www.dragonrunbrewing.com", + "state": "Virginia", + "street": null + }, + { + "id": "52c41ba0-3c69-4e41-b028-d9d4c3035249", + "name": "Dragon's Gate Brewery", + "brewery_type": "micro", + "address_1": "52288 Sunquist Rd", + "address_2": null, + "address_3": null, + "city": "Milton Freewater", + "state_province": "Oregon", + "postal_code": "97862-6856", + "country": "United States", + "longitude": -118.4439713, + "latitude": 45.98541686, + "phone": "5412152622", + "website_url": "http://www.dragonsgatebrewery.com", + "state": "Oregon", + "street": "52288 Sunquist Rd" + }, + { + "id": "8ace7ff0-245c-4133-862c-2ca4eb3b7a65", + "name": "Dragon's Tale Brewery", + "brewery_type": "micro", + "address_1": "8920 Vernon Ave Ste 122", + "address_2": null, + "address_3": null, + "city": "Montclair", + "state_province": "California", + "postal_code": "91763-1662", + "country": "United States", + "longitude": -117.686437, + "latitude": 34.09189898, + "phone": "9095292688", + "website_url": "http://www.dragonstalebrewery.com", + "state": "California", + "street": "8920 Vernon Ave Ste 122" + }, + { + "id": "f10850c4-f516-4ecd-9b8c-3fc20f134187", + "name": "Dragonmead Microbrewery", + "brewery_type": "micro", + "address_1": "14600 E 11 Mile Rd", + "address_2": null, + "address_3": null, + "city": "Warren", + "state_province": "Michigan", + "postal_code": "48089-1556", + "country": "United States", + "longitude": -83.0278041, + "latitude": 42.492142, + "phone": "5867769428", + "website_url": null, + "state": "Michigan", + "street": "14600 E 11 Mile Rd" + }, + { + "id": "71eb91ae-4d50-4f01-840c-7552df4d96bd", + "name": "Dragoon Brewing Co", + "brewery_type": "micro", + "address_1": "1859 W Grant Rd Ste 111", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85745-1214", + "country": "United States", + "longitude": -111.0054521, + "latitude": 32.25049461, + "phone": "5203293606", + "website_url": "http://www.dragoonbrewing.com", + "state": "Arizona", + "street": "1859 W Grant Rd Ste 111" + }, + { + "id": "8f19cd9b-a675-473d-8493-42fd6b12c38e", + "name": "Drake's Brewing Co.", + "brewery_type": "regional", + "address_1": "1933 Davis St Ste 177", + "address_2": null, + "address_3": null, + "city": "San Leandro", + "state_province": "California", + "postal_code": "94577-1256", + "country": "United States", + "longitude": -122.1791401, + "latitude": 37.71493644, + "phone": "5105682739", + "website_url": "http://www.drinkdrakes.com", + "state": "California", + "street": "1933 Davis St Ste 177" + }, + { + "id": "654a71a4-5c14-4035-ae91-f7c462d9c4f5", + "name": "Drakensberg Brewery", + "brewery_type": "brewpub", + "address_1": "El Mirador Farm", + "address_2": " R600", + "address_3": null, + "city": "Winterton", + "state_province": "KwaZulu-Natal", + "postal_code": "3340", + "country": "South Africa", + "longitude": 29.5633, + "latitude": -29.0227, + "phone": "+27 82 815 1373", + "website_url": "https://drakensbergbrewery.co.za/", + "state": "KwaZulu-Natal", + "street": "El Mirador Farm" + }, + { + "id": "0fde773c-3201-4be7-b3ba-caf278efa4d3", + "name": "Draper Brewing", + "brewery_type": "micro", + "address_1": "640 SE Jackson St", + "address_2": null, + "address_3": null, + "city": "Roseburg", + "state_province": "Oregon", + "postal_code": "97470", + "country": "United States", + "longitude": -123.3445979, + "latitude": 43.2084738, + "phone": "5415805585", + "website_url": "http://www.draperbrewing.com", + "state": "Oregon", + "street": "640 SE Jackson St" + }, + { + "id": "7b2f69d5-fc55-4ff2-9df1-b53ace7bc173", + "name": "Dratz Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Loveland", + "state_province": "Colorado", + "postal_code": "80537", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9705660036", + "website_url": "http://www.dratzbrewing.com", + "state": "Colorado", + "street": null + }, + { + "id": "b70bb5a2-bcc5-43c5-8370-58d292c4625d", + "name": "Draught Horse Brewery", + "brewery_type": "brewpub", + "address_1": "57721 Grand River Ave", + "address_2": null, + "address_3": null, + "city": "New Hudson", + "state_province": "Michigan", + "postal_code": "48165-8542", + "country": "United States", + "longitude": -83.61459, + "latitude": 42.5113546, + "phone": "2486173000", + "website_url": "http://www.draughthorsebrewery.com", + "state": "Michigan", + "street": "57721 Grand River Ave" + }, + { + "id": "9e3d79b0-5411-425d-9ead-e86abeb58c98", + "name": "Draught House Pub and Brewery", + "brewery_type": "micro", + "address_1": "4112 Medical Pkwy Ste 100", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78756-3715", + "country": "United States", + "longitude": -97.7428611, + "latitude": 30.3110713, + "phone": "5124526258", + "website_url": "http://www.draughthouse.com", + "state": "Texas", + "street": "4112 Medical Pkwy Ste 100" + }, + { + "id": "07ee729a-9c76-4092-9b11-4cc951eb3baf", + "name": "Draught Works Brewing", + "brewery_type": "micro", + "address_1": "915 Toole Ave", + "address_2": null, + "address_3": null, + "city": "Missoula", + "state_province": "Montana", + "postal_code": "59802-2625", + "country": "United States", + "longitude": -114.0044493, + "latitude": 46.8782576, + "phone": "4062412423", + "website_url": "http://www.draughtworksbrewery.com", + "state": "Montana", + "street": "915 Toole Ave" + }, + { + "id": "f6f59f19-f861-42de-9367-023645506733", + "name": "Draughtsman Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "La Mirada", + "state_province": "California", + "postal_code": "90638-3454", + "country": "United States", + "longitude": -118.0107092, + "latitude": 33.9060971, + "phone": null, + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "063dc603-aa8f-412d-9c8a-ac7c598c043a", + "name": "Draughtsmen Aleworks", + "brewery_type": "micro", + "address_1": "53 Santa Felicia Dr", + "address_2": null, + "address_3": null, + "city": "Goleta", + "state_province": "California", + "postal_code": "93117-2804", + "country": "United States", + "longitude": -119.8759909, + "latitude": 34.43146172, + "phone": "8053872577", + "website_url": "http://www.draughtsmenaleworks.com", + "state": "California", + "street": "53 Santa Felicia Dr" + }, + { + "id": "05d373e0-bced-421e-8691-18749c239d7a", + "name": "Draymans Brewery", + "brewery_type": "micro", + "address_1": "331 Alwyn Street", + "address_2": "Waltloo", + "address_3": null, + "city": "Pretoria", + "state_province": "Gauteng", + "postal_code": "0184", + "country": "South Africa", + "longitude": 28.3151, + "latitude": -25.7276, + "phone": "+27 12 804 8838", + "website_url": "https://draymans.com/", + "state": "Gauteng", + "street": "331 Alwyn Street" + }, + { + "id": "0e7be133-1cb4-4c39-848c-2014ee5b359b", + "name": "Dreadnought Brewing LLC", + "brewery_type": "brewpub", + "address_1": "16726 146th St SE Ste 153", + "address_2": null, + "address_3": null, + "city": "Monroe", + "state_province": "Washington", + "postal_code": "98272-2937", + "country": "United States", + "longitude": -122.0062527, + "latitude": 47.86470473, + "phone": "3608632479", + "website_url": "http://www.dreadnoughtbrewing.com", + "state": "Washington", + "street": "16726 146th St SE Ste 153" + }, + { + "id": "fcc44f51-2c5c-4baa-9c37-5996a01b5512", + "name": "Dreaming Creek Brewery", + "brewery_type": "micro", + "address_1": "109 E Irvine St", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Kentucky", + "postal_code": "40475-1521", + "country": "United States", + "longitude": -84.29111565, + "latitude": 37.747285, + "phone": null, + "website_url": "http://www.dreamingcreekbrewery.beer", + "state": "Kentucky", + "street": "109 E Irvine St" + }, + { + "id": "350f58c9-f1e6-4668-bf55-15dc557ec94c", + "name": "Dreaming Dog Brewery", + "brewery_type": "micro", + "address_1": "2501 W Taron Ct", + "address_2": null, + "address_3": null, + "city": "Elk Grove", + "state_province": "California", + "postal_code": "95757-8423", + "country": "United States", + "longitude": -121.4809068, + "latitude": 38.40805044, + "phone": null, + "website_url": null, + "state": "California", + "street": "2501 W Taron Ct" + }, + { + "id": "3799434f-4c20-4d7b-9085-6c83db87c1c7", + "name": "Drekker Brewing Company", + "brewery_type": "micro", + "address_1": "1666 1st Ave N", + "address_2": null, + "address_3": null, + "city": "Fargo", + "state_province": "North Dakota", + "postal_code": "58102-4246", + "country": "United States", + "longitude": -96.80829701, + "latitude": 46.87930301, + "phone": "7015320506", + "website_url": "http://www.drekkerbrewing.com", + "state": "North Dakota", + "street": "1666 1st Ave N" + }, + { + "id": "5caa5486-f355-4e8a-b7c5-90d7a9c85cbd", + "name": "Drew Fox Brewing Company", + "brewery_type": "micro", + "address_1": "Unit 8", + "address_2": "Clonard Rd", + "address_3": "Westpoint Business Park", + "city": "Wexford", + "state_province": "Wexford", + "postal_code": "Y35 HN50", + "country": "Ireland", + "longitude": -6.4921242, + "latitude": 52.3311164, + "phone": null, + "website_url": "http://www.cleverman.ie/", + "state": "Wexford", + "street": "Unit 8" + }, + { + "id": "62129c35-2820-46bb-8ed6-daf95d0c2a2a", + "name": "Drifter Brewing Company", + "brewery_type": "micro", + "address_1": "656 Mowbray Road", + "address_2": "Woodstock", + "address_3": null, + "city": "Cape Town", + "state_province": "Western Cape", + "postal_code": "7925", + "country": "South Africa", + "longitude": 18.4552, + "latitude": -33.9314, + "phone": "+27 21 447 8710", + "website_url": "https://drifterbrewing.co.za/", + "state": "Western Cape", + "street": "656 Mowbray Road" + }, + { + "id": "44c3432e-9643-4a92-b7fc-4fa6c375995c", + "name": "Driftless Brewing Co", + "brewery_type": "micro", + "address_1": "102 Sunbeam Blvd W", + "address_2": null, + "address_3": null, + "city": "Soldiers Grove", + "state_province": "Wisconsin", + "postal_code": "54655-1001", + "country": "United States", + "longitude": -90.76571832, + "latitude": 43.38921997, + "phone": "66086245577", + "website_url": "http://www.driftlessbrewing.com", + "state": "Wisconsin", + "street": "102 Sunbeam Blvd W" + }, + { + "id": "fd696e0a-a7bc-4f17-ac41-ede9b13b24d0", + "name": "Drink Me Brewing", + "brewery_type": "micro", + "address_1": "210 9th St", + "address_2": null, + "address_3": null, + "city": "Sibley", + "state_province": "Iowa", + "postal_code": "51249-1812", + "country": "United States", + "longitude": -95.7506989, + "latitude": 43.39942206, + "phone": "2173161890", + "website_url": "http://www.drinkmebrewing.com", + "state": "Iowa", + "street": "210 9th St" + }, + { + "id": "fa16f1e8-3ee9-46e8-8c40-64a05947f6a2", + "name": "Drinking Horse Brewing Company", + "brewery_type": "micro", + "address_1": "11517 SE Highway 212", + "address_2": null, + "address_3": null, + "city": "Clackamas", + "state_province": "Oregon", + "postal_code": "97015-9053", + "country": "United States", + "longitude": -122.378124, + "latitude": 45.4288733, + "phone": "5035648165", + "website_url": "http://www.drinkinghorsebeer.com", + "state": "Oregon", + "street": "11517 SE Highway 212" + }, + { + "id": "29891984-0438-4e8a-be6c-f7275fda484b", + "name": "Drop In Brewing", + "brewery_type": "micro", + "address_1": "610 Route 7 S", + "address_2": null, + "address_3": null, + "city": "Middlebury", + "state_province": "Vermont", + "postal_code": "05753-8987", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8029897414", + "website_url": "http://www.dropinbeer.com", + "state": "Vermont", + "street": "610 Route 7 S" + }, + { + "id": "e3e862c9-ecda-4cba-abbc-bf1c8ce6539a", + "name": "Dru Bru - Cle Elum", + "brewery_type": "micro", + "address_1": "1015 E 2nd St.", + "address_2": null, + "address_3": null, + "city": "Cle Elum", + "state_province": "Washington", + "postal_code": "98922-1324", + "country": "United States", + "longitude": -120.917988, + "latitude": 47.194315, + "phone": "4254340700", + "website_url": "http://www.drubru.com", + "state": "Washington", + "street": "1015 E 2nd St." + }, + { + "id": "c020e892-ad66-4b36-be5e-d0095ab3a263", + "name": "Dru Bru - Snoqualmie Pass", + "brewery_type": "micro", + "address_1": "10 Pass Life Way # 3", + "address_2": null, + "address_3": null, + "city": "Snoqualmie Pass", + "state_province": "Washington", + "postal_code": "98068", + "country": "United States", + "longitude": -121.412584, + "latitude": 47.421312, + "phone": "4254340700", + "website_url": "http://www.drubru.com", + "state": "Washington", + "street": "10 Pass Life Way # 3" + }, + { + "id": "2fc58bc4-57fa-4880-9286-095548fb5ec6", + "name": "Druid City Brewing", + "brewery_type": "micro", + "address_1": "607 14th St", + "address_2": null, + "address_3": null, + "city": "Tuscaloosa", + "state_province": "Alabama", + "postal_code": "35401-3439", + "country": "United States", + "longitude": -87.54373615, + "latitude": 33.19997474, + "phone": "2058868140", + "website_url": "http://www.druidcitybrewing.com", + "state": "Alabama", + "street": "607 14th St" + }, + { + "id": "1b1fa0ef-7e76-474a-88d2-7f22b56bb3ff", + "name": "Drumconrath Brewing Company", + "brewery_type": "micro", + "address_1": "630 1st Ave N", + "address_2": null, + "address_3": null, + "city": "Fargo", + "state_province": "North Dakota", + "postal_code": "58102-5268", + "country": "United States", + "longitude": -96.78936674, + "latitude": 46.8773031, + "phone": "7016453786", + "website_url": "http://www.drumconrathbrewing.com", + "state": "North Dakota", + "street": "630 1st Ave N" + }, + { + "id": "e1f2d5c0-4b41-47f1-9a7a-5638851a9ac5", + "name": "Drumming Grouse Brewery, LLC", + "brewery_type": "micro", + "address_1": "318 Fosterville Rd", + "address_2": null, + "address_3": null, + "city": "Bridgton", + "state_province": "Maine", + "postal_code": "04009-4032", + "country": "United States", + "longitude": -70.68838325, + "latitude": 43.97416125, + "phone": "4109609679", + "website_url": "http://www.drumminggrousebrewery.com", + "state": "Maine", + "street": "318 Fosterville Rd" + }, + { + "id": "cfff9480-fc9e-4ac6-addc-f64fbb834fef", + "name": "Drunken Rabbit Brewing", + "brewery_type": "micro", + "address_1": "749A New Ludlow Rd", + "address_2": null, + "address_3": null, + "city": "South Hadley", + "state_province": "Massachusetts", + "postal_code": "01020", + "country": "United States", + "longitude": -72.553245, + "latitude": 42.217914, + "phone": "4137282739", + "website_url": "http://www.rabbit.beer", + "state": "Massachusetts", + "street": "749A New Ludlow Rd" + }, + { + "id": "0d191216-159d-4314-ba33-c23d979afd74", + "name": "Druthers Brewing Co", + "brewery_type": "brewpub", + "address_1": "381 Broadway", + "address_2": null, + "address_3": null, + "city": "Saratoga Springs", + "state_province": "New York", + "postal_code": "12866-3111", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5183065275", + "website_url": "http://www.druthersbrewing.com", + "state": "New York", + "street": "381 Broadway" + }, + { + "id": "b28c0edf-d271-4d60-997a-aa52aab7170f", + "name": "Dry City Brew Works", + "brewery_type": "micro", + "address_1": "120B N Main St", + "address_2": null, + "address_3": null, + "city": "Wheaton", + "state_province": "Illinois", + "postal_code": "60187-", + "country": "United States", + "longitude": -88.1069594, + "latitude": 41.86544335, + "phone": "6304564787", + "website_url": "http://www.drycitybrewworks.com", + "state": "Illinois", + "street": "120B N Main St" + }, + { + "id": "ec86cc6f-53f8-4715-8595-fe68cf676bc6", + "name": "Dry County Brewing", + "brewery_type": "brewpub", + "address_1": "585 Oak Ave", + "address_2": null, + "address_3": null, + "city": "Spruce Pine", + "state_province": "North Carolina", + "postal_code": "28777-2727", + "country": "United States", + "longitude": -82.063578, + "latitude": 35.9158912, + "phone": "8287654583", + "website_url": "http://www.drycountybrewing.com", + "state": "North Carolina", + "street": "585 Oak Ave" + }, + { + "id": "8f0e3986-07af-496e-9149-bbcde8bb9b84", + "name": "Dry County Brewing Company", + "brewery_type": "micro", + "address_1": "1500 Lockhart Drive", + "address_2": null, + "address_3": null, + "city": "kennesaw", + "state_province": "Georgia", + "postal_code": "30144", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4045799846", + "website_url": "http://www.DryCountyBrewCo.com", + "state": "Georgia", + "street": "1500 Lockhart Drive" + }, + { + "id": "f5bcfd6a-160a-4d65-a5b7-834564023123", + "name": "Dry Dock Brewing Co - North Dock", + "brewery_type": "regional", + "address_1": "2801 Tower Rd", + "address_2": null, + "address_3": null, + "city": "Aurora", + "state_province": "Colorado", + "postal_code": "80011-3508", + "country": "United States", + "longitude": -104.772404, + "latitude": 39.758038, + "phone": "3034005606", + "website_url": "http://www.drydockbrewing.com", + "state": "Colorado", + "street": "2801 Tower Rd" + }, + { + "id": "a2728fec-51dd-4613-b15d-fc53774003b2", + "name": "Dry Dock Brewing Co- South Dock", + "brewery_type": "micro", + "address_1": "15120 E Hampden Ave", + "address_2": null, + "address_3": null, + "city": "Aurora", + "state_province": "Colorado", + "postal_code": "80014-3906", + "country": "United States", + "longitude": -104.7680096, + "latitude": 39.6529424, + "phone": "3034005606", + "website_url": "http://www.drydockbrewing.com", + "state": "Colorado", + "street": "15120 E Hampden Ave" + }, + { + "id": "069e89d5-77ec-486b-925f-3837899ebbbc", + "name": "Dry Ground Brewing Company", + "brewery_type": "micro", + "address_1": "3121 Broadway St", + "address_2": null, + "address_3": null, + "city": "Paducah", + "state_province": "Kentucky", + "postal_code": "42001-4305", + "country": "United States", + "longitude": -88.63767771, + "latitude": 37.0705097, + "phone": "2702109296", + "website_url": "http://www.drygroundbrewing.com", + "state": "Kentucky", + "street": "3121 Broadway St" + }, + { + "id": "3dae53ba-0f35-4f1f-92fd-f29f05aaf5fc", + "name": "Dry River Brewing", + "brewery_type": "micro", + "address_1": "671 S Anderson St", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90023-1110", + "country": "United States", + "longitude": -118.2233015, + "latitude": 34.03638739, + "phone": "2133755235", + "website_url": "http://www.dryriverbrewing.com", + "state": "California", + "street": "671 S Anderson St" + }, + { + "id": "d1ad3b1d-f62b-46d5-a5fa-a22a402b61a3", + "name": "Dryhop Brewers", + "brewery_type": "micro", + "address_1": "3155 N Broadway St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60657-4508", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7738573155", + "website_url": "http://www.dryhopchicago.com", + "state": "Illinois", + "street": "3155 N Broadway St" + }, + { + "id": "e9f88398-a093-46e3-91d9-efa85d0412d7", + "name": "Drylands Brewing", + "brewery_type": "brewpub", + "address_1": "322 N Main Ave", + "address_2": null, + "address_3": null, + "city": "Lovington", + "state_province": "New Mexico", + "postal_code": "88260-3643", + "country": "United States", + "longitude": -103.3484834, + "latitude": 32.9504929, + "phone": "5757392739", + "website_url": "http://Drylandsbrewing.com", + "state": "New Mexico", + "street": "322 N Main Ave" + }, + { + "id": "51f84439-41d8-423e-8023-af2dba92a95a", + "name": "Du Cane Brewing Co.", + "brewery_type": "micro", + "address_1": "64 Elizabeth Street", + "address_2": "60", + "address_3": null, + "city": "Launceston", + "state_province": "TAS", + "postal_code": "7250", + "country": "Australia", + "longitude": 147.1401122, + "latitude": -41.4396975, + "phone": "+61 3 6323 6000", + "website_url": "https://ducanebrewing.com.au/", + "state": "TAS", + "street": "64 Elizabeth Street" + }, + { + "id": "9f749cda-57a0-487e-91b5-a3464b1c2ec9", + "name": "Dual Citizen Brewing Co.", + "brewery_type": "micro", + "address_1": "725 Raymond Ave", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55114-1709", + "country": "United States", + "longitude": -93.1978006, + "latitude": 44.9631096, + "phone": "6513304750", + "website_url": "http://www.dualcitizenbrewing.com", + "state": "Minnesota", + "street": "725 Raymond Ave" + }, + { + "id": "3ebb636f-ae1e-4e19-b273-7eae97ed4856", + "name": "Dubh Linn Brew Pub", + "brewery_type": "brewpub", + "address_1": "109 W Superior St", + "address_2": null, + "address_3": null, + "city": "Duluth", + "state_province": "Minnesota", + "postal_code": "55802-3026", + "country": "United States", + "longitude": -92.09972572, + "latitude": 46.78589441, + "phone": "2187271559", + "website_url": "http://dubhlinnpub.com", + "state": "Minnesota", + "street": "109 W Superior St" + }, + { + "id": "13024a14-b475-4d4f-8aad-f28b028eae6f", + "name": "Dubina Brewing Co.", + "brewery_type": "brewpub", + "address_1": "17035 N 67th Ave Ste 6", + "address_2": null, + "address_3": null, + "city": "Glendale", + "state_province": "Arizona", + "postal_code": "85308-3655", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6234127770", + "website_url": "http://www.dubinabrewing.com", + "state": "Arizona", + "street": "17035 N 67th Ave Ste 6" + }, + { + "id": "0229fb16-b24c-4b75-a16c-b2a6f7047ed7", + "name": "Dubious Claims Brewing", + "brewery_type": "brewpub", + "address_1": "451 S Thompson Ave", + "address_2": null, + "address_3": null, + "city": "Excelsior Springs", + "state_province": "Missouri", + "postal_code": "64024-2133", + "country": "United States", + "longitude": -94.22589926, + "latitude": 39.33933583, + "phone": "8168962477", + "website_url": "http://www.dubiousclaimsbrewingco.com/", + "state": "Missouri", + "street": "451 S Thompson Ave" + }, + { + "id": "e6a545be-d8a4-4f02-a9f8-f62e4b3c257e", + "name": "Dublin City Brewing Co.", + "brewery_type": "micro", + "address_1": "The Parnell Centre", + "address_2": "Parnell St", + "address_3": "Rotunda", + "city": "Dublin", + "state_province": "Dublin", + "postal_code": "D01 Y9T3", + "country": "Ireland", + "longitude": -6.2693974, + "latitude": 53.3506256, + "phone": null, + "website_url": "http://www.dublincitybrewingco.com/", + "state": "Dublin", + "street": "The Parnell Centre" + }, + { + "id": "ee33e3eb-8ea8-41b6-a37c-a0ccc87dc8c5", + "name": "Dublin Corners Farm Brewery", + "brewery_type": "micro", + "address_1": "1906 Main St", + "address_2": null, + "address_3": null, + "city": "Linwood", + "state_province": "New York", + "postal_code": "14486-9707", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5855384796", + "website_url": "http://www.dublincornersfarm.com", + "state": "New York", + "street": "1906 Main St" + }, + { + "id": "a7cbed0a-bbfb-4158-8032-4f44d680d7be", + "name": "Dubtown Brewing Company", + "brewery_type": "micro", + "address_1": "201 Main Ave S", + "address_2": null, + "address_3": null, + "city": "Renton", + "state_province": "Washington", + "postal_code": "98057-2602", + "country": "United States", + "longitude": -122.2044462, + "latitude": 47.48147827, + "phone": "4252078707", + "website_url": "https://dubtownbrewingcompany.com", + "state": "Washington", + "street": "201 Main Ave S" + }, + { + "id": "c8a34b95-8a72-4f56-8c50-c790c01261ff", + "name": "Dubuque Star Brands / Otter Tail Brewery", + "brewery_type": "contract", + "address_1": "132 Sheridan St", + "address_2": null, + "address_3": null, + "city": "Muscatine", + "state_province": "Iowa", + "postal_code": "52761-5543", + "country": "United States", + "longitude": -91.02937536, + "latitude": 41.43346737, + "phone": null, + "website_url": null, + "state": "Iowa", + "street": "132 Sheridan St" + }, + { + "id": "420b93d8-d15a-4db9-a072-28e22de5f1a9", + "name": "Duck Foot Brewing Co.", + "brewery_type": "micro", + "address_1": "8920 Kenamar Dr Ste 210", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92121-2454", + "country": "United States", + "longitude": -117.1562181, + "latitude": 32.88474835, + "phone": "8584337916", + "website_url": "http://www.duckfootbeer.com", + "state": "California", + "street": "8920 Kenamar Dr Ste 210" + }, + { + "id": "a1ecd2e7-3b9c-4ad8-ac87-dfd78d234992", + "name": "Duck Rabbit Craft Brewery", + "brewery_type": "micro", + "address_1": "4519 West Pine St", + "address_2": null, + "address_3": null, + "city": "Farmville", + "state_province": "North Carolina", + "postal_code": "27828-8526", + "country": "United States", + "longitude": -77.591863, + "latitude": 35.5980644, + "phone": "2527537745", + "website_url": "http://duckrabbitbrewery.com", + "state": "North Carolina", + "street": "4519 West Pine St" + }, + { + "id": "117dfbba-3145-4e39-b43d-5cc9964d2467", + "name": "DuClaw Brewing Co", + "brewery_type": "regional", + "address_1": "8901 Yellow Brick Rd Ste B", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21237-2349", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4435599900", + "website_url": "http://www.duclaw.com", + "state": "Maryland", + "street": "8901 Yellow Brick Rd Ste B" + }, + { + "id": "ece54804-4295-4a37-a620-d98d556d29de", + "name": "Dudes' Brewing Co", + "brewery_type": "micro", + "address_1": "1840 W 208th St", + "address_2": null, + "address_3": null, + "city": "Torrance", + "state_province": "California", + "postal_code": "90501-1807", + "country": "United States", + "longitude": -118.3115036, + "latitude": 33.8417185, + "phone": "4242712915", + "website_url": "http://www.thedudesbrew.com", + "state": "California", + "street": "1840 W 208th St" + }, + { + "id": "b62722b0-6f7f-4a83-9330-ca1a8942d118", + "name": "Due South Brewing Co", + "brewery_type": "micro", + "address_1": "2900 High Ridge Rd Ste 3", + "address_2": null, + "address_3": null, + "city": "Boynton Beach", + "state_province": "Florida", + "postal_code": "33426-8708", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5614632337", + "website_url": "http://www.duesouthales.com", + "state": "Florida", + "street": "2900 High Ridge Rd Ste 3" + }, + { + "id": "dc1dbe18-f446-43d9-8cdf-cb542bc087cf", + "name": "Dueces Wild Brewery", + "brewery_type": "micro", + "address_1": "660 Peterson Rd", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80915-4002", + "country": "United States", + "longitude": -104.7034318, + "latitude": 38.8877651, + "phone": "6079729260", + "website_url": "http://www.dwbbrewery.com", + "state": "Colorado", + "street": "660 Peterson Rd" + }, + { + "id": "5e0fa2b7-af5d-4aae-889d-8b9a3a1bf10f", + "name": "Duel Brewing Company", + "brewery_type": "brewpub", + "address_1": "1228 Parkway Dr Ste D", + "address_2": null, + "address_3": null, + "city": "Santa Fe", + "state_province": "New Mexico", + "postal_code": "87507-7319", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5054745301", + "website_url": "http://www.duelbrewing.com", + "state": "New Mexico", + "street": "1228 Parkway Dr Ste D" + }, + { + "id": "06915497-8cab-4ba0-9f11-2394c6717e08", + "name": "Dueling Barrels", + "brewery_type": "micro", + "address_1": "745 Hambley Blvd", + "address_2": null, + "address_3": null, + "city": "Pikeville", + "state_province": "Kentucky", + "postal_code": "41501-9078", + "country": "United States", + "longitude": -82.518819, + "latitude": 37.48176335, + "phone": "6067663835", + "website_url": "http://www.duelingbarrels.com", + "state": "Kentucky", + "street": "745 Hambley Blvd" + }, + { + "id": "cf3a71af-2553-4f3f-887b-acbe0d34ea2d", + "name": "Dueling Dogs Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lincoln", + "state_province": "California", + "postal_code": "95648-8503", + "country": "United States", + "longitude": -121.29318, + "latitude": 38.8915741, + "phone": "9164348141", + "website_url": "http://www.duelingdogsbrewing.com", + "state": "California", + "street": null + }, + { + "id": "e31a1d5a-42e7-4d84-a9a0-12b7849c8c8a", + "name": "Duesterbeck's Brewing Company", + "brewery_type": "micro", + "address_1": "N5543 County Rd O", + "address_2": null, + "address_3": null, + "city": "Elkhorn", + "state_province": "Wisconsin", + "postal_code": "53121-3815", + "country": "United States", + "longitude": -88.631657284538, + "latitude": 42.692675140057, + "phone": "2627299771", + "website_url": "http://www.dbcbrewery.com", + "state": "Wisconsin", + "street": "N5543 County Rd O" + }, + { + "id": "3587e92a-c342-4eae-8212-6b324f02d903", + "name": "Dunagan Irish Pub & Brewery", + "brewery_type": "brewpub", + "address_1": "3222 56th St", + "address_2": null, + "address_3": null, + "city": "Gig Harbor", + "state_province": "Washington", + "postal_code": "98335-1359", + "country": "United States", + "longitude": -122.4394246, + "latitude": 47.25292454, + "phone": null, + "website_url": "http://www.dunaganbrewing.com", + "state": "Washington", + "street": "3222 56th St" + }, + { + "id": "b649f4c6-c14a-4ee6-a1cd-85adc75ddc83", + "name": "Dunbar Brewing", + "brewery_type": "micro", + "address_1": "2200 El Camino Real", + "address_2": null, + "address_3": null, + "city": "Santa Margarita", + "state_province": "California", + "postal_code": "93453-8668", + "country": "United States", + "longitude": -120.6112948, + "latitude": 35.389717, + "phone": "8057049050", + "website_url": null, + "state": "California", + "street": "2200 El Camino Real" + }, + { + "id": "dd078788-4ff2-4a01-a075-8c9c84076380", + "name": "Duncan's Abbey", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Tarrytown", + "state_province": "New York", + "postal_code": "10591", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.duncansabbey.com", + "state": "New York", + "street": null + }, + { + "id": "715cad58-79ad-4a69-bf61-b5cf15fdfe67", + "name": "Dunedin Brewery & Public House", + "brewery_type": "brewpub", + "address_1": "937 Douglas Ave", + "address_2": null, + "address_3": null, + "city": "Dunedin", + "state_province": "Florida", + "postal_code": "34698-4945", + "country": "United States", + "longitude": -82.78782561, + "latitude": 28.01418231, + "phone": "7277360606", + "website_url": "http://www.dunedinbrewery.com", + "state": "Florida", + "street": "937 Douglas Ave" + }, + { + "id": "10e6848c-4cbb-4d37-b56e-7bddea848778", + "name": "Dunedin Brewery Production Facility", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Dunedin", + "state_province": "Florida", + "postal_code": "34698-5061", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "bedeb77e-ec21-49a3-9caf-874786adb180", + "name": "Dungarvan Brewing", + "brewery_type": "micro", + "address_1": "Unit 5 No. 2", + "address_2": "Westgate Business Park", + "address_3": null, + "city": "Dungarvan", + "state_province": "Waterford", + "postal_code": "X35 HY48", + "country": "Ireland", + "longitude": -7.6330624, + "latitude": 52.0960325, + "phone": "3535824000", + "website_url": "https://dungarvanbrewingcompany.com/", + "state": "Waterford", + "street": "Unit 5 No. 2" + }, + { + "id": "8eaa6a32-0504-43d6-a18a-4005355bebf6", + "name": "Dungeness Brewing Company", + "brewery_type": "micro", + "address_1": "4017 S Mount Angeles Rd", + "address_2": null, + "address_3": null, + "city": "Port Angeles", + "state_province": "Washington", + "postal_code": "98362-8966", + "country": "United States", + "longitude": -123.418449, + "latitude": 48.087279, + "phone": "3607751877", + "website_url": "http://www.dungenessbrewing.com", + "state": "Washington", + "street": "4017 S Mount Angeles Rd" + }, + { + "id": "ebb7e49d-a6ed-48e1-a9cb-4a9343e8034b", + "name": "Dungeon Hollow Brewing", + "brewery_type": "micro", + "address_1": "572 County Rd 22A", + "address_2": null, + "address_3": null, + "city": "Bloomingdale", + "state_province": "Ohio", + "postal_code": "43910", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7403371510", + "website_url": "http://www.dungeonhollow.com", + "state": "Ohio", + "street": "572 County Rd 22A" + }, + { + "id": "7d1d7713-0c0a-4ece-814d-7b7920897879", + "name": "Dunloe Brewing LLC", + "brewery_type": "micro", + "address_1": "1606 Olive Dr", + "address_2": null, + "address_3": null, + "city": "Davis", + "state_province": "California", + "postal_code": "95616-4741", + "country": "United States", + "longitude": -121.7311242, + "latitude": 38.5447433, + "phone": "5302313502", + "website_url": "http://Dunloebrewing.com", + "state": "California", + "street": "1606 Olive Dr" + }, + { + "id": "9b2af98d-4f0a-4c35-87d3-1e574f24ec67", + "name": "Dunsmuir Brewery Works", + "brewery_type": "brewpub", + "address_1": "5701 Dunsmuir Ave", + "address_2": null, + "address_3": null, + "city": "Dunsmuir", + "state_province": "California", + "postal_code": "96025-2008", + "country": "United States", + "longitude": -122.271862, + "latitude": 41.211366, + "phone": "5302351900", + "website_url": "http://www.dunsmuirbreweryworks.com", + "state": "California", + "street": "5701 Dunsmuir Ave" + }, + { + "id": "2b5d9ce9-b8bd-4ece-98af-9d3eb6f5896f", + "name": "Duque Brewpub", + "brewery_type": "brewpub", + "address_1": "Calçada do Duque nº49-51", + "address_2": null, + "address_3": null, + "city": "Lisboa", + "state_province": "Lisboa", + "postal_code": "1200-156", + "country": "Portugal", + "longitude": -9.1424809290381, + "latitude": 38.713453267381, + "phone": null, + "website_url": "https://www.duquebrewpub.com", + "state": "Lisboa", + "street": "Calçada do Duque nº49-51" + }, + { + "id": "450263c6-c95c-426c-aee9-c82f5ec11fbb", + "name": "Duquesne Brewing of Pittsburgh", + "brewery_type": "contract", + "address_1": "932 W North Ave", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15233-1606", + "country": "United States", + "longitude": -80.01790691, + "latitude": 40.45346755, + "phone": "4128312779", + "website_url": null, + "state": "Pennsylvania", + "street": "932 W North Ave" + }, + { + "id": "52761616-efb8-4d3f-beff-7661b8fc7087", + "name": "Durango Brewing Co", + "brewery_type": "brewpub", + "address_1": "3000 Main Ave", + "address_2": null, + "address_3": null, + "city": "Durango", + "state_province": "Colorado", + "postal_code": "81301-4245", + "country": "United States", + "longitude": -107.871981, + "latitude": 37.297647, + "phone": "9702473396", + "website_url": "http://www.durangobrewing.com", + "state": "Colorado", + "street": "3000 Main Ave" + }, + { + "id": "c1a2ffae-716f-4938-a522-9ba113954f8f", + "name": "Durban Brewing Company", + "brewery_type": "micro", + "address_1": "206 Mathews Meyiwa Road", + "address_2": " Greyville", + "address_3": null, + "city": "Durban", + "state_province": "KwaZulu-Natal", + "postal_code": "4001", + "country": "South Africa", + "longitude": 31.0112, + "latitude": -29.8407, + "phone": "+27 31 303 3923", + "website_url": "https://www.durbanbrewingco.co.za/", + "state": "KwaZulu-Natal", + "street": "206 Mathews Meyiwa Road" + }, + { + "id": "ae111ea0-b5a2-46f0-9e64-bcc1ecadca27", + "name": "Durty Bull Brewing Co.", + "brewery_type": "micro", + "address_1": "206 Broadway St Ste 104", + "address_2": null, + "address_3": null, + "city": "Durham", + "state_province": "North Carolina", + "postal_code": "27701-2404", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9196882337", + "website_url": "http://www.durtybull.com", + "state": "North Carolina", + "street": "206 Broadway St Ste 104" + }, + { + "id": "cbf07548-d3c6-4cb2-92a6-cf16e1375846", + "name": "Dust Bowl Brewing Co", + "brewery_type": "micro", + "address_1": "3000 Fulkerth Rd", + "address_2": null, + "address_3": null, + "city": "Turlock", + "state_province": "California", + "postal_code": "95380-9403", + "country": "United States", + "longitude": -120.8826535, + "latitude": 37.50655825, + "phone": "2096341934", + "website_url": "http://www.dustbowlbrewing.com", + "state": "California", + "street": "3000 Fulkerth Rd" + }, + { + "id": "1d667455-d150-4435-8527-f3d31d4cb8ef", + "name": "Dusty Miner Craft Brewery", + "brewery_type": "micro", + "address_1": "7 Hampton Court", + "address_2": null, + "address_3": null, + "city": "Aberglasslyn", + "state_province": "NSW", + "postal_code": "2320", + "country": "Australia", + "longitude": 151.5320121, + "latitude": -32.6939586, + "phone": "+61 432 064 388", + "website_url": "http://www.dustyminercraftbrewery.com.au/", + "state": "NSW", + "street": "7 Hampton Court" + }, + { + "id": "33ca4264-c729-4345-b454-8a6d7a04da88", + "name": "Dutch's BrewHouse", + "brewery_type": "brewpub", + "address_1": "4244 Atlantic Ave", + "address_2": null, + "address_3": null, + "city": "Long Beach", + "state_province": "California", + "postal_code": "90807-2802", + "country": "United States", + "longitude": -118.1859647, + "latitude": 33.8781951, + "phone": "5623361326", + "website_url": "http://dutchsbrewhouse.com", + "state": "California", + "street": "4244 Atlantic Ave" + }, + { + "id": "5d2bad15-ad08-486d-b92a-4c70fc276f7e", + "name": "Duvig Brewing Co", + "brewery_type": "closed", + "address_1": "59 School Ground Rd Ste 10", + "address_2": null, + "address_3": null, + "city": "Branford", + "state_province": "Connecticut", + "postal_code": "06405-2868", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2032082213", + "website_url": "http://www.duvig.com", + "state": "Connecticut", + "street": "59 School Ground Rd Ste 10" + }, + { + "id": "c50af63f-c38a-4d1d-a15e-bd676e055505", + "name": "Dwinell Country Ales", + "brewery_type": "micro", + "address_1": "206 W Broadway St", + "address_2": null, + "address_3": null, + "city": "Goldendale", + "state_province": "Washington", + "postal_code": "98620-9130", + "country": "United States", + "longitude": -120.8247773, + "latitude": 45.822927, + "phone": "5097733138", + "website_url": "http://www.countryales.com", + "state": "Washington", + "street": "206 W Broadway St" + }, + { + "id": "b691e779-d2ff-46dc-9171-46b99a9043e1", + "name": "Dyckman Beer Co", + "brewery_type": "contract", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Bronx", + "state_province": "New York", + "postal_code": "10451", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.dyckmanbeerco.com", + "state": "New York", + "street": null + }, + { + "id": "8870078b-8ebf-4c47-9ae5-1db667dc247d", + "name": "Dynasty Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Ashburn", + "state_province": "Virginia", + "postal_code": "20147", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7037279229", + "website_url": "http://www.dynastybrewing.com", + "state": "Virginia", + "street": null + }, + { + "id": "c5e25b7e-f1ba-422f-aa26-44096d022060", + "name": "Dystopian State Brewing", + "brewery_type": "micro", + "address_1": "611 S Baker St", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98402-2318", + "country": "United States", + "longitude": -122.4433066, + "latitude": 47.25836061, + "phone": "2533023466", + "website_url": "http://www.dystopianstate.com", + "state": "Washington", + "street": "611 S Baker St" + }, + { + "id": "2e01294c-1845-456d-a4a9-176f5efc294e", + "name": "E.J. Phair Brewing Co.", + "brewery_type": "micro", + "address_1": "225 Alamo Plaza", + "address_2": null, + "address_3": null, + "city": "Alamo", + "state_province": "California", + "postal_code": "94507", + "country": "United States", + "longitude": -122.0340499, + "latitude": 37.85105324, + "phone": "9256804253", + "website_url": "http://www.ejphair.com", + "state": "California", + "street": "225 Alamo Plaza" + }, + { + "id": "bdd40512-5b13-4ac9-9d5a-ca6cfa304d2b", + "name": "E.J. Phair Brewing Co.", + "brewery_type": "micro", + "address_1": "2151 Salvio St Ste L", + "address_2": null, + "address_3": null, + "city": "Concord", + "state_province": "California", + "postal_code": "94520-2470", + "country": "United States", + "longitude": -122.0338182, + "latitude": 37.97810431, + "phone": "9256804253", + "website_url": "http://www.ejphair.com", + "state": "California", + "street": "2151 Salvio St Ste L" + }, + { + "id": "570346e2-4896-48f6-b233-89b2a06a2906", + "name": "E.J. Phair Brewing Co.", + "brewery_type": "micro", + "address_1": "300 Cumberland St", + "address_2": null, + "address_3": null, + "city": "Pittsburg", + "state_province": "California", + "postal_code": "94565-2234", + "country": "United States", + "longitude": -121.8824742, + "latitude": 38.0330804, + "phone": "9252529895", + "website_url": "http://www.ejphair.com", + "state": "California", + "street": "300 Cumberland St" + }, + { + "id": "dad5cb3d-3e6d-4099-b9d9-1a89b7b1d714", + "name": "E2W Brewing", + "brewery_type": "micro", + "address_1": "12913 Shady Glen Ave SE", + "address_2": null, + "address_3": null, + "city": "Olalla", + "state_province": "Washington", + "postal_code": "98359", + "country": "United States", + "longitude": -122.594069, + "latitude": 47.432463, + "phone": "2532147463", + "website_url": "https://www.facebook.com/E2WBrewing", + "state": "Washington", + "street": "12913 Shady Glen Ave SE" + }, + { + "id": "60548726-66cb-4e76-ac56-935de154b4b7", + "name": "E9 Brewing Company", + "brewery_type": "micro", + "address_1": "2506 Fawcett Avenue", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98402", + "country": "United States", + "longitude": -122.44, + "latitude": 47.238169, + "phone": "2533837707", + "website_url": "https://e9brewingco.com/", + "state": "Washington", + "street": "2506 Fawcett Avenue" + }, + { + "id": "af9f1908-e70c-4de5-8ada-8e31e926de8e", + "name": "Eagle Bay Brewing", + "brewery_type": "micro", + "address_1": "252 Eagle Bay Road", + "address_2": null, + "address_3": null, + "city": "Eagle Bay", + "state_province": "WA", + "postal_code": "6281", + "country": "Australia", + "longitude": 115.0640997, + "latitude": -33.5770925, + "phone": "+61 8 9755 3554", + "website_url": "https://eaglebaybrewing.com.au/?utm_source=google&utm_medium=organic&utm_campaign=gbp", + "state": "WA", + "street": "252 Eagle Bay Road" + }, + { + "id": "c88ab21e-2a9a-4d12-a50f-9b0c478d26ea", + "name": "Eagle Creek Brewing Company", + "brewery_type": "micro", + "address_1": "106 Savannah Ave Ste B", + "address_2": null, + "address_3": null, + "city": "Statesboro", + "state_province": "Georgia", + "postal_code": "30458-7162", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9124892337", + "website_url": "http://www.eaglecreekbrewingco.com", + "state": "Georgia", + "street": "106 Savannah Ave Ste B" + }, + { + "id": "c3bd1af8-2ca2-4a14-b733-8c4d788c4752", + "name": "Eagle Park Brewing Company", + "brewery_type": "brewpub", + "address_1": "823 E Hamilton St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53202", + "country": "United States", + "longitude": -87.90143961, + "latitude": 43.0542106, + "phone": "4145850123", + "website_url": "http://www.eagleparkbrewing.com", + "state": "Wisconsin", + "street": "823 E Hamilton St" + }, + { + "id": "32fba728-f8b1-47e4-8cf4-78ad87bd4640", + "name": "Eagle Rock Brewery", + "brewery_type": "micro", + "address_1": "3056 Roswell St", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90065-2214", + "country": "United States", + "longitude": -118.2440377, + "latitude": 34.11473143, + "phone": "3232577866", + "website_url": "http://www.eaglerockbrewery.com", + "state": "California", + "street": "3056 Roswell St" + }, + { + "id": "1996e0fa-b821-4d44-a6ea-d5fda91c7d47", + "name": "EagleMonk Pub and Brewery", + "brewery_type": "brewpub", + "address_1": "4906 W Mount Hope Hwy", + "address_2": null, + "address_3": null, + "city": "Lansing", + "state_province": "Michigan", + "postal_code": "48917-9588", + "country": "United States", + "longitude": -84.662048, + "latitude": 42.712054, + "phone": "5177087350", + "website_url": null, + "state": "Michigan", + "street": "4906 W Mount Hope Hwy" + }, + { + "id": "381795a6-ff78-48b4-a49c-b46ed2ed423f", + "name": "Earlybird Brewing Company", + "brewery_type": "contract", + "address_1": "737 Bolivar Rd Ste 4100", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44115-1259", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.earlybirdbrewing.com", + "state": "Ohio", + "street": "737 Bolivar Rd Ste 4100" + }, + { + "id": "5b238658-1684-4f51-bc1c-6059ba35c9b9", + "name": "Earnest Brew Works", + "brewery_type": "micro", + "address_1": "4342 S Detroit Ave", + "address_2": null, + "address_3": null, + "city": "Toledo", + "state_province": "Ohio", + "postal_code": "43614-5367", + "country": "United States", + "longitude": -83.61522535, + "latitude": 41.590252, + "phone": "4193402589", + "website_url": "http://www.earnestbrewworks.com", + "state": "Ohio", + "street": "4342 S Detroit Ave" + }, + { + "id": "e50a6745-e422-4e58-9d76-a906b3b37e10", + "name": "Earth And Fire Brewing Company", + "brewery_type": "closed", + "address_1": "825 Riverside Ave Ste 1", + "address_2": null, + "address_3": null, + "city": "Paso Robles", + "state_province": "California", + "postal_code": "93446-2660", + "country": "United States", + "longitude": -120.6868512, + "latitude": 35.62375364, + "phone": "8052702959", + "website_url": "http://Www.earthandfirebrewing.com", + "state": "California", + "street": "825 Riverside Ave Ste 1" + }, + { + "id": "a2db91a5-dade-456e-a4bc-9222e93fb344", + "name": "Earth Beer Co.", + "brewery_type": "micro", + "address_1": "592 Cudgen Road", + "address_2": null, + "address_3": null, + "city": "Cudgen", + "state_province": "NSW", + "postal_code": "2487", + "country": "Australia", + "longitude": 153.5526032, + "latitude": -28.2669575, + "phone": "+61 422 168 966", + "website_url": "http://www.earthbeercompany.com.au/", + "state": "NSW", + "street": "592 Cudgen Road" + }, + { + "id": "18b29afa-682c-4c5e-8ecb-ba0f61cf9f16", + "name": "Earth Bread + Brewery", + "brewery_type": "brewpub", + "address_1": "7136 Germantown Ave", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19119-1843", + "country": "United States", + "longitude": -75.1903546, + "latitude": 40.0591996, + "phone": "2152426666", + "website_url": "http://www.earthbreadbrewery.com", + "state": "Pennsylvania", + "street": "7136 Germantown Ave" + }, + { + "id": "b9304a09-0ecf-488b-a437-e4654edf1148", + "name": "Earth Eagle Brewing", + "brewery_type": "brewpub", + "address_1": "165 High Street", + "address_2": null, + "address_3": null, + "city": "Portsmouth", + "state_province": "New Hampshire", + "postal_code": "03801", + "country": "United States", + "longitude": -70.75957196, + "latitude": 43.0792548, + "phone": null, + "website_url": "http://www.eartheaglebrewings.com", + "state": "New Hampshire", + "street": "165 High Street" + }, + { + "id": "e5b6ac32-d6df-4bd8-929a-46d2b5828a2d", + "name": "Earth Rider Brewing Co", + "brewery_type": "micro", + "address_1": "1617 N 3rd St", + "address_2": null, + "address_3": null, + "city": "Superior", + "state_province": "Wisconsin", + "postal_code": "54880-1016", + "country": "United States", + "longitude": -92.10117749, + "latitude": 46.73528116, + "phone": "7153947391", + "website_url": "http://www.earthrider.beer", + "state": "Wisconsin", + "street": "1617 N 3rd St" + }, + { + "id": "c89278ec-ce5b-41a6-9386-e28fa07599ea", + "name": "Earthbound Beer", + "brewery_type": "brewpub", + "address_1": "2724 Cherokee St", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63118-3036", + "country": "United States", + "longitude": -90.22866959, + "latitude": 38.5935863, + "phone": "3147699576", + "website_url": "http://www.earthboundbeer.com", + "state": "Missouri", + "street": "2724 Cherokee St" + }, + { + "id": "21a0d567-e70c-49fa-bb93-a073ed29e93b", + "name": "Earthen Ales", + "brewery_type": "micro", + "address_1": "1371 Gray Dr Ste 200", + "address_2": null, + "address_3": null, + "city": "Traverse City", + "state_province": "Michigan", + "postal_code": "49684-7805", + "country": "United States", + "longitude": -85.6454249, + "latitude": 44.755294, + "phone": "2312524270", + "website_url": "http://www.earthenales.com", + "state": "Michigan", + "street": "1371 Gray Dr Ste 200" + }, + { + "id": "67ef1ce6-35c8-482d-b054-0b5e6b568e5b", + "name": "East Branch Brewing Company", + "brewery_type": "brewpub", + "address_1": "202 E Lancaster Ave", + "address_2": null, + "address_3": null, + "city": "Downingtown", + "state_province": "Pennsylvania", + "postal_code": "19335-2957", + "country": "United States", + "longitude": -75.70076097, + "latitude": 40.0067258, + "phone": "6102831989", + "website_url": "http://www.eastbranchbrewing.com", + "state": "Pennsylvania", + "street": "202 E Lancaster Ave" + }, + { + "id": "04425330-f69b-40db-ae1b-176bb1c91d8c", + "name": "East Brother Beer Company", + "brewery_type": "micro", + "address_1": "1001 Canal Blvd # C-2", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "California", + "postal_code": "94804-3533", + "country": "United States", + "longitude": -122.3754067, + "latitude": 37.91772583, + "phone": "5102304081", + "website_url": "http://www.eastbrotherbeer.com", + "state": "California", + "street": "1001 Canal Blvd # C-2" + }, + { + "id": "98890002-074d-438f-9d82-ffc4317bc079", + "name": "East Channel Brewing Company", + "brewery_type": "micro", + "address_1": "209 Maple St", + "address_2": null, + "address_3": null, + "city": "Munising", + "state_province": "Michigan", + "postal_code": "49862-1084", + "country": "United States", + "longitude": -86.65452518, + "latitude": 46.40934141, + "phone": "9063873007", + "website_url": "http://www.eastchannelbrewery.com", + "state": "Michigan", + "street": "209 Maple St" + }, + { + "id": "bb27831d-d4ee-41e0-b11b-7faa561b12ca", + "name": "East Cliff Brewing Company", + "brewery_type": "micro", + "address_1": "21517 E Cliff Dr", + "address_2": null, + "address_3": null, + "city": "Santa Cruz", + "state_province": "California", + "postal_code": "95062-4844", + "country": "United States", + "longitude": -122.0136488, + "latitude": 36.9684053, + "phone": "8317135540", + "website_url": "http://www.eastcliffbrewing.com/", + "state": "California", + "street": "21517 E Cliff Dr" + }, + { + "id": "19508b9b-bc32-4da1-9a61-feea7b5db8c7", + "name": "East Coast Brewing Company", + "brewery_type": "micro", + "address_1": "134/135 Brackenhill Road", + "address_2": null, + "address_3": null, + "city": "Umbogintwini", + "state_province": "KwaZulu-Natal", + "postal_code": "4126", + "country": "South Africa", + "longitude": 30.9328, + "latitude": -30.0211, + "phone": "+27 31 914 0975", + "website_url": "https://www.eastcoastbrewing.co.za/", + "state": "KwaZulu-Natal", + "street": "134/135 Brackenhill Road" + }, + { + "id": "086f03da-c555-48a2-ae48-958ad65779e9", + "name": "East End Brewing Co", + "brewery_type": "micro", + "address_1": "147 Julius St", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15206", + "country": "United States", + "longitude": -79.91162696, + "latitude": 40.45891137, + "phone": "4125372337", + "website_url": "http://www.eastendbrewing.com", + "state": "Pennsylvania", + "street": "147 Julius St" + }, + { + "id": "c5659ccf-a0c9-42a8-9a1e-e5d99b73c9f0", + "name": "East Fifth Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Manasquan", + "state_province": "New Jersey", + "postal_code": "08736-1814", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New Jersey", + "street": null + }, + { + "id": "0ec36f0b-bba3-48d9-bd47-716177bcb056", + "name": "East Forty Brewing", + "brewery_type": "micro", + "address_1": "1201 W Main St", + "address_2": null, + "address_3": null, + "city": "Blue Springs", + "state_province": "Missouri", + "postal_code": "64015-3613", + "country": "United States", + "longitude": -94.279316, + "latitude": 39.018709, + "phone": "8169888217", + "website_url": "http://www.eastfortybrewing.com", + "state": "Missouri", + "street": "1201 W Main St" + }, + { + "id": "3835d485-c8a1-4cc8-a04f-36e870dcbe44", + "name": "East Nashville Beer Works", + "brewery_type": "brewpub", + "address_1": "320 E Trinity Ln", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37207-4524", + "country": "United States", + "longitude": -86.76320383, + "latitude": 36.20526205, + "phone": "6158913108", + "website_url": "http://www.eastnashbeerworks.com", + "state": "Tennessee", + "street": "320 E Trinity Ln" + }, + { + "id": "08ecfcf4-428f-4e1d-8dd5-3436d8e7c9b7", + "name": "East Rock Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "New Haven", + "state_province": "Connecticut", + "postal_code": "06511-2625", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2035303484", + "website_url": "http://www.eastrockbeer.com", + "state": "Connecticut", + "street": null + }, + { + "id": "315b49b3-1996-4fa8-b249-2e917245fd72", + "name": "East Troy Brewery", + "brewery_type": "micro", + "address_1": "2905 Main St", + "address_2": null, + "address_3": null, + "city": "East Troy", + "state_province": "Wisconsin", + "postal_code": "53120-1245", + "country": "United States", + "longitude": -88.406150973257, + "latitude": 42.784946854879, + "phone": "2626422670", + "website_url": "http://www.etbrew.com", + "state": "Wisconsin", + "street": "2905 Main St" + }, + { + "id": "ae17030a-3073-42f2-bdc2-ad4f468b3156", + "name": "East West Brewing Co", + "brewery_type": "brewpub", + "address_1": "1400 Lake Dr SE", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49506", + "country": "United States", + "longitude": -85.634947, + "latitude": 42.957318, + "phone": "6162885250", + "website_url": "http://www.eastwestbrewingcompany.com", + "state": "Michigan", + "street": "1400 Lake Dr SE" + }, + { + "id": "cb3463ff-5e24-4676-9db3-3d37793593ac", + "name": "Eastern Front Brewing Co", + "brewery_type": "micro", + "address_1": "425 Westphalin Rd", + "address_2": null, + "address_3": null, + "city": "Mattituck", + "state_province": "New York", + "postal_code": "11952", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6319051535", + "website_url": "http://www.facebook.com/easternfrontbrewing/", + "state": "New York", + "street": "425 Westphalin Rd" + }, + { + "id": "9ef70c89-a7e9-4759-a71e-4adca64c543a", + "name": "Eastern Market Brewing Company", + "brewery_type": "micro", + "address_1": "2515 Riopelle St", + "address_2": null, + "address_3": null, + "city": "Detroit", + "state_province": "Michigan", + "postal_code": "48207-4526", + "country": "United States", + "longitude": -83.03876229, + "latitude": 42.346625, + "phone": null, + "website_url": "http://www.easternmarket.beer", + "state": "Michigan", + "street": "2515 Riopelle St" + }, + { + "id": "75378a8b-95fc-4a6a-8c7f-b00e4df75d64", + "name": "Eastern Shore Brewing", + "brewery_type": "micro", + "address_1": "605 S Talbot St", + "address_2": null, + "address_3": null, + "city": "Saint Michaels", + "state_province": "Maryland", + "postal_code": "21663", + "country": "United States", + "longitude": -76.2219945, + "latitude": 38.78113562, + "phone": "4107458010", + "website_url": "http://www.easternshorebrewing.com", + "state": "Maryland", + "street": "605 S Talbot St" + }, + { + "id": "d5ff39b2-d63d-433b-aa9a-f5259f256d68", + "name": "Eastlake Craft Brewery", + "brewery_type": "micro", + "address_1": "920 E Lake St Ste 123", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55407-4129", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6122174668", + "website_url": "http://www.eastlakemgm.com", + "state": "Minnesota", + "street": "920 E Lake St Ste 123" + }, + { + "id": "e3426d39-8838-4ead-aff4-8202f1797894", + "name": "Eastwood Brewing Company", + "brewery_type": "micro", + "address_1": "108 Walter Dr", + "address_2": null, + "address_3": null, + "city": "Syracuse", + "state_province": "New York", + "postal_code": "13206-2357", + "country": "United States", + "longitude": -76.0980832, + "latitude": 43.0701121, + "phone": null, + "website_url": "http://www.facebook.com/eastwoodbrewingcompany", + "state": "New York", + "street": "108 Walter Dr" + }, + { + "id": "60e92a91-a4bf-40fa-95d8-d22199605dbf", + "name": "Easy Times", + "brewery_type": "micro", + "address_1": "20 Logan Road", + "address_2": null, + "address_3": null, + "city": "Woolloongabba", + "state_province": "QLD", + "postal_code": "4102", + "country": "Australia", + "longitude": 153.0368311, + "latitude": -27.4870599, + "phone": "+61 452 590 279", + "website_url": "https://easytimes.beer/", + "state": "QLD", + "street": "20 Logan Road" + }, + { + "id": "85c8ea1f-2db6-4ea3-9380-dcd26faa40a2", + "name": "Eaton Pub & Grille Brewery / Charlotte Brewing Co", + "brewery_type": "brewpub", + "address_1": "214 S Cochran Ave", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "Michigan", + "postal_code": "48813-1551", + "country": "United States", + "longitude": -84.83579, + "latitude": 42.549391, + "phone": "5175438882", + "website_url": "http://www.eatonpub.com", + "state": "Michigan", + "street": "214 S Cochran Ave" + }, + { + "id": "8c2b0eff-6187-42b0-8b4e-f3a17f54f690", + "name": "Eavesdrop Brewery", + "brewery_type": "micro", + "address_1": "7223 Centreville Rd Ste 115", + "address_2": null, + "address_3": null, + "city": "Manassas", + "state_province": "Virginia", + "postal_code": "20111", + "country": "United States", + "longitude": -77.469, + "latitude": 38.752531, + "phone": "7034208955", + "website_url": "http://www.eavesdropbrewery.com", + "state": "Virginia", + "street": "7223 Centreville Rd Ste 115" + }, + { + "id": "497485a3-1317-450d-894b-0c079b1668b6", + "name": "EB Coffee and Pub", + "brewery_type": "brewpub", + "address_1": "8980 N Rodgers Ct SE", + "address_2": null, + "address_3": null, + "city": "Caledonia", + "state_province": "Michigan", + "postal_code": "49316-8051", + "country": "United States", + "longitude": -85.50839333, + "latitude": 42.80145682, + "phone": "6168917700", + "website_url": "http://www.ebcoffeepub.com", + "state": "Michigan", + "street": "8980 N Rodgers Ct SE" + }, + { + "id": "4545534c-40d6-41c5-85a5-b333d1bb1ae8", + "name": "Ebullition Brew Works", + "brewery_type": "brewpub", + "address_1": "2628 Gateway Rd", + "address_2": null, + "address_3": null, + "city": "Carlsbad", + "state_province": "California", + "postal_code": "92009", + "country": "United States", + "longitude": -117.2542497, + "latitude": 33.12846769, + "phone": "7608421046", + "website_url": "http://Www.ebullitionbrew.com", + "state": "California", + "street": "2628 Gateway Rd" + }, + { + "id": "50af033e-f5bb-4d30-b3d5-60440e28ab50", + "name": "Ebullition Brew Works", + "brewery_type": "micro", + "address_1": "2449 Cades Way Ste D", + "address_2": null, + "address_3": null, + "city": "Vista", + "state_province": "California", + "postal_code": "92081", + "country": "United States", + "longitude": -117.2241021, + "latitude": 33.15438658, + "phone": "7608421046", + "website_url": "http://Www.ebullitionbrew.com", + "state": "California", + "street": "2449 Cades Way Ste D" + }, + { + "id": "32a9af42-ac83-437c-8739-d2611177bf9e", + "name": "Echo Brewing Cask and Barrel", + "brewery_type": "brewpub", + "address_1": "600 Briggs St", + "address_2": null, + "address_3": null, + "city": "Erie", + "state_province": "Colorado", + "postal_code": "80516-0794", + "country": "United States", + "longitude": -105.0477679, + "latitude": 40.05042825, + "phone": "7203612332", + "website_url": null, + "state": "Colorado", + "street": "600 Briggs St" + }, + { + "id": "4b5e0dae-9988-43d3-bdbc-4b0b1121f7ad", + "name": "Echo Brewing Company", + "brewery_type": "brewpub", + "address_1": "5969 Iris Pkwy", + "address_2": null, + "address_3": null, + "city": "Frederick", + "state_province": "Colorado", + "postal_code": "80530", + "country": "United States", + "longitude": -104.944202, + "latitude": 40.111448, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "5969 Iris Pkwy" + }, + { + "id": "f31f30a7-6d1c-42b0-9428-a6164ded8c06", + "name": "Echoes Brewing Company", + "brewery_type": "micro", + "address_1": "19479 Viking Ave NW", + "address_2": null, + "address_3": null, + "city": "Poulsbo", + "state_province": "Washington", + "postal_code": "98370", + "country": "United States", + "longitude": -122.6597498, + "latitude": 47.74030477, + "phone": "3609308152", + "website_url": "https://www.echoesbrewing.com/", + "state": "Washington", + "street": "19479 Viking Ave NW" + }, + { + "id": "a6543b42-2ccd-44fb-b6ae-57fde02754e6", + "name": "Eckert Malting and Brewing Co", + "brewery_type": "micro", + "address_1": "2280 Ivy St Ste 130", + "address_2": null, + "address_3": null, + "city": "Chico", + "state_province": "California", + "postal_code": "95928-8000", + "country": "United States", + "longitude": -121.8241602, + "latitude": 39.71428839, + "phone": "5303422320", + "website_url": "http://www.eckertmaltingandbrewing.com", + "state": "California", + "street": "2280 Ivy St Ste 130" + }, + { + "id": "a499ec86-8681-42b0-a94d-af8d49acf949", + "name": "Eclectic Brewing", + "brewery_type": "micro", + "address_1": "18 Translink Drive", + "address_2": null, + "address_3": null, + "city": "Keilor Park", + "state_province": "VIC", + "postal_code": "3042", + "country": "Australia", + "longitude": 144.848697, + "latitude": -37.7224426, + "phone": "+61 3 9336 7077", + "website_url": "https://www.thebeerfactory.net.au/?utm_source=Google&utm_medium=Organic&utm_campaign=GMB", + "state": "VIC", + "street": "18 Translink Drive" + }, + { + "id": "580722ab-9c8c-47bb-a2df-b6cfc3df6875", + "name": "Eclipse Brewing", + "brewery_type": "micro", + "address_1": "25 E Park Ave", + "address_2": null, + "address_3": null, + "city": "Merchantville", + "state_province": "New Jersey", + "postal_code": "08109-2607", + "country": "United States", + "longitude": -75.04831308, + "latitude": 39.95164416, + "phone": "6093203979", + "website_url": null, + "state": "New Jersey", + "street": "25 E Park Ave" + }, + { + "id": "08cc0e41-1349-4d06-9fa6-33291a745d60", + "name": "Eclipse Craft Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sunbury", + "state_province": "Pennsylvania", + "postal_code": "17801-5337", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://curtisbenner@hotmail.com", + "state": "Pennsylvania", + "street": null + }, + { + "id": "5e07c2a9-63b7-4c82-8167-13f350b811a6", + "name": "Ecliptic Brewing", + "brewery_type": "micro", + "address_1": "825 N Cook St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97227-1503", + "country": "United States", + "longitude": -122.6751185, + "latitude": 45.54737005, + "phone": "5032658002", + "website_url": "http://www.eclipticbrewing.com", + "state": "Oregon", + "street": "825 N Cook St" + }, + { + "id": "4c106efe-6804-48ef-8420-58a09829c931", + "name": "Ecusta Brewing Co", + "brewery_type": "micro", + "address_1": "49 Pisgah Hwy Ste 3", + "address_2": null, + "address_3": null, + "city": "Pisgah Forest", + "state_province": "North Carolina", + "postal_code": "28768", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8289662337", + "website_url": "http://www.ecustabrewing.com", + "state": "North Carolina", + "street": "49 Pisgah Hwy Ste 3" + }, + { + "id": "356dcb41-83fd-41cd-9a0b-a65a770a2652", + "name": "Ecusta Brewing Co - Drift Taproom", + "brewery_type": "micro", + "address_1": "49 Pisgah Hwy", + "address_2": null, + "address_3": null, + "city": "Pisgah Forest", + "state_province": "North Carolina", + "postal_code": "28768-8817", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8289662337", + "website_url": null, + "state": "North Carolina", + "street": "49 Pisgah Hwy" + }, + { + "id": "3dfa223c-f2e6-45e2-a2c3-bf9bcc5c53dd", + "name": "Eddie McStiffs Brewing Co c/o Eddie Snyder", + "brewery_type": "closed", + "address_1": "57 S Main St", + "address_2": null, + "address_3": null, + "city": "Moab", + "state_province": "Utah", + "postal_code": "84532-2502", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4352592337", + "website_url": "http://www.eddiemcstiffs.com", + "state": "Utah", + "street": "57 S Main St" + }, + { + "id": "706a591a-5afb-4cc6-b005-b96e0bcd95fc", + "name": "Eddyline Brewing LLC", + "brewery_type": "micro", + "address_1": "102 Linderman Ave", + "address_2": null, + "address_3": null, + "city": "Buena Vista", + "state_province": "Colorado", + "postal_code": "81211-5106", + "country": "United States", + "longitude": -106.131606, + "latitude": 38.84025, + "phone": "7199666018", + "website_url": "http://eddylinebrewery.com", + "state": "Colorado", + "street": "102 Linderman Ave" + }, + { + "id": "84e0a77b-3442-442d-a275-8f8135620905", + "name": "Edelbrau Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Ann Arbor", + "state_province": "Michigan", + "postal_code": "48108-3393", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7347075184", + "website_url": "http://www.edelbrau.com", + "state": "Michigan", + "street": null + }, + { + "id": "8c531941-124b-4b34-9fde-f3703d03fa2f", + "name": "Eden Brewery", + "brewery_type": "micro", + "address_1": "19 Cavendish Street", + "address_2": "1", + "address_3": null, + "city": "Mittagong", + "state_province": "NSW", + "postal_code": "2575", + "country": "Australia", + "longitude": 150.433852, + "latitude": -34.453366, + "phone": "+61 422 366 531", + "website_url": "https://edenbrewery.beer/", + "state": "NSW", + "street": "19 Cavendish Street" + }, + { + "id": "6e525c51-c2aa-44b4-adaa-9fb869c1ae23", + "name": "Edge Brewing Company", + "brewery_type": "brewpub", + "address_1": "525 N Steelhead Way", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83704-8374", + "country": "United States", + "longitude": -116.2906516, + "latitude": 43.6094254, + "phone": "2089952979", + "website_url": "http://www.edgebrew.com", + "state": "Idaho", + "street": "525 N Steelhead Way" + }, + { + "id": "c0b2740e-e4e0-41ca-9a4e-c72785a07767", + "name": "Edge Brewing Company - Pub on 10th", + "brewery_type": "brewpub", + "address_1": "205 N 10th St", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83702-5773", + "country": "United States", + "longitude": -116.206021, + "latitude": 43.623807, + "phone": "2089725900", + "website_url": "http://www.edgebrew.com", + "state": "Idaho", + "street": "205 N 10th St" + }, + { + "id": "0898a2bf-6fc4-4156-8d97-08ce6b1ae29a", + "name": "Edge Of The World Brewery", + "brewery_type": "micro", + "address_1": "70 N Central St", + "address_2": null, + "address_3": null, + "city": "Colorado City", + "state_province": "Arizona", + "postal_code": "86021-1524", + "country": "United States", + "longitude": -112.9740725, + "latitude": 36.9941047, + "phone": "9288758710", + "website_url": "http://edgeoftheworld.bar", + "state": "Arizona", + "street": "70 N Central St" + }, + { + "id": "78d2954b-5437-4a8d-ab39-eda4478644e1", + "name": "Edgewater Brewery", + "brewery_type": "brewpub", + "address_1": "905 Struthers Ave", + "address_2": null, + "address_3": null, + "city": "Grand Junction", + "state_province": "Colorado", + "postal_code": "81501-3804", + "country": "United States", + "longitude": -108.5575144, + "latitude": 39.05565588, + "phone": "9702433659", + "website_url": "http://www.kannahcreekbrewingco.com/edgewater-brewery", + "state": "Colorado", + "street": "905 Struthers Ave" + }, + { + "id": "32db0465-4efa-4acc-a7b3-aa6678531e24", + "name": "Edmund's Oast Brewing Co", + "brewery_type": "brewpub", + "address_1": "1505 King St Extension", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "South Carolina", + "postal_code": "29405", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8437183224", + "website_url": "http://www.edmundsoast.com", + "state": "South Carolina", + "street": "1505 King St Extension" + }, + { + "id": "1a810992-ac1c-41b5-87ae-6da0f0900733", + "name": "Edward Teach Brewing", + "brewery_type": "micro", + "address_1": "604 N 4th St", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "North Carolina", + "postal_code": "28401", + "country": "United States", + "longitude": -77.945422, + "latitude": 34.242576, + "phone": "9105235401", + "website_url": null, + "state": "North Carolina", + "street": "604 N 4th St" + }, + { + "id": "97826164-b0b6-4012-b8d7-a25d2eb3b252", + "name": "Edwinton Brewing Company", + "brewery_type": "closed", + "address_1": "407 E Main Ave", + "address_2": null, + "address_3": null, + "city": "Bismarck", + "state_province": "North Dakota", + "postal_code": "58501-4043", + "country": "United States", + "longitude": -100.7859036, + "latitude": 46.80535377, + "phone": "7017127700", + "website_url": "http://www.edwinton.com", + "state": "North Dakota", + "street": "407 E Main Ave" + }, + { + "id": "649c8cd8-0c3c-4016-9944-02fda05f24bd", + "name": "Eel River Brewing Co", + "brewery_type": "micro", + "address_1": "1777 Alamar Way", + "address_2": null, + "address_3": null, + "city": "Fortuna", + "state_province": "California", + "postal_code": "95540-9548", + "country": "United States", + "longitude": -124.1524471, + "latitude": 40.57874196, + "phone": "7077252739", + "website_url": "http://www.eelriverbrewing.com", + "state": "California", + "street": "1777 Alamar Way" + }, + { + "id": "3988f05a-d439-413e-8247-d274eeb70b44", + "name": "Eel River Brewing Co - Facility and Warehouse", + "brewery_type": "micro", + "address_1": "600 K Bridge St", + "address_2": null, + "address_3": null, + "city": "Scotia", + "state_province": "California", + "postal_code": "95565", + "country": "United States", + "longitude": -124.1017905, + "latitude": 40.48674854, + "phone": "7077641772", + "website_url": null, + "state": "California", + "street": "600 K Bridge St" + }, + { + "id": "3b7796a9-c125-4743-8c60-f4a847264ed3", + "name": "Egan & Sons", + "brewery_type": "contract", + "address_1": "118 Walnut St", + "address_2": null, + "address_3": null, + "city": "Montclair", + "state_province": "New Jersey", + "postal_code": "07042-3852", + "country": "United States", + "longitude": -74.21181832, + "latitude": 40.81768748, + "phone": "9737441413", + "website_url": "http://www.eganandsons.com", + "state": "New Jersey", + "street": "118 Walnut St" + }, + { + "id": "3838a411-f540-4b66-93cc-7ff3c9f5e128", + "name": "Eight & Sand Beer Co", + "brewery_type": "micro", + "address_1": "1003 N Evergreen Ave", + "address_2": null, + "address_3": null, + "city": "Woodbury", + "state_province": "New Jersey", + "postal_code": "08096-", + "country": "United States", + "longitude": -75.14222034, + "latitude": 39.84934725, + "phone": "8565371339", + "website_url": "http://www.eightandsandbeer.com", + "state": "New Jersey", + "street": "1003 N Evergreen Ave" + }, + { + "id": "5c23b248-c3c5-4e39-8cd4-b06b6601bc9b", + "name": "Eight Bridges Brewing", + "brewery_type": "micro", + "address_1": "332 Earhart Way", + "address_2": null, + "address_3": null, + "city": "Livermore", + "state_province": "California", + "postal_code": "94551-9309", + "country": "United States", + "longitude": -121.8145893, + "latitude": 37.69895004, + "phone": "9259619160", + "website_url": "http://www.eightbridgesbrewing.com", + "state": "California", + "street": "332 Earhart Way" + }, + { + "id": "be2c5ed3-2579-4ba1-8838-e68556b4ab71", + "name": "Eight Degrees Brewing", + "brewery_type": "micro", + "address_1": "Unit 4", + "address_2": "Coolnanave Industrial Park", + "address_3": "Coolnanave", + "city": "Mitchelstown", + "state_province": "Cork", + "postal_code": "P67 FR62", + "country": "Ireland", + "longitude": -8.271831, + "latitude": 52.2772804, + "phone": "3532584933", + "website_url": "https://www.eightdegrees.ie/", + "state": "Cork", + "street": "Unit 4" + }, + { + "id": "0c4225cc-f91e-4955-a19c-07d6e43b9849", + "name": "Eight Rivers Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Hillsboro", + "state_province": "West Virginia", + "postal_code": "24946-0039", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2022513083", + "website_url": null, + "state": "West Virginia", + "street": null + }, + { + "id": "46c262c0-2b6f-42d6-84df-1da1a1656095", + "name": "Einstok Beer Company", + "brewery_type": "contract", + "address_1": "12381 Wilshire Blvd Suite 105", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90025", + "country": "United States", + "longitude": -118.4704166, + "latitude": 34.0423497, + "phone": "4242180179", + "website_url": "http://einstokbeer.com", + "state": "California", + "street": "12381 Wilshire Blvd Suite 105" + }, + { + "id": "76266ddb-a101-45dc-973a-dc10d4a80100", + "name": "Ekim Brewing Co.", + "brewery_type": "micro", + "address_1": "35 Leighton Place", + "address_2": "7", + "address_3": null, + "city": "Hornsby", + "state_province": "NSW", + "postal_code": "2077", + "country": "Australia", + "longitude": 151.1166436, + "latitude": -33.6949832, + "phone": "+61 427 371 427", + "website_url": "http://www.ekimbrewing.com.au/", + "state": "NSW", + "street": "35 Leighton Place" + }, + { + "id": "776a7a9b-c542-4578-9990-4a5dd26f9204", + "name": "El Dorado Brewing Co", + "brewery_type": "micro", + "address_1": "6051 Enterprise Dr", + "address_2": null, + "address_3": null, + "city": "Diamond Springs", + "state_province": "California", + "postal_code": "95619-9447", + "country": "United States", + "longitude": -120.8345161, + "latitude": 38.6942363, + "phone": "5305584188", + "website_url": "http://www.eldobrew.com", + "state": "California", + "street": "6051 Enterprise Dr" + }, + { + "id": "7a3aa913-807c-4395-9714-2d65d30ad9ee", + "name": "El Paso Brewing Company", + "brewery_type": "micro", + "address_1": "810-B Texas Ave", + "address_2": null, + "address_3": null, + "city": "El Paso", + "state_province": "Texas", + "postal_code": "79901-", + "country": "United States", + "longitude": -106.4818378, + "latitude": 31.76216161, + "phone": "9152620687", + "website_url": "http://www.elpasobrewing.com", + "state": "Texas", + "street": "810-B Texas Ave" + }, + { + "id": "36389c21-d80a-468a-bd08-a394b0de74e8", + "name": "El Rancho Brewing", + "brewery_type": "brewpub", + "address_1": "29260 US Highway 40", + "address_2": null, + "address_3": null, + "city": "Evergreen", + "state_province": "Colorado", + "postal_code": "80439-3700", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3036702739", + "website_url": "http://www.elranchobrewing.com", + "state": "Colorado", + "street": "29260 US Highway 40" + }, + { + "id": "5ff5bda9-bc0b-4794-a280-8e2a361066a2", + "name": "El Segundo Brewing Co", + "brewery_type": "micro", + "address_1": "140 Main St", + "address_2": null, + "address_3": null, + "city": "El Segundo", + "state_province": "California", + "postal_code": "90245-3801", + "country": "United States", + "longitude": -118.4156967, + "latitude": 33.91771, + "phone": "3105293882", + "website_url": "http://www.elsegundobrewing.com", + "state": "California", + "street": "140 Main St" + }, + { + "id": "d4630be0-3ff3-4aeb-8e01-e920425ac6d8", + "name": "El Toro Brewing Company Brewpub", + "brewery_type": "brewpub", + "address_1": "17605 Monterey Rd", + "address_2": null, + "address_3": null, + "city": "Morgan Hill", + "state_province": "California", + "postal_code": "95037-3620", + "country": "United States", + "longitude": -121.7082244, + "latitude": 37.1864644, + "phone": null, + "website_url": null, + "state": "California", + "street": "17605 Monterey Rd" + }, + { + "id": "614ec534-b889-4b25-8381-a57cac69c029", + "name": "Elation Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Norfolk", + "state_province": "Virginia", + "postal_code": "23508", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7574696020", + "website_url": null, + "state": "Virginia", + "street": null + }, + { + "id": "f4fd3cd9-6837-4ed0-b7f7-5f9635caa68e", + "name": "Elder Brewing Co.", + "brewery_type": "micro", + "address_1": "218 E Cass St", + "address_2": null, + "address_3": null, + "city": "Joliet", + "state_province": "Illinois", + "postal_code": "60432-2813", + "country": "United States", + "longitude": -88.076785, + "latitude": 41.527834, + "phone": null, + "website_url": "http://www.elderbrewingco.com", + "state": "Illinois", + "street": "218 E Cass St" + }, + { + "id": "44d62e5e-209d-4432-8149-715add60e6d4", + "name": "Elder Pine Brewing and Blending Co", + "brewery_type": "micro", + "address_1": "4200 Sundown Rd", + "address_2": null, + "address_3": null, + "city": "Gaithersburg", + "state_province": "Maryland", + "postal_code": "20882", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.elderpine.com", + "state": "Maryland", + "street": "4200 Sundown Rd" + }, + { + "id": "377038fb-785b-4d4c-bc17-2c8514340e76", + "name": "Elder Son Brewing Co.", + "brewery_type": "micro", + "address_1": "946 N Shepherd Dr Suite A", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77008", + "country": " United States", + "longitude": null, + "latitude": null, + "phone": "7134855749", + "website_url": "https://eldersonbrewing.com/", + "state": "Texas", + "street": "946 N Shepherd Dr Suite A" + }, + { + "id": "77e1db72-3870-4bd4-ad7d-80ae108c5398", + "name": "Elderbrew", + "brewery_type": "micro", + "address_1": "24 6th St", + "address_2": null, + "address_3": null, + "city": "Bristol", + "state_province": "Tennessee", + "postal_code": "37620", + "country": "United States", + "longitude": -82.18356135, + "latitude": 36.594077, + "phone": null, + "website_url": "http://www.elderbrew.com", + "state": "Tennessee", + "street": "24 6th St" + }, + { + "id": "b04d45c8-34d1-4220-9147-f87030b13922", + "name": "Electric Brewing", + "brewery_type": "micro", + "address_1": "1326 W HWY 92 STE 8", + "address_2": null, + "address_3": null, + "city": "Bisbee", + "state_province": "Arizona", + "postal_code": "85603-1151", + "country": "United States", + "longitude": -109.9296097, + "latitude": 31.3969105, + "phone": "5208004210", + "website_url": "https://www.electricbrewing.com", + "state": "Arizona", + "street": "1326 W HWY 92 STE 8" + }, + { + "id": "e6693673-773f-4925-918d-8eab89a62daa", + "name": "Electric Brewing Co", + "brewery_type": "micro", + "address_1": "41537 Cherry St", + "address_2": null, + "address_3": null, + "city": "Murrieta", + "state_province": "California", + "postal_code": "92562-9193", + "country": "United States", + "longitude": -117.172438, + "latitude": 33.5268827, + "phone": "9516962266", + "website_url": "http://www.electricbrewingcompany.com", + "state": "California", + "street": "41537 Cherry St" + }, + { + "id": "be78f4a5-2c4a-426b-8aa6-3577b0bde2ad", + "name": "Element Brewing Co", + "brewery_type": "micro", + "address_1": "16 Bridge St", + "address_2": null, + "address_3": null, + "city": "Millers Falls", + "state_province": "Massachusetts", + "postal_code": "01349-1336", + "country": "United States", + "longitude": -72.49516039, + "latitude": 42.57950929, + "phone": "4138356340", + "website_url": "http://www.elementbeer.com", + "state": "Massachusetts", + "street": "16 Bridge St" + }, + { + "id": "59dee189-7a16-4a13-a913-620994d7b548", + "name": "Elevate Your Passion Brewing", + "brewery_type": "micro", + "address_1": "2209 W 1st St # A107", + "address_2": null, + "address_3": null, + "city": "Tempe", + "state_province": "Arizona", + "postal_code": "85281-7245", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8883972337", + "website_url": "http://www.elevateyourpassion.com", + "state": "Arizona", + "street": "2209 W 1st St # A107" + }, + { + "id": "f8d43fea-de33-43f9-a243-2e3d4f6f6928", + "name": "Elevation 66 Brewing Co", + "brewery_type": "brewpub", + "address_1": "10082 San Pablo Ave", + "address_2": null, + "address_3": null, + "city": "El Cerrito", + "state_province": "California", + "postal_code": "94530-3927", + "country": "United States", + "longitude": -122.3030241, + "latitude": 37.9020418, + "phone": "5308489176", + "website_url": "http://www.elevation66.com", + "state": "California", + "street": "10082 San Pablo Ave" + }, + { + "id": "f13fa652-5f4d-43f1-b48d-493a6c417e7d", + "name": "Elevation Beer Company", + "brewery_type": "micro", + "address_1": "115 Pahlone Pkwy", + "address_2": null, + "address_3": null, + "city": "Poncha Springs", + "state_province": "Colorado", + "postal_code": "81242", + "country": "United States", + "longitude": -106.0659377, + "latitude": 38.51804434, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "115 Pahlone Pkwy" + }, + { + "id": "3037658d-3655-4682-a2f2-5b03d3f96090", + "name": "Elevator Brewery and Draught Haus", + "brewery_type": "brewpub", + "address_1": "161 N High St", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43215-2402", + "country": "United States", + "longitude": -83.0017892, + "latitude": 39.9656697, + "phone": "6142280500", + "website_url": "http://www.elevatorbrewing.com", + "state": "Ohio", + "street": "161 N High St" + }, + { + "id": "1f4af7fe-6b86-4d3c-95f2-c0fec87a67fb", + "name": "Elevator Brewing Co - Production facility", + "brewery_type": "micro", + "address_1": "165 N 4th St", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43215-2906", + "country": "United States", + "longitude": -82.9995686, + "latitude": 39.9662282, + "phone": "6146792337", + "website_url": "http://elevatorbrewery.com", + "state": "Ohio", + "street": "165 N 4th St" + }, + { + "id": "9f67414c-21a7-4be0-8f7f-9f3c7d1e82e2", + "name": "Eleven Lakes Brewing Company", + "brewery_type": "micro", + "address_1": "10228 Bailey Rd Ste 201", + "address_2": null, + "address_3": null, + "city": "Cornelius", + "state_province": "North Carolina", + "postal_code": "28031-9420", + "country": "United States", + "longitude": -80.86054928, + "latitude": 35.45400686, + "phone": "7044000927", + "website_url": "http://www.elevenlakesbrewing.com", + "state": "North Carolina", + "street": "10228 Bailey Rd Ste 201" + }, + { + "id": "728c3c0c-df0f-4448-a826-1bd4b2e86e85", + "name": "Eleventh Hour Brewing Co", + "brewery_type": "micro", + "address_1": "3711 Charlotte St", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15201-3201", + "country": "United States", + "longitude": -79.96553317, + "latitude": 40.46680403, + "phone": "4127165107", + "website_url": "http://www.11thhourbrews.com", + "state": "Pennsylvania", + "street": "3711 Charlotte St" + }, + { + "id": "9366a4a1-222a-43ec-af7f-e8c1e3454b57", + "name": "Eli Fish Brewing Company", + "brewery_type": "brewpub", + "address_1": "109 Main St", + "address_2": null, + "address_3": null, + "city": "Batavia", + "state_province": "New York", + "postal_code": "14020-2110", + "country": "United States", + "longitude": -78.18219898, + "latitude": 42.99732747, + "phone": "5858150401", + "website_url": "http://www.elifishbrewing.com", + "state": "New York", + "street": "109 Main St" + }, + { + "id": "357b4282-20a8-4fad-9de0-cdbdc3ed9879", + "name": "Elk Avenue Brewing Company", + "brewery_type": "brewpub", + "address_1": "215 Elk Avenue", + "address_2": null, + "address_3": null, + "city": "Crested Butte", + "state_province": "Colorado", + "postal_code": "81224", + "country": "United States", + "longitude": -106.9861689, + "latitude": 38.86984685, + "phone": "7733307876", + "website_url": null, + "state": "Colorado", + "street": "215 Elk Avenue" + }, + { + "id": "a89d6a63-9639-405f-b783-c6dd4c5fbab0", + "name": "Elk Brewing Co", + "brewery_type": "brewpub", + "address_1": "400 Dodge Rd NE", + "address_2": null, + "address_3": null, + "city": "Comstock Park", + "state_province": "Michigan", + "postal_code": "49321-8041", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6162385227", + "website_url": null, + "state": "Michigan", + "street": "400 Dodge Rd NE" + }, + { + "id": "ce34c0ef-c2ae-4f78-a4ee-de33c58c1744", + "name": "Elk Brewing Co", + "brewery_type": "brewpub", + "address_1": "700 Wealthy St SE", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49503-5539", + "country": "United States", + "longitude": -85.6515221, + "latitude": 42.9554463, + "phone": "6162385227", + "website_url": "http://www.elkbrewing.com", + "state": "Michigan", + "street": "700 Wealthy St SE" + }, + { + "id": "c55c2083-6f77-4a62-8b1e-dd1053d2cdb0", + "name": "Elk Creek Cafe + Aleworks", + "brewery_type": "brewpub", + "address_1": "100 W Main St", + "address_2": null, + "address_3": null, + "city": "Millheim", + "state_province": "Pennsylvania", + "postal_code": "16854", + "country": "United States", + "longitude": -77.47694623, + "latitude": 40.8911574, + "phone": "8143498850", + "website_url": "http://www.elkcreekcafe.net", + "state": "Pennsylvania", + "street": "100 W Main St" + }, + { + "id": "7d6e56b6-1b6b-497e-b4fc-6e19dbf099bb", + "name": "Elk Head Brewing Co", + "brewery_type": "micro", + "address_1": "28120 State Route 410 E", + "address_2": null, + "address_3": null, + "city": "Buckley", + "state_province": "Washington", + "postal_code": "98321-8721", + "country": "United States", + "longitude": -122.0529573, + "latitude": 47.15968788, + "phone": "3608292739", + "website_url": null, + "state": "Washington", + "street": "28120 State Route 410 E" + }, + { + "id": "1f6f2780-aea7-4d70-ae11-73f99ff0f760", + "name": "Elk Horn Brewery", + "brewery_type": "brewpub", + "address_1": "686 E Broadway", + "address_2": null, + "address_3": null, + "city": "Eugene", + "state_province": "Oregon", + "postal_code": "97401-3340", + "country": "United States", + "longitude": -123.0824349, + "latitude": 44.04979409, + "phone": "5415058356", + "website_url": "http://www.elkhornbrewery.com", + "state": "Oregon", + "street": "686 E Broadway" + }, + { + "id": "f3c553fd-04bc-4fd9-82f5-72e4647fcc83", + "name": "Elk Ridge Brewing Company", + "brewery_type": "micro", + "address_1": "320 Main St", + "address_2": null, + "address_3": null, + "city": "Deer Lodge", + "state_province": "Montana", + "postal_code": "59722-1057", + "country": "United States", + "longitude": -112.9535547, + "latitude": 46.12805905, + "phone": "4068464650", + "website_url": "http://www.elkridgebrewingcompany.com", + "state": "Montana", + "street": "320 Main St" + }, + { + "id": "33420b64-b564-4d19-b134-364a4721e50f", + "name": "Elk Street Brewery", + "brewery_type": "brewpub", + "address_1": "3 S Elk St", + "address_2": null, + "address_3": null, + "city": "Sandusky", + "state_province": "Michigan", + "postal_code": "48471-1353", + "country": "United States", + "longitude": -82.82977088, + "latitude": 43.42036406, + "phone": "8103008049", + "website_url": "http://www.elkstreetbrewery.com", + "state": "Michigan", + "street": "3 S Elk St" + }, + { + "id": "42536ff0-a7a8-4e41-8706-3411f1590482", + "name": "Elk Valley Brewing", + "brewery_type": "contract", + "address_1": "1210 N Hudson Ave", + "address_2": null, + "address_3": null, + "city": "Oklahoma City", + "state_province": "Oklahoma", + "postal_code": "73103", + "country": "United States", + "longitude": -97.5189497, + "latitude": 35.4804596, + "phone": "4056006438", + "website_url": "http://elkvalleybrew.com", + "state": "Oklahoma", + "street": "1210 N Hudson Ave" + }, + { + "id": "18af371f-35b2-4398-a1b7-aa8cceeb021f", + "name": "Elkhorn Slough Brewing Company", + "brewery_type": "micro", + "address_1": "65 Hangar Way Unit D", + "address_2": null, + "address_3": null, + "city": "Watsonville", + "state_province": "California", + "postal_code": "95076-2476", + "country": "United States", + "longitude": -121.7903344, + "latitude": 36.92762275, + "phone": "8312883152", + "website_url": "http://www.elkhornsloughbrew.com", + "state": "California", + "street": "65 Hangar Way Unit D" + }, + { + "id": "68a034ef-a640-4950-be85-deb482c883ce", + "name": "Elkins Brewing Company", + "brewery_type": "micro", + "address_1": "1901 E Santa Fe Ave", + "address_2": null, + "address_3": null, + "city": "Grants", + "state_province": "New Mexico", + "postal_code": "87020", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5052878665", + "website_url": "http://www.elkinsbrewing.com", + "state": "New Mexico", + "street": "1901 E Santa Fe Ave" + }, + { + "id": "1b2d5858-07ec-4980-9d92-e64b2f726d04", + "name": "Elkmont Exchange Brewery and Eating House", + "brewery_type": "brewpub", + "address_1": "745 N Broadway St", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37917-7202", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8653600602", + "website_url": "http://elkmontexchange.com", + "state": "Tennessee", + "street": "745 N Broadway St" + }, + { + "id": "92d0b2ac-85a6-4f1a-a11e-4a05e1bf0767", + "name": "Ellersick Brewing / Big E Ales", + "brewery_type": "closed", + "address_1": "5030 208th St SW Ste A", + "address_2": null, + "address_3": null, + "city": "Lynnwood", + "state_province": "Washington", + "postal_code": "98036-7642", + "country": "United States", + "longitude": -122.301844, + "latitude": 47.810408, + "phone": "4256727051", + "website_url": "http://www.bigeales.com", + "state": "Washington", + "street": "5030 208th St SW Ste A" + }, + { + "id": "cffb4a0f-1336-4544-b7f4-eb19b7087045", + "name": "Ellicott Mills Brewing Co", + "brewery_type": "brewpub", + "address_1": "8308 Main St", + "address_2": null, + "address_3": null, + "city": "Ellicott City", + "state_province": "Maryland", + "postal_code": "21043-4601", + "country": "United States", + "longitude": -76.79944314, + "latitude": 39.2681041, + "phone": "4103138141", + "website_url": "http://www.ellicottmillsbrewing.com", + "state": "Maryland", + "street": "8308 Main St" + }, + { + "id": "3263ac26-78d6-47f7-970c-416ecea45ccc", + "name": "Ellicottville Brewing Co", + "brewery_type": "micro", + "address_1": "28 Monroe St", + "address_2": null, + "address_3": null, + "city": "Ellicottville", + "state_province": "New York", + "postal_code": "14731", + "country": "United States", + "longitude": -78.67049701, + "latitude": 42.27511725, + "phone": "7166992537", + "website_url": "http://www.ellicottvillebrewing.com", + "state": "New York", + "street": "28 Monroe St" + }, + { + "id": "76772c7e-f116-416d-8646-0f824d12dec3", + "name": "Elliott Bay Brewery and Pub - West Seattle", + "brewery_type": "brewpub", + "address_1": "4720 California Ave SW", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98116-4413", + "country": "United States", + "longitude": -122.3865765, + "latitude": 47.5604072, + "phone": "2069328695", + "website_url": "http://www.elliottbaybrewing.com", + "state": "Washington", + "street": "4720 California Ave SW" + }, + { + "id": "9f309558-6675-475c-bfac-bef4aee4858d", + "name": "Elliott Bay Brewhouse & Pub - Burien", + "brewery_type": "brewpub", + "address_1": "255 SW 152nd St", + "address_2": null, + "address_3": null, + "city": "Burien", + "state_province": "Washington", + "postal_code": "98166-2307", + "country": "United States", + "longitude": -122.3373381, + "latitude": 47.466775, + "phone": "2062464211", + "website_url": "http://www.elliottbaybrewing.com", + "state": "Washington", + "street": "255 SW 152nd St" + }, + { + "id": "7d48f746-567e-43ab-8df2-a6a87db503dd", + "name": "Elliott Bay Public House & Brewery - Lake City", + "brewery_type": "brewpub", + "address_1": "12537 Lake City Way NE", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98125-4424", + "country": "United States", + "longitude": -122.2948936, + "latitude": 47.7203026, + "phone": "2063652337", + "website_url": "http://www.elliottbaybrewing.com", + "state": "Washington", + "street": "12537 Lake City Way NE" + }, + { + "id": "c136997e-054a-4163-a60f-00aaaa91633a", + "name": "Ellipsis Brewing", + "brewery_type": "micro", + "address_1": "7500 Tpc Blvd Ste 8", + "address_2": null, + "address_3": null, + "city": "Orlando", + "state_province": "Florida", + "postal_code": "32822-5181", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4072505848", + "website_url": null, + "state": "Florida", + "street": "7500 Tpc Blvd Ste 8" + }, + { + "id": "d7a5c7a9-e7b8-4b71-8b2f-fd9cbd0d0d06", + "name": "Ellis Island Casino and Brewery", + "brewery_type": "brewpub", + "address_1": "4178 Koval Ln", + "address_2": null, + "address_3": null, + "city": "Las Vegas", + "state_province": "Nevada", + "postal_code": "89109-4568", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Nevada", + "street": "4178 Koval Ln" + }, + { + "id": "818be285-2a92-49d5-8164-6ab9c058d1ec", + "name": "Ellison Brewery & Spirits", + "brewery_type": "micro", + "address_1": "4903 Dawn Ave", + "address_2": null, + "address_3": null, + "city": "East Lansing", + "state_province": "Michigan", + "postal_code": "48823-5610", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5172035498", + "website_url": "http://www.ellisonbrewing.com", + "state": "Michigan", + "street": "4903 Dawn Ave" + }, + { + "id": "c6211a84-875e-491b-8ba3-051fd0f6e0ea", + "name": "Elm City Brewing Company", + "brewery_type": "brewpub", + "address_1": "222 West St Ste 46", + "address_2": null, + "address_3": null, + "city": "Keene", + "state_province": "New Hampshire", + "postal_code": "03431-2459", + "country": "United States", + "longitude": -72.28642285, + "latitude": 42.93326464, + "phone": "6033553335", + "website_url": "http://www.elmcitybrewing.com", + "state": "New Hampshire", + "street": "222 West St Ste 46" + }, + { + "id": "f9db90cc-435a-4b8e-b390-4800da326bb0", + "name": "Elmhurst Brewing Company", + "brewery_type": "brewpub", + "address_1": "171 N Addison Ave", + "address_2": null, + "address_3": null, + "city": "Elmhurst", + "state_province": "Illinois", + "postal_code": "60126-2720", + "country": "United States", + "longitude": -87.94146327, + "latitude": 41.90285936, + "phone": "6308342739", + "website_url": "http://www.elmhurstbrewing.com", + "state": "Illinois", + "street": "171 N Addison Ave" + }, + { + "id": "d94af8d2-575b-4a3d-859f-725985d59a36", + "name": "Elst Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37921-5188", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8658099618", + "website_url": "http://www.elst.beer", + "state": "Tennessee", + "street": null + }, + { + "id": "78ab1ee9-b1b7-437a-8175-4cd608de8451", + "name": "Eluvium Brewing Co.", + "brewery_type": "micro", + "address_1": "11 Florida Ave", + "address_2": null, + "address_3": null, + "city": "Weaverville", + "state_province": "North Carolina", + "postal_code": "28787", + "country": "United States", + "longitude": -82.5615737, + "latitude": 35.69741414, + "phone": "8284841799", + "website_url": "http://www.eluviumbrewing.com", + "state": "North Carolina", + "street": "11 Florida Ave" + }, + { + "id": "06ba0b55-f5b4-490c-a10f-82ce08d8acca", + "name": "Elysian Brewing Co", + "brewery_type": "large", + "address_1": "5510 Airport Way S", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98108-2255", + "country": "United States", + "longitude": -122.3205871, + "latitude": 47.5533243, + "phone": "2068601920", + "website_url": "http://www.elysianbrewing.com", + "state": "Washington", + "street": "5510 Airport Way S" + }, + { + "id": "261afb12-b46b-473e-9782-ec6447440e29", + "name": "Elysian Brewing Co", + "brewery_type": "large", + "address_1": "1221 E Pike St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98122-3910", + "country": "United States", + "longitude": -122.3157647, + "latitude": 47.6139598, + "phone": "2068601920", + "website_url": "http://www.elysianbrewing.com", + "state": "Washington", + "street": "1221 E Pike St" + }, + { + "id": "17bddc6f-706d-439a-80b7-602e814b529e", + "name": "Elysian Brewing Co - Elysian Fields", + "brewery_type": "large", + "address_1": "542 1st Ave S Ste B", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98104-2882", + "country": "United States", + "longitude": -122.3335142512, + "latitude": 47.596704338262, + "phone": "2063824498", + "website_url": "http://www.elysianbrewing.com", + "state": "Washington", + "street": "542 1st Ave S Ste B" + }, + { + "id": "2e09ce9b-c3ef-4bfd-a0ef-f64e283d7369", + "name": "Elysian Brewing Co -Tangletown", + "brewery_type": "closed", + "address_1": "2106 N 55th St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98103-6202", + "country": "United States", + "longitude": -122.333474, + "latitude": 47.6687837, + "phone": "2065475929", + "website_url": null, + "state": "Washington", + "street": "2106 N 55th St" + }, + { + "id": "38cca64f-a75d-4577-807c-3b7f785cee38", + "name": "Elysium Brewing Company", + "brewery_type": "micro", + "address_1": "Unit B1 Centurion Business Park", + "address_2": "Milnerton", + "address_3": null, + "city": "Cape Town", + "state_province": "Western Cape", + "postal_code": "7441", + "country": "South Africa", + "longitude": 18.5134, + "latitude": -33.8687, + "phone": "+27 63 605 9413", + "website_url": "https://elysiumbrewing.co.za/", + "state": "Western Cape", + "street": "Unit B1 Centurion Business Park" + }, + { + "id": "17ca0408-60dc-4523-82c2-d7c5c1d16cde", + "name": "Emerald Vale Brewing Company", + "brewery_type": "micro", + "address_1": "Emerald Vale Farm", + "address_2": "Chintsa West", + "address_3": null, + "city": "East London", + "state_province": "Eastern Cape", + "postal_code": "5275", + "country": "South Africa", + "longitude": 28.0864, + "latitude": -32.8306, + "phone": "+27 43 738 5397", + "website_url": "https://emeraldvalebrewery.co.za/", + "state": "Eastern Cape", + "street": "Emerald Vale Farm" + }, + { + "id": "f369e864-9712-40dc-8030-ffc76435069b", + "name": "Emmett's Brewing Co - Downers Grove", + "brewery_type": "brewpub", + "address_1": "5200 Main St", + "address_2": null, + "address_3": null, + "city": "Downers Grove", + "state_province": "Illinois", + "postal_code": "60515-4688", + "country": "United States", + "longitude": -88.01051205, + "latitude": 41.7925884, + "phone": "6304348500", + "website_url": "http://www.emmettsbrewingco.com", + "state": "Illinois", + "street": "5200 Main St" + }, + { + "id": "4987fe4b-7bd7-4d18-857b-3e3c0cb3dafd", + "name": "Emmett's Brewing Co - Palatine", + "brewery_type": "brewpub", + "address_1": "110 N Brockway St", + "address_2": null, + "address_3": null, + "city": "Palatine", + "state_province": "Illinois", + "postal_code": "60067-5063", + "country": "United States", + "longitude": -88.046297, + "latitude": 42.11332289, + "phone": "8473591533", + "website_url": "http://www.emmettsbrewingco.com", + "state": "Illinois", + "street": "110 N Brockway St" + }, + { + "id": "e1422bf2-0baf-41f8-a91a-50ae379acc8f", + "name": "Emmett's Brewing Co - West Dundee", + "brewery_type": "brewpub", + "address_1": "128 W Main St", + "address_2": null, + "address_3": null, + "city": "West Dundee", + "state_province": "Illinois", + "postal_code": "60118-2017", + "country": "United States", + "longitude": -88.2784177, + "latitude": 42.0984146, + "phone": "8474284500", + "website_url": "http://www.emmettsbrewingco.com", + "state": "Illinois", + "street": "128 W Main St" + }, + { + "id": "8c207722-6895-4bbb-bb8a-eb0989c476ef", + "name": "Emmett's Brewing Co - Wheaton", + "brewery_type": "brewpub", + "address_1": "121 W Front St", + "address_2": null, + "address_3": null, + "city": "Wheaton", + "state_province": "Illinois", + "postal_code": "60187-5108", + "country": "United States", + "longitude": -88.10705232, + "latitude": 41.86494217, + "phone": "6303832020", + "website_url": "http://www.emmettsbrewingco.com", + "state": "Illinois", + "street": "121 W Front St" + }, + { + "id": "3ebef1a3-b680-4911-a442-07f042521c8c", + "name": "Empire Brewing Co", + "brewery_type": "brewpub", + "address_1": "120 Walton St", + "address_2": null, + "address_3": null, + "city": "Syracuse", + "state_province": "New York", + "postal_code": "13202-1571", + "country": "United States", + "longitude": -76.15406625, + "latitude": 43.04804637, + "phone": "3156552337", + "website_url": "http://www.empirebrew.com", + "state": "New York", + "street": "120 Walton St" + }, + { + "id": "e4e51dc8-6d71-4ccd-85e4-4cad72d1b5df", + "name": "Empire City Beer Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "New York", + "state_province": "New York", + "postal_code": "10012", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9178040571", + "website_url": "http://www.hitemhard.com", + "state": "New York", + "street": null + }, + { + "id": "79908f3b-0e14-4e3b-81e7-8e0de0954688", + "name": "Empire Farm Brewery", + "brewery_type": "micro", + "address_1": "33 Rippleton Rd", + "address_2": null, + "address_3": null, + "city": "Cazenovia", + "state_province": "New York", + "postal_code": "13035-9601", + "country": "United States", + "longitude": -75.8664345, + "latitude": 42.9197307, + "phone": "3156552337", + "website_url": "http://www.empirebrew.com", + "state": "New York", + "street": "33 Rippleton Rd" + }, + { + "id": "e40c10b9-391e-457d-b734-5c79bf4a5480", + "name": "Empirical Brewery", + "brewery_type": "micro", + "address_1": "1801 W Foster Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60640-1023", + "country": "United States", + "longitude": -87.6749395, + "latitude": 41.9762555, + "phone": null, + "website_url": "http://www.empiricalbrewery.com", + "state": "Illinois", + "street": "1801 W Foster Ave" + }, + { + "id": "c589ab3d-f739-4226-89f7-b84266f8b039", + "name": "Emprize Brew Mill", + "brewery_type": "brewpub", + "address_1": "200 Main St", + "address_2": null, + "address_3": null, + "city": "Menasha", + "state_province": "Wisconsin", + "postal_code": "54952", + "country": "United States", + "longitude": -88.4504129, + "latitude": 44.2013644, + "phone": "9204861539", + "website_url": "https://www.emprizebrewing.com", + "state": "Wisconsin", + "street": "200 Main St" + }, + { + "id": "72cbb196-7356-45c7-a060-3437a5022f2b", + "name": "Empty Pint Brewing Company", + "brewery_type": "micro", + "address_1": "17 2nd St", + "address_2": null, + "address_3": null, + "city": "Dover", + "state_province": "New Hampshire", + "postal_code": "03820", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "https://www.emptypintbrewing.com/", + "state": "New Hampshire", + "street": "17 2nd St" + }, + { + "id": "b9675043-285f-4bc2-bb74-2d14bbd4840f", + "name": "Empyrean Brewing Co", + "brewery_type": "micro", + "address_1": "729 Q St", + "address_2": null, + "address_3": null, + "city": "Lincoln", + "state_province": "Nebraska", + "postal_code": "68508-1536", + "country": "United States", + "longitude": -96.7105429, + "latitude": 40.8155873, + "phone": "4024345970", + "website_url": "http://www.empyreanbrewingco.com", + "state": "Nebraska", + "street": "729 Q St" + }, + { + "id": "cc77b466-cfd0-4906-a0ea-fbfa768e7a6b", + "name": "Enchanted Circle Brewing Company", + "brewery_type": "brewpub", + "address_1": "20 Sage Ln.", + "address_2": null, + "address_3": null, + "city": "Angel Fire", + "state_province": "New Mexico", + "postal_code": "87710", + "country": "United States", + "longitude": -105.2882775, + "latitude": 36.396276, + "phone": "5055078687", + "website_url": null, + "state": "New Mexico", + "street": "20 Sage Ln." + }, + { + "id": "ce9e3633-3660-4da7-9ceb-5f4f99d9d3a5", + "name": "Endeavor Brewing Company", + "brewery_type": "micro", + "address_1": "909 W 5th Ave", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43212", + "country": "United States", + "longitude": -83.030429, + "latitude": 39.988002, + "phone": "6144567074", + "website_url": "http://www.endeavorbrewingco.com", + "state": "Ohio", + "street": "909 W 5th Ave" + }, + { + "id": "e983a5e8-700a-40f2-872d-d77986c71ea6", + "name": "Endeavour Brewing Co", + "brewery_type": "micro", + "address_1": "39-43 Argyle Street", + "address_2": null, + "address_3": null, + "city": "The Rocks", + "state_province": "NSW", + "postal_code": "2000", + "country": "Australia", + "longitude": 151.2081896, + "latitude": -33.8592815, + "phone": "+61 2 8592 5404", + "website_url": "http://www.endeavourtaprooms.com/", + "state": "NSW", + "street": "39-43 Argyle Street" + }, + { + "id": "33ffdb60-e94b-459c-8201-7225dae7238d", + "name": "Endeavour Brewing Co.", + "brewery_type": "micro", + "address_1": "39-43 Argyle Street", + "address_2": null, + "address_3": null, + "city": "The Rocks", + "state_province": "NSW", + "postal_code": "2000", + "country": "Australia", + "longitude": 151.2081896, + "latitude": -33.8592815, + "phone": "+61 2 8592 5404", + "website_url": "http://www.endeavourtaprooms.com/", + "state": "NSW", + "street": "39-43 Argyle Street" + }, + { + "id": "bd66ac70-2685-4cfc-91f1-ec349c35c9ed", + "name": "Endless Brewing", + "brewery_type": "micro", + "address_1": "20610 Pa-29", + "address_2": null, + "address_3": null, + "city": "Montrose", + "state_province": "Pennsylvania", + "postal_code": "18801", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5709670985", + "website_url": "http://www.endlessbrewing.com", + "state": "Pennsylvania", + "street": "20610 Pa-29" + }, + { + "id": "a9090cf0-65c9-4c4b-985b-0d8692dae5ac", + "name": "Endless Pint Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Versailles", + "state_province": "Ohio", + "postal_code": "45380", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4197338806", + "website_url": "http://www.endlesspintbrewing.com", + "state": "Ohio", + "street": null + }, + { + "id": "0a06eb5a-b9f4-4078-8fc7-65a213197d00", + "name": "Endo Brewing Company", + "brewery_type": "micro", + "address_1": "2755 Dagny Way Ste 101", + "address_2": null, + "address_3": null, + "city": "Lafayette", + "state_province": "Colorado", + "postal_code": "80026-8023", + "country": "United States", + "longitude": -105.1341065, + "latitude": 40.0144311, + "phone": "7204428052", + "website_url": "http://endobrewing.com", + "state": "Colorado", + "street": "2755 Dagny Way Ste 101" + }, + { + "id": "b8214502-7df8-43aa-9d22-a4d55c175dac", + "name": "Enegren Brewing Co", + "brewery_type": "micro", + "address_1": "444 Zachary St Unit 120", + "address_2": null, + "address_3": null, + "city": "Moorpark", + "state_province": "California", + "postal_code": "93021-2073", + "country": "United States", + "longitude": -118.8706594, + "latitude": 34.28324302, + "phone": "8055520602", + "website_url": "http://www.enegrenbrewing.com", + "state": "California", + "street": "444 Zachary St Unit 120" + }, + { + "id": "f5b03217-9e4c-4cb2-9b10-5d983f8bd811", + "name": "Engine 15 Brewing Company", + "brewery_type": "micro", + "address_1": "633 N Myrtle Ave", + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Florida", + "postal_code": "32204-1319", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9045519429", + "website_url": "http://www.engine15.com", + "state": "Florida", + "street": "633 N Myrtle Ave" + }, + { + "id": "6e65e1de-6602-4580-a801-140ca2430354", + "name": "Engine 15 Brewing Company", + "brewery_type": "brewpub", + "address_1": "1500 Beach Blvd Ste 217", + "address_2": null, + "address_3": null, + "city": "Jacksonville Beach", + "state_province": "Florida", + "postal_code": "32250-2624", + "country": "United States", + "longitude": -81.3923194, + "latitude": 30.2882669, + "phone": "9042492337", + "website_url": "http://www.engine15.com", + "state": "Florida", + "street": "1500 Beach Blvd Ste 217" + }, + { + "id": "d4c69915-a54d-4525-a84b-14de75196904", + "name": "English Ales Brewery", + "brewery_type": "micro", + "address_1": "223 Reindollar Ave Ste A", + "address_2": null, + "address_3": null, + "city": "Marina", + "state_province": "California", + "postal_code": "93933-3851", + "country": "United States", + "longitude": -121.8038356, + "latitude": 36.68038392, + "phone": "8318833000", + "website_url": "http://www.englishalesbrewery.com", + "state": "California", + "street": "223 Reindollar Ave Ste A" + }, + { + "id": "1a244e49-1067-49cf-b1ec-5006c1c1158c", + "name": "English Setter Brewing Company", + "brewery_type": "closed", + "address_1": "15310 E Marietta Ave Ste 4", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99216-1876", + "country": "United States", + "longitude": -117.1983425, + "latitude": 47.68121756, + "phone": "5094133663", + "website_url": "http://www.englishsetterbrewing.com", + "state": "Washington", + "street": "15310 E Marietta Ave Ste 4" + }, + { + "id": "e6018041-dbb0-492f-9a2d-73f1e3a27874", + "name": "Engrained Brewing Co", + "brewery_type": "brewpub", + "address_1": "1120 W Lincolnshire Blvd", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Illinois", + "postal_code": "62711-6445", + "country": "United States", + "longitude": -89.6914854, + "latitude": 39.7481952, + "phone": "2175463054", + "website_url": "http://www.engrainedbrewing.com", + "state": "Illinois", + "street": "1120 W Lincolnshire Blvd" + }, + { + "id": "561a5198-be7f-447a-991c-516dcbc7dbae", + "name": "Enki Brewing", + "brewery_type": "micro", + "address_1": "1495 Steiger Lake Ln", + "address_2": null, + "address_3": null, + "city": "Victoria", + "state_province": "Minnesota", + "postal_code": "55386-9537", + "country": "United States", + "longitude": -93.65723977, + "latitude": 44.86169699, + "phone": "9523008408", + "website_url": "http://www.enkibrewing.com", + "state": "Minnesota", + "street": "1495 Steiger Lake Ln" + }, + { + "id": "8c79b15d-77ca-452d-8527-b38cabf2a40a", + "name": "Enlightened Brewing Company", + "brewery_type": "micro", + "address_1": "2020 S Allis St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53207-1212", + "country": "United States", + "longitude": -87.903853300237, + "latitude": 43.007189601638, + "phone": "4142398950", + "website_url": "http://www.enlightenedbeer.com", + "state": "Wisconsin", + "street": "2020 S Allis St" + }, + { + "id": "305dad28-1381-42c7-902f-ebf32081a5f2", + "name": "Eno River Brewing", + "brewery_type": "micro", + "address_1": "329 Allison St", + "address_2": null, + "address_3": null, + "city": "Hillsborough", + "state_province": "North Carolina", + "postal_code": "27278", + "country": "United States", + "longitude": -79.1144094, + "latitude": 36.0689533, + "phone": "9192414711", + "website_url": "https://www.enoriverbrewing.com", + "state": "North Carolina", + "street": "329 Allison St" + }, + { + "id": "f58c9bc0-34ca-4673-99f3-c124e0a41ee1", + "name": "Enso Brewing Company", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Vashon", + "state_province": "Washington", + "postal_code": "98070", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2067072437", + "website_url": null, + "state": "Washington", + "street": null + }, + { + "id": "3f8ad1a4-2cc8-4851-96f2-958f401ea4f0", + "name": "Entitled Beer Company", + "brewery_type": "proprietor", + "address_1": "21 North St", + "address_2": null, + "address_3": null, + "city": "Hingham", + "state_province": "Massachusetts", + "postal_code": "02043-", + "country": "United States", + "longitude": -70.88618473, + "latitude": 42.24360723, + "phone": "7817401035", + "website_url": "http://www.entitledbrewing.com", + "state": "Massachusetts", + "street": "21 North St" + }, + { + "id": "413d419f-ee43-4e41-a70e-4e7268346f9b", + "name": "Enumclaw Brewing Company @ Rockridge Orchards & Cidery", + "brewery_type": "closed", + "address_1": "40709 264th Ave SE", + "address_2": null, + "address_3": null, + "city": "Enumclaw", + "state_province": "Washington", + "postal_code": "98022-8366", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3608026800", + "website_url": "http://www.rockridgeorchards.com", + "state": "Washington", + "street": "40709 264th Ave SE" + }, + { + "id": "9eae20d8-c073-4f43-b3ae-817ad1fca5ae", + "name": "Eola School Restaurant", + "brewery_type": "brewpub", + "address_1": "12119 FM 381 Rd", + "address_2": null, + "address_3": null, + "city": "Eola", + "state_province": "Texas", + "postal_code": "76937", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3254693314", + "website_url": "http://www.eolaschool.com", + "state": "Texas", + "street": "12119 FM 381 Rd" + }, + { + "id": "4748474e-0161-45c5-916b-0e69e5950a3f", + "name": "Epic Brewing Co., LLC", + "brewery_type": "micro", + "address_1": "825 S State St", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84111-4207", + "country": "United States", + "longitude": -111.887825, + "latitude": 40.7511406, + "phone": "8019060123", + "website_url": "http://www.epicbrewing.com", + "state": "Utah", + "street": "825 S State St" + }, + { + "id": "20c6bcdb-a3ed-474a-a759-9505c03b8d87", + "name": "Epic Brewing Co., LLC", + "brewery_type": "closed", + "address_1": "1048 E 2100 S Ste 110", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84106-", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8017425490", + "website_url": "http://www.epicbrewing.com", + "state": "Utah", + "street": "1048 E 2100 S Ste 110" + }, + { + "id": "2295d060-841f-4b67-81c9-1ddf3f37ab11", + "name": "Epic Brewing Co., LLC", + "brewery_type": "micro", + "address_1": "3001 Walnut St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80205-2324", + "country": "United States", + "longitude": -104.9813405, + "latitude": 39.7632294, + "phone": "7205397410", + "website_url": "http://www.epicbrewing.com", + "state": "Colorado", + "street": "3001 Walnut St" + }, + { + "id": "e7e309e8-2f75-4754-854d-3bb06baa3173", + "name": "Epic Brewing Company", + "brewery_type": "micro", + "address_1": "18 Translink Drive", + "address_2": null, + "address_3": null, + "city": "Keilor Park", + "state_province": "VIC", + "postal_code": "3042", + "country": "Australia", + "longitude": 144.848697, + "latitude": -37.7224426, + "phone": "+61 3 9336 7077", + "website_url": "https://www.thebeerfactory.net.au/?utm_source=Google&utm_medium=Organic&utm_campaign=GMB", + "state": "VIC", + "street": "18 Translink Drive" + }, + { + "id": "016640d5-4cd0-4dd0-b25d-b18f7f04d58d", + "name": "Epicure Brewing", + "brewery_type": "micro", + "address_1": "40 Franklin St", + "address_2": null, + "address_3": null, + "city": "Norwich", + "state_province": "Connecticut", + "postal_code": "06360-", + "country": "United States", + "longitude": -72.07437477, + "latitude": 41.52521341, + "phone": "8603770789", + "website_url": "http://www.epicurebrewing.com", + "state": "Connecticut", + "street": "40 Franklin St" + }, + { + "id": "d2d0c6ff-11ef-4c8a-b20d-ee0c6d6e6f1f", + "name": "Epidemic Ales", + "brewery_type": "micro", + "address_1": "150 Mason Circle Stes I&J", + "address_2": null, + "address_3": null, + "city": "Concord", + "state_province": "California", + "postal_code": "94520", + "country": "United States", + "longitude": -122.0390695, + "latitude": 38.01022008, + "phone": "9255668850", + "website_url": "http://www.epidemicales.com", + "state": "California", + "street": "150 Mason Circle Stes I&J" + }, + { + "id": "13f3232c-9325-4b93-9fd9-06459cdd1734", + "name": "Eponymous Brewing Co", + "brewery_type": "micro", + "address_1": "126 Main Ave S", + "address_2": null, + "address_3": null, + "city": "Brookings", + "state_province": "South Dakota", + "postal_code": "57006-3038", + "country": "United States", + "longitude": -96.79881257, + "latitude": 44.30472165, + "phone": "6056922739", + "website_url": "http://www.eponymousbrewing.com", + "state": "South Dakota", + "street": "126 Main Ave S" + }, + { + "id": "c4a5b92c-1d16-44f2-99ac-f7fecb759dc9", + "name": "Eppig Brewing", + "brewery_type": "micro", + "address_1": "3052 El Cajon Blvd Ste 103", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92104-1399", + "country": "United States", + "longitude": -117.128732, + "latitude": 32.755723, + "phone": "6195011840", + "website_url": "http://www.eppigbrewing.com", + "state": "California", + "street": "3052 El Cajon Blvd Ste 103" + }, + { + "id": "87c781ee-9196-4e43-84ad-347f007569a2", + "name": "Equal Parts Brewing", + "brewery_type": "micro", + "address_1": "3118 Harrisburg Blvd", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77003", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3463523190", + "website_url": "http://www.equalpartsbrewing.com/", + "state": "Texas", + "street": "3118 Harrisburg Blvd" + }, + { + "id": "5979ba35-787d-4c50-9e32-bdf544d34087", + "name": "Equilibrium Brewery", + "brewery_type": "micro", + "address_1": "22 Henry Street", + "address_2": null, + "address_3": null, + "city": "Middletown", + "state_province": "New York", + "postal_code": "10940", + "country": "United States", + "longitude": -74.42143934, + "latitude": 41.44646965, + "phone": "8457754216", + "website_url": "http://www.eqbrew.com", + "state": "New York", + "street": "22 Henry Street" + }, + { + "id": "a3a2cc22-a18b-4cf9-86df-0ca06723116d", + "name": "Equinox Brewing", + "brewery_type": "micro", + "address_1": "133 Remington St", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80524-2833", + "country": "United States", + "longitude": -105.0757134, + "latitude": 40.5863266, + "phone": "9704841368", + "website_url": "http://www.equinoxbrewing.com", + "state": "Colorado", + "street": "133 Remington St" + }, + { + "id": "f10f2add-c809-4f58-958b-c47876af2a28", + "name": "Erie Ale Works", + "brewery_type": "micro", + "address_1": "416 W 12th St", + "address_2": null, + "address_3": null, + "city": "Erie", + "state_province": "Pennsylvania", + "postal_code": "16501-1506", + "country": "United States", + "longitude": -80.1219366, + "latitude": 42.108963, + "phone": "8143149089", + "website_url": "http://www.eriealeworks.com", + "state": "Pennsylvania", + "street": "416 W 12th St" + }, + { + "id": "e29579e9-a9e2-4c53-b966-d2ad4bb698b6", + "name": "Erie Brewing Co", + "brewery_type": "micro", + "address_1": "6008 Knowledge Pkwy # A", + "address_2": null, + "address_3": null, + "city": "Erie", + "state_province": "Pennsylvania", + "postal_code": "16510-4676", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8144597741", + "website_url": "http://www.eriebrewingco.com", + "state": "Pennsylvania", + "street": "6008 Knowledge Pkwy # A" + }, + { + "id": "87fe9d64-abad-4104-b35f-d5c3c156c910", + "name": "Erie Canal Brewing Company", + "brewery_type": "micro", + "address_1": "135 S Peterboro St", + "address_2": null, + "address_3": null, + "city": "Canastota", + "state_province": "New York", + "postal_code": "13032-1409", + "country": "United States", + "longitude": -75.75153202, + "latitude": 43.07857637, + "phone": "3155105001", + "website_url": "http://www.eriecanalbrewingcompany.com", + "state": "New York", + "street": "135 S Peterboro St" + }, + { + "id": "8551ddb7-d116-460e-b82d-4003bf816287", + "name": "Eris Brewery And Cider House", + "brewery_type": "brewpub", + "address_1": "4240 W Irving Park Rd", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60641", + "country": "United States", + "longitude": -87.7342346, + "latitude": 41.95388195, + "phone": "5623086582", + "website_url": null, + "state": "Illinois", + "street": "4240 W Irving Park Rd" + }, + { + "id": "d9942ca7-6ba7-4f64-90de-73796afe5851", + "name": "Escape Brewing Company", + "brewery_type": "micro", + "address_1": "9945 Trinity Blvd Ste 108", + "address_2": null, + "address_3": null, + "city": "Trinity", + "state_province": "Florida", + "postal_code": "34655-4552", + "country": "United States", + "longitude": -82.65284391, + "latitude": 28.18036575, + "phone": "7276393820", + "website_url": "http://www.escapebrewingcompany.com", + "state": "Florida", + "street": "9945 Trinity Blvd Ste 108" + }, + { + "id": "036c6be6-1227-40f9-833f-a753747edcdb", + "name": "Escape Craft Brewery", + "brewery_type": "micro", + "address_1": "721 Nevada St Ste 401", + "address_2": null, + "address_3": null, + "city": "Redlands", + "state_province": "California", + "postal_code": "92373-8053", + "country": "United States", + "longitude": -117.2175772, + "latitude": 34.0603401, + "phone": "9097133727", + "website_url": "http://www.escapecraftbrewery.com", + "state": "California", + "street": "721 Nevada St Ste 401" + }, + { + "id": "60a1ea9e-db4f-4bcf-8799-bb84baa08082", + "name": "Escondido Brewing Company", + "brewery_type": "micro", + "address_1": "649 Rock Springs Rd", + "address_2": null, + "address_3": null, + "city": "Escondido", + "state_province": "California", + "postal_code": "92025-1622", + "country": "United States", + "longitude": -117.097042, + "latitude": 33.124632, + "phone": null, + "website_url": "http://www.escobrewco.com", + "state": "California", + "street": "649 Rock Springs Rd" + }, + { + "id": "c8aa4da8-b80b-46b2-bf4c-e76bfe47d22e", + "name": "Escutcheon Brewing Co.", + "brewery_type": "micro", + "address_1": "142 W Commercial St", + "address_2": null, + "address_3": null, + "city": "Winchester", + "state_province": "Virginia", + "postal_code": "22601-4828", + "country": "United States", + "longitude": -78.1634732, + "latitude": 39.19554464, + "phone": "5407733042", + "website_url": "http://www.escutcheonbrewing.com", + "state": "Virginia", + "street": "142 W Commercial St" + }, + { + "id": "2f4ac980-04c4-4391-a4e4-2f5d90f9e4c2", + "name": "Eskes Brew Pub", + "brewery_type": "brewpub", + "address_1": "106 Des Georges Pl", + "address_2": null, + "address_3": null, + "city": "Taos", + "state_province": "New Mexico", + "postal_code": "87571-6179", + "country": "United States", + "longitude": -105.5731656, + "latitude": 36.4058929, + "phone": "5757581517", + "website_url": "http://www.eskesbrewpub.com", + "state": "New Mexico", + "street": "106 Des Georges Pl" + }, + { + "id": "b07c36e6-95d2-4fdc-981f-8266a0bc3786", + "name": "Estes Park Brewery", + "brewery_type": "micro", + "address_1": "470 Prospect Village Dr", + "address_2": null, + "address_3": null, + "city": "Estes Park", + "state_province": "Colorado", + "postal_code": "80517", + "country": "United States", + "longitude": -105.5261317, + "latitude": 40.3714876, + "phone": "9705865421", + "website_url": "http://www.epbrewery.net", + "state": "Colorado", + "street": "470 Prospect Village Dr" + }, + { + "id": "b8b99a39-f008-4bde-9824-c5aaf4ba6b61", + "name": "Eternity Brewing Co", + "brewery_type": "micro", + "address_1": "4060 E Grand River Ave", + "address_2": null, + "address_3": null, + "city": "Howell", + "state_province": "Michigan", + "postal_code": "48843-8583", + "country": "United States", + "longitude": -83.9948055, + "latitude": 42.63273017, + "phone": "5172954904", + "website_url": "http://www.eternitybrewing.com", + "state": "Michigan", + "street": "4060 E Grand River Ave" + }, + { + "id": "ec0e5191-0b58-43ae-b0fb-6f6b7af46bbc", + "name": "Ethereal Brewing", + "brewery_type": "micro", + "address_1": "1224 Manchester St", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "Kentucky", + "postal_code": "40504-1129", + "country": "United States", + "longitude": -84.5200035, + "latitude": 38.056562, + "phone": "8593091254", + "website_url": "http://www.etherealbrew.com", + "state": "Kentucky", + "street": "1224 Manchester St" + }, + { + "id": "7a824a71-6925-4710-bea9-2231cecc634b", + "name": "Etna Brewing Co LLC", + "brewery_type": "micro", + "address_1": "131 Callahan Street", + "address_2": null, + "address_3": null, + "city": "Etna", + "state_province": "California", + "postal_code": "96027", + "country": "United States", + "longitude": -122.8918305, + "latitude": 41.45674141, + "phone": "5304675277", + "website_url": "http://www.etnabrew.com", + "state": "California", + "street": "131 Callahan Street" + }, + { + "id": "5b2d36b5-9994-421e-bd81-f9bca58a9216", + "name": "Etowah Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Dahlonega", + "state_province": "Georgia", + "postal_code": "30533", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6785707349", + "website_url": null, + "state": "Georgia", + "street": null + }, + { + "id": "01a6ba0f-c1d8-4d6f-9c90-c97f611a0844", + "name": "ETX Brewing Co.", + "brewery_type": "micro", + "address_1": "221 S Broadway Ave", + "address_2": null, + "address_3": null, + "city": "Tyler", + "state_province": "Texas", + "postal_code": "75702-7302", + "country": "United States", + "longitude": -95.3081695, + "latitude": 32.2553345, + "phone": "9036307720", + "website_url": "http://www.etxbrew.com", + "state": "Texas", + "street": "221 S Broadway Ave" + }, + { + "id": "d3fd07d4-ccaa-4100-bf82-a6acd3ed4b7e", + "name": "Eudora Brewing Co", + "brewery_type": "micro", + "address_1": "4716 Wilmington Pike", + "address_2": null, + "address_3": null, + "city": "Dayton", + "state_province": "Ohio", + "postal_code": "45440-2021", + "country": "United States", + "longitude": -84.162271, + "latitude": 39.735916, + "phone": "9377236863", + "website_url": "http://www.eudorabrewing.com", + "state": "Ohio", + "street": "4716 Wilmington Pike" + }, + { + "id": "1540f10e-84b9-4af6-ac33-c3a8830aa67c", + "name": "Eureka Heights Brewing Company", + "brewery_type": "micro", + "address_1": "941 W 18th St", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77008-3336", + "country": "United States", + "longitude": -95.4164348, + "latitude": 29.8019913, + "phone": "8329534677", + "website_url": "http://www.eurekaheights.com", + "state": "Texas", + "street": "941 W 18th St" + }, + { + "id": "9d99fd5e-9aeb-48c6-a8b5-ece6a0607dbd", + "name": "EuroBevs", + "brewery_type": "contract", + "address_1": "2255 Cumberland Pkwy SE", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30339-4515", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7704371285", + "website_url": "http://www.eurobevs.com", + "state": "Georgia", + "street": "2255 Cumberland Pkwy SE" + }, + { + "id": "e33818b7-7dd4-45ac-8f77-0816794a18a1", + "name": "Euryale Brewing Company", + "brewery_type": "micro", + "address_1": "2060 Chicago Ave Ste A17", + "address_2": null, + "address_3": null, + "city": "Riverside", + "state_province": "California", + "postal_code": "92507-2344", + "country": "United States", + "longitude": -117.3479555, + "latitude": 33.99293689, + "phone": "9515308865", + "website_url": "http://www.euryalebrewing.com", + "state": "California", + "street": "2060 Chicago Ave Ste A17" + }, + { + "id": "7240f52e-72c7-4c00-a8f3-9eeb0daac16e", + "name": "Evans Brewing Co / Bayhawk Ales", + "brewery_type": "micro", + "address_1": "2000 Main St", + "address_2": null, + "address_3": null, + "city": "Irvine", + "state_province": "California", + "postal_code": "92614-7202", + "country": "United States", + "longitude": -117.8559667, + "latitude": 33.68560798, + "phone": "7147080082", + "website_url": "http://www.evansbrewco.com", + "state": "California", + "street": "2000 Main St" + }, + { + "id": "d656f484-6477-4d44-8c47-7bf1bf309363", + "name": "Evasion Brewing - Production Facility", + "brewery_type": "micro", + "address_1": "4230 NE Riverside Dr", + "address_2": null, + "address_3": null, + "city": "McMinnville", + "state_province": "Oregon", + "postal_code": "97128-8403", + "country": "United States", + "longitude": -123.1519619, + "latitude": 45.22899995, + "phone": "5038355322", + "website_url": "http://www.evasionbrewing.com", + "state": "Oregon", + "street": "4230 NE Riverside Dr" + }, + { + "id": "51e73708-c0e0-4502-8986-2b1db31621f5", + "name": "Eventide Brewing Co", + "brewery_type": "micro", + "address_1": "1015 Grant St SE", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30315-2014", + "country": "United States", + "longitude": -84.37706291, + "latitude": 33.72670205, + "phone": "4049074543", + "website_url": "http://www.eventidebrewing.com", + "state": "Georgia", + "street": "1015 Grant St SE" + }, + { + "id": "13677292-c029-4542-9335-497bcd8d515d", + "name": "Ever Grain Brewing Co", + "brewery_type": "micro", + "address_1": "4444 Carlisle Pike Ste C", + "address_2": null, + "address_3": null, + "city": "Camp Hill", + "state_province": "Pennsylvania", + "postal_code": "17011-4102", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7175258222", + "website_url": null, + "state": "Pennsylvania", + "street": "4444 Carlisle Pike Ste C" + }, + { + "id": "0bd9b336-f4f3-41f7-91e0-19709d3c6364", + "name": "Evergreen Brewery", + "brewery_type": "brewpub", + "address_1": "2962 Evergreen Pkwy", + "address_2": null, + "address_3": null, + "city": "Evergreen", + "state_province": "Colorado", + "postal_code": "80439-7995", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3037368419", + "website_url": "http://www.evergreentaphouse.com", + "state": "Colorado", + "street": "2962 Evergreen Pkwy" + }, + { + "id": "7c0fa97b-b482-43bd-a429-b62ed564e50c", + "name": "Everybody's Brewing Co", + "brewery_type": "micro", + "address_1": "177 E Jewett Blvd", + "address_2": null, + "address_3": null, + "city": "White Salmon", + "state_province": "Washington", + "postal_code": "98672-8976", + "country": "United States", + "longitude": -121.4854565, + "latitude": 45.72787736, + "phone": "5096372774", + "website_url": "http://www.everybodysbrewing.com", + "state": "Washington", + "street": "177 E Jewett Blvd" + }, + { + "id": "51e62ad1-42ab-490a-b8a8-3ae8d6502c7f", + "name": "Evil Czech Brewery", + "brewery_type": "brewpub", + "address_1": "3703 N Main St", + "address_2": null, + "address_3": null, + "city": "Mishawaka", + "state_province": "Indiana", + "postal_code": "46545-3111", + "country": "United States", + "longitude": -86.1823337, + "latitude": 41.6939205, + "phone": null, + "website_url": null, + "state": "Indiana", + "street": "3703 N Main St" + }, + { + "id": "339caa7a-481f-4315-bba1-bca6b74d8b89", + "name": "Evil Genius Beer Co", + "brewery_type": "micro", + "address_1": "1727 N Front St", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19122-3203", + "country": "United States", + "longitude": -75.13401561, + "latitude": 39.97578018, + "phone": "2154256820", + "website_url": "http://www.evilgeniusbeer.com", + "state": "Pennsylvania", + "street": "1727 N Front St" + }, + { + "id": "133e055a-4014-4eaf-822f-4d5089b14ffc", + "name": "Evil Horse Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "1338 Main St", + "address_2": null, + "address_3": null, + "city": "Crete", + "state_province": "Illinois", + "postal_code": "60417-2131", + "country": "United States", + "longitude": -87.631432, + "latitude": 41.44499003, + "phone": "7083042907", + "website_url": "http://evilhorsebrewing.com", + "state": "Illinois", + "street": "1338 Main St" + }, + { + "id": "375f4801-e257-44f8-af0c-1e4bb3804b20", + "name": "Evolution Craft Brewing Co", + "brewery_type": "regional", + "address_1": "200 Elmwood St", + "address_2": null, + "address_3": null, + "city": "Salisbury", + "state_province": "Maryland", + "postal_code": "21804-5522", + "country": "United States", + "longitude": -75.595254, + "latitude": 38.361979, + "phone": "4432602337", + "website_url": "http://www.evolutioncraftbrewing.com", + "state": "Maryland", + "street": "200 Elmwood St" + }, + { + "id": "fe4a7fe6-9a1a-4e6b-8a7b-d4ddd6ad0efd", + "name": "Evolution Craft Brewing Co - Salisbury", + "brewery_type": "brewpub", + "address_1": "201 E Vine St", + "address_2": null, + "address_3": null, + "city": "Salisbury", + "state_province": "Maryland", + "postal_code": "21804-5515", + "country": "United States", + "longitude": -75.595628, + "latitude": 38.360471, + "phone": null, + "website_url": null, + "state": "Maryland", + "street": "201 E Vine St" + }, + { + "id": "4a2c515d-7384-4406-8751-31133687eac1", + "name": "Ex Novo Brewing Co", + "brewery_type": "micro", + "address_1": "2326 N Flint Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97227-1905", + "country": "United States", + "longitude": -122.6684147, + "latitude": 45.54002045, + "phone": "5038948251", + "website_url": "http://www.exnovobrew.com", + "state": "Oregon", + "street": "2326 N Flint Ave" + }, + { + "id": "5e6d5f65-c765-4f07-ab83-92556b3c8d04", + "name": "Excel Brewing Co", + "brewery_type": "micro", + "address_1": "488 S Broadway", + "address_2": null, + "address_3": null, + "city": "Breese", + "state_province": "Illinois", + "postal_code": "62230-1805", + "country": "United States", + "longitude": -89.53007673, + "latitude": 38.60665933, + "phone": "6185267159", + "website_url": "http://www.excelbottling.com", + "state": "Illinois", + "street": "488 S Broadway" + }, + { + "id": "42159682-82fd-4be8-8fe4-2e8a4799339d", + "name": "Excelsior Brewing Co", + "brewery_type": "micro", + "address_1": "421 3rd St Ste 3", + "address_2": null, + "address_3": null, + "city": "Excelsior", + "state_province": "Minnesota", + "postal_code": "55331-2008", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9524747837", + "website_url": "http://www.excelsiorbrew.com", + "state": "Minnesota", + "street": "421 3rd St Ste 3" + }, + { + "id": "75a21a02-9de8-4c47-98ad-86b631186a15", + "name": "Exeter Brewing Co", + "brewery_type": "brewpub", + "address_1": "156 Epping Rd", + "address_2": null, + "address_3": null, + "city": "Exeter", + "state_province": "New Hampshire", + "postal_code": "03833", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6036867253", + "website_url": "https://www.exeterbrewing.co/", + "state": "New Hampshire", + "street": "156 Epping Rd" + }, + { + "id": "9e2133f8-4aba-4b9b-830f-13f9c3626c44", + "name": "Exferimentation Brewing Company", + "brewery_type": "micro", + "address_1": "7 N Saginaw St", + "address_2": null, + "address_3": null, + "city": "Pontiac", + "state_province": "Michigan", + "postal_code": "48342-2182", + "country": "United States", + "longitude": -83.292346, + "latitude": 42.6369922, + "phone": "2486481377", + "website_url": "http://www.exferimentationbrewing.com", + "state": "Michigan", + "street": "7 N Saginaw St" + }, + { + "id": "cbc96b9c-6ff0-4172-8bbd-02f4a55ab5bc", + "name": "Exhibit 'A' Brewing Co.", + "brewery_type": "micro", + "address_1": "81 Morton St", + "address_2": null, + "address_3": null, + "city": "Framingham", + "state_province": "Massachusetts", + "postal_code": "01702-7153", + "country": "United States", + "longitude": -71.40187088, + "latitude": 42.27880435, + "phone": null, + "website_url": "http://www.exhibit-A-brewing.com", + "state": "Massachusetts", + "street": "81 Morton St" + }, + { + "id": "7a156b9c-1010-4774-ab03-3f401a22089c", + "name": "Exile Brewing", + "brewery_type": "micro", + "address_1": "1514 Walnut St", + "address_2": null, + "address_3": null, + "city": "Des Moines", + "state_province": "Iowa", + "postal_code": "50309-3420", + "country": "United States", + "longitude": -93.63702159, + "latitude": 41.5830167, + "phone": "5158832337", + "website_url": "http://www.exilebrewing.com", + "state": "Iowa", + "street": "1514 Walnut St" + }, + { + "id": "ad3eac47-5589-4d11-a8cf-f118895fe7f7", + "name": "Exit 6 Brewery", + "brewery_type": "micro", + "address_1": "5055 Highway N Ste 112", + "address_2": null, + "address_3": null, + "city": "Saint Charles", + "state_province": "Missouri", + "postal_code": "63304-8031", + "country": "United States", + "longitude": -90.639934, + "latitude": 38.745126, + "phone": "6362444343", + "website_url": "http://www.exit6brewery.com", + "state": "Missouri", + "street": "5055 Highway N Ste 112" + }, + { + "id": "38b01e10-3aac-4226-b30f-bb568f0e41bc", + "name": "Exit Strategy Brewing Company", + "brewery_type": "brewpub", + "address_1": "7700 Madison St", + "address_2": null, + "address_3": null, + "city": "Forest Park", + "state_province": "Illinois", + "postal_code": "60130-1404", + "country": "United States", + "longitude": -87.8108065, + "latitude": 41.8795262, + "phone": "7086898771", + "website_url": "http://www.exitstrategybrewing.com", + "state": "Illinois", + "street": "7700 Madison St" + }, + { + "id": "e7d630be-55a7-4d75-8fa0-72a6f25e49ec", + "name": "Explorer Brewing Company", + "brewery_type": "micro", + "address_1": "209 Ash St", + "address_2": null, + "address_3": null, + "city": "Kelso", + "state_province": "Washington", + "postal_code": "98626", + "country": "United States", + "longitude": -122.9120251, + "latitude": 46.14277372, + "phone": "3602328337", + "website_url": "https://www.facebook.com/discoverourcraft", + "state": "Washington", + "street": "209 Ash St" + }, + { + "id": "4df55a90-f4fa-4966-9e9c-5d0beaa22d46", + "name": "Extra Billys Brewery and Smokehouse", + "brewery_type": "brewpub", + "address_1": "1110 Alverser Dr", + "address_2": null, + "address_3": null, + "city": "Midlothian", + "state_province": "Virginia", + "postal_code": "23113-2654", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8043798727", + "website_url": "http://www.extrabillys.com", + "state": "Virginia", + "street": "1110 Alverser Dr" + }, + { + "id": "b2040588-749b-4784-b662-24d3e14c0827", + "name": "F-Town Brewing Company", + "brewery_type": "micro", + "address_1": "22 4th St NE", + "address_2": null, + "address_3": null, + "city": "Faribault", + "state_province": "Minnesota", + "postal_code": "55021-5207", + "country": "United States", + "longitude": -93.26734492, + "latitude": 44.29499775, + "phone": "5073317677", + "website_url": "http://www.ftownbeer.com", + "state": "Minnesota", + "street": "22 4th St NE" + }, + { + "id": "09fd5463-3654-4126-8c8a-fc7af79025cc", + "name": "Faction Brewing Co", + "brewery_type": "micro", + "address_1": "2501 Monarch St Ste 200", + "address_2": null, + "address_3": null, + "city": "Alameda", + "state_province": "California", + "postal_code": "94501-5098", + "country": "United States", + "longitude": -122.3097077, + "latitude": 37.7866722, + "phone": "5105232739", + "website_url": "http://www.factionbrewing.com", + "state": "California", + "street": "2501 Monarch St Ste 200" + }, + { + "id": "4b832677-fcb7-4eb8-8d6b-c0429d0db2f1", + "name": "Factotum Brewhouse", + "brewery_type": "micro", + "address_1": "3845 Lipan St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80211-2651", + "country": "United States", + "longitude": -105.0020653, + "latitude": 39.7702043, + "phone": "7204414735", + "website_url": "http://www.factotumbrewhouse.com", + "state": "Colorado", + "street": "3845 Lipan St" + }, + { + "id": "409cbbab-e5e4-45a7-a251-16406806ccda", + "name": "Fainting Goat Brewing Company", + "brewery_type": "micro", + "address_1": "330 S Main St", + "address_2": null, + "address_3": null, + "city": "Fuquay Varina", + "state_province": "North Carolina", + "postal_code": "27526-2225", + "country": "United States", + "longitude": -78.80001933, + "latitude": 35.5812855, + "phone": "9193950642", + "website_url": "http://www.faintinggoatbeer.com", + "state": "North Carolina", + "street": "330 S Main St" + }, + { + "id": "146c521f-d3c9-4a86-82a8-7bbf951aedea", + "name": "Fair Isle Brewing", + "brewery_type": "micro", + "address_1": "936 NW 49th St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98107-3653", + "country": "United States", + "longitude": -122.37009151542, + "latitude": 47.664611749884, + "phone": "2064283434", + "website_url": "http://www.fairislebrewing.com", + "state": "Washington", + "street": "936 NW 49th St" + }, + { + "id": "3614131f-2a22-4bcb-8708-e7450dc980d2", + "name": "Fair Oaks Brew Pub", + "brewery_type": "brewpub", + "address_1": "7988 California Ave", + "address_2": null, + "address_3": null, + "city": "Fair Oaks", + "state_province": "California", + "postal_code": "95628-7140", + "country": "United States", + "longitude": -121.2687393, + "latitude": 38.64181849, + "phone": null, + "website_url": "http://www.fairoaksbrewpub.com", + "state": "California", + "street": "7988 California Ave" + }, + { + "id": "cdbad8ba-146f-45dd-b87c-c91eec35d170", + "name": "Fair State Brewing Cooperative", + "brewery_type": "micro", + "address_1": "2506A Central Ave NE", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55418", + "country": "United States", + "longitude": -93.247453, + "latitude": 45.01337914, + "phone": "6124443209", + "website_url": "http://www.fairstate.coop", + "state": "Minnesota", + "street": "2506A Central Ave NE" + }, + { + "id": "8cb37c9f-01f0-4737-b068-0563e61da8d8", + "name": "Fair State Brewing Cooperative - St. Paul", + "brewery_type": "micro", + "address_1": "2075 Ellis Ave", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55114-1308", + "country": "United States", + "longitude": -93.18822129, + "latitude": 44.96603388, + "phone": "6124443209", + "website_url": null, + "state": "Minnesota", + "street": "2075 Ellis Ave" + }, + { + "id": "3321c8e5-b94c-4eac-bdd7-2702889ab9f8", + "name": "Fair Winds Brewing Company", + "brewery_type": "micro", + "address_1": "7000 Newington Rd Ste K& # L", + "address_2": null, + "address_3": null, + "city": "Lorton", + "state_province": "Virginia", + "postal_code": "22079-1133", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7033722001", + "website_url": "http://www.fairwindsbrewing.com", + "state": "Virginia", + "street": "7000 Newington Rd Ste K& # L" + }, + { + "id": "e73ab2c9-9e8e-40f7-ac90-d3de503f2052", + "name": "Fairfield Craft Ales", + "brewery_type": "micro", + "address_1": "724 Honeyspot Rd", + "address_2": null, + "address_3": null, + "city": "Stratford", + "state_province": "Connecticut", + "postal_code": "06615-7109", + "country": "United States", + "longitude": -73.14702832, + "latitude": 41.17565816, + "phone": "2032962530", + "website_url": "http://www.fairfieldcraftales.com", + "state": "Connecticut", + "street": "724 Honeyspot Rd" + }, + { + "id": "ff7683a0-1be0-4ac4-a538-91e45d7db527", + "name": "Fairfield Opera House Brewery", + "brewery_type": "brewpub", + "address_1": "415 N D St", + "address_2": null, + "address_3": null, + "city": "Fairfield", + "state_province": "Nebraska", + "postal_code": "68938-2114", + "country": "United States", + "longitude": -98.10588657, + "latitude": 40.43061571, + "phone": "4027262447", + "website_url": "http://www.fairfieldoperahouse.com", + "state": "Nebraska", + "street": "415 N D St" + }, + { + "id": "33ddedf3-db57-4bc5-a935-ee1ac0ca1435", + "name": "Fairhope Brewing Co", + "brewery_type": "micro", + "address_1": "914 Nichols Ave", + "address_2": null, + "address_3": null, + "city": "Fairhope", + "state_province": "Alabama", + "postal_code": "36532-3684", + "country": "United States", + "longitude": -87.898282, + "latitude": 30.516291, + "phone": "2512797517", + "website_url": null, + "state": "Alabama", + "street": "914 Nichols Ave" + }, + { + "id": "e80dd655-7f93-4e25-9008-89124f4dc685", + "name": "Fairport Brewing Co", + "brewery_type": "micro", + "address_1": "99 S Main St", + "address_2": null, + "address_3": null, + "city": "Fairport", + "state_province": "New York", + "postal_code": "14450-2100", + "country": "United States", + "longitude": -77.4416792, + "latitude": 43.0988098, + "phone": "5857520613", + "website_url": "http://www.fairportbrewing.com", + "state": "New York", + "street": "99 S Main St" + }, + { + "id": "469c98f8-6cf2-4bce-89d2-8ac4f07e519d", + "name": "Fairport Brewing Co", + "brewery_type": "micro", + "address_1": "1000 Turk Hill Rd Ste 298", + "address_2": null, + "address_3": null, + "city": "Fairport", + "state_province": "New York", + "postal_code": "14450-8755", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5857520613", + "website_url": null, + "state": "New York", + "street": "1000 Turk Hill Rd Ste 298" + }, + { + "id": "ce39a577-ce79-4328-9251-faa66bd7ffa7", + "name": "Fall Brewing Company", + "brewery_type": "micro", + "address_1": "4542 30th St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92116-4247", + "country": "United States", + "longitude": -117.1302802, + "latitude": 32.75997514, + "phone": "6195010903", + "website_url": "http://www.fallbrewing.com", + "state": "California", + "street": "4542 30th St" + }, + { + "id": "0bd3a805-101a-44af-97ee-eae99c7fe1c7", + "name": "Fall River Brewing Company", + "brewery_type": "closed", + "address_1": "24339 State Highway 89", + "address_2": null, + "address_3": null, + "city": "Burney", + "state_province": "California", + "postal_code": "96013-9615", + "country": "United States", + "longitude": -121.6230357, + "latitude": 40.99337635, + "phone": null, + "website_url": "http://www.fallriverbrewing.com", + "state": "California", + "street": "24339 State Highway 89" + }, + { + "id": "29fb815b-f6a0-461b-8b08-9829959cdf1a", + "name": "Fall River Brewing Company", + "brewery_type": "micro", + "address_1": "4001 Eastside Rd", + "address_2": null, + "address_3": null, + "city": "Redding", + "state_province": "California", + "postal_code": "96001", + "country": "United States", + "longitude": -122.3869586, + "latitude": 40.55859975, + "phone": null, + "website_url": "http://www.fallriverbrewing.com", + "state": "California", + "street": "4001 Eastside Rd" + }, + { + "id": "c93b83e9-91a9-4f3b-b3d7-4931d43ff2bf", + "name": "Fallbrook Brewing Co", + "brewery_type": "micro", + "address_1": "116 W Hawthorne St", + "address_2": null, + "address_3": null, + "city": "Fallbrook", + "state_province": "California", + "postal_code": "92028-", + "country": "United States", + "longitude": -117.2516425, + "latitude": 33.38273379, + "phone": null, + "website_url": "http://www.fallbrookbrewing.com", + "state": "California", + "street": "116 W Hawthorne St" + }, + { + "id": "e5467256-ec72-496e-82ff-8a5bf07bf2c1", + "name": "Falling Branch Brewery", + "brewery_type": "micro", + "address_1": "825 Highland Rd", + "address_2": null, + "address_3": null, + "city": "Street", + "state_province": "Maryland", + "postal_code": "21154-1312", + "country": "United States", + "longitude": -76.3708166, + "latitude": 39.66665004, + "phone": null, + "website_url": "http://fallingbranchbeer.com", + "state": "Maryland", + "street": "825 Highland Rd" + }, + { + "id": "e986a09e-8f49-456c-b9dc-950b744484d4", + "name": "Falling Down Beer Co.", + "brewery_type": "brewpub", + "address_1": "2270 E 10 Mile Rd", + "address_2": null, + "address_3": null, + "city": "Warren", + "state_province": "Michigan", + "postal_code": "48091-3701", + "country": "United States", + "longitude": -82.9805361, + "latitude": 42.4787048, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "2270 E 10 Mile Rd" + }, + { + "id": "85bdcb94-2d7c-4c98-bb30-e1d09e8f05b8", + "name": "Falling Knife Brewing Company", + "brewery_type": "micro", + "address_1": "783 Harding St NE", + "address_2": "Suite #100", + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55413", + "country": "United States", + "longitude": -93.221498, + "latitude": 44.998312, + "phone": "6123547101", + "website_url": "https://fallingknife.beer", + "state": "Minnesota", + "street": "783 Harding St NE" + }, + { + "id": "3cffc2c8-fe86-46cd-836b-55f860daa1d9", + "name": "Falling Sky Brewing", + "brewery_type": "brewpub", + "address_1": "1334 Oak Aly", + "address_2": null, + "address_3": null, + "city": "Eugene", + "state_province": "Oregon", + "postal_code": "97401-3190", + "country": "United States", + "longitude": -123.0921962, + "latitude": 44.04539623, + "phone": "5415057096", + "website_url": "http://www.fallingskybrewing.com", + "state": "Oregon", + "street": "1334 Oak Aly" + }, + { + "id": "46c00e4c-6069-40af-9412-24cc10a64902", + "name": "Falls City Brewing Company", + "brewery_type": "micro", + "address_1": "901 E Liberty St", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40204", + "country": "United States", + "longitude": -85.73625618, + "latitude": 38.25036895, + "phone": "5022577284", + "website_url": "http://www.fallscitybeer.com", + "state": "Kentucky", + "street": "901 E Liberty St" + }, + { + "id": "774bb339-af5e-4a24-9bec-a34d854dc393", + "name": "Fam's Brewing Company", + "brewery_type": "brewpub", + "address_1": "1291 Folly Rd", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "South Carolina", + "postal_code": "29412", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8437937733", + "website_url": "http://www.famspizza.com", + "state": "South Carolina", + "street": "1291 Folly Rd" + }, + { + "id": "2cd2c54f-2579-4da6-8c4e-cd95c811d78a", + "name": "Family Business Beer Company", + "brewery_type": "micro", + "address_1": "19510 Hamilton Pool Rd", + "address_2": null, + "address_3": null, + "city": "Dripping Springs", + "state_province": "Texas", + "postal_code": "78620-2823", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5128294202", + "website_url": "http://www.familybusinessbeerco.com", + "state": "Texas", + "street": "19510 Hamilton Pool Rd" + }, + { + "id": "c266b8f9-e306-4809-a344-5c6244ce6c6e", + "name": "Fanatic Brewing Company", + "brewery_type": "micro", + "address_1": "2735 N Central St", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37917", + "country": "United States", + "longitude": -83.94224452, + "latitude": 35.99175106, + "phone": "8655482337", + "website_url": "http://www.fanaticbrewing.com", + "state": "Tennessee", + "street": "2735 N Central St" + }, + { + "id": "b024d4aa-863a-460b-ad4d-aba44398e2ab", + "name": "Fannin Brewing", + "brewery_type": "micro", + "address_1": "3758 E First St", + "address_2": null, + "address_3": null, + "city": "Blue Ridge", + "state_province": "Georgia", + "postal_code": "30513-4514", + "country": "United States", + "longitude": -84.31707477, + "latitude": 34.87142613, + "phone": "7062582762", + "website_url": "http://www.fanninbrewingcompany.com", + "state": "Georgia", + "street": "3758 E First St" + }, + { + "id": "e82ab4e0-4615-4ab0-b7f5-8d5b75839bb7", + "name": "Fantasy Brewmasters, LLC", + "brewery_type": "contract", + "address_1": "5825 Dogwood Way", + "address_2": null, + "address_3": null, + "city": "Naples", + "state_province": "Florida", + "postal_code": "34116-4909", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2392063247", + "website_url": null, + "state": "Florida", + "street": "5825 Dogwood Way" + }, + { + "id": "20652f26-12e5-4a3e-8a7b-589f6626acb4", + "name": "Far Gohn Brewing Company", + "brewery_type": "micro", + "address_1": "301 S East St", + "address_2": null, + "address_3": null, + "city": "Culpeper", + "state_province": "Virginia", + "postal_code": "22701-3105", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5404232089", + "website_url": "http://www.fargohnbrewing.com", + "state": "Virginia", + "street": "301 S East St" + }, + { + "id": "e87d9efb-c71e-45fb-a54c-3bdc71391046", + "name": "Fargo Brewing Co", + "brewery_type": "micro", + "address_1": "610 University Dr N", + "address_2": null, + "address_3": null, + "city": "Fargo", + "state_province": "North Dakota", + "postal_code": "58102-4342", + "country": "United States", + "longitude": -96.79937236, + "latitude": 46.88326389, + "phone": "7014782337", + "website_url": "http://www.fargobrewing.com", + "state": "North Dakota", + "street": "610 University Dr N" + }, + { + "id": "0186da1a-a5c4-4076-8a33-25ee193a65a4", + "name": "Farm Road Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Arlington", + "state_province": "Vermont", + "postal_code": "05250-8766", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Vermont", + "street": null + }, + { + "id": "90f16bb9-b94f-4f2c-8fae-c64ed95208b3", + "name": "Farm Shed Wines & Brews", + "brewery_type": "micro", + "address_1": "22808 Sumner Buckley Hwy E", + "address_2": null, + "address_3": null, + "city": "Buckley", + "state_province": "Washington", + "postal_code": "98321-8424", + "country": "United States", + "longitude": -122.124967, + "latitude": 47.180813, + "phone": "8444379786", + "website_url": "http://www.farmshedwines.com", + "state": "Washington", + "street": "22808 Sumner Buckley Hwy E" + }, + { + "id": "4bd0b915-e78d-4dde-bf1d-549999499aca", + "name": "Farmacy Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Reisterstown", + "state_province": "Maryland", + "postal_code": "21136-3817", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4109352551", + "website_url": null, + "state": "Maryland", + "street": null + }, + { + "id": "ab98a927-af49-4318-928d-0bb98651f45d", + "name": "Farmers Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Princeton", + "state_province": "California", + "postal_code": "95970-9519", + "country": "United States", + "longitude": -122.009975, + "latitude": 39.4032192, + "phone": "5306246053", + "website_url": "http://www.farmersbrewing.com", + "state": "California", + "street": null + }, + { + "id": "b2a43962-9a78-4e6d-882c-d3cb13129327", + "name": "Farmington Brewing Company LLC", + "brewery_type": "micro", + "address_1": "33336 Grand River Ave", + "address_2": null, + "address_3": null, + "city": "Farmington", + "state_province": "Michigan", + "postal_code": "48336-3124", + "country": "United States", + "longitude": -83.37603742, + "latitude": 42.4649541, + "phone": "2489579543", + "website_url": "http://fbcbrewing.com", + "state": "Michigan", + "street": "33336 Grand River Ave" + }, + { + "id": "6cbd8d7c-b5af-4eda-802c-550643b62d42", + "name": "Farmington Underground Canning and Kegging", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Farmington", + "state_province": "Michigan", + "postal_code": "48336", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": null + }, + { + "id": "7eaa5cbc-b92b-4c5f-91fa-5242c2a66214", + "name": "Farmstrong Brewing Co", + "brewery_type": "micro", + "address_1": "110 Stewart Rd", + "address_2": null, + "address_3": null, + "city": "Mount Vernon", + "state_province": "Washington", + "postal_code": "98273-9628", + "country": "United States", + "longitude": -122.3369645, + "latitude": 48.4431376, + "phone": "3608738852", + "website_url": "http://www.farmstrongbrewing.com", + "state": "Washington", + "street": "110 Stewart Rd" + }, + { + "id": "e07da07f-d0a7-46e5-ac44-190dbff63bfa", + "name": "Farnam House Brewing Company", + "brewery_type": "brewpub", + "address_1": "3558 Farnam St", + "address_2": null, + "address_3": null, + "city": "Omaha", + "state_province": "Nebraska", + "postal_code": "68131-3304", + "country": "United States", + "longitude": -95.96580178, + "latitude": 41.2578153, + "phone": "4024016086", + "website_url": "http://www.farnamhousebrewing.com", + "state": "Nebraska", + "street": "3558 Farnam St" + }, + { + "id": "2151a210-0008-45b5-902a-6300cd87bea6", + "name": "Farnham Ale & Lager", + "brewery_type": "micro", + "address_1": "82 Ethan Allen Dr", + "address_2": null, + "address_3": null, + "city": "South Burlington", + "state_province": "Vermont", + "postal_code": "05403-5971", + "country": "United States", + "longitude": -73.15391274, + "latitude": 44.48290389, + "phone": "8027351288", + "website_url": "http://www.farnham-alelager.com", + "state": "Vermont", + "street": "82 Ethan Allen Dr" + }, + { + "id": "dfa10b9e-ad89-4a05-b718-2621cca3d5f9", + "name": "Fast Fashion Brewing", + "brewery_type": "micro", + "address_1": "730 N 34th St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98103", + "country": "United States", + "longitude": -122.3484134, + "latitude": 47.64970532, + "phone": "2065574907", + "website_url": "https://fastfashion.us/", + "state": "Washington", + "street": "730 N 34th St" + }, + { + "id": "deb362d3-968b-47c5-81f0-61178ed0d6ca", + "name": "Fat Bottom Brewing", + "brewery_type": "micro", + "address_1": "800 44th Ave N", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37209-2336", + "country": "United States", + "longitude": -86.84031688, + "latitude": 36.16044926, + "phone": "6152935783", + "website_url": "http://www.fatbottombrewing.com", + "state": "Tennessee", + "street": "800 44th Ave N" + }, + { + "id": "8cd7a35b-7a2e-43ab-bdcd-f3a2f2cd8331", + "name": "Fat Boy Brewing Co", + "brewery_type": "closed", + "address_1": "2851 S Stratton Dr", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53219-2759", + "country": "United States", + "longitude": -88.0130081, + "latitude": 42.99227079, + "phone": "4147616366", + "website_url": "http://www.fatboybeer.com", + "state": "Wisconsin", + "street": "2851 S Stratton Dr" + }, + { + "id": "e47d18ae-4f7c-4c27-8a28-feae3c16d541", + "name": "Fat Head's Brewery", + "brewery_type": "regional", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Middleburg Heights", + "state_province": "Ohio", + "postal_code": "44130-2472", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2168980242", + "website_url": "http://www.fatheads.com", + "state": "Ohio", + "street": null + }, + { + "id": "7b7dbd69-0464-48a3-898e-cad1deb07b3b", + "name": "Fat Head's Brewery & Saloon", + "brewery_type": "brewpub", + "address_1": "24581 Lorain Rd", + "address_2": null, + "address_3": null, + "city": "North Olmsted", + "state_province": "Ohio", + "postal_code": "44070-2170", + "country": "United States", + "longitude": -81.89440993, + "latitude": 41.42667743, + "phone": "4408011001", + "website_url": "http://www.fatheadscleveland.com", + "state": "Ohio", + "street": "24581 Lorain Rd" + }, + { + "id": "26f084da-1c39-4d15-9139-a0566da855da", + "name": "Fat Head's Brewpub - Canton", + "brewery_type": "brewpub", + "address_1": "3885 Everhard Rd NW", + "address_2": null, + "address_3": null, + "city": "Canton", + "state_province": "Ohio", + "postal_code": "44709-4003", + "country": "United States", + "longitude": -81.41867571, + "latitude": 40.85972436, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": "3885 Everhard Rd NW" + }, + { + "id": "cd11bf3f-f398-4758-816a-378f4d841cd3", + "name": "Fat Hen Brewing Co", + "brewery_type": "brewpub", + "address_1": "150 Front St", + "address_2": null, + "address_3": null, + "city": "Exeter", + "state_province": "New Hampshire", + "postal_code": "03833", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6035804137", + "website_url": null, + "state": "New Hampshire", + "street": "150 Front St" + }, + { + "id": "5916f082-a258-478f-9586-9096ee1d159d", + "name": "Fat Hill Brewing", + "brewery_type": "micro", + "address_1": "17 N Federal Ave", + "address_2": null, + "address_3": null, + "city": "Mason City", + "state_province": "Iowa", + "postal_code": "50401-3250", + "country": "United States", + "longitude": -93.20096509, + "latitude": 43.15203459, + "phone": "9524126272", + "website_url": "http://FatHillBrewing.com", + "state": "Iowa", + "street": "17 N Federal Ave" + }, + { + "id": "04ae9ae6-162a-4a1d-8c06-cbfe1b484d2b", + "name": "Fat Orange Cat Brew Co", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "East Hampton", + "state_province": "Connecticut", + "postal_code": "06424-1636", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8608818045", + "website_url": "http://www.fatorangecatbrewco.com", + "state": "Connecticut", + "street": null + }, + { + "id": "14dd447c-9aa5-4fd8-bdd0-f8febf45176c", + "name": "Fat Point Brewing", + "brewery_type": "micro", + "address_1": "611 Charlotte St", + "address_2": null, + "address_3": null, + "city": "Punta Gorda", + "state_province": "Florida", + "postal_code": "33950-4115", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8003807405", + "website_url": "http://www.fatpoint.com", + "state": "Florida", + "street": "611 Charlotte St" + }, + { + "id": "391fbfc6-0b81-4b96-8fe2-8f886f4527aa", + "name": "Fat Toad Brewing Company", + "brewery_type": "micro", + "address_1": "3986 W 530 Rd", + "address_2": null, + "address_3": null, + "city": "Pryor", + "state_province": "Oklahoma", + "postal_code": "74361", + "country": "United States", + "longitude": -95.3276131, + "latitude": 36.2498069, + "phone": "9188641308", + "website_url": "http://www.fattoadbrewing.com", + "state": "Oklahoma", + "street": "3986 W 530 Rd" + }, + { + "id": "82221e83-b64e-43c2-9593-0ec456674870", + "name": "FATE Brewing Company", + "brewery_type": "brewpub", + "address_1": "1600 38th St Ste 100", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301-2610", + "country": "United States", + "longitude": -105.2454818, + "latitude": 40.0149794, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "1600 38th St Ste 100" + }, + { + "id": "0b8ec1a7-bd72-439d-a741-71d61f851aa8", + "name": "Father John's Microbrewery", + "brewery_type": "brewpub", + "address_1": "301 W Butler St", + "address_2": null, + "address_3": null, + "city": "Bryan", + "state_province": "Ohio", + "postal_code": "43506-1608", + "country": "United States", + "longitude": -84.553828, + "latitude": 41.473192, + "phone": "4196331313", + "website_url": "http://www.fatherjohnsbrewery.com", + "state": "Ohio", + "street": "301 W Butler St" + }, + { + "id": "e9e4a440-843a-43d3-b481-52a7e5307444", + "name": "Fathom & League Hop Yard Brewery", + "brewery_type": "micro", + "address_1": "360 Grandview Dr", + "address_2": null, + "address_3": null, + "city": "Sequim", + "state_province": "Washington", + "postal_code": "98382-7875", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3602860278", + "website_url": "http://www.fathomandleaguebrewery.com", + "state": "Washington", + "street": "360 Grandview Dr" + }, + { + "id": "ef476d83-b75b-4637-9adf-e5ceb03df535", + "name": "Fatty's Beer Works", + "brewery_type": "contract", + "address_1": "1436 Meeting Street Rd", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "South Carolina", + "postal_code": "29405-9342", + "country": "United States", + "longitude": -79.950716, + "latitude": 32.816629, + "phone": "8439745330", + "website_url": "http://www.followfatty.com", + "state": "South Carolina", + "street": "1436 Meeting Street Rd" + }, + { + "id": "e01bf1ae-7f9b-4c7e-9f4f-8b9f46ba8457", + "name": "Faultline Brewing Co", + "brewery_type": "brewpub", + "address_1": "1235 Oakmead Pkwy", + "address_2": null, + "address_3": null, + "city": "Sunnyvale", + "state_province": "California", + "postal_code": "94085-4040", + "country": "United States", + "longitude": -121.9895755, + "latitude": 37.38688662, + "phone": "4087362739", + "website_url": null, + "state": "California", + "street": "1235 Oakmead Pkwy" + }, + { + "id": "6b709f6c-f30d-44bd-843e-3dd0a99fb05d", + "name": "Faults Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Anchorage", + "state_province": "Alaska", + "postal_code": "99509-0312", + "country": "United States", + "longitude": -149.8948523, + "latitude": 61.2163129, + "phone": "9073019922", + "website_url": null, + "state": "Alaska", + "street": null + }, + { + "id": "5b2dc61f-9074-4e9e-bd6f-16593b342f9c", + "name": "Faust Hotel Restaurant and Brew Pub", + "brewery_type": "micro", + "address_1": "499 S Castell Ave", + "address_2": null, + "address_3": null, + "city": "New Braunfels", + "state_province": "Texas", + "postal_code": "78130-7618", + "country": "United States", + "longitude": -98.12031, + "latitude": 29.698525, + "phone": "8306257791", + "website_url": "http://www.faustbrewing.com", + "state": "Texas", + "street": "499 S Castell Ave" + }, + { + "id": "cdbeb166-5eaf-4a66-9ca5-1cf6b55df680", + "name": "Fawken Beer Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "Tennessee", + "postal_code": "38401-2030", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6156636116", + "website_url": null, + "state": "Tennessee", + "street": null + }, + { + "id": "400d6684-fd2d-4a17-9745-ccfb28a2a871", + "name": "Fayetteville Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fayetteville", + "state_province": "Arkansas", + "postal_code": "72704-7402", + "country": "United States", + "longitude": -94.1574328, + "latitude": 36.0625843, + "phone": "4792631905", + "website_url": "http://www.fayettebrew.com", + "state": "Arkansas", + "street": null + }, + { + "id": "4f86b0c5-c7a2-4cfa-8fa3-40afca62a741", + "name": "Fearless Brewing Co", + "brewery_type": "brewpub", + "address_1": "326 S Broadway St", + "address_2": null, + "address_3": null, + "city": "Estacada", + "state_province": "Oregon", + "postal_code": "97023-7000", + "country": "United States", + "longitude": -122.3350759, + "latitude": 45.2870468, + "phone": "5036302337", + "website_url": "http://www.fearless.beer", + "state": "Oregon", + "street": "326 S Broadway St" + }, + { + "id": "39a29354-6247-4e93-bc5d-5f1ee33b24ab", + "name": "Feather Falls Brewing Co", + "brewery_type": "brewpub", + "address_1": "3 Alverda Dr", + "address_2": null, + "address_3": null, + "city": "Oroville", + "state_province": "California", + "postal_code": "95966-9379", + "country": "United States", + "longitude": -121.521407, + "latitude": 39.46576, + "phone": "5305344059", + "website_url": "http://www.featherfallscasino.com", + "state": "California", + "street": "3 Alverda Dr" + }, + { + "id": "d26eddc8-d40c-4448-8eea-011b109966c2", + "name": "Feather River Brewing Co", + "brewery_type": "micro", + "address_1": "14665 Forest Ridge Rd", + "address_2": null, + "address_3": null, + "city": "Magalia", + "state_province": "California", + "postal_code": "95954-0443", + "country": "United States", + "longitude": -121.5777621, + "latitude": 39.84088592, + "phone": "5308730734", + "website_url": "http://www.featherriverbrewing.com", + "state": "California", + "street": "14665 Forest Ridge Rd" + }, + { + "id": "e202f7ae-1d8f-42ff-b427-8d1460490b56", + "name": "Feathered Friend Brewing", + "brewery_type": "micro", + "address_1": "231 S Main St", + "address_2": null, + "address_3": null, + "city": "Concord", + "state_province": "New Hampshire", + "postal_code": "03301", + "country": "United States", + "longitude": -71.53136, + "latitude": 43.1945, + "phone": "6037152347", + "website_url": "https://www.featheredfriendbrewing.com/", + "state": "New Hampshire", + "street": "231 S Main St" + }, + { + "id": "502b4291-c1be-403f-aeb4-0e5434def665", + "name": "Feathered Serpent Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "San Dimas", + "state_province": "California", + "postal_code": "91773-1477", + "country": "United States", + "longitude": -117.8067257, + "latitude": 34.1066756, + "phone": "3237079238", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "a7dc9d1f-cd7c-424f-91e2-47641cd50735", + "name": "Featherstone Brewery", + "brewery_type": "micro", + "address_1": "Goodwin Farm", + "address_2": "Highlands Road", + "address_3": null, + "city": "Makhanda", + "state_province": "Eastern Cape", + "postal_code": "6139", + "country": "South Africa", + "longitude": 26.5415, + "latitude": -33.2087, + "phone": "+27 82 821 2146", + "website_url": "https://featherstonebrewery.co.za/", + "state": "Eastern Cape", + "street": "Goodwin Farm" + }, + { + "id": "2b08803c-7d1c-4eb9-bb76-6c8b744482f3", + "name": "Feckin Brewery", + "brewery_type": "micro", + "address_1": "415 S McLoughlin Blvd", + "address_2": null, + "address_3": null, + "city": "Oregon City", + "state_province": "Oregon", + "postal_code": "97045-3101", + "country": "United States", + "longitude": -122.6217909, + "latitude": 45.3474038, + "phone": "5038805608", + "website_url": "http://www.fecknbrew.com", + "state": "Oregon", + "street": "415 S McLoughlin Blvd" + }, + { + "id": "fedb74bd-dba3-42c7-8214-dc462f596369", + "name": "Federation Brewing", + "brewery_type": "micro", + "address_1": "420 3rd St Unit A", + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94607-3809", + "country": "United States", + "longitude": -122.2752148, + "latitude": 37.79677436, + "phone": null, + "website_url": "http://www.federationbrewing.com", + "state": "California", + "street": "420 3rd St Unit A" + }, + { + "id": "18fa7337-3df9-4a49-902d-3983251d6058", + "name": "Feed Store Beer Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Bloomfield", + "state_province": "Indiana", + "postal_code": "47424-1137", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8123814343", + "website_url": "http://www.feedstorebeer.com", + "state": "Indiana", + "street": null + }, + { + "id": "c2edeb1a-5721-4b01-afe1-82af71c79821", + "name": "Fegley's Brew Works", + "brewery_type": "brewpub", + "address_1": "812 Hamilton St", + "address_2": null, + "address_3": null, + "city": "Allentown", + "state_province": "Pennsylvania", + "postal_code": "18101-2437", + "country": "United States", + "longitude": -75.4575021, + "latitude": 40.6060468, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": "812 Hamilton St" + }, + { + "id": "9266dfe0-081f-43f5-ba21-0c838257fdd6", + "name": "Felicia's Atomic Brewhouse and Bakery", + "brewery_type": "brewpub", + "address_1": "45 E Main St", + "address_2": null, + "address_3": null, + "city": "Trumansburg", + "state_province": "New York", + "postal_code": "14886", + "country": "United States", + "longitude": -76.65512, + "latitude": 42.539886, + "phone": "6072094229", + "website_url": "http://www.atomicbrewhouse.com", + "state": "New York", + "street": "45 E Main St" + }, + { + "id": "7bca234d-1a84-4a03-9e62-f1d47567570c", + "name": "Felons Brewing Co.", + "brewery_type": "micro", + "address_1": "5 Boundary Street", + "address_2": null, + "address_3": null, + "city": "Brisbane City", + "state_province": "QLD", + "postal_code": "4000", + "country": "Australia", + "longitude": 153.0361616, + "latitude": -27.462407, + "phone": "+61 7 3188 9090", + "website_url": "http://felonsbrewingco.com.au/", + "state": "QLD", + "street": "5 Boundary Street" + }, + { + "id": "55a2e9a7-753a-4299-a65a-fbe19b76f5cd", + "name": "Fenceline Beer Lab", + "brewery_type": "brewpub", + "address_1": "107 S Main Ave", + "address_2": null, + "address_3": null, + "city": "Huxley", + "state_province": "Iowa", + "postal_code": "50124-9311", + "country": "United States", + "longitude": -93.606476, + "latitude": 41.892071, + "phone": "5154106814", + "website_url": "https://www.fencelinebeerlab.com", + "state": "Iowa", + "street": "107 S Main Ave" + }, + { + "id": "187aa8b1-c795-42b5-aedb-c8947f5a7442", + "name": "Fenders Brewing Company", + "brewery_type": "micro", + "address_1": "212 W Van Dorn St", + "address_2": null, + "address_3": null, + "city": "Polk City", + "state_province": "Iowa", + "postal_code": "50226-2297", + "country": "United States", + "longitude": -93.71392, + "latitude": 41.77079882, + "phone": null, + "website_url": "http://fendersbrewing.com", + "state": "Iowa", + "street": "212 W Van Dorn St" + }, + { + "id": "2a824990-9f77-4b8a-ae7b-76aba05c5504", + "name": "Fenton Winery & Brewery", + "brewery_type": "brewpub", + "address_1": "1370 N Long Lake Rd", + "address_2": null, + "address_3": null, + "city": "Fenton", + "state_province": "Michigan", + "postal_code": "48430-8867", + "country": "United States", + "longitude": -83.70470876, + "latitude": 42.85155557, + "phone": "8103734194", + "website_url": "http://www.fentonwinery.com", + "state": "Michigan", + "street": "1370 N Long Lake Rd" + }, + { + "id": "55d404c6-2552-4f29-9410-482a9c3370ed", + "name": "Feral Brewing", + "brewery_type": "micro", + "address_1": "152 Haddrill Road", + "address_2": null, + "address_3": null, + "city": "Baskerville", + "state_province": "WA", + "postal_code": "6056", + "country": "Australia", + "longitude": 116.036723, + "latitude": -31.79788, + "phone": "+61 8 9296 4657", + "website_url": null, + "state": "WA", + "street": "152 Haddrill Road" + }, + { + "id": "73b5f592-52ea-482c-b3c4-51ba05c20849", + "name": "Feral Brewing Company", + "brewery_type": "large", + "address_1": "152 Haddrill Road", + "address_2": null, + "address_3": null, + "city": "Baskerville", + "state_province": "WA", + "postal_code": "6056", + "country": "Australia", + "longitude": 116.036723, + "latitude": -31.79788, + "phone": "+61 8 9296 4657", + "website_url": null, + "state": "WA", + "street": "152 Haddrill Road" + }, + { + "id": "8c2b58e7-e1fc-495d-adda-5be4c18fb4e1", + "name": "Feral Public House", + "brewery_type": "brewpub", + "address_1": "1109 Washington St", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98660", + "country": "United States", + "longitude": -122.6723137, + "latitude": 45.63010593, + "phone": "3608365255", + "website_url": "http://www.heathenbrewing.com", + "state": "Washington", + "street": "1109 Washington St" + }, + { + "id": "7cb31a73-07b5-42ea-949e-18d43b99c153", + "name": "Ferguson Brewing Co", + "brewery_type": "brewpub", + "address_1": "418 S Florissant Rd", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63135-2716", + "country": "United States", + "longitude": -90.3023163, + "latitude": 38.7383895, + "phone": "3142547359", + "website_url": "http://www.fergusonbrewing.com", + "state": "Missouri", + "street": "418 S Florissant Rd" + }, + { + "id": "5d495cd7-11f9-4a81-95de-71b96deca5dd", + "name": "Fermaentra", + "brewery_type": "micro", + "address_1": "1715 E Evans Ave", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80210-4601", + "country": "United States", + "longitude": -104.9428631, + "latitude": 39.6784277, + "phone": "3039550736", + "website_url": "http://www.fermaentra.com", + "state": "Colorado", + "street": "1715 E Evans Ave" + }, + { + "id": "95cc8853-1ec3-4810-8e41-8f6d4031acbd", + "name": "Ferment.Drink.Repeat", + "brewery_type": "micro", + "address_1": "2636 San Bruno Ave", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94134-1507", + "country": "United States", + "longitude": -122.4039991, + "latitude": 37.72833678, + "phone": null, + "website_url": null, + "state": "California", + "street": "2636 San Bruno Ave" + }, + { + "id": "e8f67941-37fa-41bd-8c4b-ca598a144217", + "name": "Fermentery Form", + "brewery_type": "micro", + "address_1": "161 Cecil B Moore Ave", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19122-3234", + "country": "United States", + "longitude": -75.136886, + "latitude": 39.976092, + "phone": "2675183676", + "website_url": "http://www.fermenteryform.com", + "state": "Pennsylvania", + "street": "161 Cecil B Moore Ave" + }, + { + "id": "c049573d-94ac-4d4a-b092-099b4f464a18", + "name": "Fernson Brewing Company", + "brewery_type": "micro", + "address_1": "1400 E Robur Dr", + "address_2": null, + "address_3": null, + "city": "Sioux Falls", + "state_province": "South Dakota", + "postal_code": "57104-0582", + "country": "United States", + "longitude": -96.70852613, + "latitude": 43.60785297, + "phone": "6057893822", + "website_url": "http://fernson.com", + "state": "South Dakota", + "street": "1400 E Robur Dr" + }, + { + "id": "5d9015c7-f11d-4741-a3d4-edfe5ad625d1", + "name": "Fernson Downtown", + "brewery_type": "brewpub", + "address_1": "332 S Phillips Ave", + "address_2": null, + "address_3": null, + "city": "Sioux Falls", + "state_province": "South Dakota", + "postal_code": "57104-6319", + "country": "United States", + "longitude": -96.72658415, + "latitude": 43.54377963, + "phone": "6057892012", + "website_url": "http://fernson.com", + "state": "South Dakota", + "street": "332 S Phillips Ave" + }, + { + "id": "d143a579-cd07-4eb2-a825-f64b5957ac81", + "name": "Ferrari Beer Company", + "brewery_type": "micro", + "address_1": "160 Ashford Ave", + "address_2": null, + "address_3": null, + "city": "Dobbs Ferry", + "state_province": "New York", + "postal_code": "10522-1906", + "country": "United States", + "longitude": -73.86161615, + "latitude": 41.01452326, + "phone": "9146937340", + "website_url": "http://www.ferraribeer.com", + "state": "New York", + "street": "160 Ashford Ave" + }, + { + "id": "f3f48ba8-b407-4b1e-bc0d-369c97f3263b", + "name": "Ferus Artisan Ales", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Trussville", + "state_province": "Alabama", + "postal_code": "35173-1480", + "country": "United States", + "longitude": -86.6084342, + "latitude": 33.6196266, + "phone": "2053680240", + "website_url": null, + "state": "Alabama", + "street": null + }, + { + "id": "d57db05d-f227-458d-b3cd-10fc76c182f1", + "name": "Fetch Brewing Co", + "brewery_type": "micro", + "address_1": "100 W Colby St", + "address_2": null, + "address_3": null, + "city": "Whitehall", + "state_province": "Michigan", + "postal_code": "49461-1015", + "country": "United States", + "longitude": -86.3494848, + "latitude": 43.4097727, + "phone": "2312157168", + "website_url": "http://www.fetchbrewing.com", + "state": "Michigan", + "street": "100 W Colby St" + }, + { + "id": "e31797d6-3cb0-41e8-b0b8-1c00ac264fc7", + "name": "Fetching Lab Brewing Co.", + "brewery_type": "micro", + "address_1": "1578 County Road 423 Suite B", + "address_2": null, + "address_3": null, + "city": "Alvin", + "state_province": "Texas", + "postal_code": "77511", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2814147355", + "website_url": "http://www.fetchinglabbrewery@gmail.com", + "state": "Texas", + "street": "1578 County Road 423 Suite B" + }, + { + "id": "fe7b7c55-5132-4a41-bb73-47d930337b1b", + "name": "Fetish Brewing Co", + "brewery_type": "micro", + "address_1": "325 Ice Ave", + "address_2": null, + "address_3": null, + "city": "Lancaster", + "state_province": "Pennsylvania", + "postal_code": "17602-1930", + "country": "United States", + "longitude": -76.30114271, + "latitude": 40.052413, + "phone": null, + "website_url": "http://fetishbrewing.tumblr.com", + "state": "Pennsylvania", + "street": "325 Ice Ave" + }, + { + "id": "4ecfebcb-93eb-4bb3-a794-6e1e57ca3842", + "name": "Ffats Brewing Co", + "brewery_type": "closed", + "address_1": "36447 Main St", + "address_2": null, + "address_3": null, + "city": "Whitehall", + "state_province": "Wisconsin", + "postal_code": "54773-9108", + "country": "United States", + "longitude": -91.3167513, + "latitude": 44.3712155, + "phone": "7155383162", + "website_url": "http://www.ffatsbrewing.com", + "state": "Wisconsin", + "street": "36447 Main St" + }, + { + "id": "c9b5c1c8-4248-4e77-bc0a-b83eaca79d6d", + "name": "FH Beerworks", + "brewery_type": "micro", + "address_1": "521 S Tejon St", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80903-3928", + "country": "United States", + "longitude": -104.8237318, + "latitude": 38.8260086, + "phone": "7196406814", + "website_url": null, + "state": "Colorado", + "street": "521 S Tejon St" + }, + { + "id": "d919af32-ba3f-4594-844a-dadcdd0a1cf5", + "name": "FH Beerworks East", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80915", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7196406814", + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "9c92b8c8-750c-4ac9-b9fd-e5b708bb249d", + "name": "Fibonacci Brewing Company", + "brewery_type": "micro", + "address_1": "1445 Compton Rd", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45231-3559", + "country": "United States", + "longitude": -84.4805528, + "latitude": 39.218908, + "phone": "5138321422", + "website_url": "http://fibbrew.com", + "state": "Ohio", + "street": "1445 Compton Rd" + }, + { + "id": "6eacc4a0-3173-4e08-901b-6135ccf60690", + "name": "Fiction Beer Company", + "brewery_type": "micro", + "address_1": "7101 E Colfax Ave", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80220-1805", + "country": "United States", + "longitude": -104.8854207, + "latitude": 39.7402188, + "phone": "7204567163", + "website_url": "http://www.fictionbeer.com", + "state": "Colorado", + "street": "7101 E Colfax Ave" + }, + { + "id": "888304f6-73fc-44ee-99f4-bf7c04cd39b8", + "name": "Fiddlehead Brewing", + "brewery_type": "regional", + "address_1": "6305 Shelburne Rd", + "address_2": null, + "address_3": null, + "city": "Shelburne", + "state_province": "Vermont", + "postal_code": "05482-4437", + "country": "United States", + "longitude": -73.2326193, + "latitude": 44.3660621, + "phone": "8023992994", + "website_url": "http://www.fiddleheadbrewing.com", + "state": "Vermont", + "street": "6305 Shelburne Rd" + }, + { + "id": "8c42eb4a-367c-4fca-bffa-5b82aaf268c5", + "name": "Fiddlin' Fish Brewing Company", + "brewery_type": "micro", + "address_1": "772 N Trade St.", + "address_2": null, + "address_3": null, + "city": "Winston Salem", + "state_province": "North Carolina", + "postal_code": "27101", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3364079671", + "website_url": "http://www.fiddlinfish.com", + "state": "North Carolina", + "street": "772 N Trade St." + }, + { + "id": "1c37475d-7010-4392-9edf-c566bc7fc5c1", + "name": "Field Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Westfield", + "state_province": "Indiana", + "postal_code": "46074-9494", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3174300253", + "website_url": "http://www.fieldbrewing.com", + "state": "Indiana", + "street": null + }, + { + "id": "5871b814-9d72-47ba-9733-82f43d0b79d9", + "name": "Fields & Ivy Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Olathe", + "state_province": "Kansas", + "postal_code": "66061-7464", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9136710349", + "website_url": null, + "state": "Kansas", + "street": null + }, + { + "id": "71754762-f167-40a1-9b74-e368a1b88bce", + "name": "Fields Brewing Co.", + "brewery_type": "micro", + "address_1": "24 Thompson Street", + "address_2": null, + "address_3": null, + "city": "Abbotsford", + "state_province": "VIC", + "postal_code": "3067", + "country": "Australia", + "longitude": 145.0040044, + "latitude": -37.8096489, + "phone": "+61 3 9420 6800", + "website_url": "https://carltonbrewhouse.com.au/", + "state": "VIC", + "street": "24 Thompson Street" + }, + { + "id": "c40afcb2-b873-44c5-93e8-5d718be8830c", + "name": "Fieldwork Brewing Co", + "brewery_type": "regional", + "address_1": "1160 6th St", + "address_2": null, + "address_3": null, + "city": "Berkeley", + "state_province": "California", + "postal_code": "94710-1247", + "country": "United States", + "longitude": -122.3022147, + "latitude": 37.88157297, + "phone": "5108981203", + "website_url": "http://www.fieldworkbrewing.com", + "state": "California", + "street": "1160 6th St" + }, + { + "id": "c3a96041-0f74-4538-9daf-a8eb7594fd5f", + "name": "Fife Lake Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fife Lake", + "state_province": "Michigan", + "postal_code": "49633-9319", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2313926757", + "website_url": null, + "state": "Michigan", + "street": null + }, + { + "id": "1c918f90-f603-4fc1-bca8-4029b1acd90d", + "name": "Fife Street Brewing", + "brewery_type": "micro", + "address_1": "180 Summers St", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "West Virginia", + "postal_code": "25301-2132", + "country": "United States", + "longitude": -81.640094653733, + "latitude": 38.394956975814, + "phone": "3043463433", + "website_url": "http://www.fifestreetbrewing.com", + "state": "West Virginia", + "street": "180 Summers St" + }, + { + "id": "687f52df-b64c-464a-85c8-fdbcf02fa2ad", + "name": "Fifth Frame Brewing Co.", + "brewery_type": "proprietor", + "address_1": "155 Saint Paul St", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "New York", + "postal_code": "14604-1144", + "country": "United States", + "longitude": -77.61019544, + "latitude": 43.15996034, + "phone": "7168128897", + "website_url": "http://www.fifthframe.co", + "state": "New York", + "street": "155 Saint Paul St" + }, + { + "id": "7c806934-8a5a-4a45-8ae3-fd8687ab005a", + "name": "Fifth Hammer Brewing Company", + "brewery_type": "micro", + "address_1": "10-28 46th Ave", + "address_2": null, + "address_3": null, + "city": "Long Island City", + "state_province": "New York", + "postal_code": "11101-5217", + "country": "United States", + "longitude": -73.9515404, + "latitude": 40.7464921, + "phone": "7186632084", + "website_url": "http://www.fifthhammerbrewing.com", + "state": "New York", + "street": "10-28 46th Ave" + }, + { + "id": "0be4ed90-78cb-44f9-bcb6-dfbc52e770f3", + "name": "Fifth Street Brewpub", + "brewery_type": "brewpub", + "address_1": "1600 E 5th St", + "address_2": null, + "address_3": null, + "city": "Dayton", + "state_province": "Ohio", + "postal_code": "45403-2304", + "country": "United States", + "longitude": -84.1881863, + "latitude": 39.7572259, + "phone": "9374430919", + "website_url": "http://Fifthstreetbrewpub.coop", + "state": "Ohio", + "street": "1600 E 5th St" + }, + { + "id": "0f57933a-def7-4c86-8cd3-505b834c0470", + "name": "Fifth Ward Brewing Company", + "brewery_type": "micro", + "address_1": "1009 S Main St", + "address_2": null, + "address_3": null, + "city": "Oshkosh", + "state_province": "Wisconsin", + "postal_code": "54902-6019", + "country": "United States", + "longitude": -88.5408574, + "latitude": 44.0206919, + "phone": "9204791876", + "website_url": "http://www.fifthwardbrewing.com", + "state": "Wisconsin", + "street": "1009 S Main St" + }, + { + "id": "5a19b678-db5b-4fe3-939f-73345b04b3a4", + "name": "Fifth Year Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "West Haven", + "state_province": "Connecticut", + "postal_code": "06516-7515", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Connecticut", + "street": null + }, + { + "id": "a84e6dc3-0e93-455b-8655-819b832b6bc3", + "name": "Fifty West Brewing Co", + "brewery_type": "micro", + "address_1": "7605 Wooster Pike", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45227-3925", + "country": "United States", + "longitude": -84.4134859, + "latitude": 39.11952, + "phone": "5138348789", + "website_url": null, + "state": "Ohio", + "street": "7605 Wooster Pike" + }, + { + "id": "e16b6c28-c37c-43fe-9234-705513701060", + "name": "Fifty West Brewing Co", + "brewery_type": "brewpub", + "address_1": "7668 Wooster Pike", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45227-3926", + "country": "United States", + "longitude": -84.4134859, + "latitude": 39.11952, + "phone": "5138348789", + "website_url": "http://www.fiftywestbrew.com", + "state": "Ohio", + "street": "7668 Wooster Pike" + }, + { + "id": "9e84203a-cf4f-486a-a162-8068bc3eaf54", + "name": "FiftyFifty Brewing Co", + "brewery_type": "brewpub", + "address_1": "11197 Brockway Rd Spc 1", + "address_2": null, + "address_3": null, + "city": "Truckee", + "state_province": "California", + "postal_code": "96161-3352", + "country": "United States", + "longitude": -120.1634145, + "latitude": 39.32213777, + "phone": "5305872337", + "website_url": "http://www.fiftyfiftybrewing.com", + "state": "California", + "street": "11197 Brockway Rd Spc 1" + }, + { + "id": "a10765e2-a7d7-4930-acb6-3bf77bb7b77f", + "name": "FiftyFifty Brewing Production Facility", + "brewery_type": "micro", + "address_1": "10434 River Park Pl", + "address_2": null, + "address_3": null, + "city": "Truckee", + "state_province": "California", + "postal_code": "96161-5905", + "country": "United States", + "longitude": -120.1931724, + "latitude": 39.32253237, + "phone": "5305872337", + "website_url": null, + "state": "California", + "street": "10434 River Park Pl" + }, + { + "id": "1198ad91-b35e-470b-a7e2-bcb93934e6f2", + "name": "FigLeaf Brewing Company", + "brewery_type": "micro", + "address_1": "3387 Cincinnati Dayton Rd", + "address_2": null, + "address_3": null, + "city": "Middletown", + "state_province": "Ohio", + "postal_code": "45044-8905", + "country": "United States", + "longitude": -84.34678975, + "latitude": 39.46688114, + "phone": "9373612573", + "website_url": "http://www.figleafbrewing.com", + "state": "Ohio", + "street": "3387 Cincinnati Dayton Rd" + }, + { + "id": "860d5477-e4ed-4c74-afc9-66e02056855f", + "name": "Figueroa Mountain Brewing", + "brewery_type": "regional", + "address_1": "45 Industrial Way", + "address_2": null, + "address_3": null, + "city": "Buellton", + "state_province": "California", + "postal_code": "93427-9565", + "country": "United States", + "longitude": -120.2022226, + "latitude": 34.61068975, + "phone": "8056942252", + "website_url": "http://www.figmtnbrew.com", + "state": "California", + "street": "45 Industrial Way" + }, + { + "id": "ba47384b-fd1f-4dd5-b51f-75f28a2a7f70", + "name": "Figueroa Mountain Brewing - Arroyo Grande", + "brewery_type": "brewpub", + "address_1": "1462 E Grand Ave", + "address_2": null, + "address_3": null, + "city": "Arroyo Grande", + "state_province": "California", + "postal_code": "93420-2448", + "country": "United States", + "longitude": -120.6059582, + "latitude": 35.12102175, + "phone": "8058869275", + "website_url": "http://www.figmtnbrew.com", + "state": "California", + "street": "1462 E Grand Ave" + }, + { + "id": "bfe8fe2c-12d4-4620-9e13-d2ca346078fc", + "name": "Figueroa Mountain Brewing - Santa Barbara", + "brewery_type": "micro", + "address_1": "137 Anacapa St Ste F", + "address_2": null, + "address_3": null, + "city": "Santa Barbara", + "state_province": "California", + "postal_code": "93101-1848", + "country": "United States", + "longitude": -119.6908077, + "latitude": 34.414758, + "phone": "8058869275", + "website_url": "http://www.figmtnbrew.com", + "state": "California", + "street": "137 Anacapa St Ste F" + }, + { + "id": "8a0c381f-ea5b-4474-969d-9abfed057d65", + "name": "Figueroa Mountain Brewing - Westlake Village", + "brewery_type": "micro", + "address_1": "30770 Russell Ranch Rd Ste E& # F", + "address_2": null, + "address_3": null, + "city": "Westlake Village", + "state_province": "California", + "postal_code": "91362-6314", + "country": "United States", + "longitude": -118.7954292, + "latitude": 34.14758662, + "phone": "8058869275", + "website_url": "http://www.figmtnbrew.com", + "state": "California", + "street": "30770 Russell Ranch Rd Ste E& # F" + }, + { + "id": "607ac560-d432-4e42-9aca-b9244542a861", + "name": "Figure Eight Brewing Co", + "brewery_type": "brewpub", + "address_1": "150 Washington St", + "address_2": null, + "address_3": null, + "city": "Valparaiso", + "state_province": "Indiana", + "postal_code": "46383-5507", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2194772000", + "website_url": "http://www.figureeightbrewing.com", + "state": "Indiana", + "street": "150 Washington St" + }, + { + "id": "379eceb5-bc20-4627-ad9c-d3cb922048b8", + "name": "Figurehead Brewing Company", + "brewery_type": "micro", + "address_1": "4001 21st Ave W Unit B", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98199-1201", + "country": "United States", + "longitude": -122.3835563, + "latitude": 47.65688785, + "phone": "2064927981", + "website_url": "http://www.figureheadbrewingcompany.com", + "state": "Washington", + "street": "4001 21st Ave W Unit B" + }, + { + "id": "5913b262-fbb5-4279-b50f-24843d149b94", + "name": "Fillmore 13 Brewery", + "brewery_type": "brewpub", + "address_1": "7 N Saginaw St", + "address_2": null, + "address_3": null, + "city": "Pontiac", + "state_province": "Michigan", + "postal_code": "48342-2182", + "country": "United States", + "longitude": -83.292346, + "latitude": 42.6369922, + "phone": "2489773972", + "website_url": "http://www.fillmore13brewery.com", + "state": "Michigan", + "street": "7 N Saginaw St" + }, + { + "id": "c776ab29-500d-4679-b417-f58d712c5ab0", + "name": "Final Draft Brewing Company", + "brewery_type": "brewpub", + "address_1": "1600 California St", + "address_2": null, + "address_3": null, + "city": "Redding", + "state_province": "California", + "postal_code": "96001-1001", + "country": "United States", + "longitude": -122.3913371, + "latitude": 40.5820505, + "phone": "3105693868", + "website_url": "http://www.finaldraftbrewingcompany.com", + "state": "California", + "street": "1600 California St" + }, + { + "id": "10ea014e-22e8-4c4f-b988-9a46e656c1d7", + "name": "Final Gravity Brewing Co", + "brewery_type": "brewpub", + "address_1": "103 N Phelps St", + "address_2": null, + "address_3": null, + "city": "Decatur", + "state_province": "Michigan", + "postal_code": "49045-1008", + "country": "United States", + "longitude": -85.97454749, + "latitude": 42.10876694, + "phone": "2694368052", + "website_url": "http://www.finalgravitybrew.com", + "state": "Michigan", + "street": "103 N Phelps St" + }, + { + "id": "b58fc6dc-a1f6-4106-bb65-45ff5eefc03d", + "name": "Final Gravity Brewing Co.", + "brewery_type": "micro", + "address_1": "6118 Lakeside Ave", + "address_2": null, + "address_3": null, + "city": "Henrico", + "state_province": "Virginia", + "postal_code": "23228", + "country": "United States", + "longitude": -77.46933476, + "latitude": 37.61145549, + "phone": "8042644808", + "website_url": null, + "state": "Virginia", + "street": "6118 Lakeside Ave" + }, + { + "id": "7bb60663-b700-4b29-80fd-f196f5c33c9d", + "name": "Final Gravity Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Decatur", + "state_province": "Michigan", + "postal_code": "49045-1118", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.finalgravitybrew.com", + "state": "Michigan", + "street": null + }, + { + "id": "493075c7-501d-4e01-ad6d-75308f0db95f", + "name": "Final Gravity Brewing Company", + "brewery_type": "micro", + "address_1": "246 N Burdick St", + "address_2": null, + "address_3": null, + "city": "Kalamazoo", + "state_province": "Michigan", + "postal_code": "49007-3828", + "country": "United States", + "longitude": -85.58315888, + "latitude": 42.29324471, + "phone": null, + "website_url": "http://www.finalgravitybrew.com", + "state": "Michigan", + "street": "246 N Burdick St" + }, + { + "id": "baf0d387-d06c-492b-b435-46b0619b8149", + "name": "Finback Brewery", + "brewery_type": "micro", + "address_1": "78-01 77th Ave", + "address_2": null, + "address_3": null, + "city": "Queens", + "state_province": "New York", + "postal_code": "11385-7518", + "country": "United States", + "longitude": -73.8732597, + "latitude": 40.7067227, + "phone": "7186288600", + "website_url": "http://www.finbackbrewery.com", + "state": "New York", + "street": "78-01 77th Ave" + }, + { + "id": "d9ee2acf-01b7-48d2-ae25-db12c2143eb3", + "name": "Finch Beer Company", + "brewery_type": "micro", + "address_1": "1800 W Walnut St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60612-2526", + "country": "United States", + "longitude": -87.6721651, + "latitude": 41.8861899, + "phone": "3129294773", + "website_url": "http://www.finchbeer.com", + "state": "Illinois", + "street": "1800 W Walnut St" + }, + { + "id": "9f1fdcb0-c5f9-46c4-b1c3-18dee1027afd", + "name": "Findlay Brewing Co.", + "brewery_type": "micro", + "address_1": "213 E. Crawford St.", + "address_2": null, + "address_3": null, + "city": "Findlay", + "state_province": "Ohio", + "postal_code": "45840", + "country": "United States", + "longitude": -83.64817394, + "latitude": 41.03767553, + "phone": "4197227395", + "website_url": "http://www.findlaybrewingcompany.com", + "state": "Ohio", + "street": "213 E. Crawford St." + }, + { + "id": "df2f28f2-e202-436f-a028-aedfe2837ce3", + "name": "Fine Creek Brewing Company", + "brewery_type": "brewpub", + "address_1": "2425 Robert E Lee Rd", + "address_2": null, + "address_3": null, + "city": "Powhatan", + "state_province": "Virginia", + "postal_code": "23139-4411", + "country": "United States", + "longitude": -77.81761305, + "latitude": 37.59794, + "phone": null, + "website_url": "http://www.finecreekbrewing.com", + "state": "Virginia", + "street": "2425 Robert E Lee Rd" + }, + { + "id": "ca819de8-2d89-4ce2-8079-88b43bbf8330", + "name": "Finger Lakes Beer Co", + "brewery_type": "micro", + "address_1": "8462 State Route 54", + "address_2": null, + "address_3": null, + "city": "Hammondsport", + "state_province": "New York", + "postal_code": "14840-9795", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6075693311", + "website_url": null, + "state": "New York", + "street": "8462 State Route 54" + }, + { + "id": "b7f0e370-efcc-4894-b0af-35e90917724f", + "name": "Finkel & Garf Brewing Co.", + "brewery_type": "micro", + "address_1": "5455 Spine Rd Ste A", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301-3364", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.finkelandgarf.com", + "state": "Colorado", + "street": "5455 Spine Rd Ste A" + }, + { + "id": "0e99d368-388d-4b1c-a7f9-1a99f5237484", + "name": "Finlay’s Kalbarri", + "brewery_type": "micro", + "address_1": "13 Magee Crescent", + "address_2": null, + "address_3": null, + "city": "Kalbarri", + "state_province": "WA", + "postal_code": "6536", + "country": "Australia", + "longitude": 114.165445, + "latitude": -27.713917, + "phone": "+61 8 9937 1253", + "website_url": "http://www.finlayskalbarri.com.au/", + "state": "WA", + "street": "13 Magee Crescent" + }, + { + "id": "72afec57-f322-4208-b6e8-9fc4cf0975c9", + "name": "FINNEGANS Brew Co", + "brewery_type": "micro", + "address_1": "817 5th Ave So", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55404", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2072394937", + "website_url": "http://www.finnegans.com", + "state": "Minnesota", + "street": "817 5th Ave So" + }, + { + "id": "aef7a136-f2e1-4aca-ad98-ab593e82f91a", + "name": "Fins Big Oyster Brewery", + "brewery_type": "brewpub", + "address_1": "19269 Coastal Hwy", + "address_2": null, + "address_3": null, + "city": "Rehoboth Beach", + "state_province": "Delaware", + "postal_code": "19971-6113", + "country": "United States", + "longitude": -75.090191, + "latitude": 38.7074994, + "phone": "3022902410", + "website_url": "http://bigoysterbrewery.com", + "state": "Delaware", + "street": "19269 Coastal Hwy" + }, + { + "id": "f4558573-9e85-42ff-abcd-8d35a7d3c852", + "name": "Fire Island Beer Co", + "brewery_type": "micro", + "address_1": "25 Drexel Dr", + "address_2": null, + "address_3": null, + "city": "Bay Shore", + "state_province": "New York", + "postal_code": "11706-2234", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.fireislandbeer.com", + "state": "New York", + "street": "25 Drexel Dr" + }, + { + "id": "483e1e69-0687-445c-99c2-b1ec732eb580", + "name": "Fire Maker Brewing Company", + "brewery_type": "micro", + "address_1": "975 Chattahoochee Ave NW", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30318", + "country": "United States", + "longitude": -84.41943924, + "latitude": 33.80024037, + "phone": "6787058777", + "website_url": "https://www.firemakerbeer.com", + "state": "Georgia", + "street": "975 Chattahoochee Ave NW" + }, + { + "id": "57716b50-4321-4023-bfe5-b0243722af72", + "name": "Fire On the Mountain Brewing Co", + "brewery_type": "brewpub", + "address_1": "3443 NE 57th Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97213-3351", + "country": "United States", + "longitude": -122.6049402, + "latitude": 45.5480432, + "phone": "5038948973", + "website_url": "http://www.portlandwings.com", + "state": "Oregon", + "street": "3443 NE 57th Ave" + }, + { + "id": "5591fbd3-5000-439c-b685-5a785829aa08", + "name": "Firebird Brewing Company Ltd", + "brewery_type": "taproom", + "address_1": "Lynwick Street", + "address_2": null, + "address_3": null, + "city": "Horsham", + "state_province": "West Sussex", + "postal_code": "RH12 3UW", + "country": "England", + "longitude": -0.45414, + "latitude": 51.09654, + "phone": "1403823180", + "website_url": "https://firebirdbrewing.com/", + "state": "West Sussex", + "street": "Lynwick Street" + }, + { + "id": "dca618d0-fe3f-4829-9f56-36f9ba2dca26", + "name": "Fired Up Brewing", + "brewery_type": "brewpub", + "address_1": "1235 S Main St", + "address_2": null, + "address_3": null, + "city": "Colville", + "state_province": "Washington", + "postal_code": "99114-9504", + "country": "United States", + "longitude": -117.9057561, + "latitude": 48.540198, + "phone": "5096843328", + "website_url": "http://www.facebook.com/firedupbrewing", + "state": "Washington", + "street": "1235 S Main St" + }, + { + "id": "e13762c8-53a1-48a0-a915-c096492b06d6", + "name": "Firefly Hollow Brewing Co.", + "brewery_type": "closed", + "address_1": "139 Center St Ste 5005", + "address_2": null, + "address_3": null, + "city": "Bristol", + "state_province": "Connecticut", + "postal_code": "06010-5086", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8608458977", + "website_url": "http://www.fireflyhollowbrewing.com", + "state": "Connecticut", + "street": "139 Center St Ste 5005" + }, + { + "id": "4dfcdb68-1be1-4581-9283-a01ca9bc9e6d", + "name": "Firehouse Brewing Co", + "brewery_type": "brewpub", + "address_1": "610 Main St", + "address_2": null, + "address_3": null, + "city": "Rapid City", + "state_province": "South Dakota", + "postal_code": "57701-2736", + "country": "United States", + "longitude": -103.2275562, + "latitude": 44.08144085, + "phone": "6053481915", + "website_url": "http://www.firehousebrewing.com", + "state": "South Dakota", + "street": "610 Main St" + }, + { + "id": "013ce0d8-b95d-45d9-9733-aaa7eb3b4586", + "name": "Firehouse Grill & Brewery", + "brewery_type": "brewpub", + "address_1": "111 S Murphy Ave", + "address_2": null, + "address_3": null, + "city": "Sunnyvale", + "state_province": "California", + "postal_code": "94086-6113", + "country": "United States", + "longitude": -122.03007, + "latitude": 37.37738, + "phone": "4087739500", + "website_url": "http://www.firehousegrill.com", + "state": "California", + "street": "111 S Murphy Ave" + }, + { + "id": "daf5b513-a3e3-4103-b819-24588bf9331a", + "name": "Fireman's Brew", + "brewery_type": "contract", + "address_1": "6433 Topanga Canyon Blvd # 189", + "address_2": null, + "address_3": null, + "city": "Woodland Hills", + "state_province": "California", + "postal_code": "91303-2621", + "country": "United States", + "longitude": -118.6057591, + "latitude": 34.1667962, + "phone": "8188832739", + "website_url": "http://www.firemansbrew.com", + "state": "California", + "street": "6433 Topanga Canyon Blvd # 189" + }, + { + "id": "b3fe866f-48ce-49d1-bae3-abfa6326047f", + "name": "Fireside Brewing Co.", + "brewery_type": "micro", + "address_1": "430 W 17th St Ste 27", + "address_2": null, + "address_3": null, + "city": "Holland", + "state_province": "Michigan", + "postal_code": "49423-3403", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6162943777", + "website_url": null, + "state": "Michigan", + "street": "430 W 17th St Ste 27" + }, + { + "id": "43216af5-739e-43aa-8640-69c3631e4ce7", + "name": "Firestone Walker Barrelworks", + "brewery_type": "micro", + "address_1": "620 McMurray Rd", + "address_2": null, + "address_3": null, + "city": "Buellton", + "state_province": "California", + "postal_code": "93427-2511", + "country": "United States", + "longitude": -120.1883447, + "latitude": 34.6248627, + "phone": "8056861557", + "website_url": "http://www.firestonewalker.com", + "state": "California", + "street": "620 McMurray Rd" + }, + { + "id": "cec5d778-9c24-46f7-841e-174976076100", + "name": "Firestone Walker Brewing Co", + "brewery_type": "brewpub", + "address_1": "3205 Washington Blvd", + "address_2": null, + "address_3": null, + "city": "Marina del Rey", + "state_province": "California", + "postal_code": "90292-5552", + "country": "United States", + "longitude": -118.4485365, + "latitude": 33.98999791, + "phone": "3104398264", + "website_url": null, + "state": "California", + "street": "3205 Washington Blvd" + }, + { + "id": "209ae692-2dc3-45bd-baf5-6a2ef68c1a6e", + "name": "Firestone Walker Brewing Co", + "brewery_type": "regional", + "address_1": "1400 Ramada Dr", + "address_2": null, + "address_3": null, + "city": "Paso Robles", + "state_province": "California", + "postal_code": "93446-3993", + "country": "United States", + "longitude": -120.6943059, + "latitude": 35.59606059, + "phone": "8052255911", + "website_url": "http://www.firestonebeer.com", + "state": "California", + "street": "1400 Ramada Dr" + }, + { + "id": "d5c0b846-8577-4582-b06a-5647931a36eb", + "name": "Firetail Brewing Co.", + "brewery_type": "micro", + "address_1": "22 Galbraith Loop", + "address_2": "1", + "address_3": null, + "city": "Falcon", + "state_province": "WA", + "postal_code": "6210", + "country": "Australia", + "longitude": 115.6825431, + "latitude": -32.5662958, + "phone": "+61 473 623 994", + "website_url": "http://wedgetailbrewing.com.au/", + "state": "WA", + "street": "22 Galbraith Loop" + }, + { + "id": "711f4130-d7c6-4856-8bcf-92ea1865b3ae", + "name": "Firetrucker Brewery", + "brewery_type": "micro", + "address_1": "716 SW 3rd St", + "address_2": null, + "address_3": null, + "city": "Ankeny", + "state_province": "Iowa", + "postal_code": "50023-2615", + "country": "United States", + "longitude": -93.60984369, + "latitude": 41.7299268, + "phone": "5159641284", + "website_url": "http://www.firetrucker.com", + "state": "Iowa", + "street": "716 SW 3rd St" + }, + { + "id": "4909cd1a-bb81-4e07-86e9-2737ab02fd6a", + "name": "Firewater Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Kennesaw", + "state_province": "Georgia", + "postal_code": "30144", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Georgia", + "street": null + }, + { + "id": "e5cb89b8-c9c7-4947-a825-9371002a12a0", + "name": "First Flight Island Restaurant & Brewery", + "brewery_type": "brewpub", + "address_1": "301 Whitehead St", + "address_2": null, + "address_3": null, + "city": "Key West", + "state_province": "Florida", + "postal_code": "33040-6542", + "country": "United States", + "longitude": -81.805413, + "latitude": 24.557321, + "phone": null, + "website_url": "http://firstflightkw.com", + "state": "Florida", + "street": "301 Whitehead St" + }, + { + "id": "5654c809-0b29-49f0-855f-7ea45be8d8c0", + "name": "First Magnitude Brewing Company", + "brewery_type": "micro", + "address_1": "1220 SE Veitch St", + "address_2": null, + "address_3": null, + "city": "Gainesville", + "state_province": "Florida", + "postal_code": "32601-7917", + "country": "United States", + "longitude": -82.32429908, + "latitude": 29.63983022, + "phone": "3527274677", + "website_url": "http://www.fmbrewing.com", + "state": "Florida", + "street": "1220 SE Veitch St" + }, + { + "id": "13d751c0-5894-4f61-a372-d07f9ff9a71e", + "name": "First Mile Brewing Company", + "brewery_type": "micro", + "address_1": "28 Market St Ste 103", + "address_2": null, + "address_3": null, + "city": "Fort Kent", + "state_province": "Maine", + "postal_code": "04743", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Maine", + "street": "28 Market St Ste 103" + }, + { + "id": "5a4a3717-4640-405b-90d7-47a69be1c8e4", + "name": "First State Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Middletown", + "state_province": "Delaware", + "postal_code": "19709-1482", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3022859535", + "website_url": "http://www.firststatebrewing.com", + "state": "Delaware", + "street": null + }, + { + "id": "78965a98-743a-4f7c-8338-ee6c548e73db", + "name": "First Street Brewing", + "brewery_type": "micro", + "address_1": "119 N St Joseph Ave", + "address_2": null, + "address_3": null, + "city": "Hastings", + "state_province": "Nebraska", + "postal_code": "68901-7553", + "country": "United States", + "longitude": -98.3877198, + "latitude": 40.5844989, + "phone": "4028342400", + "website_url": "http://www.firststreetbrewing.com", + "state": "Nebraska", + "street": "119 N St Joseph Ave" + }, + { + "id": "2d60ec76-646d-4512-9e57-4d04406cd1e2", + "name": "Fish Brewing Co", + "brewery_type": "micro", + "address_1": "514 Jefferson St SE", + "address_2": null, + "address_3": null, + "city": "Olympia", + "state_province": "Washington", + "postal_code": "98501-1467", + "country": "United States", + "longitude": -122.8954179, + "latitude": 47.03437129, + "phone": "3609436480", + "website_url": "http://www.fishbrewing.com", + "state": "Washington", + "street": "514 Jefferson St SE" + }, + { + "id": "10364982-a5d1-4595-bf95-25068d2386e3", + "name": "Fish Brewing Pub & Eatery", + "brewery_type": "closed", + "address_1": "5108 Grand Loop", + "address_2": null, + "address_3": null, + "city": "Ruston", + "state_province": "Washington", + "postal_code": "98407-3180", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Washington", + "street": "5108 Grand Loop" + }, + { + "id": "9fbea2d8-57b9-4b17-bb19-01a96485e0d3", + "name": "Fishale Taphouse and Grill", + "brewery_type": "brewpub", + "address_1": "7715 Front Beach Rd", + "address_2": null, + "address_3": null, + "city": "Panama City Beach", + "state_province": "Florida", + "postal_code": "32407-4813", + "country": "United States", + "longitude": -85.7855375, + "latitude": 30.1823237, + "phone": "8506401410", + "website_url": null, + "state": "Florida", + "street": "7715 Front Beach Rd" + }, + { + "id": "b014d168-6455-4325-9e1c-7b212daf49ef", + "name": "Fisher Brewing Company", + "brewery_type": "micro", + "address_1": "320 W 800 S", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84101-2610", + "country": "United States", + "longitude": -111.8817247, + "latitude": 40.75187347, + "phone": "8014872337", + "website_url": "http://www.fisherbeer.com", + "state": "Utah", + "street": "320 W 800 S" + }, + { + "id": "51922063-32fd-458f-aa48-482f612c7cca", + "name": "Fishtown Brewing Co", + "brewery_type": "brewpub", + "address_1": "1101 Frankford Ave", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19125-4153", + "country": "United States", + "longitude": -75.0159588, + "latitude": 40.0460129, + "phone": "2159901396", + "website_url": "http://fishtownbrewpub.com", + "state": "Pennsylvania", + "street": "1101 Frankford Ave" + }, + { + "id": "cf195575-212d-4245-93a1-0a65c3e310c6", + "name": "Fitgers Brewhouse", + "brewery_type": "brewpub", + "address_1": "600 E Superior St", + "address_2": null, + "address_3": null, + "city": "Duluth", + "state_province": "Minnesota", + "postal_code": "55802-2222", + "country": "United States", + "longitude": -92.09046481, + "latitude": 46.79280161, + "phone": "2187224825", + "website_url": null, + "state": "Minnesota", + "street": "600 E Superior St" + }, + { + "id": "74e468e5-ce8e-4b96-a806-382853e33d6f", + "name": "Five & 20 Spirits and Brewing", + "brewery_type": "brewpub", + "address_1": "8398 W Route 20", + "address_2": null, + "address_3": null, + "city": "Westfield", + "state_province": "New York", + "postal_code": "14787-9748", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7167939463", + "website_url": "http://www.fiveand20.com", + "state": "New York", + "street": "8398 W Route 20" + }, + { + "id": "33d72b24-32ab-4a4e-b95b-9e469f1412d7", + "name": "Five Barrel Brewing", + "brewery_type": "micro", + "address_1": "318 Keira Street", + "address_2": null, + "address_3": null, + "city": "Wollongong", + "state_province": "NSW", + "postal_code": "2500", + "country": "Australia", + "longitude": 150.892125, + "latitude": -34.431809, + "phone": "+61 2 4200 8881", + "website_url": "http://fivebarrels.com.au/", + "state": "NSW", + "street": "318 Keira Street" + }, + { + "id": "2e58d067-0e26-42d0-a3f1-818f6c5dd8c3", + "name": "Five Boroughs Brewing Co", + "brewery_type": "micro", + "address_1": "215 47th St", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11220-1009", + "country": "United States", + "longitude": -74.0144263, + "latitude": 40.6505216, + "phone": "7183558575", + "website_url": "http://www.fiveboroughs.com", + "state": "New York", + "street": "215 47th St" + }, + { + "id": "ad1ceef6-b564-422c-990a-8c98847adc0a", + "name": "Five Churches Brewing", + "brewery_type": "brewpub", + "address_1": "193 Arch St", + "address_2": null, + "address_3": null, + "city": "New Britain", + "state_province": "Connecticut", + "postal_code": "06051-2516", + "country": "United States", + "longitude": -72.782706, + "latitude": 41.662994, + "phone": "8602238080", + "website_url": "http://www.facebook.com/FiveChurchesBrewing", + "state": "Connecticut", + "street": "193 Arch St" + }, + { + "id": "ef8eb443-f817-469a-8323-f3673a56b16e", + "name": "Five Cities Brewing", + "brewery_type": "micro", + "address_1": "2255 Falcon Ave", + "address_2": null, + "address_3": null, + "city": "Bettendorf", + "state_province": "Iowa", + "postal_code": "52722", + "country": "United States", + "longitude": -90.50126378, + "latitude": 41.57430518, + "phone": "5632326105", + "website_url": "http://www.fivecitiesbrewing.com", + "state": "Iowa", + "street": "2255 Falcon Ave" + }, + { + "id": "b0b97e05-5db0-4825-b1c4-406e6b807bd0", + "name": "Five Dolar Ranch Brewing", + "brewery_type": "micro", + "address_1": "1570 Beet Rd", + "address_2": null, + "address_3": null, + "city": "Walla Walla", + "state_province": "Washington", + "postal_code": "99362", + "country": "United States", + "longitude": -118.4191129, + "latitude": 46.0036876, + "phone": "5095403989", + "website_url": "https://fivedollarranchbeer.com/", + "state": "Washington", + "street": "1570 Beet Rd" + }, + { + "id": "d267fb22-568a-4037-83d0-2c2daf10a815", + "name": "Five Dons Brewing Co", + "brewery_type": "micro", + "address_1": "1158 11th Ave", + "address_2": null, + "address_3": null, + "city": "Longview", + "state_province": "Washington", + "postal_code": "98632-3110", + "country": "United States", + "longitude": -122.9326287, + "latitude": 46.13418506, + "phone": "3604306440", + "website_url": "http://www.fivedonsbeer.com", + "state": "Washington", + "street": "1158 11th Ave" + }, + { + "id": "ede7c380-b556-4de8-b05b-8b81cc227915", + "name": "Five Suns Brewing", + "brewery_type": "micro", + "address_1": "701 Escobar St Ste C", + "address_2": null, + "address_3": null, + "city": "Martinez", + "state_province": "California", + "postal_code": "94553", + "country": "United States", + "longitude": -122.1370278, + "latitude": 38.01851399, + "phone": "9259576706", + "website_url": "http://www.fivesunsbrewing.com", + "state": "California", + "street": "701 Escobar St Ste C" + }, + { + "id": "16d59447-30f9-4999-a8db-6d5773eb2d1b", + "name": "Five Threads Brewing Company", + "brewery_type": "micro", + "address_1": "31133 Via Colinas Ste 109", + "address_2": null, + "address_3": null, + "city": "Westlake Village", + "state_province": "California", + "postal_code": "91362-4525", + "country": "United States", + "longitude": -118.801724, + "latitude": 34.1529112, + "phone": null, + "website_url": null, + "state": "California", + "street": "31133 Via Colinas Ste 109" + }, + { + "id": "d5090655-da65-4759-b130-60c5e256aa0e", + "name": "Five Window Beer Co", + "brewery_type": "micro", + "address_1": "9 W Locust St", + "address_2": null, + "address_3": null, + "city": "Lodi", + "state_province": "California", + "postal_code": "95240-2137", + "country": "United States", + "longitude": -121.29526, + "latitude": 38.136971, + "phone": "2097122336", + "website_url": "http://www.fivewindow.com", + "state": "California", + "street": "9 W Locust St" + }, + { + "id": "90ab9e5b-da24-4624-aabf-4c7ffcb52f91", + "name": "Five Wits Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Chattanooga", + "state_province": "Tennessee", + "postal_code": "37408", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4237742991", + "website_url": null, + "state": "Tennessee", + "street": null + }, + { + "id": "27bee265-ef8b-449e-9d06-411719d1ae29", + "name": "Fixation Brewing Co", + "brewery_type": "micro", + "address_1": "414 Smith Street", + "address_2": null, + "address_3": null, + "city": "Collingwood", + "state_province": "VIC", + "postal_code": "3066", + "country": "Australia", + "longitude": 144.9850124, + "latitude": -37.7963295, + "phone": null, + "website_url": "http://www.fixationbrewing.com.au/", + "state": "VIC", + "street": "414 Smith Street" + }, + { + "id": "0a17cef1-8631-4534-8b87-03bdbb33d479", + "name": "Flag City Brewing", + "brewery_type": "micro", + "address_1": "618 W 4th St", + "address_2": null, + "address_3": null, + "city": "Webb City", + "state_province": "Missouri", + "postal_code": "64870", + "country": "United States", + "longitude": -94.467058, + "latitude": 37.156896, + "phone": null, + "website_url": null, + "state": "Missouri", + "street": "618 W 4th St" + }, + { + "id": "dbbf580b-32d2-4f7b-bff4-e74669267a7e", + "name": "Flagship Brewery, LLC.", + "brewery_type": "micro", + "address_1": "40 Minthorne St", + "address_2": null, + "address_3": null, + "city": "Staten Island", + "state_province": "New York", + "postal_code": "10301-3241", + "country": "United States", + "longitude": -74.0756332, + "latitude": 40.6372257, + "phone": "7184485284", + "website_url": "http://www.flagshipbrewery.nyc", + "state": "New York", + "street": "40 Minthorne St" + }, + { + "id": "4b9222e3-f231-4d53-8890-c5c26c8c05fd", + "name": "Flagstaff Brewing Co", + "brewery_type": "brewpub", + "address_1": "16 E Route 66", + "address_2": null, + "address_3": null, + "city": "Flagstaff", + "state_province": "Arizona", + "postal_code": "86001-5792", + "country": "United States", + "longitude": -111.523296, + "latitude": 35.2109064, + "phone": "9287731442", + "website_url": "http://www.flagbrew.com", + "state": "Arizona", + "street": "16 E Route 66" + }, + { + "id": "90747147-2bde-401b-aec1-31fdb5f09f7d", + "name": "Flamin Galah Brewing Co", + "brewery_type": "micro", + "address_1": "5 Erina Road", + "address_2": "Unit 8", + "address_3": null, + "city": "Huskisson", + "state_province": "NSW", + "postal_code": "2540", + "country": "Australia", + "longitude": 150.6616712, + "latitude": -35.0311039, + "phone": "+61 2 4441 7213", + "website_url": "http://www.flamingalahbrewingco.com/", + "state": "NSW", + "street": "5 Erina Road" + }, + { + "id": "5cd2ba74-2f89-4e9f-9fa4-edff3aed2cf9", + "name": "Flapjack Brewery", + "brewery_type": "brewpub", + "address_1": "6833 Stanley Ave", + "address_2": null, + "address_3": null, + "city": "Berwyn", + "state_province": "Illinois", + "postal_code": "60402-5289", + "country": "United States", + "longitude": -87.79436281, + "latitude": 41.83342484, + "phone": null, + "website_url": "http://www.flapjackbrewery.com", + "state": "Illinois", + "street": "6833 Stanley Ave" + }, + { + "id": "25cc1e54-693a-45a3-827c-337684e1ced7", + "name": "Flat 12 Bierwerks", + "brewery_type": "micro", + "address_1": "414 Dorman St", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46202-3648", + "country": "United States", + "longitude": -86.13847, + "latitude": 39.77261486, + "phone": "3174265851", + "website_url": "http://www.flat12.me", + "state": "Indiana", + "street": "414 Dorman St" + }, + { + "id": "6037fc17-102b-4137-9197-446eb6fd511d", + "name": "Flat Branch Pub and Brewing", + "brewery_type": "brewpub", + "address_1": "115 S 5th St", + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "Missouri", + "postal_code": "65201-4230", + "country": "United States", + "longitude": -92.33196896, + "latitude": 38.95030013, + "phone": "5734990400", + "website_url": "http://www.flatbranch.com", + "state": "Missouri", + "street": "115 S 5th St" + }, + { + "id": "9a0b7dcc-f027-4812-8c83-ede412316a89", + "name": "Flat Earth Brewing Co", + "brewery_type": "micro", + "address_1": "688 Minnehaha Ave E", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55106-4462", + "country": "United States", + "longitude": -93.07042082, + "latitude": 44.96294245, + "phone": "6516981945", + "website_url": "http://www.flatearthbrewing.com", + "state": "Minnesota", + "street": "688 Minnehaha Ave E" + }, + { + "id": "d4094e29-6940-41de-af54-c63b9e6f69cc", + "name": "Flat Fish Brewing", + "brewery_type": "micro", + "address_1": "126 N Wood Rd Ste 104", + "address_2": null, + "address_3": null, + "city": "Camarillo", + "state_province": "California", + "postal_code": "93010-8334", + "country": "United States", + "longitude": -119.0954656, + "latitude": 34.21805471, + "phone": "8054849600", + "website_url": "http://www.flatfishbrewing.com", + "state": "California", + "street": "126 N Wood Rd Ste 104" + }, + { + "id": "90ed6777-3f0f-43d0-80e4-0e9c6a6b62b4", + "name": "Flat Tail Brewing Co", + "brewery_type": "brewpub", + "address_1": "202 SW 1st St", + "address_2": null, + "address_3": null, + "city": "Corvallis", + "state_province": "Oregon", + "postal_code": "97333-4727", + "country": "United States", + "longitude": -123.2598775, + "latitude": 44.56196237, + "phone": "5417582229", + "website_url": "http://www.flattailcorvallis.com", + "state": "Oregon", + "street": "202 SW 1st St" + }, + { + "id": "b5d72612-a3e3-414b-9242-170a6bccdbea", + "name": "Flat Top Mountain Brewery", + "brewery_type": "micro", + "address_1": "567 Main St E", + "address_2": null, + "address_3": null, + "city": "Banner Elk", + "state_province": "North Carolina", + "postal_code": "28604-8974", + "country": "United States", + "longitude": -81.86657602, + "latitude": 36.16510256, + "phone": "8288988677", + "website_url": "http://www.flattopbrew.com", + "state": "North Carolina", + "street": "567 Main St E" + }, + { + "id": "b44fb73c-740e-4d66-bf6e-650b1c76d0c2", + "name": "Flathead Lake Brewing Co", + "brewery_type": "micro", + "address_1": "116 Holt Dr Ste B", + "address_2": null, + "address_3": null, + "city": "Bigfork", + "state_province": "Montana", + "postal_code": "59911-3707", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4068370085", + "website_url": "http://www.flatheadlakebrewing.com", + "state": "Montana", + "street": "116 Holt Dr Ste B" + }, + { + "id": "a1cc7311-aba0-4376-96e2-c46a8b82103e", + "name": "Flathead Lake Brewing Co - Production Only", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Bigfork", + "state_province": "Montana", + "postal_code": "59911-8484", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4068370085", + "website_url": "http://www.flatheadlakebrewing.com", + "state": "Montana", + "street": null + }, + { + "id": "0999dab4-ac44-4694-8acf-e9e50d95cb92", + "name": "Flatland Brewery", + "brewery_type": "closed", + "address_1": "3140 Bluestem Dr, Ste 105", + "address_2": null, + "address_3": null, + "city": "West Fargo", + "state_province": "North Dakota", + "postal_code": "58078-8009", + "country": "United States", + "longitude": -96.88473642, + "latitude": 46.8342508, + "phone": "7013531178", + "website_url": "http://www.flatlandbrewery.com", + "state": "North Dakota", + "street": "3140 Bluestem Dr, Ste 105" + }, + { + "id": "408a9e62-ae9a-4082-8c05-35c250f5239a", + "name": "Flatland Brewing Company", + "brewery_type": "micro", + "address_1": "9183 Survey Rd Ste 104", + "address_2": null, + "address_3": null, + "city": "Elk Grove", + "state_province": "California", + "postal_code": "95624-9712", + "country": "United States", + "longitude": -121.3567686, + "latitude": 38.37684711, + "phone": "9167533116", + "website_url": "http://www.flatlandbrewingco.com", + "state": "California", + "street": "9183 Survey Rd Ste 104" + }, + { + "id": "adf91e10-69dd-4901-b617-d915d4d24bbe", + "name": "Flatrock Brewery", + "brewery_type": "micro", + "address_1": "621 N Perry St", + "address_2": null, + "address_3": null, + "city": "Napoleon", + "state_province": "Ohio", + "postal_code": "43545-1701", + "country": "United States", + "longitude": -84.1245567, + "latitude": 41.39090717, + "phone": "4199661440", + "website_url": "http://www.flatrockbrewery.com", + "state": "Ohio", + "street": "621 N Perry St" + }, + { + "id": "9521ea9c-c1db-445a-8d7e-5d2ea433608a", + "name": "Flesk Brewing", + "brewery_type": "micro", + "address_1": "200 Applebee St Ste E", + "address_2": null, + "address_3": null, + "city": "Barrington", + "state_province": "Illinois", + "postal_code": "60010-3063", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2246557291", + "website_url": "http://www.fleskbrewing.com", + "state": "Illinois", + "street": "200 Applebee St Ste E" + }, + { + "id": "df8780b1-b209-4209-a33f-ffbcaeab4cca", + "name": "Fleur De Lis Brew Works", + "brewery_type": "micro", + "address_1": "3630 State Route 414", + "address_2": null, + "address_3": null, + "city": "Seneca Falls", + "state_province": "New York", + "postal_code": "13148-9202", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3156513260", + "website_url": "http://www.fleurdelisbrewworks.com", + "state": "New York", + "street": "3630 State Route 414" + }, + { + "id": "ef4a200b-134c-422f-94c1-8564116b05b9", + "name": "Flight Deck Brewing", + "brewery_type": "micro", + "address_1": "11 Atlantic Dr", + "address_2": null, + "address_3": null, + "city": "Brunswick", + "state_province": "Maine", + "postal_code": "04011-4400", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2075045133", + "website_url": "http://www.flightdeckbrewing.com", + "state": "Maine", + "street": "11 Atlantic Dr" + }, + { + "id": "741bf3b8-3278-497f-a3f7-2efd0cc112f8", + "name": "Flix Brewhouse", + "brewery_type": "micro", + "address_1": "2000 S Interstate 35 Ste B1", + "address_2": null, + "address_3": null, + "city": "Round Rock", + "state_province": "Texas", + "postal_code": "78681-6900", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5122442739", + "website_url": "http://www.flixbrewhouse.com", + "state": "Texas", + "street": "2000 S Interstate 35 Ste B1" + }, + { + "id": "fe89aa40-9b5d-4cb2-a8e9-54de1ec11c15", + "name": "Flix Brewhouse", + "brewery_type": "brewpub", + "address_1": "3236 La Orilla Rd NW", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87120-2630", + "country": "United States", + "longitude": -106.6815896, + "latitude": 35.15878955, + "phone": "5054458500", + "website_url": null, + "state": "New Mexico", + "street": "3236 La Orilla Rd NW" + }, + { + "id": "134bb873-9fc1-4065-b516-2598450f49e3", + "name": "Flix Brewhouse", + "brewery_type": "brewpub", + "address_1": "3800 Merle Hay Rd", + "address_2": null, + "address_3": null, + "city": "Des Moines", + "state_province": "Iowa", + "postal_code": "50310-1305", + "country": "United States", + "longitude": -93.6997831, + "latitude": 41.6306427, + "phone": "5122442739", + "website_url": null, + "state": "Iowa", + "street": "3800 Merle Hay Rd" + }, + { + "id": "d339cf65-cab2-4797-9e89-0c2e8bf3e3fb", + "name": "Flix Brewhouse", + "brewery_type": "brewpub", + "address_1": "2206 E 116th St", + "address_2": null, + "address_3": null, + "city": "Carmel", + "state_province": "Indiana", + "postal_code": "46032-3215", + "country": "United States", + "longitude": -86.0897644, + "latitude": 39.9567195, + "phone": "5122442739", + "website_url": null, + "state": "Indiana", + "street": "2206 E 116th St" + }, + { + "id": "4e40d1be-52b1-4e69-b6cb-cb6391b08d71", + "name": "Flix Brewhouse - Frisco/Little Elm", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Frisco", + "state_province": "Texas", + "postal_code": "75033", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5122442739", + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "089aef1f-a14e-43bf-84c4-9df503dc637d", + "name": "Flix Brewhouse - Madison", + "brewery_type": "brewpub", + "address_1": "85 East Towne Mall", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Wisconsin", + "postal_code": "53704", + "country": "United States", + "longitude": -89.3040968, + "latitude": 43.1283021, + "phone": "5122442739", + "website_url": "https://www.flixbrewhouse.com", + "state": "Wisconsin", + "street": "85 East Towne Mall" + }, + { + "id": "73c24a7a-a78f-4958-93b0-ff937ab9bf37", + "name": "Floating Bridge Brewing", + "brewery_type": "micro", + "address_1": "722 NE 45th St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98105-4719", + "country": "United States", + "longitude": -122.3198017, + "latitude": 47.6615295, + "phone": "2064664784", + "website_url": "http://www.floatingbridgebrewing.com", + "state": "Washington", + "street": "722 NE 45th St" + }, + { + "id": "208f5a9e-de1f-4af8-a959-49ee229284d0", + "name": "Floodland Brewing", + "brewery_type": "micro", + "address_1": "3806 Woodland Park Ave North Suite 100", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98103", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2064862854", + "website_url": "http://www.floodlandbrewing.com", + "state": "Washington", + "street": "3806 Woodland Park Ave North Suite 100" + }, + { + "id": "40b4dc42-bfdc-42a7-b225-7046aa6e1648", + "name": "Floodstage Ale Works", + "brewery_type": "brewpub", + "address_1": "170 S Main St", + "address_2": null, + "address_3": null, + "city": "Brighton", + "state_province": "Colorado", + "postal_code": "80601-1611", + "country": "United States", + "longitude": -104.8221009, + "latitude": 39.98456564, + "phone": "3036547972", + "website_url": "http://www.floodstagealeworks.com", + "state": "Colorado", + "street": "170 S Main St" + }, + { + "id": "919330f5-af85-4dee-9277-d0189c3cc480", + "name": "Florence Brewing Company", + "brewery_type": "micro", + "address_1": "200 S Pikes Peak Ave", + "address_2": null, + "address_3": null, + "city": "Florence", + "state_province": "Colorado", + "postal_code": "81226-1433", + "country": "United States", + "longitude": -105.1177755, + "latitude": 38.3899222, + "phone": "7197847441", + "website_url": "http://www.florencebrewing.com", + "state": "Colorado", + "street": "200 S Pikes Peak Ave" + }, + { + "id": "fc1a8b7d-4870-408a-8810-3dd7720df531", + "name": "Floribunda", + "brewery_type": "nano", + "address_1": "Via Aldo Moro 2", + "address_2": null, + "address_3": null, + "city": "Salorno", + "state_province": "Bolzano", + "postal_code": "39040", + "country": "Italy", + "longitude": 46.243380019706, + "latitude": 11.215853689067, + "phone": "+39 334 1449 150", + "website_url": "https://www.floribunda.it/", + "state": "Bolzano", + "street": "Via Aldo Moro 2" + }, + { + "id": "4748ee56-1199-47ee-87c2-2d9d9250885f", + "name": "Florida Beer Co", + "brewery_type": "regional", + "address_1": "200 Imperial Blvd", + "address_2": null, + "address_3": null, + "city": "Cape Canaveral", + "state_province": "Florida", + "postal_code": "32920-4245", + "country": "United States", + "longitude": -80.611259, + "latitude": 28.398461, + "phone": "3217284114", + "website_url": "http://www.floridabeer.com", + "state": "Florida", + "street": "200 Imperial Blvd" + }, + { + "id": "3f4ffaca-b98e-4ebf-b3f2-35b218ad9f51", + "name": "Florida Keys Brewing Co.", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Islamorada", + "state_province": "Florida", + "postal_code": "33036", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.floridakeysbrewingco.com", + "state": "Florida", + "street": null + }, + { + "id": "01018209-3f1d-45f1-8848-a8d116f6884d", + "name": "Flossmoor Station Brewing Co", + "brewery_type": "brewpub", + "address_1": "1035 Sterling Ave", + "address_2": null, + "address_3": null, + "city": "Flossmoor", + "state_province": "Illinois", + "postal_code": "60422-1252", + "country": "United States", + "longitude": -87.67869465, + "latitude": 41.54338855, + "phone": "7089572739", + "website_url": "http://www.flossmoorstation.com", + "state": "Illinois", + "street": "1035 Sterling Ave" + }, + { + "id": "27954ed4-72d5-47b8-8a2e-c88cc428cc6f", + "name": "Flounder Brewing Co", + "brewery_type": "micro", + "address_1": "1 Ilene Ct Ste 8 Ste 16", + "address_2": null, + "address_3": null, + "city": "Hillsborough", + "state_province": "New Jersey", + "postal_code": "08844-1916", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9083966166", + "website_url": "http://www.flounderbrewing.com", + "state": "New Jersey", + "street": "1 Ilene Ct Ste 8 Ste 16" + }, + { + "id": "524c2b94-6f03-405e-86e8-6331c55b2775", + "name": "Floyd County Brewing Company", + "brewery_type": "brewpub", + "address_1": "129 W Main St", + "address_2": null, + "address_3": null, + "city": "New Albany", + "state_province": "Indiana", + "postal_code": "47150-5958", + "country": "United States", + "longitude": -85.82429754, + "latitude": 38.28289885, + "phone": "4705882337", + "website_url": "http://www.floydcountybrewing.com", + "state": "Indiana", + "street": "129 W Main St" + }, + { + "id": "f80dcefb-bbb4-4a31-ac13-be85108c31f3", + "name": "FlyBoy Brewing", + "brewery_type": "closed", + "address_1": "15630 Boones Ferry Rd Ste 1A", + "address_2": null, + "address_3": null, + "city": "Lake Oswego", + "state_province": "Oregon", + "postal_code": "97035-3455", + "country": "United States", + "longitude": -122.7165, + "latitude": 45.41274998, + "phone": "5039081281", + "website_url": "http://www.flyboybeer.com", + "state": "Oregon", + "street": "15630 Boones Ferry Rd Ste 1A" + }, + { + "id": "295b8a48-f12c-4f0c-8762-405a83a1b6e6", + "name": "FlyBoy Brewing", + "brewery_type": "micro", + "address_1": "15230 SW Sequoia Parkway", + "address_2": null, + "address_3": null, + "city": "Tigard", + "state_province": "Oregon", + "postal_code": "97224", + "country": "United States", + "longitude": -122.7458813, + "latitude": 45.41087854, + "phone": "9713170137", + "website_url": "http://www.flyboybrewing.com", + "state": "Oregon", + "street": "15230 SW Sequoia Parkway" + }, + { + "id": "83987247-12ba-49f6-b677-6b28384d3c9d", + "name": "Flycaster Brewing Co.", + "brewery_type": "closed", + "address_1": "12815 NE 124th St Ste I", + "address_2": null, + "address_3": null, + "city": "Kirkland", + "state_province": "Washington", + "postal_code": "98034-8313", + "country": "United States", + "longitude": -122.169021, + "latitude": 47.711115, + "phone": "2069636626", + "website_url": "https://flycasterbrewing.com", + "state": "Washington", + "street": "12815 NE 124th St Ste I" + }, + { + "id": "60dbcce5-f754-4a42-ac63-e3a246b7a0fb", + "name": "Flyers Restaurant and Brewery", + "brewery_type": "brewpub", + "address_1": "32295 State Route 20", + "address_2": null, + "address_3": null, + "city": "Oak Harbor", + "state_province": "Washington", + "postal_code": "98277-5923", + "country": "United States", + "longitude": -122.6528474, + "latitude": 48.2991197, + "phone": "3606755858", + "website_url": "http://www.eatatflyers.com", + "state": "Washington", + "street": "32295 State Route 20" + }, + { + "id": "aecbe0a5-c680-45a0-b1dd-8bf5b04d9f3a", + "name": "Flying Basset Brewing", + "brewery_type": "brewpub", + "address_1": "720 W Ray Rd", + "address_2": null, + "address_3": null, + "city": "Gilbert", + "state_province": "Arizona", + "postal_code": "85233", + "country": "United States", + "longitude": -111.8054389, + "latitude": 33.32098148, + "phone": "4804261373", + "website_url": "http://www.flyingbassetbrewing.com", + "state": "Arizona", + "street": "720 W Ray Rd" + }, + { + "id": "64596f88-a3f9-4d17-a51d-848b004ae4a1", + "name": "Flying Belgian Brewery", + "brewery_type": "micro", + "address_1": "211 Main St", + "address_2": null, + "address_3": null, + "city": "Farmingdale", + "state_province": "New York", + "postal_code": "11735-2675", + "country": "United States", + "longitude": -73.44588651, + "latitude": 40.73359788, + "phone": "8184577548", + "website_url": "http://www.flyingbelgianbrewery.com", + "state": "New York", + "street": "211 Main St" + }, + { + "id": "c8b11b14-e5ba-401d-accb-d3c74a54c98e", + "name": "Flying Bike Cooperative Brewery", + "brewery_type": "micro", + "address_1": "8570 Greenwood Ave N", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98103-3614", + "country": "United States", + "longitude": -122.3550721, + "latitude": 47.6920561, + "phone": "2064287709", + "website_url": "http://www.flyingbike.coop", + "state": "Washington", + "street": "8570 Greenwood Ave N" + }, + { + "id": "891b1209-e442-48c6-ac73-6cdae5cc128a", + "name": "Flying Bison Brewing Co", + "brewery_type": "micro", + "address_1": "840 Seneca St", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14210-1414", + "country": "United States", + "longitude": -78.8458326, + "latitude": 42.8758185, + "phone": "7168731557", + "website_url": "http://www.flyingbisonbrewing.com", + "state": "New York", + "street": "840 Seneca St" + }, + { + "id": "f8575860-7e83-4dee-9625-b2819c053973", + "name": "Flying Boat Brewing Company", + "brewery_type": "micro", + "address_1": "1776 11th Ave N", + "address_2": null, + "address_3": null, + "city": "St Petersburg", + "state_province": "Florida", + "postal_code": "33713-5747", + "country": "United States", + "longitude": -82.65719969, + "latitude": 27.78284571, + "phone": "7278002999", + "website_url": "http://www.flyingboatbrewing.com", + "state": "Florida", + "street": "1776 11th Ave N" + }, + { + "id": "e2b339ba-8984-497a-ba6b-91882dec1515", + "name": "Flying Dog Brewery", + "brewery_type": "regional", + "address_1": "4607 Wedgewood Blvd", + "address_2": null, + "address_3": null, + "city": "Frederick", + "state_province": "Maryland", + "postal_code": "21703-7120", + "country": "United States", + "longitude": -77.42679107, + "latitude": 39.3628322, + "phone": "3016947899", + "website_url": "http://www.flyingdogbrewery.com", + "state": "Maryland", + "street": "4607 Wedgewood Blvd" + }, + { + "id": "942a943c-ddf3-4a7c-984b-2176a1ba8834", + "name": "Flying Dreams Brewing Co.", + "brewery_type": "micro", + "address_1": "455B Park Ave", + "address_2": null, + "address_3": null, + "city": "Worcester", + "state_province": "Massachusetts", + "postal_code": "01610", + "country": "United States", + "longitude": -71.82618857, + "latitude": 42.25419957, + "phone": "5089268251", + "website_url": "http://www.flyingdreamsbrewing.com", + "state": "Massachusetts", + "street": "455B Park Ave" + }, + { + "id": "d2a781ba-48b3-4a49-8202-cafdde5fbd8d", + "name": "Flying Fish Brewing Co", + "brewery_type": "regional", + "address_1": "900 Kennedy Blvd", + "address_2": null, + "address_3": null, + "city": "Somerdale", + "state_province": "New Jersey", + "postal_code": "08083-1031", + "country": "United States", + "longitude": -75.02089526, + "latitude": 39.85394176, + "phone": "8565043442", + "website_url": "http://www.flyingfish.com", + "state": "New Jersey", + "street": "900 Kennedy Blvd" + }, + { + "id": "3e264584-4208-4f8f-afcf-caa974679c1d", + "name": "Flying Goose Brewpub", + "brewery_type": "brewpub", + "address_1": "40 Andover Rd", + "address_2": null, + "address_3": null, + "city": "New London", + "state_province": "New Hampshire", + "postal_code": "03257-5901", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6035266899", + "website_url": "http://www.flyinggoose.com", + "state": "New Hampshire", + "street": "40 Andover Rd" + }, + { + "id": "230482be-8886-42e9-b6ae-25948beba74c", + "name": "Flying Heart Brewing", + "brewery_type": "micro", + "address_1": "700 Barksdale Blvd", + "address_2": null, + "address_3": null, + "city": "Bossier City", + "state_province": "Louisiana", + "postal_code": "71111-4502", + "country": "United States", + "longitude": -93.732075, + "latitude": 32.515706, + "phone": "3183448775", + "website_url": "http://www.flyingheartbrewing.com", + "state": "Louisiana", + "street": "700 Barksdale Blvd" + }, + { + "id": "f803556e-bc5e-4ce2-b4c0-197818963520", + "name": "Flying Lion Brewing", + "brewery_type": "micro", + "address_1": "5041 Rainier Ave S Ste 106", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98118-1946", + "country": "United States", + "longitude": -122.2840136, + "latitude": 47.5560348, + "phone": "2066599912", + "website_url": "http://www.flyinglionbrewing.com", + "state": "Washington", + "street": "5041 Rainier Ave S Ste 106" + }, + { + "id": "277143dd-a012-4650-9ab5-603a9b5afe5c", + "name": "Flying Machine Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "North Carolina", + "postal_code": "28403", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.facebook.com/flyingmachinebrewing", + "state": "North Carolina", + "street": null + }, + { + "id": "7095f8fc-bb6c-4bd3-88e2-b4900e0ceee0", + "name": "Flying Man Brewing Company", + "brewery_type": "micro", + "address_1": "2400 Patterson Industrial", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78660", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5129104099", + "website_url": "http://www.flyingmanbrewing.com", + "state": "Texas", + "street": "2400 Patterson Industrial" + }, + { + "id": "5bb89793-bf00-4a2b-81a5-4bba78134e12", + "name": "Flying Mouse Brewery", + "brewery_type": "micro", + "address_1": "221 Precast Way", + "address_2": null, + "address_3": null, + "city": "Troutville", + "state_province": "Virginia", + "postal_code": "24175-6099", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Virginia", + "street": "221 Precast Way" + }, + { + "id": "5714fc64-53b8-45a0-98a6-c93575828a92", + "name": "Flying Rhino Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77077-6108", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8326510114", + "website_url": "http://flyingrhinobrewing.com/", + "state": "Texas", + "street": null + }, + { + "id": "220b8569-7203-42e3-8c6a-1565f5ba0f2f", + "name": "Flying Tiger Brewery", + "brewery_type": "micro", + "address_1": "506 N 2nd St", + "address_2": null, + "address_3": null, + "city": "Monroe", + "state_province": "Louisiana", + "postal_code": "71201-6234", + "country": "United States", + "longitude": -92.11970662, + "latitude": 32.50586475, + "phone": "3185471738", + "website_url": "http://www.flyingtigerbeer.com", + "state": "Louisiana", + "street": "506 N 2nd St" + }, + { + "id": "d4af7a8e-f8de-40e8-91cd-b09c827fe215", + "name": "Flyover Brewing Co", + "brewery_type": "brewpub", + "address_1": "1824 Broadway", + "address_2": null, + "address_3": null, + "city": "Scottsbluff", + "state_province": "Nebraska", + "postal_code": "69361-2458", + "country": "United States", + "longitude": -103.6629749, + "latitude": 41.8651034, + "phone": "3085750335", + "website_url": "https://www.flyoverbrewingcompany.com", + "state": "Nebraska", + "street": "1824 Broadway" + }, + { + "id": "56790b8f-beb7-4218-92cf-82cfbcd04b7e", + "name": "Flytrap Brewing", + "brewery_type": "micro", + "address_1": "319 Walnut St", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "North Carolina", + "postal_code": "28401-4051", + "country": "United States", + "longitude": -77.94545788, + "latitude": 34.24034335, + "phone": "9107692881", + "website_url": "http://flytrapbrewing.com", + "state": "North Carolina", + "street": "319 Walnut St" + }, + { + "id": "da405a76-eb2d-423c-8d17-04d21b76369a", + "name": "Flyway Brewing Co", + "brewery_type": "brewpub", + "address_1": "314 Maple St", + "address_2": null, + "address_3": null, + "city": "North Little Rock", + "state_province": "Arkansas", + "postal_code": "72114-5334", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5018123192", + "website_url": null, + "state": "Arkansas", + "street": "314 Maple St" + }, + { + "id": "6d87f606-4479-4425-9427-9b592808ad32", + "name": "Flywheel Brewing Company", + "brewery_type": "micro", + "address_1": "218 S Mulberry St Ste 103", + "address_2": null, + "address_3": null, + "city": "Elizabethtown", + "state_province": "Kentucky", + "postal_code": "42701-1431", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.flywheelbrewing.com", + "state": "Kentucky", + "street": "218 S Mulberry St Ste 103" + }, + { + "id": "3567b09e-51e3-4f69-8666-8a3ff46d405b", + "name": "Foam Brewers", + "brewery_type": "micro", + "address_1": "112 Lake St", + "address_2": null, + "address_3": null, + "city": "Burlington", + "state_province": "Vermont", + "postal_code": "05401-5284", + "country": "United States", + "longitude": -73.2200287, + "latitude": 44.4793121, + "phone": "8023992511", + "website_url": "http://www.foambrewers.com", + "state": "Vermont", + "street": "112 Lake St" + }, + { + "id": "82abc19c-6022-4115-9e8e-62e33cd353c1", + "name": "Fogbelt Brewing Co", + "brewery_type": "brewpub", + "address_1": "1305 Cleveland Ave", + "address_2": null, + "address_3": null, + "city": "Santa Rosa", + "state_province": "California", + "postal_code": "95401-4211", + "country": "United States", + "longitude": -122.7266079, + "latitude": 38.4490004, + "phone": "7079783400", + "website_url": "http://www.fogbeltbrewing.com", + "state": "California", + "street": "1305 Cleveland Ave" + }, + { + "id": "287dfebf-9ff0-4fab-b98d-720e0d7816ef", + "name": "Foggy Noggin Brewing", + "brewery_type": "micro", + "address_1": "22329 53rd Ave SE", + "address_2": null, + "address_3": null, + "city": "Bothell", + "state_province": "Washington", + "postal_code": "98021-8017", + "country": "United States", + "longitude": -122.161117, + "latitude": 47.794727, + "phone": "2065539223", + "website_url": "http://www.foggynogginbrewing.com", + "state": "Washington", + "street": "22329 53rd Ave SE" + }, + { + "id": "99d975eb-6669-4ee1-bc38-1e33083e1b85", + "name": "Foghorn Brewing Company", + "brewery_type": "micro", + "address_1": "218 King Street", + "address_2": null, + "address_3": null, + "city": "Newcastle", + "state_province": "NSW", + "postal_code": "2300", + "country": "Australia", + "longitude": 151.7751895, + "latitude": -32.9273372, + "phone": "+61 2 4929 4721", + "website_url": "http://www.foghornbrewery.com.au/", + "state": "NSW", + "street": "218 King Street" + }, + { + "id": "529f1fc8-2f98-43d1-b8b1-897a324ea20c", + "name": "Fogtown Brewing Company", + "brewery_type": "micro", + "address_1": "25 Pine St", + "address_2": null, + "address_3": null, + "city": "Ellsworth", + "state_province": "Maine", + "postal_code": "04605-2023", + "country": "United States", + "longitude": -68.42259791, + "latitude": 44.5408544, + "phone": "6103897224", + "website_url": "http://www.fogtownbrewing.com", + "state": "Maine", + "street": "25 Pine St" + }, + { + "id": "87b318f5-5c45-4e21-b577-5389e650453a", + "name": "Foley Brothers Brewing Co.", + "brewery_type": "micro", + "address_1": "79 Stone Mill Dam Rd", + "address_2": null, + "address_3": null, + "city": "Brandon", + "state_province": "Vermont", + "postal_code": "05733-8945", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8024658413", + "website_url": null, + "state": "Vermont", + "street": "79 Stone Mill Dam Rd" + }, + { + "id": "c5444860-29b6-491f-b5b6-a5b598fd5d2c", + "name": "Folklore Brewing", + "brewery_type": "micro", + "address_1": "153 Mary Lou Ln", + "address_2": null, + "address_3": null, + "city": "Dothan", + "state_province": "Alabama", + "postal_code": "36301-9521", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3347022337", + "website_url": "http://www.folklorebrewing.com", + "state": "Alabama", + "street": "153 Mary Lou Ln" + }, + { + "id": "231bb644-13a6-4731-b570-459ba212b3f9", + "name": "Folksbier", + "brewery_type": "regional", + "address_1": "101 Luquer St # 103", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11231-3308", + "country": "United States", + "longitude": -74.00099132, + "latitude": 40.6779358, + "phone": null, + "website_url": "http://www.folksbier.com", + "state": "New York", + "street": "101 Luquer St # 103" + }, + { + "id": "a33083eb-89f0-465e-979f-4990cccb47dd", + "name": "Folsom Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Folsom", + "state_province": "Louisiana", + "postal_code": "70437-", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9853737631", + "website_url": null, + "state": "Louisiana", + "street": null + }, + { + "id": "4ef2a5c4-c562-4405-acd7-c57dd4d2d6ac", + "name": "Fonta Flora Brewery", + "brewery_type": "micro", + "address_1": "317 N Green St", + "address_2": null, + "address_3": null, + "city": "Morganton", + "state_province": "North Carolina", + "postal_code": "28655-3324", + "country": "United States", + "longitude": -81.69093777, + "latitude": 35.7476204, + "phone": "8284750153", + "website_url": "http://www.fontaflora.com", + "state": "North Carolina", + "street": "317 N Green St" + }, + { + "id": "7a8a42df-2b2b-4f6e-8b53-b2fabccc25a1", + "name": "Fonta Flora Brewery At Whipoorwill Farm", + "brewery_type": "micro", + "address_1": "6751 NC HWY 126", + "address_2": null, + "address_3": null, + "city": "Nebo", + "state_province": "North Carolina", + "postal_code": "28761", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8284750153", + "website_url": null, + "state": "North Carolina", + "street": "6751 NC HWY 126" + }, + { + "id": "38bbfb2e-1b2b-4160-855c-86ee98bc179f", + "name": "Fonzie Abbott Brewing", + "brewery_type": "micro", + "address_1": "40 Fox Street", + "address_2": null, + "address_3": null, + "city": "Albion", + "state_province": "QLD", + "postal_code": "4010", + "country": "Australia", + "longitude": 153.0452592, + "latitude": -27.4327236, + "phone": "+61 7 3162 7552", + "website_url": "http://fonzieabbott.bitebusiness.com/", + "state": "QLD", + "street": "40 Fox Street" + }, + { + "id": "3e01b66a-8c7c-41f1-aa78-d019fe805ce7", + "name": "Foolproof Brewing Company", + "brewery_type": "micro", + "address_1": "241 Grotto Ave", + "address_2": null, + "address_3": null, + "city": "Pawtucket", + "state_province": "Rhode Island", + "postal_code": "02860-3403", + "country": "United States", + "longitude": -71.41017837, + "latitude": 41.86939069, + "phone": "4017215970", + "website_url": "http://www.foolproofbrewing.com", + "state": "Rhode Island", + "street": "241 Grotto Ave" + }, + { + "id": "c1e03ca4-dfa7-4723-8028-dd86467e3226", + "name": "Fools Fire Brewing Company At Fermentation Lounge", + "brewery_type": "brewpub", + "address_1": "415 Saint Francis Street Unit 112", + "address_2": null, + "address_3": null, + "city": "Tallahassee", + "state_province": "Florida", + "postal_code": "32301-2201", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8507274033", + "website_url": "http://www.foolsfire.com", + "state": "Florida", + "street": "415 Saint Francis Street Unit 112" + }, + { + "id": "22b3edd1-db8e-4573-b490-f672c7247c07", + "name": "Foothill Hops Farm Brewery", + "brewery_type": "micro", + "address_1": "5024 Bear Path Rd", + "address_2": null, + "address_3": null, + "city": "Munnsville", + "state_province": "New York", + "postal_code": "13409-4114", + "country": "United States", + "longitude": -75.58610382, + "latitude": 42.96463213, + "phone": "3154952451", + "website_url": "http://www.foothillhops.com", + "state": "New York", + "street": "5024 Bear Path Rd" + }, + { + "id": "af5b4f9c-51d7-4813-8ed6-30aa56cb8dea", + "name": "Foothills Brewing and Beverage Co", + "brewery_type": "closed", + "address_1": "25312 Kanaskat Dr", + "address_2": null, + "address_3": null, + "city": "Black Diamond", + "state_province": "Washington", + "postal_code": "98010", + "country": "United States", + "longitude": -122.006345, + "latitude": 47.328838, + "phone": "3608862215", + "website_url": null, + "state": "Washington", + "street": "25312 Kanaskat Dr" + }, + { + "id": "d9bbc65e-3c8c-4dd6-8489-e16a8fd46888", + "name": "Foothills Brewing Co", + "brewery_type": "regional", + "address_1": "3800 Kimwell Dr", + "address_2": null, + "address_3": null, + "city": "Winston Salem", + "state_province": "North Carolina", + "postal_code": "27103-6708", + "country": "United States", + "longitude": -80.32680515, + "latitude": 36.04816426, + "phone": "3363544030", + "website_url": "http://www.foothillsbrewing.com", + "state": "North Carolina", + "street": "3800 Kimwell Dr" + }, + { + "id": "eb0d1615-0316-4257-8193-b0e182281f34", + "name": "Foothills Brewing Co Brewpub", + "brewery_type": "brewpub", + "address_1": "638 W 4th St", + "address_2": null, + "address_3": null, + "city": "Winston Salem", + "state_province": "North Carolina", + "postal_code": "27101-2730", + "country": "United States", + "longitude": -80.25085212, + "latitude": 36.0976512, + "phone": "3367773348", + "website_url": "http://www.foothillsbrewing.com", + "state": "North Carolina", + "street": "638 W 4th St" + }, + { + "id": "9852462c-c574-4947-ba8a-bcfc753916be", + "name": "For the Love of God Brewing", + "brewery_type": "micro", + "address_1": "2617 W Northwest Blvd", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99205", + "country": "United States", + "longitude": -117.4505585, + "latitude": 47.68614962, + "phone": "5095988601", + "website_url": "https://www.fortheloveofgodbrewing.com", + "state": "Washington", + "street": "2617 W Northwest Blvd" + }, + { + "id": "190e7e9c-9e20-4b26-b820-f951c75c27b3", + "name": "Forager Brewing Company", + "brewery_type": "brewpub", + "address_1": "1005 6th St NW", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "Minnesota", + "postal_code": "55901-2741", + "country": "United States", + "longitude": -92.47868101, + "latitude": 44.02937696, + "phone": "5072587490", + "website_url": "http://www.foragerbrewery.com", + "state": "Minnesota", + "street": "1005 6th St NW" + }, + { + "id": "8e789e1c-18f7-46ba-9901-3a527ad1466d", + "name": "Forbidden Peak Brewery", + "brewery_type": "micro", + "address_1": "11798 Glacier Hwy", + "address_2": null, + "address_3": null, + "city": "Juneau", + "state_province": "Alaska", + "postal_code": "99801", + "country": "United States", + "longitude": -134.645965, + "latitude": 58.387811, + "phone": "9075237787", + "website_url": "https://forbiddenpeak.com", + "state": "Alaska", + "street": "11798 Glacier Hwy" + }, + { + "id": "ecc59506-755c-4197-bdd7-5322484cddc6", + "name": "Forbidden Root Restaurant & Brewery", + "brewery_type": "micro", + "address_1": "1746 W Chicago Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60622-5012", + "country": "United States", + "longitude": -87.6715393, + "latitude": 41.8961658, + "phone": "3129292202", + "website_url": "http://www.forbiddenroot.com", + "state": "Illinois", + "street": "1746 W Chicago Ave" + }, + { + "id": "913d6e43-da5b-49e4-8a11-104caefcf642", + "name": "Fordham and Old Dominion Brewing Company", + "brewery_type": "large", + "address_1": "1284 McD Dr", + "address_2": null, + "address_3": null, + "city": "Dover", + "state_province": "Delaware", + "postal_code": "19901-4639", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3026784810", + "website_url": "http://www.fordhamanddominion.com", + "state": "Delaware", + "street": "1284 McD Dr" + }, + { + "id": "d89c9978-d12b-435b-bf5e-8ad598cb2ec1", + "name": "Fore River Brewing Company", + "brewery_type": "micro", + "address_1": "45 Huntress Ave", + "address_2": null, + "address_3": null, + "city": "South Portland", + "state_province": "Maine", + "postal_code": "04106-4115", + "country": "United States", + "longitude": -70.28767105, + "latitude": 43.63249066, + "phone": "2073700629", + "website_url": "http://www.foreriverbrewing.com", + "state": "Maine", + "street": "45 Huntress Ave" + }, + { + "id": "537756a0-6dbd-4a47-93cf-e1e0882c6a47", + "name": "Foreign Objects Beer Company", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "New Paltz", + "state_province": "New York", + "postal_code": "12561-3401", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6092871397", + "website_url": "http://www.foreignobjectsbeer.com", + "state": "New York", + "street": null + }, + { + "id": "ad02f33d-c7f7-48d6-b744-5a0360960541", + "name": "Forest & Main Brewery and Pub", + "brewery_type": "brewpub", + "address_1": "61 N Main St", + "address_2": null, + "address_3": null, + "city": "Ambler", + "state_province": "Pennsylvania", + "postal_code": "19002-5728", + "country": "United States", + "longitude": -75.2250879, + "latitude": 40.1553233, + "phone": "2155421776", + "website_url": "http://www.forestandmain.com", + "state": "Pennsylvania", + "street": "61 N Main St" + }, + { + "id": "d1066da0-cbff-433c-ba06-9183f189e1fd", + "name": "Forest City Brewery", + "brewery_type": "brewpub", + "address_1": "2135 Columbus Rd Ste A", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44113-4243", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.forestcitybrewery.com", + "state": "Ohio", + "street": "2135 Columbus Rd Ste A" + }, + { + "id": "338ef688-5a3f-4bcc-bfd6-02e17f7eea19", + "name": "Forest City Brewing", + "brewery_type": "micro", + "address_1": "180 Johnson St.", + "address_2": null, + "address_3": null, + "city": "Middlefield", + "state_province": "Connecticut", + "postal_code": "06455", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8607882138", + "website_url": null, + "state": "Connecticut", + "street": "180 Johnson St." + }, + { + "id": "ee80a4a7-3d9e-4abd-990d-cc393eb0d69d", + "name": "Forest For The Trees Brewing", + "brewery_type": "micro", + "address_1": "26 Grant Street", + "address_2": null, + "address_3": null, + "city": "Forrest", + "state_province": "VIC", + "postal_code": "3236", + "country": "Australia", + "longitude": 143.7143851, + "latitude": -38.5185925, + "phone": "+61 3 5236 6170", + "website_url": "https://forrestbrewing.com.au/", + "state": "VIC", + "street": "26 Grant Street" + }, + { + "id": "34990fd2-327d-4dac-ad38-0bf1a07e36a7", + "name": "Forge Brew Works", + "brewery_type": "brewpub", + "address_1": "8532 Terminal Rd Ste M", + "address_2": null, + "address_3": null, + "city": "Lorton", + "state_province": "Virginia", + "postal_code": "22079-1428", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7033722979", + "website_url": "http://www.forgebrewworks.com", + "state": "Virginia", + "street": "8532 Terminal Rd Ste M" + }, + { + "id": "d7c42bff-51bc-4ae5-ad50-8b835bb83048", + "name": "Forge Brewhouse", + "brewery_type": "brewpub", + "address_1": "1330 E State St", + "address_2": null, + "address_3": null, + "city": "Sycamore", + "state_province": "Illinois", + "postal_code": "60178-9580", + "country": "United States", + "longitude": -88.66048, + "latitude": 41.984784, + "phone": null, + "website_url": null, + "state": "Illinois", + "street": "1330 E State St" + }, + { + "id": "51ac1ec4-3a11-4216-8498-e83957bdc40b", + "name": "Forgotten Boardwalk Brewing", + "brewery_type": "micro", + "address_1": "1940 Olney Ave Ste 100", + "address_2": null, + "address_3": null, + "city": "Cherry Hill", + "state_province": "New Jersey", + "postal_code": "08003-2016", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8564370709", + "website_url": "http://www.forgottenboardwalk.com", + "state": "New Jersey", + "street": "1940 Olney Ave Ste 100" + }, + { + "id": "1cfa05f2-9520-4707-9716-496749ddfd67", + "name": "Forgotten Road Ales", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Graham", + "state_province": "North Carolina", + "postal_code": "27253", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4342031993", + "website_url": null, + "state": "North Carolina", + "street": null + }, + { + "id": "e3dc101b-aa7d-40c2-b195-e12b829e0f9e", + "name": "Forgottonia Brewing", + "brewery_type": "micro", + "address_1": "324 N Lafayette St", + "address_2": null, + "address_3": null, + "city": "Macomb", + "state_province": "Illinois", + "postal_code": "61455", + "country": "United States", + "longitude": -90.671920174608, + "latitude": 40.461798911859, + "phone": "3092378649", + "website_url": "https://www.forgottoniabrewing.com", + "state": "Illinois", + "street": "324 N Lafayette St" + }, + { + "id": "773ba78c-ab00-49a8-9374-8f27b21e3291", + "name": "Forrest Brewing Company", + "brewery_type": "micro", + "address_1": "26 Grant Street", + "address_2": null, + "address_3": null, + "city": "Forrest", + "state_province": "VIC", + "postal_code": "3236", + "country": "Australia", + "longitude": 143.7143851, + "latitude": -38.5185925, + "phone": "+61 3 5236 6170", + "website_url": "https://forrestbrewing.com.au/", + "state": "VIC", + "street": "26 Grant Street" + }, + { + "id": "d9415cb6-2329-4827-8ec8-dd6130327ff8", + "name": "Fort Brewery and Pizza", + "brewery_type": "brewpub", + "address_1": "1001 W Magnolia Ave", + "address_2": null, + "address_3": null, + "city": "Fort Worth", + "state_province": "Texas", + "postal_code": "76104-4504", + "country": "United States", + "longitude": -97.33528782, + "latitude": 32.7303843, + "phone": "5125697369", + "website_url": "http://www.fortbrewery.com", + "state": "Texas", + "street": "1001 W Magnolia Ave" + }, + { + "id": "f71ae900-2020-454b-a23e-925d7e5dbb4f", + "name": "Fort George Brewery", + "brewery_type": "regional", + "address_1": "1483 Duane St", + "address_2": null, + "address_3": null, + "city": "Astoria", + "state_province": "Oregon", + "postal_code": "97103-3819", + "country": "United States", + "longitude": -123.8274681, + "latitude": 46.1883837, + "phone": "5033257468", + "website_url": "http://www.fortgeorgebrewery.com", + "state": "Oregon", + "street": "1483 Duane St" + }, + { + "id": "99143ec6-594d-4ce6-8e94-cffe750dae0b", + "name": "Fort Hill Brewery", + "brewery_type": "micro", + "address_1": "30 Fort Hill Rd", + "address_2": null, + "address_3": null, + "city": "Easthampton", + "state_province": "Massachusetts", + "postal_code": "01027-1268", + "country": "United States", + "longitude": -72.64143098, + "latitude": 42.28503154, + "phone": "4132035754", + "website_url": "http://www.forthillbrewery.com", + "state": "Massachusetts", + "street": "30 Fort Hill Rd" + }, + { + "id": "26232dc1-e177-4342-a9ae-58da4d2d223c", + "name": "Fort Myers Brewing", + "brewery_type": "micro", + "address_1": "12811 Commerce Lakes Dr Ste 28", + "address_2": null, + "address_3": null, + "city": "Fort Myers", + "state_province": "Florida", + "postal_code": "33913-8649", + "country": "United States", + "longitude": -81.7619411, + "latitude": 26.5611037, + "phone": "9162343332", + "website_url": null, + "state": "Florida", + "street": "12811 Commerce Lakes Dr Ste 28" + }, + { + "id": "a3c10655-e6cc-4aa6-a520-1a43cf0021e0", + "name": "Fort Orange Brewing", + "brewery_type": "micro", + "address_1": "450 N Pearl St", + "address_2": null, + "address_3": null, + "city": "Albany", + "state_province": "New York", + "postal_code": "12204-1511", + "country": "United States", + "longitude": -73.74427, + "latitude": 42.66372, + "phone": "5189923103", + "website_url": "http://www.fortorangebrewing.com", + "state": "New York", + "street": "450 N Pearl St" + }, + { + "id": "4431b884-6f1c-495c-8b78-ab3ad0cc9ba1", + "name": "Fort Point Beer Company", + "brewery_type": "regional", + "address_1": "644 Mason St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94129-1600", + "country": "United States", + "longitude": -122.4102278, + "latitude": 37.78946124, + "phone": "4159064021", + "website_url": "http://www.fortpointbeer.com", + "state": "California", + "street": "644 Mason St" + }, + { + "id": "661d7d37-9c19-4209-ab5b-454ed12bf081", + "name": "Fort Rock Brewing", + "brewery_type": "micro", + "address_1": "12401 Folsom Blvd Ste 110", + "address_2": null, + "address_3": null, + "city": "Rancho Cordova", + "state_province": "California", + "postal_code": "95742-6422", + "country": "United States", + "longitude": -121.2248778, + "latitude": 38.62586534, + "phone": "9169364616", + "website_url": "http://www.fortrockbrewing.com", + "state": "California", + "street": "12401 Folsom Blvd Ste 110" + }, + { + "id": "0140615a-3940-46ff-8acb-7534571218e5", + "name": "Fort Smith Brewing Company", + "brewery_type": "micro", + "address_1": "7500 Fort Chaffee Blvd", + "address_2": null, + "address_3": null, + "city": "Fort Smith", + "state_province": "Arkansas", + "postal_code": "72916-6086", + "country": "United States", + "longitude": -94.298483, + "latitude": 35.310777, + "phone": "4792423722", + "website_url": "http://www.fsbrewco.com", + "state": "Arkansas", + "street": "7500 Fort Chaffee Blvd" + }, + { + "id": "06246179-ac7f-4884-b36f-13f36391e284", + "name": "Fort Street Brewery", + "brewery_type": "brewpub", + "address_1": "1660 Fort St", + "address_2": null, + "address_3": null, + "city": "Lincoln Park", + "state_province": "Michigan", + "postal_code": "48146-1909", + "country": "United States", + "longitude": -83.17610229, + "latitude": 42.25215845, + "phone": "3133899620", + "website_url": "http://www.fortstreetbeer.com", + "state": "Michigan", + "street": "1660 Fort St" + }, + { + "id": "cf1a2b61-8b8d-4baa-9246-945c5d4326ab", + "name": "Fortnight Brewing Company", + "brewery_type": "micro", + "address_1": "211 Powers Ferry Rd", + "address_2": null, + "address_3": null, + "city": "Cary", + "state_province": "North Carolina", + "postal_code": "27519-1510", + "country": "United States", + "longitude": -78.91133714, + "latitude": 35.80576231, + "phone": "9194340742", + "website_url": "http://www.fortnightbrewing.com", + "state": "North Carolina", + "street": "211 Powers Ferry Rd" + }, + { + "id": "e8d72e1d-cdd5-4d61-87a2-18aeaee80e9e", + "name": "Fortside Brewing Company", + "brewery_type": "micro", + "address_1": "2200 NE Andresen Rd Ste B", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98661-7350", + "country": "United States", + "longitude": -122.6011643, + "latitude": 45.63911642, + "phone": "3605244692", + "website_url": "http://www.fortsidebrewing.com", + "state": "Washington", + "street": "2200 NE Andresen Rd Ste B" + }, + { + "id": "e85a8ede-cc69-446a-a751-75e47c74dc2c", + "name": "Forward Operating Base Brewing Company / FOB Brewing", + "brewery_type": "micro", + "address_1": "2750 Williamson Pl Ste 100", + "address_2": null, + "address_3": null, + "city": "Dupont", + "state_province": "Washington", + "postal_code": "98327-7501", + "country": "United States", + "longitude": -122.625039, + "latitude": 47.107496, + "phone": "2535074667", + "website_url": "http://www.fobbrewingcompany.com", + "state": "Washington", + "street": "2750 Williamson Pl Ste 100" + }, + { + "id": "17854d44-057a-4799-a2ce-c772eeeaa562", + "name": "Fossil Cove Brewing Co", + "brewery_type": "brewpub", + "address_1": "1946 N Birch Ave", + "address_2": null, + "address_3": null, + "city": "Fayetteville", + "state_province": "Arkansas", + "postal_code": "72703-2408", + "country": "United States", + "longitude": -94.16478287, + "latitude": 36.0879053, + "phone": "4796444601", + "website_url": "http://www.fossilcovebrewing.com", + "state": "Arkansas", + "street": "1946 N Birch Ave" + }, + { + "id": "152e976b-f10d-4fad-9651-13b6bfd9b9cb", + "name": "Fossil Craft Beer Co", + "brewery_type": "micro", + "address_1": "2845 Ore Mill Rd Ste 1", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80904-3161", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7193758298", + "website_url": "http://www.fossilcraftbeer.com", + "state": "Colorado", + "street": "2845 Ore Mill Rd Ste 1" + }, + { + "id": "d912be91-1011-428d-a77f-3b51b78b6da5", + "name": "Fossil Fuels Brewing Co", + "brewery_type": "contract", + "address_1": "45928 Omega Dr", + "address_2": null, + "address_3": null, + "city": "Fremont", + "state_province": "California", + "postal_code": "94539-6848", + "country": "United States", + "longitude": -121.9215949, + "latitude": 37.4989939, + "phone": "5103815739", + "website_url": null, + "state": "California", + "street": "45928 Omega Dr" + }, + { + "id": "6eda8209-074b-4af0-9825-7ea5288e426c", + "name": "Foster's Pint & Plate", + "brewery_type": "brewpub", + "address_1": "2001 S Bellview Rd # 2", + "address_2": null, + "address_3": null, + "city": "Rogers", + "state_province": "Arkansas", + "postal_code": "72758-4050", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.fosterspintandplate.com", + "state": "Arkansas", + "street": "2001 S Bellview Rd # 2" + }, + { + "id": "1ce06580-ed70-4d32-bc01-5bd23e5aa388", + "name": "Foulmouthed Brewing", + "brewery_type": "brewpub", + "address_1": "15 Ocean St", + "address_2": null, + "address_3": null, + "city": "South Portland", + "state_province": "Maine", + "postal_code": "04106-2838", + "country": "United States", + "longitude": -70.2548007, + "latitude": 43.640989, + "phone": "2076186977", + "website_url": "http://www.foulmouthedbrewing.com", + "state": "Maine", + "street": "15 Ocean St" + }, + { + "id": "860bf417-1430-4680-b406-0252a2568ac9", + "name": "Foundation Brewing Company", + "brewery_type": "micro", + "address_1": "1 Industrial Way Ste 5", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04103-1072", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2073708187", + "website_url": "http://www.foundationbrew.com", + "state": "Maine", + "street": "1 Industrial Way Ste 5" + }, + { + "id": "195e9808-a949-4f43-ad81-c6da0529fc96", + "name": "Founders Brewing Co", + "brewery_type": "regional", + "address_1": "456 Charlotte St", + "address_2": null, + "address_3": null, + "city": "Detroit", + "state_province": "Michigan", + "postal_code": "48201-2640", + "country": "United States", + "longitude": -83.0605729, + "latitude": 42.34299565, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "456 Charlotte St" + }, + { + "id": "e4da6e5d-1e64-4701-ab21-786b0f3a1ff4", + "name": "Founders Brewing Co", + "brewery_type": "regional", + "address_1": "235 Grandville Ave SW", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49503-4037", + "country": "United States", + "longitude": -85.6765753, + "latitude": 42.9524964, + "phone": "6167761195", + "website_url": "http://www.foundersbrewing.com", + "state": "Michigan", + "street": "235 Grandville Ave SW" + }, + { + "id": "687105f2-ab5e-41b4-adad-73daabd7c087", + "name": "Founders Brewing Production Facility", + "brewery_type": "regional", + "address_1": "900 Hynes Ave SW", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49507-1085", + "country": "United States", + "longitude": -85.67523323, + "latitude": 42.94662234, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "900 Hynes Ave SW" + }, + { + "id": "b0d9dfce-11dc-4f85-9b26-133a664f8a88", + "name": "Founding Fathers Brewing Company", + "brewery_type": "contract", + "address_1": "1844 W Wayzata Blvd", + "address_2": null, + "address_3": null, + "city": "Long Lake", + "state_province": "Minnesota", + "postal_code": "55356-9491", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9527676403", + "website_url": "http://www.foundingfathersbrewingco.com", + "state": "Minnesota", + "street": "1844 W Wayzata Blvd" + }, + { + "id": "b6490ce6-c91e-4d26-a89d-20e2fc2b118e", + "name": "Fountain City Brewing Co / Monarch Public House", + "brewery_type": "contract", + "address_1": "19 N Main St", + "address_2": null, + "address_3": null, + "city": "Fountain City", + "state_province": "Wisconsin", + "postal_code": "54629-", + "country": "United States", + "longitude": -91.71737039, + "latitude": 44.13124401, + "phone": "6086874231", + "website_url": "http://www.monarchtavern.com", + "state": "Wisconsin", + "street": "19 N Main St" + }, + { + "id": "2969ce00-5f8d-4687-aa79-31a003b8b5f7", + "name": "Fountain Hill Brewery", + "brewery_type": "brewpub", + "address_1": "151 Fountain St NE", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49503-3263", + "country": "United States", + "longitude": -85.664754, + "latitude": 42.965489, + "phone": "6162343690", + "website_url": null, + "state": "Michigan", + "street": "151 Fountain St NE" + }, + { + "id": "54207534-6dc2-4423-b3c0-0c9f96bf85d9", + "name": "Fountain Square Brewing Co", + "brewery_type": "micro", + "address_1": "1301 Barth Ave", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46203-1872", + "country": "United States", + "longitude": -86.1404227, + "latitude": 39.7496885, + "phone": "3174931410", + "website_url": "http://www.fountainsquarebrewing.com", + "state": "Indiana", + "street": "1301 Barth Ave" + }, + { + "id": "cb1d33a3-d319-4576-adc3-2cdd4c1c805f", + "name": "Fountainhead Brewing Co", + "brewery_type": "micro", + "address_1": "4621 24th St", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95822-1412", + "country": "United States", + "longitude": -121.4831173, + "latitude": 38.5332279, + "phone": "9162284610", + "website_url": "http://www.fountainheadbrewingco.com", + "state": "California", + "street": "4621 24th St" + }, + { + "id": "d5e69bc8-cc56-4de7-8fdc-ee092c3f8ff1", + "name": "Four Beasts Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11215-2305", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3478863834", + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "1529695e-6fe4-4799-986d-ef79236a4685", + "name": "Four Bullets Brewery", + "brewery_type": "micro", + "address_1": "640 N Interurban St", + "address_2": null, + "address_3": null, + "city": "Richardson", + "state_province": "Texas", + "postal_code": "75081-3317", + "country": "United States", + "longitude": -96.72688255, + "latitude": 32.95803915, + "phone": null, + "website_url": "http://www.fourbulletsbrewery.com", + "state": "Texas", + "street": "640 N Interurban St" + }, + { + "id": "2b86493e-8c1c-496f-91e3-8b770349e281", + "name": "Four Corners Brewing Co", + "brewery_type": "micro", + "address_1": "423 Singleton Blvd", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75212-4104", + "country": "United States", + "longitude": -96.83062417, + "latitude": 32.7793491, + "phone": "2147482739", + "website_url": "http://www.fcbrewing.com", + "state": "Texas", + "street": "423 Singleton Blvd" + }, + { + "id": "dde3ee18-a2c9-4118-a0d1-dced77329738", + "name": "Four Corners Brewing Co", + "brewery_type": "micro", + "address_1": "1311 S Ervay St", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75215", + "country": "United States", + "longitude": -96.79155915, + "latitude": 32.77172705, + "phone": "2147482739", + "website_url": null, + "state": "Texas", + "street": "1311 S Ervay St" + }, + { + "id": "676352a3-879e-451a-aa20-4bc25611f7ab", + "name": "Four Day Ray Brewing", + "brewery_type": "brewpub", + "address_1": "11671 Lantern Rd", + "address_2": null, + "address_3": null, + "city": "Fishers", + "state_province": "Indiana", + "postal_code": "46038-2952", + "country": "United States", + "longitude": -86.013396, + "latitude": 39.956908, + "phone": "3173430200", + "website_url": "http://www.fourdayray.com", + "state": "Indiana", + "street": "11671 Lantern Rd" + }, + { + "id": "bc2f73b9-a10d-447c-8f49-93b9569b7193", + "name": "Four Eyed Guys Brewing", + "brewery_type": "micro", + "address_1": "910 W Indiana Ave", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99205", + "country": "United States", + "longitude": -117.4256801, + "latitude": 47.67578312, + "phone": "5097959648", + "website_url": "http://foureyedguysbrewing.com", + "state": "Washington", + "street": "910 W Indiana Ave" + }, + { + "id": "1186fc4c-2fba-4a7a-9692-08851d7276a8", + "name": "Four Fathers Brewing", + "brewery_type": "micro", + "address_1": "1555 W Lincolnway Ste 105", + "address_2": null, + "address_3": null, + "city": "Valparaiso", + "state_province": "Indiana", + "postal_code": "46385-3801", + "country": "United States", + "longitude": -87.07906572, + "latitude": 41.47328343, + "phone": "2194649712", + "website_url": "http://www.fourfathersbrewing.com", + "state": "Indiana", + "street": "1555 W Lincolnway Ste 105" + }, + { + "id": "62f9e6a6-9200-45aa-9cf0-03ef0ffce99b", + "name": "Four Generals Brewing", + "brewery_type": "micro", + "address_1": "229 Wells Ave S", + "address_2": null, + "address_3": null, + "city": "Renton", + "state_province": "Washington", + "postal_code": "98057-2131", + "country": "United States", + "longitude": -122.205586, + "latitude": 47.4801424, + "phone": "4252824360", + "website_url": "http://www.fourgenerals.com", + "state": "Washington", + "street": "229 Wells Ave S" + }, + { + "id": "8b23de29-c85d-4aae-8769-ea1fece3eab6", + "name": "Four Horsemen Brewery", + "brewery_type": "micro", + "address_1": "30221 148th Ave SE", + "address_2": null, + "address_3": null, + "city": "Kent", + "state_province": "Washington", + "postal_code": "98042-9368", + "country": "United States", + "longitude": -122.1426915, + "latitude": 47.3844953, + "phone": "2539814258", + "website_url": "http://www.fourhorsemen.beer", + "state": "Washington", + "street": "30221 148th Ave SE" + }, + { + "id": "cd99ac7a-641c-4293-9e5e-fb8b37e3ff0d", + "name": "Four Leaf Brewing", + "brewery_type": "brewpub", + "address_1": "412 N McEwan St", + "address_2": null, + "address_3": null, + "city": "Clare", + "state_province": "Michigan", + "postal_code": "48617-1403", + "country": "United States", + "longitude": -84.7683591, + "latitude": 43.8256884, + "phone": "9894246114", + "website_url": "http://www.fourleafcraftbeer.com", + "state": "Michigan", + "street": "412 N McEwan St" + }, + { + "id": "8dca273c-dc49-4025-9f22-6600c5268040", + "name": "Four Mile Brewing", + "brewery_type": "micro", + "address_1": "202 E Green St", + "address_2": null, + "address_3": null, + "city": "Olean", + "state_province": "New York", + "postal_code": "14760-3606", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7163732337", + "website_url": "http://www.fourmilebrewing.com", + "state": "New York", + "street": "202 E Green St" + }, + { + "id": "dd03f4d8-8690-4895-8755-1dab15c6c160", + "name": "Four Peaks Brewery & Taproom", + "brewery_type": "large", + "address_1": "2401 S Wilson St", + "address_2": null, + "address_3": null, + "city": "Tempe", + "state_province": "Arizona", + "postal_code": "85282-2054", + "country": "United States", + "longitude": -111.9446549, + "latitude": 33.40287138, + "phone": "4803039967", + "website_url": "http://www.fourpeaks.com", + "state": "Arizona", + "street": "2401 S Wilson St" + }, + { + "id": "49fb70b9-b353-4a39-b4c8-a0c4eef09879", + "name": "Four Peaks Brewing Co", + "brewery_type": "large", + "address_1": "1340 E 8th St Ste 104", + "address_2": null, + "address_3": null, + "city": "Tempe", + "state_province": "Arizona", + "postal_code": "85281-4396", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4803039967", + "website_url": "http://www.fourpeaks.com", + "state": "Arizona", + "street": "1340 E 8th St Ste 104" + }, + { + "id": "b16403e4-c0ba-4bcb-9181-ba235204a694", + "name": "Four Provinces Brewing Co.", + "brewery_type": "brewpub", + "address_1": "25 Ravensdale Park", + "address_2": "Dublin 12", + "address_3": null, + "city": "Kimmage", + "state_province": "Dublin", + "postal_code": "D12 X965", + "country": "Ireland", + "longitude": -6.3031169, + "latitude": 53.3146444, + "phone": "35315890152", + "website_url": "https://www.fourprovinces.ie/", + "state": "Dublin", + "street": "25 Ravensdale Park" + }, + { + "id": "09fe8bee-43c0-4238-a8aa-229371372753", + "name": "Four Quarters Brewing Co", + "brewery_type": "micro", + "address_1": "150 W Canal St", + "address_2": null, + "address_3": null, + "city": "Winooski", + "state_province": "Vermont", + "postal_code": "05404-2171", + "country": "United States", + "longitude": -73.1924334, + "latitude": 44.4906838, + "phone": "8023243327", + "website_url": "http://www.4qbc.com", + "state": "Vermont", + "street": "150 W Canal St" + }, + { + "id": "8aa75d11-acb0-4454-8fd9-6190217c729e", + "name": "Four Saints Brewing", + "brewery_type": "micro", + "address_1": "218 S Fayetteville St", + "address_2": null, + "address_3": null, + "city": "Asheboro", + "state_province": "North Carolina", + "postal_code": "27203-5725", + "country": "United States", + "longitude": -79.81447771, + "latitude": 35.70368557, + "phone": "3366103722", + "website_url": "http://www.foursaintsbrewing.com", + "state": "North Carolina", + "street": "218 S Fayetteville St" + }, + { + "id": "78166b84-827e-4226-9327-41c9876338dc", + "name": "Four Seasons Brewing Co", + "brewery_type": "brewpub", + "address_1": "745 Lloyd Ave Ext", + "address_2": null, + "address_3": null, + "city": "Latrobe", + "state_province": "Pennsylvania", + "postal_code": "15650", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7245204111", + "website_url": "http://www.fsbrewing.com", + "state": "Pennsylvania", + "street": "745 Lloyd Ave Ext" + }, + { + "id": "874a730f-a97f-4169-8f5a-71a2c95684bb", + "name": "Four Sons Brewing", + "brewery_type": "micro", + "address_1": "18421 Gothard St Ste 100", + "address_2": null, + "address_3": null, + "city": "Huntington Beach", + "state_province": "California", + "postal_code": "92648-1236", + "country": "United States", + "longitude": -118.0000495, + "latitude": 33.69505764, + "phone": "7145847501", + "website_url": "http://www.foursonsbrewing.com", + "state": "California", + "street": "18421 Gothard St Ste 100" + }, + { + "id": "b2e2278e-68fc-4b7d-a86f-c4db12787c21", + "name": "Four Stacks Brewing", + "brewery_type": "micro", + "address_1": "5469 N US Highway 41", + "address_2": null, + "address_3": null, + "city": "Apollo Beach", + "state_province": "Florida", + "postal_code": "33572-3505", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8136412036", + "website_url": "http://fourstacksbrewing.com", + "state": "Florida", + "street": "5469 N US Highway 41" + }, + { + "id": "0a0e6f09-385e-4fd4-a70c-df0828e63619", + "name": "Four String Brewing Company", + "brewery_type": "micro", + "address_1": "985 W 6th Ave", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43212-2601", + "country": "United States", + "longitude": -83.03279943, + "latitude": 39.98904657, + "phone": "6147251282", + "website_url": "http://www.fourstringbrewing.com", + "state": "Ohio", + "street": "985 W 6th Ave" + }, + { + "id": "49f223ca-b83b-4c2d-a700-9ce07d38982f", + "name": "Four String Brewing Company - West Side Production Facility", + "brewery_type": "micro", + "address_1": "660 N Hague Ave", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43204-", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6147251282", + "website_url": null, + "state": "Ohio", + "street": "660 N Hague Ave" + }, + { + "id": "a8f97e99-0d4c-4d7f-a655-8c2d8ab6c4b2", + "name": "Fox Brewing", + "brewery_type": "micro", + "address_1": "103 S 11th St", + "address_2": null, + "address_3": null, + "city": "West Des Moines", + "state_province": "Iowa", + "postal_code": "50265-4410", + "country": "United States", + "longitude": -93.71821038, + "latitude": 41.56970863, + "phone": "5156350323", + "website_url": "http://www.foxbrewco.com", + "state": "Iowa", + "street": "103 S 11th St" + }, + { + "id": "1d8b4135-ba6b-496b-a5f1-b3898965ae83", + "name": "Fox Farm Brewery", + "brewery_type": "micro", + "address_1": "62 Music Vale Rd", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "Connecticut", + "postal_code": "06420-3847", + "country": "United States", + "longitude": -72.26788506, + "latitude": 41.48370071, + "phone": "8602870076", + "website_url": "http://foxfarmbeer.com", + "state": "Connecticut", + "street": "62 Music Vale Rd" + }, + { + "id": "1ffe568d-9d56-4b96-adb1-b545bbd5320f", + "name": "Fox Hat Brewing", + "brewery_type": "micro", + "address_1": "128 Ingoldby Road", + "address_2": null, + "address_3": null, + "city": "McLaren Flat", + "state_province": "SA", + "postal_code": "5171", + "country": "Australia", + "longitude": 138.5931222, + "latitude": -35.1948624, + "phone": "+61 8 8151 0404", + "website_url": "https://www.foxhatbrewing.com.au/", + "state": "SA", + "street": "128 Ingoldby Road" + }, + { + "id": "d6a7156a-1229-4922-a49f-74fdf267f9fd", + "name": "Fox Hat Brewing Co.", + "brewery_type": "micro", + "address_1": "128 Ingoldby Road", + "address_2": null, + "address_3": null, + "city": "McLaren Flat", + "state_province": "SA", + "postal_code": "5171", + "country": "Australia", + "longitude": 138.5931222, + "latitude": -35.1948624, + "phone": "+61 8 8151 0404", + "website_url": "https://www.foxhatbrewing.com.au/", + "state": "SA", + "street": "128 Ingoldby Road" + }, + { + "id": "c9eea514-e6d7-4f2a-9d2a-7f9004acead7", + "name": "Fox Head Brewing LLC", + "brewery_type": "micro", + "address_1": "2132 S West Ave", + "address_2": null, + "address_3": null, + "city": "Waukesha", + "state_province": "Wisconsin", + "postal_code": "53189-7917", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4146510504", + "website_url": null, + "state": "Wisconsin", + "street": "2132 S West Ave" + }, + { + "id": "a8874024-4542-4460-adf9-a7ee686d7b92", + "name": "Fox Island Brewing", + "brewery_type": "closed", + "address_1": "2416 14th Ave NW", + "address_2": null, + "address_3": null, + "city": "Gig Harbor", + "state_province": "Washington", + "postal_code": "98335", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.foxislandbrewing.com", + "state": "Washington", + "street": "2416 14th Ave NW" + }, + { + "id": "b04ed4fe-48f4-472c-a355-822e68829545", + "name": "Fox N Hare Brewing Company", + "brewery_type": "micro", + "address_1": "46 Front St", + "address_2": null, + "address_3": null, + "city": "Port Jervis", + "state_province": "New York", + "postal_code": "12771-2415", + "country": "United States", + "longitude": -74.69088263, + "latitude": 41.37253067, + "phone": "3172095767", + "website_url": "http://www.foxnhare-brewing.com", + "state": "New York", + "street": "46 Front St" + }, + { + "id": "11eea10d-fb14-4a44-a196-654121005858", + "name": "Fox River Brewing Co", + "brewery_type": "brewpub", + "address_1": "1501 Arboretum Dr", + "address_2": null, + "address_3": null, + "city": "Oshkosh", + "state_province": "Wisconsin", + "postal_code": "54901-2791", + "country": "United States", + "longitude": -88.560941, + "latitude": 44.036512, + "phone": "9202322337", + "website_url": "http://www.foxriverbrewing.com", + "state": "Wisconsin", + "street": "1501 Arboretum Dr" + }, + { + "id": "43b45aff-16e9-4dee-b89d-0652c6574d57", + "name": "Fox River Brewing Co and Restaurant", + "brewery_type": "brewpub", + "address_1": "4301 W Wisconsin Ave Ste 189", + "address_2": null, + "address_3": null, + "city": "Appleton", + "state_province": "Wisconsin", + "postal_code": "54913-6530", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9209910000", + "website_url": "http://www.supplerestaurantgroup.com", + "state": "Wisconsin", + "street": "4301 W Wisconsin Ave Ste 189" + }, + { + "id": "f2681950-6634-476e-a20d-b7b68617c96e", + "name": "Foxhole Brewhouse", + "brewery_type": "micro", + "address_1": "313 4th St SW", + "address_2": null, + "address_3": null, + "city": "Willmar", + "state_province": "Minnesota", + "postal_code": "56201", + "country": "United States", + "longitude": -95.04770735, + "latitude": 45.12056633, + "phone": "3204412071", + "website_url": "http://www.foxholebrewhouse.com", + "state": "Minnesota", + "street": "313 4th St SW" + }, + { + "id": "1654ffc5-5e9f-4fc7-ba64-2a9a86c3cc53", + "name": "Foxtown Brewing", + "brewery_type": "micro", + "address_1": "6411 W Mequon Rd", + "address_2": null, + "address_3": null, + "city": "Mequon", + "state_province": "Wisconsin", + "postal_code": "53092-1862", + "country": "United States", + "longitude": -87.989406667143, + "latitude": 43.221587772022, + "phone": "2622925700", + "website_url": "https://foxtownbrewing.com", + "state": "Wisconsin", + "street": "6411 W Mequon Rd" + }, + { + "id": "e2b6a2f4-631c-40a0-97be-47942c7be3d6", + "name": "Foy Enterprises LLC DBA Dog River Brewery", + "brewery_type": "micro", + "address_1": "1400 US Route 302 Ste 4", + "address_2": null, + "address_3": null, + "city": "Barre", + "state_province": "Vermont", + "postal_code": "05641-2320", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8025054053", + "website_url": null, + "state": "Vermont", + "street": "1400 US Route 302 Ste 4" + }, + { + "id": "1617364c-d90e-4eab-aa7a-f707d2a7fd2d", + "name": "Franciscan Well Brewery & Brewpub", + "brewery_type": "brewpub", + "address_1": "14b North Mall", + "address_2": "Sunday's Well", + "address_3": null, + "city": "Cork", + "state_province": "Cork", + "postal_code": "T23 RHW2", + "country": "Ireland", + "longitude": -8.4755419, + "latitude": 51.9005854, + "phone": "+353 21 4393 434", + "website_url": "https://franwellbar.com/", + "state": "Cork", + "street": "14b North Mall" + }, + { + "id": "86c8dd48-d6a0-4a60-8fd1-814795effed2", + "name": "Franconia Brewing Co", + "brewery_type": "micro", + "address_1": "495 McKinney Pkwy", + "address_2": null, + "address_3": null, + "city": "McKinney", + "state_province": "Texas", + "postal_code": "75071-1825", + "country": "United States", + "longitude": -96.60911774, + "latitude": 33.21300297, + "phone": "9725420705", + "website_url": "http://www.franconiabrewing.com", + "state": "Texas", + "street": "495 McKinney Pkwy" + }, + { + "id": "50c4067b-c763-454f-81ed-7f8fdff2ed56", + "name": "Frankenmuth Brewing Co", + "brewery_type": "micro", + "address_1": "425 S Main St", + "address_2": null, + "address_3": null, + "city": "Frankenmuth", + "state_province": "Michigan", + "postal_code": "48734-1615", + "country": "United States", + "longitude": -83.73929404, + "latitude": 43.32893336, + "phone": "2489309440", + "website_url": "http://www.frankenmuthbrewery.com", + "state": "Michigan", + "street": "425 S Main St" + }, + { + "id": "8cb64220-c9ae-40a4-a916-555d93b36696", + "name": "Franklin Brewing Co", + "brewery_type": "micro", + "address_1": "1345 East Ave", + "address_2": null, + "address_3": null, + "city": "Elyria", + "state_province": "Ohio", + "postal_code": "44035-7681", + "country": "United States", + "longitude": -82.10041992, + "latitude": 41.35034495, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": "1345 East Ave" + }, + { + "id": "7bf1aca7-78cb-4592-95b8-adb77d5ead26", + "name": "Franklin Brewing Company, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Angier", + "state_province": "North Carolina", + "postal_code": "27501-6094", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.franklin-brewing.com", + "state": "North Carolina", + "street": null + }, + { + "id": "edd421a2-f8b7-436c-af5b-c75595047dbf", + "name": "Franklin Street Brewing Company", + "brewery_type": "micro", + "address_1": "116 S Franklin St", + "address_2": null, + "address_3": null, + "city": "Manchester", + "state_province": "Iowa", + "postal_code": "52057-2121", + "country": "United States", + "longitude": -91.45777929, + "latitude": 42.48329324, + "phone": "5639272722", + "website_url": "http://www.franklinstreetbrewing.com", + "state": "Iowa", + "street": "116 S Franklin St" + }, + { + "id": "4236bf9c-5c3a-4486-9922-47329c33df32", + "name": "Franklin's Brewing Co", + "brewery_type": "taproom", + "address_1": "Highfield Farm", + "address_2": null, + "address_3": null, + "city": "Lewes", + "state_province": "East Sussex", + "postal_code": "BN8 5AR", + "country": "England", + "longitude": 0.089645, + "latitude": 50.903057, + "phone": "1273814447", + "website_url": "https://www.franklinsbrewery.co.uk/", + "state": "East Sussex", + "street": "Highfield Farm" + }, + { + "id": "7ef58914-2624-4d11-9db1-5db5b6375c34", + "name": "Franklins General Store", + "brewery_type": "micro", + "address_1": "5123 Baltimore Ave", + "address_2": null, + "address_3": null, + "city": "Hyattsville", + "state_province": "Maryland", + "postal_code": "20781-2042", + "country": "United States", + "longitude": -76.94074114, + "latitude": 38.95194399, + "phone": "3019272740", + "website_url": "http://Franklinsbrewery.com", + "state": "Maryland", + "street": "5123 Baltimore Ave" + }, + { + "id": "183b9d57-243d-4de8-b66e-2001c590e922", + "name": "Franschhoek Beer Company", + "brewery_type": "brewpub", + "address_1": "R45", + "address_2": null, + "address_3": null, + "city": "Franschhoek", + "state_province": "Western Cape", + "postal_code": "7690", + "country": "South Africa", + "longitude": 19.0682, + "latitude": -33.9515, + "phone": "+27 21 876 2145", + "website_url": "https://franschhoekbeerco.co.za/", + "state": "Western Cape", + "street": "R45" + }, + { + "id": "815808c5-4ec3-4a1a-a70a-2e8b43869803", + "name": "Fraser’s Folly", + "brewery_type": "micro", + "address_1": "Black Oystercatcher Wines", + "address_2": "R317", + "address_3": null, + "city": "Bredasdorp", + "state_province": "Western Cape", + "postal_code": "7280", + "country": "South Africa", + "longitude": 20.1068, + "latitude": -34.5772, + "phone": "+27 28 482 1618", + "website_url": "https://frasersfolly.co.za/", + "state": "Western Cape", + "street": "Black Oystercatcher Wines" + }, + { + "id": "d28230b2-df56-4b85-aefc-d8e31e1e28c9", + "name": "Freak'N Brewing Company", + "brewery_type": "micro", + "address_1": "9299 W Olive Ave Ste 513", + "address_2": null, + "address_3": null, + "city": "Peoria", + "state_province": "Arizona", + "postal_code": "85345-8385", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6237385804", + "website_url": "http://www.freaknbrew.com", + "state": "Arizona", + "street": "9299 W Olive Ave Ste 513" + }, + { + "id": "30bd13e7-2853-4e9f-9aae-893a4d597af6", + "name": "Fredericksburg Brewing Co", + "brewery_type": "brewpub", + "address_1": "245 E Main St", + "address_2": null, + "address_3": null, + "city": "Fredericksburg", + "state_province": "Texas", + "postal_code": "78624-4114", + "country": "United States", + "longitude": -98.865629, + "latitude": 30.2703349, + "phone": "8309971646", + "website_url": "http://www.yourbrewery.com", + "state": "Texas", + "street": "245 E Main St" + }, + { + "id": "26298dbf-a747-497e-ad82-d5168437d2bc", + "name": "Fredonia Brewery, LLC", + "brewery_type": "micro", + "address_1": "138 N Mound St", + "address_2": null, + "address_3": null, + "city": "Nacogdoches", + "state_province": "Texas", + "postal_code": "75961-5262", + "country": "United States", + "longitude": -94.65198531, + "latitude": 31.6029904, + "phone": "9363055125", + "website_url": "http://www.fredoniabrewery.com", + "state": "Texas", + "street": "138 N Mound St" + }, + { + "id": "18d675ae-8273-4b8d-bd10-b1ff4bf2b3a5", + "name": "Free Range Brewing", + "brewery_type": "micro", + "address_1": "2320 N Davidson St Unit D", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28205-1832", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9802019096", + "website_url": "http://www.freerangebrewing.com", + "state": "North Carolina", + "street": "2320 N Davidson St Unit D" + }, + { + "id": "9db36c6e-0386-41f5-b03c-6e83f3185253", + "name": "Free State Brewing Co", + "brewery_type": "brewpub", + "address_1": "636 Massachusetts St", + "address_2": null, + "address_3": null, + "city": "Lawrence", + "state_province": "Kansas", + "postal_code": "66044-2236", + "country": "United States", + "longitude": -95.23580916, + "latitude": 38.97243469, + "phone": "7858434555", + "website_url": "http://www.freestatebrewing.com", + "state": "Kansas", + "street": "636 Massachusetts St" + }, + { + "id": "3f2f7f99-2c28-4ec3-a272-83cddacd69c5", + "name": "Free State Brewing Co - Production", + "brewery_type": "micro", + "address_1": "1923 Moodie Rd", + "address_2": null, + "address_3": null, + "city": "Lawrence", + "state_province": "Kansas", + "postal_code": "66046-3167", + "country": "United States", + "longitude": -95.22586264, + "latitude": 38.94967284, + "phone": null, + "website_url": null, + "state": "Kansas", + "street": "1923 Moodie Rd" + }, + { + "id": "ee3fb7c3-e0ae-42cd-9827-1919269583a2", + "name": "Free Will Brewing Company", + "brewery_type": "micro", + "address_1": "410 E Walnut St Ste 10", + "address_2": null, + "address_3": null, + "city": "Perkasie", + "state_province": "Pennsylvania", + "postal_code": "18944-1683", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2673540813", + "website_url": "http://www.freewillbrewing.com", + "state": "Pennsylvania", + "street": "410 E Walnut St Ste 10" + }, + { + "id": "01ea88c3-9507-4959-9087-cc70e2d6fc19", + "name": "Freebridge Brewing", + "brewery_type": "brewpub", + "address_1": "710 E 2nd St Ste 1", + "address_2": null, + "address_3": null, + "city": "The Dalles", + "state_province": "Oregon", + "postal_code": "97058-2400", + "country": "United States", + "longitude": -121.1766104, + "latitude": 45.59871449, + "phone": "5417691234", + "website_url": "http://www.freebridgebrewing.com", + "state": "Oregon", + "street": "710 E 2nd St Ste 1" + }, + { + "id": "bf9882b7-4f26-4f9f-afd5-6d18c5f11ef7", + "name": "Freedom's Edge Brewing", + "brewery_type": "micro", + "address_1": "1509 Pioneer Ave", + "address_2": null, + "address_3": null, + "city": "Cheyenne", + "state_province": "Wyoming", + "postal_code": "82001-4441", + "country": "United States", + "longitude": -104.8169561, + "latitude": 41.13122969, + "phone": "3075145314", + "website_url": "http://www.freedomsedgebrewing.com", + "state": "Wyoming", + "street": "1509 Pioneer Ave" + }, + { + "id": "7506cfbc-fb3f-476c-a9ff-29a8cf03ba32", + "name": "Freehouse Brewery", + "brewery_type": "micro", + "address_1": "2895 Pringle St Ste B", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "South Carolina", + "postal_code": "29405-7506", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.freehousebeer.com", + "state": "South Carolina", + "street": "2895 Pringle St Ste B" + }, + { + "id": "951ee589-597b-44b2-8984-18bf052a8ec5", + "name": "Freestyle Brewing", + "brewery_type": "micro", + "address_1": "12 Alice Street", + "address_2": "3", + "address_3": null, + "city": "Bassendean", + "state_province": "WA", + "postal_code": "6054", + "country": "Australia", + "longitude": 115.93087, + "latitude": -31.9069404, + "phone": "+61 421 918 066", + "website_url": "https://www.freestylebrewing.com.au/", + "state": "WA", + "street": "12 Alice Street" + }, + { + "id": "f3e52e78-36b1-4e4b-bca8-82a34f012f75", + "name": "Freetail Brewing Co", + "brewery_type": "micro", + "address_1": "2000 S Presa St", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78210-2835", + "country": "United States", + "longitude": -98.482853, + "latitude": 29.401901, + "phone": "2103954974", + "website_url": "http://www.freetailbrewing.com", + "state": "Texas", + "street": "2000 S Presa St" + }, + { + "id": "efdc7de5-3256-463e-b0b9-d4369db08f97", + "name": "Freetail Brewing Co - Brewpub", + "brewery_type": "brewpub", + "address_1": "4035 N Loop 1604 W Ste 105", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78257-9547", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2106256000", + "website_url": "http://www.freetailbrewing.com", + "state": "Texas", + "street": "4035 N Loop 1604 W Ste 105" + }, + { + "id": "a2a599ff-da5d-48be-a952-19d31f9d3ecf", + "name": "FreeWheel Brewing Co", + "brewery_type": "brewpub", + "address_1": "3736 Florence St (Marsh Manor)", + "address_2": null, + "address_3": null, + "city": "Redwood City", + "state_province": "California", + "postal_code": "94063-4418", + "country": "United States", + "longitude": -122.1871947, + "latitude": 37.47850974, + "phone": null, + "website_url": null, + "state": "California", + "street": "3736 Florence St (Marsh Manor)" + }, + { + "id": "6a11bab0-fc45-4999-a6f2-4870cb65b3d6", + "name": "Freight Yard Brewing LLC", + "brewery_type": "proprietor", + "address_1": "4975 State Route 31", + "address_2": null, + "address_3": null, + "city": "Clay", + "state_province": "New York", + "postal_code": "13041", + "country": "United States", + "longitude": -76.17179556, + "latitude": 43.18592459, + "phone": "3158342529", + "website_url": "http://www.freightyardbrewing.com", + "state": "New York", + "street": "4975 State Route 31" + }, + { + "id": "a59a6f78-d894-4d75-835d-1415f6a333ce", + "name": "Fremont Brewing Co", + "brewery_type": "regional", + "address_1": "3409 Woodland Park Ave N", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98103-8925", + "country": "United States", + "longitude": -122.3444367, + "latitude": 47.64919175, + "phone": "2064202407", + "website_url": "http://www.fremontbrewing.com", + "state": "Washington", + "street": "3409 Woodland Park Ave N" + }, + { + "id": "aa897103-0752-4ec6-a10f-f90ec51b2836", + "name": "French Broad River Brewing Co", + "brewery_type": "micro", + "address_1": "101 Fairview Rd Ste D", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28803-4301", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8282770222", + "website_url": "http://www.frenchbroadbrewery.com", + "state": "North Carolina", + "street": "101 Fairview Rd Ste D" + }, + { + "id": "79a38e79-837c-4a62-bb95-c592209324e5", + "name": "Frenchies Bistro and Brewery", + "brewery_type": "micro", + "address_1": "61-71 Mentmore Avenue", + "address_2": "6", + "address_3": null, + "city": "Rosebery", + "state_province": "NSW", + "postal_code": "2018", + "country": "Australia", + "longitude": 151.2029584, + "latitude": -33.9168286, + "phone": "+61 2 8964 3171", + "website_url": "http://www.frenchiesbistroandbrewery.com.au/", + "state": "NSW", + "street": "61-71 Mentmore Avenue" + }, + { + "id": "6dfefac9-78b1-4064-bbc8-7576201d9dbb", + "name": "Frenzy Brewing Company", + "brewery_type": "micro", + "address_1": "15 S Broadway", + "address_2": null, + "address_3": null, + "city": "Edmond", + "state_province": "Oklahoma", + "postal_code": "73003-6250", + "country": "United States", + "longitude": -97.4818183, + "latitude": 35.6547287, + "phone": "4055625350", + "website_url": "http://www.frenzybrewing.com", + "state": "Oklahoma", + "street": "15 S Broadway" + }, + { + "id": "e3880e9c-2b9c-44f3-bc3b-a28164657773", + "name": "Freshwater Brewing Co.", + "brewery_type": "micro", + "address_1": "4 Powells Road", + "address_2": null, + "address_3": null, + "city": "Brookvale", + "state_province": "NSW", + "postal_code": "2100", + "country": "Australia", + "longitude": 151.2735033, + "latitude": -33.7662517, + "phone": "+61 2 8530 0454", + "website_url": "http://www.freshwaterbrewing.com.au/", + "state": "NSW", + "street": "4 Powells Road" + }, + { + "id": "ba99e6ac-4f25-49a3-980b-04818ce101c7", + "name": "Fretboard Brewing Company", + "brewery_type": "micro", + "address_1": "5800 Creek Rd", + "address_2": null, + "address_3": null, + "city": "Blue Ash", + "state_province": "Ohio", + "postal_code": "45242-4010", + "country": "United States", + "longitude": -84.390108, + "latitude": 39.260924, + "phone": "5139144677", + "website_url": "http://www.fretboardbrewing.com", + "state": "Ohio", + "street": "5800 Creek Rd" + }, + { + "id": "fc496ca5-6117-4863-b75c-2da11269792a", + "name": "Frey's Brewing Company", + "brewery_type": "micro", + "address_1": "8601 Mapleville Rd", + "address_2": null, + "address_3": null, + "city": "Mount Airy", + "state_province": "Maryland", + "postal_code": "21771-9705", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3016397146", + "website_url": "http://www.freysbrewing.com", + "state": "Maryland", + "street": "8601 Mapleville Rd" + }, + { + "id": "9433ce80-36c5-48c6-a52e-469219a5f692", + "name": "Friar’s Habit Craft Brewery", + "brewery_type": "brewpub", + "address_1": "141 Dr Van der Merwe Drive", + "address_2": "Montana", + "address_3": null, + "city": "Pretoria", + "state_province": "Gauteng", + "postal_code": "0182", + "country": "South Africa", + "longitude": 28.2435, + "latitude": -25.6811, + "phone": "+27 12 548 0244", + "website_url": "https://www.friarshabit.co.za/", + "state": "Gauteng", + "street": "141 Dr Van der Merwe Drive" + }, + { + "id": "c5a2fe16-973f-4ee2-9764-e51ed9a4d190", + "name": "Friars' Brewhouse", + "brewery_type": "micro", + "address_1": "84 Main St", + "address_2": null, + "address_3": null, + "city": "Bucksport", + "state_province": "Maine", + "postal_code": "04416", + "country": "United States", + "longitude": -68.79558414, + "latitude": 44.57202344, + "phone": "2079473770", + "website_url": null, + "state": "Maine", + "street": "84 Main St" + }, + { + "id": "769105a9-f552-4c1c-80b5-e85463582e8c", + "name": "Friday Harbor Brewing", + "brewery_type": "closed", + "address_1": "665B Mullis St", + "address_2": null, + "address_3": null, + "city": "Friday Harbor", + "state_province": "Washington", + "postal_code": "98250-7902", + "country": "United States", + "longitude": -123.0223327, + "latitude": 48.53026803, + "phone": "3603786205", + "website_url": "http://www.fridayharborbrewhouse.com", + "state": "Washington", + "street": "665B Mullis St" + }, + { + "id": "b73eb538-fd72-4c98-8ea2-b20b60abfb21", + "name": "Friends and Allies Brewing Company", + "brewery_type": "micro", + "address_1": "979 Springdale Rd Ste 124", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78702-3753", + "country": "United States", + "longitude": -97.6961854, + "latitude": 30.2628616, + "phone": null, + "website_url": "http://www.friendsandallies.beer", + "state": "Texas", + "street": "979 Springdale Rd Ste 124" + }, + { + "id": "02dcc02a-6cb5-4081-8d36-991f0d31dd09", + "name": "Friendship Brewing Company", + "brewery_type": "brewpub", + "address_1": "100 Pitman Ave", + "address_2": null, + "address_3": null, + "city": "Wentzville", + "state_province": "Missouri", + "postal_code": "63385-1700", + "country": "United States", + "longitude": -90.8512976, + "latitude": 38.8107544, + "phone": "6368569300", + "website_url": "http://www.friendshipbrewingcompany.com", + "state": "Missouri", + "street": "100 Pitman Ave" + }, + { + "id": "6c7bd802-9fa1-4c0c-879c-b09ffa3583cd", + "name": "Fringe Beerworks", + "brewery_type": "micro", + "address_1": "224 SE Douglas St", + "address_2": null, + "address_3": null, + "city": "Lees Summit", + "state_province": "Missouri", + "postal_code": "64063-2329", + "country": "United States", + "longitude": -94.37672, + "latitude": 38.913133, + "phone": "8166002552", + "website_url": "http://www.fringebeerworks.com", + "state": "Missouri", + "street": "224 SE Douglas St" + }, + { + "id": "1ec61aa6-bd2f-43f4-b3cf-cd0cb92caa57", + "name": "FrinGe Brewing", + "brewery_type": "micro", + "address_1": "5640 3rd Ave", + "address_2": null, + "address_3": null, + "city": "Ferndale", + "state_province": "Washington", + "postal_code": "98248", + "country": "United States", + "longitude": -122.593, + "latitude": 48.84596, + "phone": "3603986071", + "website_url": "https://fringebrewing.com", + "state": "Washington", + "street": "5640 3rd Ave" + }, + { + "id": "e0a21330-f4ab-44ba-8762-4624cff0688d", + "name": "Frisco Tap House & Push Brewery", + "brewery_type": "brewpub", + "address_1": "6695 Dobbin Rd", + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "Maryland", + "postal_code": "21045-4755", + "country": "United States", + "longitude": -76.8252248, + "latitude": 39.1860574, + "phone": "4103124907", + "website_url": "http://www.friscogrille.com", + "state": "Maryland", + "street": "6695 Dobbin Rd" + }, + { + "id": "012747c9-0ef8-43d7-90fe-ea4242805b7a", + "name": "Frisky Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Odessa", + "state_province": "Texas", + "postal_code": "79765", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.friskybrewing.com", + "state": "Texas", + "street": null + }, + { + "id": "ce7ce315-a777-4537-8769-21885f40d043", + "name": "Frog Level Brewing Company", + "brewery_type": "micro", + "address_1": "56 Commerce St", + "address_2": null, + "address_3": null, + "city": "Waynesville", + "state_province": "North Carolina", + "postal_code": "28786-5738", + "country": "United States", + "longitude": -82.99178072, + "latitude": 35.4929673, + "phone": "8284545664", + "website_url": "http://www.froglevelbrewing.com", + "state": "North Carolina", + "street": "56 Commerce St" + }, + { + "id": "4f00fa3a-9592-42eb-8cb8-18cdfc18dbeb", + "name": "Frogg Brewing", + "brewery_type": "micro", + "address_1": "580 Sawyers Crossing Road", + "address_2": null, + "address_3": null, + "city": "Swanzey", + "state_province": "New Hampshire", + "postal_code": "03446-3638", + "country": "United States", + "longitude": -72.32039194, + "latitude": 42.88419156, + "phone": "6035477639", + "website_url": "http://www.froggbrewing.com/", + "state": "New Hampshire", + "street": "580 Sawyers Crossing Road" + }, + { + "id": "78b32146-8ea4-49b3-b97a-2d03b3cfd237", + "name": "Frogtown Brewery", + "brewery_type": "micro", + "address_1": "2931 Gilroy St", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90039-2817", + "country": "United States", + "longitude": -118.2515209, + "latitude": 34.10656552, + "phone": "3234522739", + "website_url": "http://www.frogtownbrewery.com", + "state": "California", + "street": "2931 Gilroy St" + }, + { + "id": "d8e62398-710e-4fbc-98d1-cf5cc655619b", + "name": "Frolic Brewing Company", + "brewery_type": "brewpub", + "address_1": "12910 Zuni St Ste 1300", + "address_2": null, + "address_3": null, + "city": "Westminster", + "state_province": "Colorado", + "postal_code": "80234-1313", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.frolicbrewing.com", + "state": "Colorado", + "street": "12910 Zuni St Ste 1300" + }, + { + "id": "5bfe0fee-f654-42fb-a8cb-2ec2709cd104", + "name": "From the Barrel Brewing Company", + "brewery_type": "micro", + "address_1": "15 Londonderry Rd Unit 9", + "address_2": null, + "address_3": null, + "city": "Londonderry", + "state_province": "New Hampshire", + "postal_code": "03053-3388", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6033281896", + "website_url": "http://www.drinkfromthebarrel.com", + "state": "New Hampshire", + "street": "15 Londonderry Rd Unit 9" + }, + { + "id": "564ec142-f73e-4d0c-9430-828e8553aa79", + "name": "From The Earth Brewing Company", + "brewery_type": "brewpub", + "address_1": "1570 Holcomb Bridge Rd Suite 405", + "address_2": null, + "address_3": null, + "city": "Roswell", + "state_province": "Georgia", + "postal_code": "30076", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7709109799", + "website_url": "http://www.ftebrewing.com", + "state": "Georgia", + "street": "1570 Holcomb Bridge Rd Suite 405" + }, + { + "id": "f1675420-4a29-472e-99e7-1ab841e2ac01", + "name": "From the Ground Brewery", + "brewery_type": "micro", + "address_1": "245 Guski Rd", + "address_2": null, + "address_3": null, + "city": "Red Hook", + "state_province": "New York", + "postal_code": "12571-3316", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8453098100", + "website_url": "http://www.fromthegroundbrewery.com", + "state": "New York", + "street": "245 Guski Rd" + }, + { + "id": "e62ab6be-2248-43a2-b827-3fc5bcfb9b0b", + "name": "Front Porch Brewing", + "brewery_type": "micro", + "address_1": "226 N. Plains Industrial Rd Unit 4", + "address_2": null, + "address_3": null, + "city": "Wallingford", + "state_province": "Connecticut", + "postal_code": "06492-2397", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2036791096", + "website_url": "http://www.frontporchbrewing.org", + "state": "Connecticut", + "street": "226 N. Plains Industrial Rd Unit 4" + }, + { + "id": "dc56adc9-5aee-441d-a86a-86c1d48556bc", + "name": "Front Range Brewing Co.", + "brewery_type": "brewpub", + "address_1": "400 W South Boulder Rd Ste 1650", + "address_2": null, + "address_3": null, + "city": "Lafayette", + "state_province": "Colorado", + "postal_code": "80026-2743", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3033390767", + "website_url": "http://www.frontrangebrewingcompany.com", + "state": "Colorado", + "street": "400 W South Boulder Rd Ste 1650" + }, + { + "id": "33d6dbba-030c-440d-96d4-e8ab8b923ddb", + "name": "Front Royal Brewing Company, LLC", + "brewery_type": "brewpub", + "address_1": "122 E Main St", + "address_2": null, + "address_3": null, + "city": "Front Royal", + "state_province": "Virginia", + "postal_code": "22630-3337", + "country": "United States", + "longitude": -78.19199641, + "latitude": 38.9180285, + "phone": "5406310773", + "website_url": "http://www.frontroyalbrewing.com", + "state": "Virginia", + "street": "122 E Main St" + }, + { + "id": "f481d5cc-589c-43d2-95c3-e47eeea39f89", + "name": "Front Street Brewery", + "brewery_type": "brewpub", + "address_1": "9 N Front St", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "North Carolina", + "postal_code": "28401-4436", + "country": "United States", + "longitude": -77.94886883, + "latitude": 34.2357825, + "phone": "9102511935", + "website_url": "http://www.frontstreetbrewery.com", + "state": "North Carolina", + "street": "9 N Front St" + }, + { + "id": "5c90cce6-a368-42b9-8b61-5482607a1805", + "name": "Front Street Brewery - IA", + "brewery_type": "brewpub", + "address_1": "208 E River Dr", + "address_2": null, + "address_3": null, + "city": "Davenport", + "state_province": "Iowa", + "postal_code": "52801-1609", + "country": "United States", + "longitude": -90.572491, + "latitude": 41.520329, + "phone": "5633221569", + "website_url": "http://www.frontstreetbrew.com", + "state": "Iowa", + "street": "208 E River Dr" + }, + { + "id": "e82fff5f-5eb0-4a01-bd19-94a27691a925", + "name": "Front Street Taproom", + "brewery_type": "bar", + "address_1": "614 Main Ave", + "address_2": null, + "address_3": null, + "city": "Fargo", + "state_province": "North Dakota", + "postal_code": "58103-1945", + "country": "United States", + "longitude": -96.78887169, + "latitude": 46.87489994, + "phone": "7015667226", + "website_url": "http://www.frontstreettaproom.com", + "state": "North Dakota", + "street": "614 Main Ave" + }, + { + "id": "cd265508-e5a6-43a6-8fc0-e5eaf84ca940", + "name": "Frontier Beer Company", + "brewery_type": "micro", + "address_1": "Unit 4", + "address_2": " 100 Voortrekker Road", + "address_3": null, + "city": "Salt River", + "state_province": "Gauteng", + "postal_code": "7925", + "country": "South Africa", + "longitude": 18.4619, + "latitude": -33.9298, + "phone": "+27 21 813 5459", + "website_url": "https://frontierbeer.co.za/", + "state": "Gauteng", + "street": "Unit 4" + }, + { + "id": "757b0584-fff4-492b-ab99-1a3fc0e4633f", + "name": "Frontier Brewing Company and Taproom", + "brewery_type": "micro", + "address_1": "150 W 2nd St", + "address_2": null, + "address_3": null, + "city": "Casper", + "state_province": "Wyoming", + "postal_code": "82601-2411", + "country": "United States", + "longitude": -106.32622587131, + "latitude": 42.849141113947, + "phone": "3073371000", + "website_url": "http://www.frontierbrewingcompany.com", + "state": "Wyoming", + "street": "150 W 2nd St" + }, + { + "id": "7ddbc44a-d8f3-47f9-a9fa-a014775afb77", + "name": "Frontier Frau", + "brewery_type": "micro", + "address_1": "114 W 7th St", + "address_2": null, + "address_3": null, + "city": "Cozad", + "state_province": "Nebraska", + "postal_code": "69130-1726", + "country": "United States", + "longitude": -99.978159105745, + "latitude": 40.90227874837, + "phone": "3087841000", + "website_url": "https://frontierfrau.com", + "state": "Nebraska", + "street": "114 W 7th St" + }, + { + "id": "bfe40849-06b8-42b7-82be-fa81af4f221f", + "name": "Frontyard Brewing", + "brewery_type": "micro", + "address_1": "1607 Cuernavaca Dr North Unit #202", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78733", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8503227498", + "website_url": "http://www.frontyardbrewing.com", + "state": "Texas", + "street": "1607 Cuernavaca Dr North Unit #202" + }, + { + "id": "195cf158-f511-4604-ba38-f40f3dbd1928", + "name": "Frost Beer Works", + "brewery_type": "micro", + "address_1": "171 Commerce St", + "address_2": null, + "address_3": null, + "city": "Hinesburg", + "state_province": "Vermont", + "postal_code": "05461-4482", + "country": "United States", + "longitude": -73.1089808, + "latitude": 44.3353247, + "phone": "9499454064", + "website_url": "http://www.frostbeerworks.com", + "state": "Vermont", + "street": "171 Commerce St" + }, + { + "id": "d07babfb-1113-4977-b24d-061f87c67eb1", + "name": "Frost Town Brewing", + "brewery_type": "micro", + "address_1": "100 N Jackson St", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77002", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.frosttownbrew.com/", + "state": "Texas", + "street": "100 N Jackson St" + }, + { + "id": "4d369e09-1503-4fff-9dfc-53d3e4c8df68", + "name": "Froth Craft Brewery", + "brewery_type": "micro", + "address_1": "5 Kennedy Street", + "address_2": null, + "address_3": null, + "city": "Exmouth", + "state_province": "WA", + "postal_code": "6707", + "country": "Australia", + "longitude": 114.12215, + "latitude": -21.9309, + "phone": "+61 8 9949 1451", + "website_url": "http://www.frothcraft.com/", + "state": "WA", + "street": "5 Kennedy Street" + }, + { + "id": "35bfdfcf-21b4-469e-a4b2-38f3c2d8a7c2", + "name": "Frothy Beard Brewing Co", + "brewery_type": "micro", + "address_1": "1401 Sam Rittenberg Blvd Ste 1", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "South Carolina", + "postal_code": "29407-5031", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8437932970", + "website_url": "http://www.frothybeard.com", + "state": "South Carolina", + "street": "1401 Sam Rittenberg Blvd Ste 1" + }, + { + "id": "33d0a683-b9af-4b45-8773-3f6dc24766c6", + "name": "Frye Brewing", + "brewery_type": "micro", + "address_1": "2257 Bridge Ave", + "address_2": null, + "address_3": null, + "city": "Point Pleasant Boro", + "state_province": "New Jersey", + "postal_code": "08742-4920", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7326044263", + "website_url": "http://Www.fryebrewingco.com", + "state": "New Jersey", + "street": "2257 Bridge Ave" + }, + { + "id": "7d1e8eb1-8844-437d-b71f-4599a609973b", + "name": "Fuel Brewing Co.", + "brewery_type": "micro", + "address_1": "41 Oxford Street", + "address_2": null, + "address_3": null, + "city": "Bulimba", + "state_province": "QLD", + "postal_code": "4171", + "country": "Australia", + "longitude": 153.0542781, + "latitude": -27.4509154, + "phone": "+61 7 3899 5470", + "website_url": "http://www.fuelbrewingco.com.au/", + "state": "QLD", + "street": "41 Oxford Street" + }, + { + "id": "2d3c7b9f-e020-4d0b-b181-b488dd706196", + "name": "Fulbrook Ale Works", + "brewery_type": "micro", + "address_1": "1125 Farm To Market 359", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Texas", + "postal_code": "77406", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8329809675", + "website_url": "http://Fulbrookaleworks.com", + "state": "Texas", + "street": "1125 Farm To Market 359" + }, + { + "id": "3081cde1-7f5e-47ff-a3c7-7181dd0d2102", + "name": "Full Boar Craft Brewery", + "brewery_type": "micro", + "address_1": "628 S Main St Ste C", + "address_2": null, + "address_3": null, + "city": "North Syracuse", + "state_province": "New York", + "postal_code": "13212-3687", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3158024784", + "website_url": "http://www.fullboarbrew.com", + "state": "New York", + "street": "628 S Main St Ste C" + }, + { + "id": "9fd68ffd-7144-4b06-8d42-de87581c4327", + "name": "Full Circle Brewing Co", + "brewery_type": "micro", + "address_1": "620 F St", + "address_2": null, + "address_3": null, + "city": "Fresno", + "state_province": "California", + "postal_code": "93706-3413", + "country": "United States", + "longitude": -119.7907797, + "latitude": 36.72683719, + "phone": "5592646323", + "website_url": "http://www.fullcirclebrewing.com", + "state": "California", + "street": "620 F St" + }, + { + "id": "95f1b94c-ab64-44f0-91ed-965dfdbc6f7b", + "name": "Full Pint Brewing Company", + "brewery_type": "micro", + "address_1": "1963 Lincoln Hwy", + "address_2": null, + "address_3": null, + "city": "North Versailles", + "state_province": "Pennsylvania", + "postal_code": "15137-2749", + "country": "United States", + "longitude": -79.8261204, + "latitude": 40.385971, + "phone": "4124676414", + "website_url": "http://fullpintbrewing.com", + "state": "Pennsylvania", + "street": "1963 Lincoln Hwy" + }, + { + "id": "ab9173c6-33cc-4f60-a467-81d9e7a6eb2d", + "name": "Full Sail Brewery - Riverplace", + "brewery_type": "micro", + "address_1": "0307 SW Montgomery St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97201-5125", + "country": "United States", + "longitude": -122.6735214, + "latitude": 45.50957205, + "phone": "5032225343", + "website_url": "http://www.fullsailbrewing.com", + "state": "Oregon", + "street": "0307 SW Montgomery St" + }, + { + "id": "681f435e-7b73-4e4e-8621-bc1016fde942", + "name": "Full Sail Brewing Co", + "brewery_type": "regional", + "address_1": "506 Columbia St", + "address_2": null, + "address_3": null, + "city": "Hood River", + "state_province": "Oregon", + "postal_code": "97031-2000", + "country": "United States", + "longitude": -121.5165301, + "latitude": 45.71036091, + "phone": "5413862281", + "website_url": "http://www.fullsailbrewing.com", + "state": "Oregon", + "street": "506 Columbia St" + }, + { + "id": "47f1bfa4-092a-449d-a45a-9f57e0216daa", + "name": "Full Spectrum Brewing Co", + "brewery_type": "micro", + "address_1": "2180 Carolina Place Dr Ste 101", + "address_2": null, + "address_3": null, + "city": "Fort Mill", + "state_province": "South Carolina", + "postal_code": "29708-7002", + "country": "United States", + "longitude": -80.96649994, + "latitude": 35.03268184, + "phone": "8037924556", + "website_url": "http://www.fullspectrumbrewingco.com", + "state": "South Carolina", + "street": "2180 Carolina Place Dr Ste 101" + }, + { + "id": "0120a1a8-0a8d-41bf-b356-a7ee260e26cd", + "name": "Full Tilt Brewing", + "brewery_type": "contract", + "address_1": "5604 York Road", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21212", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.fulltiltbrewing.com", + "state": "Maryland", + "street": "5604 York Road" + }, + { + "id": "e9f6be0f-0246-47ec-92b2-8d99fdabbbf2", + "name": "Fullsteam Brewery", + "brewery_type": "micro", + "address_1": "726 Rigsbee Ave", + "address_2": null, + "address_3": null, + "city": "Durham", + "state_province": "North Carolina", + "postal_code": "27701-2139", + "country": "United States", + "longitude": -78.89959435, + "latitude": 36.00310675, + "phone": "9196822337", + "website_url": "http://www.fullsteam.ag", + "state": "North Carolina", + "street": "726 Rigsbee Ave" + }, + { + "id": "6e7d8fda-f517-4aa8-ade3-19d145857052", + "name": "Fulton Beer", + "brewery_type": "regional", + "address_1": "2540 2nd St NE", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55418-3412", + "country": "United States", + "longitude": -93.26664, + "latitude": 45.046388, + "phone": "6128760904", + "website_url": "http://www.fultonbeer.com", + "state": "Minnesota", + "street": "2540 2nd St NE" + }, + { + "id": "177ae602-e2bb-4c07-a1f9-1cd7fc796d12", + "name": "Fulton Beer", + "brewery_type": "micro", + "address_1": "414 6th Ave N", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55401-1214", + "country": "United States", + "longitude": -93.2792212, + "latitude": 44.9849395, + "phone": "6128760904", + "website_url": null, + "state": "Minnesota", + "street": "414 6th Ave N" + }, + { + "id": "47c29252-b135-47db-92ae-a87375a97d6a", + "name": "Fulton Chain Craft Brewery", + "brewery_type": "micro", + "address_1": "127 North St", + "address_2": null, + "address_3": null, + "city": "Old Forge", + "state_province": "New York", + "postal_code": "13420-3300", + "country": "United States", + "longitude": -74.97002515, + "latitude": 43.71499275, + "phone": "3155250222", + "website_url": "http://www.fccbrewery.com", + "state": "New York", + "street": "127 North St" + }, + { + "id": "501ec4a5-1a6c-4acb-8f19-5a5f62155dc5", + "name": "Function Brewing Co", + "brewery_type": "brewpub", + "address_1": "108 E 6th St", + "address_2": null, + "address_3": null, + "city": "Bloomington", + "state_province": "Indiana", + "postal_code": "47408-3311", + "country": "United States", + "longitude": -86.53337072, + "latitude": 39.16746781, + "phone": "8126761000", + "website_url": "http://www.functionbrewing.com", + "state": "Indiana", + "street": "108 E 6th St" + }, + { + "id": "5c2cce18-999e-45f9-92f7-5106164a0b6f", + "name": "Funguys Brewery", + "brewery_type": "micro", + "address_1": "2408 Paula St", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27608-1706", + "country": "United States", + "longitude": -78.62513369, + "latitude": 35.81309826, + "phone": null, + "website_url": "http://www.funguysbrewing.com", + "state": "North Carolina", + "street": "2408 Paula St" + }, + { + "id": "f6234e79-191b-489f-88e0-73c71e6517a5", + "name": "Funhouse Brews", + "brewery_type": "micro", + "address_1": "7717 N Emerald Ave Unit A", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97217-6111", + "country": "United States", + "longitude": -122.70021, + "latitude": 45.57944, + "phone": "3147532669", + "website_url": "http://www.funhousebrews.com", + "state": "Oregon", + "street": "7717 N Emerald Ave Unit A" + }, + { + "id": "44b5fa92-c766-458c-8f6d-bfa1b69ec2ce", + "name": "Funk Brewing Company", + "brewery_type": "micro", + "address_1": "19 S 6th St", + "address_2": null, + "address_3": null, + "city": "Emmaus", + "state_province": "Pennsylvania", + "postal_code": "18049-3741", + "country": "United States", + "longitude": -75.49501857, + "latitude": 40.532105, + "phone": "6104218270", + "website_url": "http://www.funkbrewing.com", + "state": "Pennsylvania", + "street": "19 S 6th St" + }, + { + "id": "f0b97d36-2842-4fcc-9860-4186de1d481c", + "name": "Funk Factory Geuzeria", + "brewery_type": "closed", + "address_1": "1602 Gilson St", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Wisconsin", + "postal_code": "53715-2128", + "country": "United States", + "longitude": -89.39197973, + "latitude": 43.05010177, + "phone": null, + "website_url": "http://www.funkfactorygeuzeria.com", + "state": "Wisconsin", + "street": "1602 Gilson St" + }, + { + "id": "1367028f-a358-4917-9c55-7ffb6fce1c4e", + "name": "Funkwerks", + "brewery_type": "micro", + "address_1": "1900 E Lincoln Ave Unit B", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80524-2789", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9704823865", + "website_url": "http://www.funkwerks.com", + "state": "Colorado", + "street": "1900 E Lincoln Ave Unit B" + }, + { + "id": "b2a171c8-a008-43cc-b4c1-ca52c4cfe67a", + "name": "Funky Bow Brewery & Beer Company", + "brewery_type": "micro", + "address_1": "21 Ledgewood Ln", + "address_2": null, + "address_3": null, + "city": "Lyman", + "state_province": "Maine", + "postal_code": "04002-7376", + "country": "United States", + "longitude": -70.60146195, + "latitude": 43.48539497, + "phone": "2074096814", + "website_url": "http://www.funkybowbeercompany.com", + "state": "Maine", + "street": "21 Ledgewood Ln" + }, + { + "id": "db4e37ae-8228-440a-86a5-d02f08b1ea29", + "name": "Funky Buddha Brewery", + "brewery_type": "large", + "address_1": "1201 NE 38th St Ste A1 Bay A1", + "address_2": null, + "address_3": null, + "city": "Oakland Park", + "state_province": "Florida", + "postal_code": "33334-4504", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9544400046", + "website_url": "http://www.thefunkybuddha.com", + "state": "Florida", + "street": "1201 NE 38th St Ste A1 Bay A1" + }, + { + "id": "eb8b179b-3811-4755-b2c4-7516b49de2dc", + "name": "Funky Buddha Lounge & Brewery", + "brewery_type": "large", + "address_1": "2621 N Federal Hwy", + "address_2": null, + "address_3": null, + "city": "Boca Raton", + "state_province": "Florida", + "postal_code": "33431-7785", + "country": "United States", + "longitude": -80.0805397, + "latitude": 26.3640441, + "phone": "5613684643", + "website_url": "http://www.thefunkybuddha.com", + "state": "Florida", + "street": "2621 N Federal Hwy" + }, + { + "id": "62707d11-47fe-4377-94c5-c21e64e76170", + "name": "funs brewing BEERHOUSE OSAKA", + "brewery_type": "brewpub", + "address_1": "1-15-10 Kita-Horie H1 Building B1", + "address_2": null, + "address_3": null, + "city": "Osaka", + "state_province": "Osaka", + "postal_code": "550-0014", + "country": "Japan", + "longitude": 135.4947186, + "latitude": 34.67351909, + "phone": "81665857700", + "website_url": "https://funsbrewing.com/pages/beerhouse-osaka", + "state": "Osaka", + "street": "1-15-10 Kita-Horie H1 Building B1" + }, + { + "id": "e2bf66f2-075f-4570-b375-a46f25cae206", + "name": "Furnace Brook Brewery", + "brewery_type": "micro", + "address_1": "Trolliloes Lane", + "address_2": null, + "address_3": null, + "city": "Hailshame", + "state_province": "East Sussex", + "postal_code": "BN27 4QR", + "country": "England", + "longitude": 0.318049, + "latitude": 50.912028, + "phone": "1435830835", + "website_url": "http://www.quaffale.org.uk/php/brewery/3553", + "state": "East Sussex", + "street": "Trolliloes Lane" + }, + { + "id": "c1208478-57c2-4bea-91e1-f169ac2a4854", + "name": "Furthermore Beer", + "brewery_type": "contract", + "address_1": "320 Pierce St", + "address_2": null, + "address_3": null, + "city": "Black River Falls", + "state_province": "Wisconsin", + "postal_code": "54615", + "country": "United States", + "longitude": -90.85115523, + "latitude": 44.29279126, + "phone": "6085883300", + "website_url": "http://www.furthermorebeer.com", + "state": "Wisconsin", + "street": "320 Pierce St" + }, + { + "id": "a1d8fdc4-b837-4c41-8b3e-ea6015bf545c", + "name": "Fury and Son Brewing Co", + "brewery_type": "micro", + "address_1": "46 Concorde Drive", + "address_2": null, + "address_3": null, + "city": "Keilor Park", + "state_province": "VIC", + "postal_code": "3042", + "country": "Australia", + "longitude": 144.8492333, + "latitude": -37.7205428, + "phone": "+61 3 9331 6818", + "website_url": null, + "state": "VIC", + "street": "46 Concorde Drive" + }, + { + "id": "2501d34d-fa74-4dcc-97ae-4a904214b9cd", + "name": "Fury Brewing Company", + "brewery_type": "micro", + "address_1": "13380 US-30", + "address_2": null, + "address_3": null, + "city": "Irwin", + "state_province": "Pennsylvania", + "postal_code": "15642", + "country": "United States", + "longitude": -79.7029626, + "latitude": 40.3248479, + "phone": "7248265162", + "website_url": "http://www.furybrewingcompany.com", + "state": "Pennsylvania", + "street": "13380 US-30" + }, + { + "id": "1454b21e-5930-4365-bce3-c174b5680454", + "name": "Future Brewing", + "brewery_type": "micro", + "address_1": "82 May Street", + "address_2": null, + "address_3": null, + "city": "Saint Peters", + "state_province": "NSW", + "postal_code": "2044", + "country": "Australia", + "longitude": 151.1779738, + "latitude": -33.9097416, + "phone": null, + "website_url": "https://futurebrewing.com.au/", + "state": "NSW", + "street": "82 May Street" + }, + { + "id": "c7bac533-8da6-41cc-a0a9-bba8a0a70238", + "name": "Future Magic Brewing Co.", + "brewery_type": "micro", + "address_1": "32 Manilla Street", + "address_2": null, + "address_3": null, + "city": "East Brisbane", + "state_province": "QLD", + "postal_code": "4169", + "country": "Australia", + "longitude": 153.0415954, + "latitude": -27.4813531, + "phone": "+61 7 3159 4954", + "website_url": "https://www.futuremagic.com.au/", + "state": "QLD", + "street": "32 Manilla Street" + }, + { + "id": "e359d959-95c2-40c6-936b-04c4a8ed947b", + "name": "Future Primitive Brewing Company", + "brewery_type": "micro", + "address_1": "9832 14th Ave SW ", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98106-2816", + "country": "United States", + "longitude": -122.3524234, + "latitude": 47.51481725, + "phone": "2068192241", + "website_url": "https://www.futureprimitivebeer.com", + "state": "Washington", + "street": "9832 14th Ave SW " + }, + { + "id": "e3029b7a-f730-4cda-bb4d-d6b31720386a", + "name": "Fyne Ales", + "brewery_type": "micro", + "address_1": "Achadunan", + "address_2": null, + "address_3": null, + "city": "Cairndow", + "state_province": "Argyll", + "postal_code": "PA26 8BJ", + "country": "Scotland", + "longitude": -4.9139856, + "latitude": 56.2761719, + "phone": "1499600120", + "website_url": "https://www.fyneales.com/", + "state": "Argyll", + "street": "Achadunan" + }, + { + "id": "72cc9e4f-9347-4375-9e4c-68a014676e7a", + "name": "G Man Brewery / G-Man Sports Bar", + "brewery_type": "micro", + "address_1": "18791 SW Martinazzi Ave", + "address_2": null, + "address_3": null, + "city": "Tualatin", + "state_province": "Oregon", + "postal_code": "97062-6808", + "country": "United States", + "longitude": -122.7598045, + "latitude": 45.3841006, + "phone": "5033105159", + "website_url": "http://www.hotseatsportsbar.com", + "state": "Oregon", + "street": "18791 SW Martinazzi Ave" + }, + { + "id": "e4edfb7b-9143-4e6e-a866-bb2ecde062c9", + "name": "G. Mansfield, Inc", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Greensboro", + "state_province": "North Carolina", + "postal_code": "27403-2744", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3363370757", + "website_url": null, + "state": "North Carolina", + "street": null + }, + { + "id": "e8d29c6c-50b2-4013-b059-1687215074c1", + "name": "G.C. Starkey Beer Company", + "brewery_type": "contract", + "address_1": "68 Castle St Apt 1C", + "address_2": null, + "address_3": null, + "city": "Geneva", + "state_province": "New York", + "postal_code": "14456-2648", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6076784043", + "website_url": "http://www.starkeyslookout.com", + "state": "New York", + "street": "68 Castle St Apt 1C" + }, + { + "id": "01b395ba-7b97-4214-a98c-365ad281d9dd", + "name": "G8 Development, Inc.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92109-2802", + "country": "United States", + "longitude": -117.1627714, + "latitude": 32.7174209, + "phone": "6198233402", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "8b2d6d37-a047-41d7-b284-4303e8d1273f", + "name": "Gad Dam Brewing", + "brewery_type": "brewpub", + "address_1": "922 Broad St", + "address_2": null, + "address_3": null, + "city": "Summersville", + "state_province": "West Virginia", + "postal_code": "26651-1709", + "country": "United States", + "longitude": -80.860065381413, + "latitude": 38.306645354155, + "phone": "3048805735", + "website_url": "http://www.gaddambrewing.com", + "state": "West Virginia", + "street": "922 Broad St" + }, + { + "id": "d0a57790-908c-4e55-a814-f15a0cd98258", + "name": "Gael Brewing Co", + "brewery_type": "micro", + "address_1": "4180 State Route 14", + "address_2": null, + "address_3": null, + "city": "Geneva", + "state_province": "New York", + "postal_code": "14456-9753", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3152200190", + "website_url": "http://www.gaelbrewing.com", + "state": "New York", + "street": "4180 State Route 14" + }, + { + "id": "d4388bec-ad7d-4a0e-ae3e-7c45d8364d94", + "name": "Gage Roads Brew Co", + "brewery_type": "micro", + "address_1": "16 Absolon Street", + "address_2": null, + "address_3": null, + "city": "Palmyra", + "state_province": "WA", + "postal_code": "6157", + "country": "Australia", + "longitude": 115.7924037, + "latitude": -32.0513697, + "phone": null, + "website_url": null, + "state": "WA", + "street": "16 Absolon Street" + }, + { + "id": "db6f751a-45dd-4565-b314-52f4ec3a134d", + "name": "Gage Roads Brewing Company", + "brewery_type": "micro", + "address_1": "Peter Hughes Drive", + "address_2": null, + "address_3": null, + "city": "Fremantle", + "state_province": "WA", + "postal_code": "6160", + "country": "Australia", + "longitude": 115.7401709, + "latitude": -32.0541502, + "phone": null, + "website_url": "http://gageroads.com.au/", + "state": "WA", + "street": "Peter Hughes Drive" + }, + { + "id": "5d055cfc-fb44-4cee-8ee7-7b1c7b4706a3", + "name": "Gakona Brewing Company", + "brewery_type": "micro", + "address_1": "Mile 0.5 Tok Cutoff Hwy", + "address_2": null, + "address_3": null, + "city": "Gakona", + "state_province": "Alaska", + "postal_code": "99586-0336", + "country": "United States", + "longitude": -145.335689, + "latitude": 62.293667, + "phone": "9078225609", + "website_url": "https://www.gakonabrewing.com", + "state": "Alaska", + "street": "Mile 0.5 Tok Cutoff Hwy" + }, + { + "id": "b650d91f-3b4d-4826-a841-8a8827b804f5", + "name": "Galactic Coast Brewing", + "brewery_type": "micro", + "address_1": "1675 Dickinson Ave C", + "address_2": null, + "address_3": null, + "city": "Dickinson", + "state_province": "Texas", + "postal_code": "77539-4213", + "country": "United States", + "longitude": -95.04696, + "latitude": 29.478, + "phone": "8327381960", + "website_url": "http://www.galacticcoastbrewing.com", + "state": "Texas", + "street": "1675 Dickinson Ave C" + }, + { + "id": "b82fc6a8-47d3-4416-9ffb-9792068623f6", + "name": "Galaxy Brewing Co", + "brewery_type": "brewpub", + "address_1": "41 Court St, 153 & 157", + "address_2": null, + "address_3": null, + "city": "Binghamton", + "state_province": "New York", + "postal_code": "13901-3104", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6072174815", + "website_url": "http://www.galaxybrewingco.com", + "state": "New York", + "street": "41 Court St, 153 & 157" + }, + { + "id": "b45388c7-4c1d-495a-ab08-b6c1c573644f", + "name": "Galena Brewing Co", + "brewery_type": "brewpub", + "address_1": "227 N Main St Ste 101", + "address_2": null, + "address_3": null, + "city": "Galena", + "state_province": "Illinois", + "postal_code": "61036-2217", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8152759469", + "website_url": "http://www.galenabrewery.com", + "state": "Illinois", + "street": "227 N Main St Ste 101" + }, + { + "id": "be332572-03d3-4253-86cc-36ea588d74f2", + "name": "Gales Brewery", + "brewery_type": "micro", + "address_1": "28 Gale Street", + "address_2": null, + "address_3": null, + "city": "Brunswick East", + "state_province": "VIC", + "postal_code": "3057", + "country": "Australia", + "longitude": 144.9733595, + "latitude": -37.7690116, + "phone": "+61 418 378 952", + "website_url": "https://galesbrewery.com.au/", + "state": "VIC", + "street": "28 Gale Street" + }, + { + "id": "fd8c59f5-b0c0-47b3-be6e-002f60580fed", + "name": "Gallaghers' Where U Brew", + "brewery_type": "micro", + "address_1": "180 W Dayton St Ste 105", + "address_2": null, + "address_3": null, + "city": "Edmonds", + "state_province": "Washington", + "postal_code": "98020-4160", + "country": "United States", + "longitude": -122.3866448, + "latitude": 47.80984882, + "phone": "4257764209", + "website_url": "http://www.whereubrew.com", + "state": "Washington", + "street": "180 W Dayton St Ste 105" + }, + { + "id": "6674fe33-f3c4-499e-ae89-41735f7dc72b", + "name": "Gallery Brewery", + "brewery_type": "brewpub", + "address_1": "143 Kent St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Michigan", + "postal_code": "48875-1456", + "country": "United States", + "longitude": -84.90284271, + "latitude": 42.86985871, + "phone": "5175269060", + "website_url": "http://www.thegallerybrewery.com", + "state": "Michigan", + "street": "143 Kent St" + }, + { + "id": "ed581ab5-738c-4123-89f9-458d538a9602", + "name": "Gally's Brewing Co", + "brewery_type": "micro", + "address_1": "30 Central Ave S", + "address_2": null, + "address_3": null, + "city": "Harlowton", + "state_province": "Montana", + "postal_code": "59036", + "country": "United States", + "longitude": -109.8318655, + "latitude": 46.43513718, + "phone": "4066325838", + "website_url": "http://www.gallysbrewing.com", + "state": "Montana", + "street": "30 Central Ave S" + }, + { + "id": "32d370dc-63c8-48de-ba18-1d2eb06210d0", + "name": "Galveston Bay Beer Company, Inc.", + "brewery_type": "micro", + "address_1": "12900 FM 3436 Rd", + "address_2": null, + "address_3": null, + "city": "Dickinson", + "state_province": "Texas", + "postal_code": "77539-2565", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2813393210", + "website_url": "http://www.galvestonbaybeer.com", + "state": "Texas", + "street": "12900 FM 3436 Rd" + }, + { + "id": "4fd86f7d-aff5-480c-890d-adf81c8e9cde", + "name": "Galveston Island Brewing", + "brewery_type": "micro", + "address_1": "8423 Stewart Rd", + "address_2": null, + "address_3": null, + "city": "Galveston", + "state_province": "Texas", + "postal_code": "77554-9242", + "country": "United States", + "longitude": -94.8491535, + "latitude": 29.2556439, + "phone": "4097407000", + "website_url": "http://www.GalvestonIslandBrewing.com", + "state": "Texas", + "street": "8423 Stewart Rd" + }, + { + "id": "d9ab395a-affc-4c9d-bb05-244aeda12cdf", + "name": "Galway Bay Brewery", + "brewery_type": "regional", + "address_1": "Carrowmoneash", + "address_2": "Station Rd", + "address_3": null, + "city": "Oranmore", + "state_province": "Galway", + "postal_code": "H91 FA31", + "country": "Ireland", + "longitude": -8.9290923, + "latitude": 53.2817059, + "phone": "353861700458", + "website_url": "http://www.galwaybaybrewery.com/", + "state": "Galway", + "street": "Carrowmoneash" + }, + { + "id": "af7a4a16-fac8-4174-ae07-050ae5f09f81", + "name": "Galway Hooker Brewery", + "brewery_type": "regional", + "address_1": "Deerpark", + "address_2": null, + "address_3": null, + "city": "Oranmore", + "state_province": "Galway", + "postal_code": "H91 DX6N", + "country": "Ireland", + "longitude": -8.9290923, + "latitude": 53.2817059, + "phone": "35391483912", + "website_url": "http://www.galwayhooker.ie/", + "state": "Galway", + "street": "Deerpark" + }, + { + "id": "fd8c337d-7335-4ad5-b8b6-add0fba3cbf2", + "name": "Game Bag Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Belgrade", + "state_province": "Montana", + "postal_code": "59714-8809", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5092208584", + "website_url": null, + "state": "Montana", + "street": null + }, + { + "id": "6b1e2b96-92a4-4cc7-b400-338f97f8e365", + "name": "Game On Brewing", + "brewery_type": "contract", + "address_1": "1999 Shepard Rd", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55116-3210", + "country": "United States", + "longitude": -93.153604, + "latitude": 44.90528, + "phone": null, + "website_url": null, + "state": "Minnesota", + "street": "1999 Shepard Rd" + }, + { + "id": "a702447d-f43b-4aab-80a7-1c3c0f40b1c7", + "name": "GameCraft Brewing", + "brewery_type": "micro", + "address_1": "23301 Avenida De La Carlota", + "address_2": "C", + "address_3": null, + "city": "Laguna Hills", + "state_province": "California", + "postal_code": "92653-1589", + "country": "United States", + "longitude": -117.71783937338, + "latitude": 33.624375615365, + "phone": "9492873998", + "website_url": "https://www.gamecraftbrewing.com", + "state": "California", + "street": "23301 Avenida De La Carlota" + }, + { + "id": "a99904b4-3a41-46ef-b135-68f280543432", + "name": "GameCraft Brewing Anaheim", + "brewery_type": "micro", + "address_1": "1884 S Santa Cruz St", + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92805", + "country": "United States", + "longitude": -117.89592661433, + "latitude": 33.800801201317, + "phone": "7144654689", + "website_url": "https://www.gamecraftbrewing.com", + "state": "California", + "street": "1884 S Santa Cruz St" + }, + { + "id": "67c77a36-b5b2-458d-b7c0-bcc65700aa48", + "name": "Garage Brewing Company", + "brewery_type": "micro", + "address_1": "26015 Jefferson Ave. Ste D", + "address_2": null, + "address_3": null, + "city": "Murrieta", + "state_province": "California", + "postal_code": "92562", + "country": "United States", + "longitude": -117.1435779, + "latitude": 33.48271424, + "phone": "9516001945", + "website_url": "http://www.garagebrewco.com", + "state": "California", + "street": "26015 Jefferson Ave. Ste D" + }, + { + "id": "00aaab80-8675-4884-b892-c54de3389867", + "name": "Garage Project", + "brewery_type": "micro", + "address_1": "12 Laser Drive", + "address_2": "Unit 3", + "address_3": null, + "city": "Rowville", + "state_province": "VIC", + "postal_code": "3178", + "country": "Australia", + "longitude": 145.2450774, + "latitude": -37.9096844, + "phone": "+61 408 392 226", + "website_url": "https://projectbrewing.com.au/", + "state": "VIC", + "street": "12 Laser Drive" + }, + { + "id": "c0071f92-6f3a-4153-b7f7-62d7e3ea1405", + "name": "Garden Grove Brewing Company", + "brewery_type": "micro", + "address_1": "3445 W Cary St", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23221-2726", + "country": "United States", + "longitude": -77.48597999, + "latitude": 37.55495022, + "phone": "8043386029", + "website_url": "http://www.gardengrovebrewing.com", + "state": "Virginia", + "street": "3445 W Cary St" + }, + { + "id": "9bb7757f-2379-43a1-a895-0b1ef014d6f3", + "name": "Garden of Eve Farm Brewery", + "brewery_type": "micro", + "address_1": "4558 Sound Ave", + "address_2": null, + "address_3": null, + "city": "Riverhead", + "state_province": "New York", + "postal_code": "11901-1207", + "country": "United States", + "longitude": -72.648395, + "latitude": 40.96775, + "phone": "6317228777", + "website_url": "http://www.facebook.com/farmbrewery", + "state": "New York", + "street": "4558 Sound Ave" + }, + { + "id": "9e1a5201-f59d-42d0-b77e-d2f16676a587", + "name": "Garden Path Fermentation", + "brewery_type": "micro", + "address_1": "11653 Higgins Airport Way", + "address_2": null, + "address_3": null, + "city": "Burlington", + "state_province": "Washington", + "postal_code": "98233-5308", + "country": "United States", + "longitude": -122.4179847, + "latitude": 48.47697354, + "phone": "3605038956", + "website_url": "http://www.gardenpathwa.com", + "state": "Washington", + "street": "11653 Higgins Airport Way" + }, + { + "id": "2e495e44-0746-4651-8b7b-6da0a0758492", + "name": "Garden State Beer Company", + "brewery_type": "micro", + "address_1": "247 E White Horse Pike", + "address_2": null, + "address_3": null, + "city": "Galloway", + "state_province": "New Jersey", + "postal_code": "08205-9563", + "country": "United States", + "longitude": -74.52909948, + "latitude": 39.4463759, + "phone": "6092322337", + "website_url": "http://www.gardenstatebeerco.com", + "state": "New Jersey", + "street": "247 E White Horse Pike" + }, + { + "id": "70079d9d-bd45-47e3-9a4d-d6cbd4fbf644", + "name": "Garland Brew Werks", + "brewery_type": "micro", + "address_1": "603 W Garland Ave", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99205", + "country": "United States", + "longitude": -117.4204687, + "latitude": 47.69391487, + "phone": "5098639419", + "website_url": "https://www.facebook.com/Garland-Brew-Werks-102172055439160", + "state": "Washington", + "street": "603 W Garland Ave" + }, + { + "id": "25128237-16d0-4273-91fd-c3a7cf09f4d3", + "name": "Garland City Beer Works", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Watertown", + "state_province": "New York", + "postal_code": "13601-2423", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3157832577", + "website_url": "http://www.garlandcitybeerworks.com", + "state": "New York", + "street": null + }, + { + "id": "5de70f8f-79a6-4c7f-bdcb-669d7c7c4599", + "name": "Garphish Brewing Company", + "brewery_type": "micro", + "address_1": "165 Main St", + "address_2": null, + "address_3": null, + "city": "Bethel", + "state_province": "Minnesota", + "postal_code": "55005", + "country": "United States", + "longitude": -93.268872, + "latitude": 45.4040025, + "phone": "7634520270", + "website_url": "http://www.garphish.com", + "state": "Minnesota", + "street": "165 Main St" + }, + { + "id": "5df4cdd5-700d-4a89-a45f-2cbefb41f00d", + "name": "Garr's Beer Co.", + "brewery_type": "proprietor", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Franklin", + "state_province": "Tennessee", + "postal_code": "37067", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6155090009", + "website_url": "http://www.garrs.beer", + "state": "Tennessee", + "street": null + }, + { + "id": "f49e86fa-5466-4ccf-a23d-526a70c59a49", + "name": "Garrison City Beerworks", + "brewery_type": "micro", + "address_1": "455 Central Ave", + "address_2": null, + "address_3": null, + "city": "Dover", + "state_province": "New Hampshire", + "postal_code": "03820-3406", + "country": "United States", + "longitude": -70.87391507, + "latitude": 43.19759761, + "phone": "6033434231", + "website_url": "http://www.GarrisonCityBeerworks.com", + "state": "New Hampshire", + "street": "455 Central Ave" + }, + { + "id": "392471bf-2718-4aa2-a587-39bfa92a848a", + "name": "Garvies Point Brewery", + "brewery_type": "micro", + "address_1": "1 Garvies Point Rd", + "address_2": null, + "address_3": null, + "city": "Glen Cove", + "state_province": "New York", + "postal_code": "11542-2821", + "country": "United States", + "longitude": -73.644083, + "latitude": 40.858979, + "phone": "5168151999", + "website_url": "http://www.garviespointbrewery.com", + "state": "New York", + "street": "1 Garvies Point Rd" + }, + { + "id": "e4ac1f5e-095a-48a6-9d9c-5af5ad082a1a", + "name": "Gary's Olde Towne Tavern", + "brewery_type": "micro", + "address_1": "678 Roosevelt Trl", + "address_2": null, + "address_3": null, + "city": "Naples", + "state_province": "Maine", + "postal_code": "04055-5335", + "country": "United States", + "longitude": -70.601073, + "latitude": 43.969705, + "phone": "2076936806", + "website_url": "http://www.garysoldetownetavern.com", + "state": "Maine", + "street": "678 Roosevelt Trl" + }, + { + "id": "772ac8c1-7012-46d7-bb38-67de73f87f4c", + "name": "Gaslight Brewery and Restaurant", + "brewery_type": "brewpub", + "address_1": "15 S Orange Ave", + "address_2": null, + "address_3": null, + "city": "South Orange", + "state_province": "New Jersey", + "postal_code": "07079-1716", + "country": "United States", + "longitude": -74.25954982, + "latitude": 40.74630918, + "phone": "9737627077", + "website_url": "http://www.gaslightbrewery.com", + "state": "New Jersey", + "street": "15 S Orange Ave" + }, + { + "id": "fc2985d7-f666-4922-bb61-819ddf0c8f88", + "name": "Gassl Bräu", + "brewery_type": "micro", + "address_1": "Via conciatori 18", + "address_2": null, + "address_3": null, + "city": "Chiusa", + "state_province": "Bolzano", + "postal_code": "39043", + "country": "Italy", + "longitude": 46.640560455838, + "latitude": 11.564648173989, + "phone": "+39 0472 523 623", + "website_url": "https://www.gassl-braeu.it/", + "state": "Bolzano", + "street": "Via conciatori 18" + }, + { + "id": "051c41cf-a0a9-4f3a-bf12-84f3b68960be", + "name": "Gate City Brewing Company", + "brewery_type": "micro", + "address_1": "43 Magnolia St", + "address_2": null, + "address_3": null, + "city": "Roswell", + "state_province": "Georgia", + "postal_code": "30075-4289", + "country": "United States", + "longitude": -84.36395307, + "latitude": 34.02293426, + "phone": "6784040961", + "website_url": "http://www.gatecitybrewingco.com", + "state": "Georgia", + "street": "43 Magnolia St" + }, + { + "id": "55e3d17f-fc93-467c-9eea-1e4f4204edf3", + "name": "Gateway Brewing, Inc", + "brewery_type": "micro", + "address_1": "114 NE 133rd Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97230-2528", + "country": "United States", + "longitude": -122.5257352, + "latitude": 45.5239106, + "phone": "5039759103", + "website_url": "http://gatewaybrewingpdx.com", + "state": "Oregon", + "street": "114 NE 133rd Ave" + }, + { + "id": "235fa557-4fbf-4a82-9b8e-a53f1bc35540", + "name": "Gathering Place Brewing Company", + "brewery_type": "micro", + "address_1": "811 E Vienna Ave", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53212-1775", + "country": "United States", + "longitude": -87.90107445, + "latitude": 43.0857359, + "phone": "4143646328", + "website_url": "http://www.gatheringplacebrewing.com", + "state": "Wisconsin", + "street": "811 E Vienna Ave" + }, + { + "id": "a9b2c809-ac4d-4a4e-ab86-23eb70015827", + "name": "Gawler River Brewing Co.", + "brewery_type": "micro", + "address_1": "1029 Dawkins Road", + "address_2": null, + "address_3": null, + "city": "Gawler River", + "state_province": "SA", + "postal_code": "5118", + "country": "Australia", + "longitude": 138.6433491, + "latitude": -34.6121645, + "phone": "+61 478 960 342", + "website_url": null, + "state": "SA", + "street": "1029 Dawkins Road" + }, + { + "id": "2d5a0022-34d3-4822-a97b-7a5b1e5abc79", + "name": "Geaghan Brothers Brewing Co", + "brewery_type": "micro", + "address_1": "34 Abbott St", + "address_2": null, + "address_3": null, + "city": "Brewer", + "state_province": "Maine", + "postal_code": "04412-2202", + "country": "United States", + "longitude": -68.77310776, + "latitude": 44.78208079, + "phone": "2079453730", + "website_url": "http://www.geaghanspub.com", + "state": "Maine", + "street": "34 Abbott St" + }, + { + "id": "776deebd-50ee-41e3-af82-4cbcd95dae6e", + "name": "Geaghan's Pub & Craft Brewery", + "brewery_type": "brewpub", + "address_1": "570 Main St", + "address_2": null, + "address_3": null, + "city": "Bangor", + "state_province": "Maine", + "postal_code": "04401-6821", + "country": "United States", + "longitude": -68.777503, + "latitude": 44.7867295, + "phone": "2079453730", + "website_url": "http://www.geaghanspub.com", + "state": "Maine", + "street": "570 Main St" + }, + { + "id": "367a8808-d91e-424b-9e1c-4c8dc1362b81", + "name": "GearHouse Brewing Company", + "brewery_type": "brewpub", + "address_1": "253 Grant St", + "address_2": null, + "address_3": null, + "city": "Chambersburg", + "state_province": "Pennsylvania", + "postal_code": "17201-1627", + "country": "United States", + "longitude": -77.65674215, + "latitude": 39.9412218, + "phone": "8034226145", + "website_url": "http://www.gearhousebrewingco.com", + "state": "Pennsylvania", + "street": "253 Grant St" + }, + { + "id": "901800b6-36f4-4f84-850b-d8c72c7b60f1", + "name": "Geartooth AleWerks", + "brewery_type": "micro", + "address_1": "1635 S 7th St", + "address_2": null, + "address_3": null, + "city": "San Jose", + "state_province": "California", + "postal_code": "95112-5932", + "country": "United States", + "longitude": -121.8664773, + "latitude": 37.31525129, + "phone": "4084832679", + "website_url": "http://www.geartoothalewerks.com", + "state": "California", + "street": "1635 S 7th St" + }, + { + "id": "f478ca13-2978-4461-9651-3949addc563a", + "name": "Geaux Brewing LLC", + "brewery_type": "brewpub", + "address_1": "3205 C St NE", + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "Washington", + "postal_code": "98002-1725", + "country": "United States", + "longitude": -122.2237209, + "latitude": 47.30767457, + "phone": "2533973939", + "website_url": "http://www.geauxbrewing.com", + "state": "Washington", + "street": "3205 C St NE" + }, + { + "id": "c751cc13-ec8a-4979-bac5-d9af45a62ec1", + "name": "Geist Beerworks", + "brewery_type": "micro", + "address_1": "736 SW Umatilla Ave Suite F", + "address_2": null, + "address_3": null, + "city": "Redmond", + "state_province": "Oregon", + "postal_code": "97756", + "country": "United States", + "longitude": -121.1759123, + "latitude": 44.25116219, + "phone": "5417288663", + "website_url": null, + "state": "Oregon", + "street": "736 SW Umatilla Ave Suite F" + }, + { + "id": "7c88a2c2-0288-40b5-acc5-5a6b6fcb8f1d", + "name": "Gella's Diner & Liquid Bread Brewing Co", + "brewery_type": "brewpub", + "address_1": "117 E 11th St", + "address_2": null, + "address_3": null, + "city": "Hays", + "state_province": "Kansas", + "postal_code": "67601-3603", + "country": "United States", + "longitude": -99.32909033, + "latitude": 38.87174492, + "phone": "7856212739", + "website_url": "http://www.lbbrewing.com", + "state": "Kansas", + "street": "117 E 11th St" + }, + { + "id": "8035e0d7-8059-4d39-a8d1-26d089cdaa0b", + "name": "Gene McCarthy's/Old First Ward Brewing Company", + "brewery_type": "brewpub", + "address_1": "73 Hamburg St", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14204-2719", + "country": "United States", + "longitude": -78.85957723, + "latitude": 42.86654075, + "phone": "7168558948", + "website_url": "http://www.genemccarthys.com", + "state": "New York", + "street": "73 Hamburg St" + }, + { + "id": "924e3e62-5d27-4760-b139-f0c52517daf0", + "name": "Generations Brewing Company", + "brewery_type": "micro", + "address_1": "1400 S Adams Ave", + "address_2": null, + "address_3": null, + "city": "Freeport", + "state_province": "Illinois", + "postal_code": "61032-9717", + "country": "United States", + "longitude": -89.615349, + "latitude": 42.2962963, + "phone": "8156165941", + "website_url": "http://www.generationsbrewing.com", + "state": "Illinois", + "street": "1400 S Adams Ave" + }, + { + "id": "9149bbe2-4b97-4b20-b685-357f19ce54ba", + "name": "Genesee Brew House / North American Breweries", + "brewery_type": "brewpub", + "address_1": "25 Cataract St", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "New York", + "postal_code": "14605", + "country": "United States", + "longitude": -77.6147783, + "latitude": 43.163584, + "phone": "5852639200", + "website_url": "http://www.geneseebeer.com", + "state": "New York", + "street": "25 Cataract St" + }, + { + "id": "6cca67cf-a3a6-4f43-8da5-7bcd73e4ce67", + "name": "Geneseo Brewing Company", + "brewery_type": "brewpub", + "address_1": "102 S State St", + "address_2": null, + "address_3": null, + "city": "Geneseo", + "state_province": "Illinois", + "postal_code": "61254-1348", + "country": "United States", + "longitude": -90.15561, + "latitude": 41.45203206, + "phone": "3099451422", + "website_url": "http://www.geneseobrewingcompany.com", + "state": "Illinois", + "street": "102 S State St" + }, + { + "id": "75519fe1-b769-48c8-84f1-28abb719e7d0", + "name": "Geneva Lake Brewing Co", + "brewery_type": "micro", + "address_1": "750 Veterans Pkwy Unit 107", + "address_2": null, + "address_3": null, + "city": "Lake Geneva", + "state_province": "Wisconsin", + "postal_code": "53147-4950", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2622154955", + "website_url": "http://www.genevalakebrewingcompany.com", + "state": "Wisconsin", + "street": "750 Veterans Pkwy Unit 107" + }, + { + "id": "930f5822-bf77-4379-991e-a78d606b6a41", + "name": "Gentile Brewing Company", + "brewery_type": "micro", + "address_1": "59 Park St # 1", + "address_2": null, + "address_3": null, + "city": "Beverly", + "state_province": "Massachusetts", + "postal_code": "01915-4253", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9789696496", + "website_url": "http://www.gentilebrewing.com", + "state": "Massachusetts", + "street": "59 Park St # 1" + }, + { + "id": "318ed09d-c28b-418a-9291-58eb420c10c7", + "name": "Gentle Giant Brewing Company", + "brewery_type": "micro", + "address_1": "7 N Main St", + "address_2": null, + "address_3": null, + "city": "Pearl River", + "state_province": "New York", + "postal_code": "10965-2318", + "country": "United States", + "longitude": -74.02171299, + "latitude": 41.05938885, + "phone": null, + "website_url": "http://gentlegiantbrewing.com/", + "state": "New York", + "street": "7 N Main St" + }, + { + "id": "396384cf-1d53-4020-994f-4ce801a9910b", + "name": "Genus Brewing and Supply", + "brewery_type": "micro", + "address_1": "17018 E Sprague Ave", + "address_2": null, + "address_3": null, + "city": "Spokane Valley", + "state_province": "Washington", + "postal_code": "99216-2171", + "country": "United States", + "longitude": -117.1754302, + "latitude": 47.65718663, + "phone": "5098082395", + "website_url": "https://www.genusbrewing.com", + "state": "Washington", + "street": "17018 E Sprague Ave" + }, + { + "id": "6df5e59d-5473-4a83-a577-c5bcb385c045", + "name": "George Ringler & Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Danville", + "state_province": "Indiana", + "postal_code": "46122-1623", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3176268353", + "website_url": null, + "state": "Indiana", + "street": null + }, + { + "id": "34ee7dba-496b-42ca-bf2a-ff24f89ae3eb", + "name": "Georgetown Brewing Co", + "brewery_type": "regional", + "address_1": "5200 Denver Ave S", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98108-2246", + "country": "United States", + "longitude": -122.3256809, + "latitude": 47.5552618, + "phone": "2067668055", + "website_url": "http://www.georgetownbeer.com", + "state": "Washington", + "street": "5200 Denver Ave S" + }, + { + "id": "509592b2-00bc-4210-b57d-35fcd2447e53", + "name": "Georgia Beer Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Valdosta", + "state_province": "Georgia", + "postal_code": "31601-9017", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9123995883", + "website_url": "http://www.georgiabeerco.com", + "state": "Georgia", + "street": null + }, + { + "id": "aada6ced-9b6b-42ea-8de5-86957754813c", + "name": "Geronimo Brewing Inc", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Doylestown", + "state_province": "Pennsylvania", + "postal_code": "18901", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.geronimobrewing.com", + "state": "Pennsylvania", + "street": null + }, + { + "id": "589a5420-aaa2-4cca-a8c5-feb60bdfb862", + "name": "Gezzelig Brewing Company", + "brewery_type": "brewpub", + "address_1": "403 W 4th St Ste 103", + "address_2": null, + "address_3": null, + "city": "Newton", + "state_province": "Iowa", + "postal_code": "50208-3019", + "country": "United States", + "longitude": -93.058182, + "latitude": 41.7022754, + "phone": "6417929218", + "website_url": "https://www.gezelligbrewing.com", + "state": "Iowa", + "street": "403 W 4th St Ste 103" + }, + { + "id": "50af38eb-7473-4c40-a365-3deadd41da42", + "name": "Ghost Harbor Brewing Company", + "brewery_type": "micro", + "address_1": "606 B E Colonial Ave", + "address_2": null, + "address_3": null, + "city": "Elizabeth City", + "state_province": "North Carolina", + "postal_code": "27909", + "country": "United States", + "longitude": -76.21879622, + "latitude": 36.30042229, + "phone": "2525991030", + "website_url": "http://www.ghostharborbrewing.com", + "state": "North Carolina", + "street": "606 B E Colonial Ave" + }, + { + "id": "537b5242-7341-43e4-bab7-5a31b4b2ee23", + "name": "Ghost Isle Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "New Buffalo", + "state_province": "Michigan", + "postal_code": "49117", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2195611219", + "website_url": null, + "state": "Michigan", + "street": null + }, + { + "id": "90a85b54-55ca-4fa8-b9cc-70560e715dbf", + "name": "Ghost Monkey Brewery", + "brewery_type": "micro", + "address_1": "522 Wando Ln", + "address_2": null, + "address_3": null, + "city": "Mount Pleasant", + "state_province": "South Carolina", + "postal_code": "29464-8211", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "South Carolina", + "street": "522 Wando Ln" + }, + { + "id": "b0847fe6-cf6a-4fd5-ad56-d5dae59b07a8", + "name": "Ghost River Brewing", + "brewery_type": "micro", + "address_1": "827 S Main St", + "address_2": null, + "address_3": null, + "city": "Memphis", + "state_province": "Tennessee", + "postal_code": "38106-2063", + "country": "United States", + "longitude": -90.059285, + "latitude": 35.125851, + "phone": "9016614976", + "website_url": "http://www.ghostriverbrewing.com", + "state": "Tennessee", + "street": "827 S Main St" + }, + { + "id": "fc2b7dc0-a96f-46c8-a23d-9395d4b48aee", + "name": "Ghost Runners Brewery", + "brewery_type": "micro", + "address_1": "4216 NE Minnehaha St # 108", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98661-1244", + "country": "United States", + "longitude": -122.639599, + "latitude": 45.6678127, + "phone": "3609893912", + "website_url": "https://ghostrunnersbrewery.com", + "state": "Washington", + "street": "4216 NE Minnehaha St # 108" + }, + { + "id": "d877471e-4ad3-4317-aaa8-b6c86cdeec58", + "name": "Ghost Town Brewing", + "brewery_type": "micro", + "address_1": "1960 Adeline St", + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94607-2300", + "country": "United States", + "longitude": -122.2844396, + "latitude": 37.81391748, + "phone": "5109266728", + "website_url": "http://www.ghosttownbrewing.com", + "state": "California", + "street": "1960 Adeline St" + }, + { + "id": "bc569d24-491c-424d-a0ca-f1f01e6a5b94", + "name": "Ghost Train Brewing Co", + "brewery_type": "micro", + "address_1": "2616 3rd Ave S", + "address_2": null, + "address_3": null, + "city": "Birmingham", + "state_province": "Alabama", + "postal_code": "35233-2619", + "country": "United States", + "longitude": -86.79406151, + "latitude": 33.51415935, + "phone": "2053702487", + "website_url": "http://www.ghosttrainbrewing.com", + "state": "Alabama", + "street": "2616 3rd Ave S" + }, + { + "id": "1516418f-29e7-42bc-9759-6697ce515c49", + "name": "Ghostface Brewing Company", + "brewery_type": "brewpub", + "address_1": "427 E Statesville Ave Ste 100", + "address_2": null, + "address_3": null, + "city": "Mooresville", + "state_province": "North Carolina", + "postal_code": "28115-2595", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7047997433", + "website_url": "http://www.ghostfacebrewing.com", + "state": "North Carolina", + "street": "427 E Statesville Ave Ste 100" + }, + { + "id": "59929344-4ce7-4499-ba98-db6bbe6bfca0", + "name": "Ghostfish Brewing Company", + "brewery_type": "micro", + "address_1": "2942 1st Ave S", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98134-1820", + "country": "United States", + "longitude": -122.3338908, + "latitude": 47.5763508, + "phone": "2532494650", + "website_url": "http://www.ghostfishbrewing.com", + "state": "Washington", + "street": "2942 1st Ave S" + }, + { + "id": "9d2c5b71-2dab-4acb-90f0-671fccc5c0f0", + "name": "Giant Jones Brewing LLC", + "brewery_type": "micro", + "address_1": "931 E Main St Suite 9", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Wisconsin", + "postal_code": "53703", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6086205172", + "website_url": "http://Www.giantjones.com", + "state": "Wisconsin", + "street": "931 E Main St Suite 9" + }, + { + "id": "e3f9214c-88cf-470f-81ef-8531d23a69fe", + "name": "Gibb's Hundred Brewing Company", + "brewery_type": "micro", + "address_1": "504 State St", + "address_2": null, + "address_3": null, + "city": "Greensboro", + "state_province": "North Carolina", + "postal_code": "27405", + "country": "United States", + "longitude": -79.783217, + "latitude": 36.101006, + "phone": "3367637087", + "website_url": "http://www.gibbshundred.com", + "state": "North Carolina", + "street": "504 State St" + }, + { + "id": "8b812476-b04a-47c3-b4b5-2e83393dac30", + "name": "Gideon's Brewing Company", + "brewery_type": "micro", + "address_1": "107 N 5th St", + "address_2": null, + "address_3": null, + "city": "Bismarck", + "state_province": "North Dakota", + "postal_code": "58501-4026", + "country": "United States", + "longitude": -100.7844514, + "latitude": 46.80607237, + "phone": "7017511044", + "website_url": "http://gideonsbrewing.com", + "state": "North Dakota", + "street": "107 N 5th St" + }, + { + "id": "66c64272-72a3-4e8c-96af-2471a32dd812", + "name": "Giesenbräu Bier Co LLC", + "brewery_type": "micro", + "address_1": "1306 1st St NE", + "address_2": null, + "address_3": null, + "city": "New Prague", + "state_province": "Minnesota", + "postal_code": "56071-2451", + "country": "United States", + "longitude": -93.5756181, + "latitude": 44.5447992, + "phone": "9527584226", + "website_url": "http://www.giesenbraubierco.com", + "state": "Minnesota", + "street": "1306 1st St NE" + }, + { + "id": "ee356525-7374-4203-97ee-767fbcef6cc2", + "name": "Gig Harbor Brewing", + "brewery_type": "micro", + "address_1": "3120 South Tacoma Way", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98409-4717", + "country": "United States", + "longitude": -122.4772721, + "latitude": 47.22805896, + "phone": "2538304653", + "website_url": "http://www.gigharborbrewing.com", + "state": "Washington", + "street": "3120 South Tacoma Way" + }, + { + "id": "fa51e915-17bb-4a59-b32c-2ccbf025ebe3", + "name": "Gigantic Brewing Co", + "brewery_type": "micro", + "address_1": "5224 SE 26th Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97202-4627", + "country": "United States", + "longitude": -122.6392092, + "latitude": 45.48500105, + "phone": "5032083416", + "website_url": "http://www.giganticbrewing.com", + "state": "Oregon", + "street": "5224 SE 26th Ave" + }, + { + "id": "9a1e91cf-70a9-4262-99ba-d3fdca9ba42d", + "name": "GILD BREWING", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Missoula", + "state_province": "Montana", + "postal_code": "59801-2734", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Montana", + "street": null + }, + { + "id": "311072a3-c9ed-4df1-8efa-896888547e86", + "name": "Gilded Goat Brewing Company", + "brewery_type": "micro", + "address_1": "3500 S College Ave Ste 194", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80525-2639", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9708257192", + "website_url": "http://www.gildedgoatbrewing.com", + "state": "Colorado", + "street": "3500 S College Ave Ste 194" + }, + { + "id": "81420933-352b-4dca-8f90-665aa5d5a131", + "name": "Gilded Otter Brewing Co", + "brewery_type": "brewpub", + "address_1": "3 Main St", + "address_2": null, + "address_3": null, + "city": "New Paltz", + "state_province": "New York", + "postal_code": "12561-1742", + "country": "United States", + "longitude": -74.08958631, + "latitude": 41.7469771, + "phone": "8452561700", + "website_url": "http://www.gildedotter.com", + "state": "New York", + "street": "3 Main St" + }, + { + "id": "8e28ee7d-4671-474f-b967-67319470a2af", + "name": "Gilgamesh Brewing Co", + "brewery_type": "micro", + "address_1": "2065 Madrona Ave SE", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "Oregon", + "postal_code": "97302-1010", + "country": "United States", + "longitude": -123.0191178, + "latitude": 44.90504576, + "phone": "9702014409", + "website_url": "http://gilgameshbrewing.com", + "state": "Oregon", + "street": "2065 Madrona Ave SE" + }, + { + "id": "1b089764-3735-43f2-98a8-547b88e4a487", + "name": "Gillette Brewing Company", + "brewery_type": "closed", + "address_1": "301 S Gillette Ave", + "address_2": null, + "address_3": null, + "city": "Gillette", + "state_province": "Wyoming", + "postal_code": "82716-3705", + "country": "United States", + "longitude": -105.5036145, + "latitude": 44.29203825, + "phone": "3076708948", + "website_url": "http://www.gillettebrewingcompany.com", + "state": "Wyoming", + "street": "301 S Gillette Ave" + }, + { + "id": "4ace443f-a4fb-47ec-89f5-5d75138420f7", + "name": "Gilman Brewing Company", + "brewery_type": "micro", + "address_1": "912 Gilman St", + "address_2": null, + "address_3": null, + "city": "Berkeley", + "state_province": "California", + "postal_code": "94710-1424", + "country": "United States", + "longitude": -122.2998747, + "latitude": 37.879466, + "phone": null, + "website_url": "http://www.gilmanbrew.com", + "state": "California", + "street": "912 Gilman St" + }, + { + "id": "f5164be2-edb7-4103-b44a-a0d56f68e7a6", + "name": "Gilroy’s Brewery", + "brewery_type": "brewpub", + "address_1": "R114 & N14", + "address_2": " Nietgedacht", + "address_3": null, + "city": "Muldersdrift", + "state_province": "Gauteng", + "postal_code": "1747", + "country": "South Africa", + "longitude": 27.9102, + "latitude": -26.0142, + "phone": "+27 11 796 3020", + "website_url": "https://www.gilroybeers.co.za/", + "state": "Gauteng", + "street": "R114 & N14" + }, + { + "id": "c0299ec0-af83-4a32-8c75-6d51d9c6956e", + "name": "Gino's Brewing Company", + "brewery_type": "brewpub", + "address_1": "500 N La Salle Dr", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60654-7109", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3129884200", + "website_url": null, + "state": "Illinois", + "street": "500 N La Salle Dr" + }, + { + "id": "4c0a2216-b456-49fa-821e-2fec06c653d2", + "name": "Girdwood Brewing Company", + "brewery_type": "micro", + "address_1": "2700 Alyeska Highway", + "address_2": null, + "address_3": null, + "city": "Girdwood", + "state_province": "Alaska", + "postal_code": "99587-0058", + "country": "United States", + "longitude": -149.1540907, + "latitude": 60.9578421, + "phone": "907783", + "website_url": "http://www.girdwoodbrewing.com", + "state": "Alaska", + "street": "2700 Alyeska Highway" + }, + { + "id": "11db5351-443e-469e-a2ee-705d8449dd37", + "name": "Gizmo Brew Works", + "brewery_type": "micro", + "address_1": "5907 Triangle Dr", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27617-4742", + "country": "United States", + "longitude": -78.74513578, + "latitude": 35.89611719, + "phone": "9197822099", + "website_url": "http://www.gizmobrewworks.com", + "state": "North Carolina", + "street": "5907 Triangle Dr" + }, + { + "id": "39590a48-9284-4b47-93a5-2c8d9bca2484", + "name": "Glacier Brewhouse", + "brewery_type": "brewpub", + "address_1": "737 W 5th Ave Ste 110", + "address_2": null, + "address_3": null, + "city": "Anchorage", + "state_province": "Alaska", + "postal_code": "99501-2129", + "country": "United States", + "longitude": -149.896703, + "latitude": 61.218047, + "phone": "9072742739", + "website_url": "http://www.glacierbrewhouse.com", + "state": "Alaska", + "street": "737 W 5th Ave Ste 110" + }, + { + "id": "843c6645-01fc-4203-af72-efdde75c572d", + "name": "Glacier Brewing Co", + "brewery_type": "micro", + "address_1": "6 10th Ave E", + "address_2": null, + "address_3": null, + "city": "Polson", + "state_province": "Montana", + "postal_code": "59860-3219", + "country": "United States", + "longitude": -114.1627735, + "latitude": 47.6862114, + "phone": "4068832595", + "website_url": "http://www.glacierbrewing.com", + "state": "Montana", + "street": "6 10th Ave E" + }, + { + "id": "44ed4be7-68d3-4f49-a8b0-5deca09e43fe", + "name": "Gladiator Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Clarksville", + "state_province": "Tennessee", + "postal_code": "37040", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9137497035", + "website_url": null, + "state": "Tennessee", + "street": null + }, + { + "id": "5b22de55-7a06-4584-9424-a838f1b8481b", + "name": "Glass Creek Winery", + "brewery_type": "micro", + "address_1": "450 N Whitmore Rd", + "address_2": null, + "address_3": null, + "city": "Hastings", + "state_province": "Michigan", + "postal_code": "49058-9791", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2699482752", + "website_url": "http://www.glasscreekwinery.com", + "state": "Michigan", + "street": "450 N Whitmore Rd" + }, + { + "id": "ef6b4f99-e211-45fe-a6ae-fd11533dfc7a", + "name": "Glass House Brewery", + "brewery_type": "micro", + "address_1": "330 Mons Road", + "address_2": "12", + "address_3": null, + "city": "Forest Glen", + "state_province": "QLD", + "postal_code": "4556", + "country": "Australia", + "longitude": 153.0059178, + "latitude": -26.6885088, + "phone": null, + "website_url": "http://www.glasshousebrewery.com.au/", + "state": "QLD", + "street": "330 Mons Road" + }, + { + "id": "69abf157-f2fb-43e2-ae69-38ca4ff87d9c", + "name": "Glasstown Brewing", + "brewery_type": "micro", + "address_1": "10 Peterson St", + "address_2": null, + "address_3": null, + "city": "Millville", + "state_province": "New Jersey", + "postal_code": "08332-4818", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8563277770", + "website_url": "http://www.glasstownbrewery.com", + "state": "New Jersey", + "street": "10 Peterson St" + }, + { + "id": "a4e28559-81cb-4485-b923-c3f56b7fe24e", + "name": "Glen Luss Craft Brewery & Distillery", + "brewery_type": "micro", + "address_1": "Church Road", + "address_2": "Luss", + "address_3": null, + "city": "Alexandria", + "state_province": "West Dunbartonshire", + "postal_code": "G83 8NZ", + "country": "Scotland", + "longitude": -4.637915, + "latitude": 56.101269, + "phone": "7913413699", + "website_url": "https://glenluss.co.uk/", + "state": "West Dunbartonshire", + "street": "Church Road" + }, + { + "id": "eab9ccc1-7858-43aa-b808-37a9484be013", + "name": "Glenmere Brewing Co, Inc", + "brewery_type": "micro", + "address_1": "55 Maple Ave", + "address_2": null, + "address_3": null, + "city": "Florida", + "state_province": "New York", + "postal_code": "10921-1124", + "country": "United States", + "longitude": -74.360033, + "latitude": 41.335404, + "phone": "8456511939", + "website_url": "http://www.glenmerebrewingco.com", + "state": "New York", + "street": "55 Maple Ave" + }, + { + "id": "b7946db8-7313-4d80-a9a9-8b41971f49d0", + "name": "Glenwood Canyon Brewing Co", + "brewery_type": "brewpub", + "address_1": "402 7th St", + "address_2": null, + "address_3": null, + "city": "Glenwood Springs", + "state_province": "Colorado", + "postal_code": "81601-3406", + "country": "United States", + "longitude": -107.323424, + "latitude": 39.5476563, + "phone": "9709451276", + "website_url": "http://www.glenwoodcanyon.com", + "state": "Colorado", + "street": "402 7th St" + }, + { + "id": "f7e064d7-a23d-4078-85a4-5407d2ce4909", + "name": "Globier", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92117-1604", + "country": "United States", + "longitude": -117.1627714, + "latitude": 32.7174209, + "phone": "7757623818", + "website_url": "http://www.drinkglobier.com", + "state": "California", + "street": null + }, + { + "id": "f84b8f31-6675-40c6-bb28-3ed87861ae7e", + "name": "Gloucester Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Gloucester", + "state_province": "Virginia", + "postal_code": "23061", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Virginia", + "street": null + }, + { + "id": "748e5fbd-c51a-4dfb-8862-089ac305832b", + "name": "Glover Park Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Marietta", + "state_province": "Georgia", + "postal_code": "30060", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Georgia", + "street": null + }, + { + "id": "14c9d060-b540-4055-8182-a9e02ab70452", + "name": "Gnarly Barley Brewing", + "brewery_type": "micro", + "address_1": "1709 Corbin Rd", + "address_2": null, + "address_3": null, + "city": "Hammond", + "state_province": "Louisiana", + "postal_code": "70403-3719", + "country": "United States", + "longitude": -90.47912007, + "latitude": 30.49701825, + "phone": "9853180723", + "website_url": "http://www.gnarlybeer.com", + "state": "Louisiana", + "street": "1709 Corbin Rd" + }, + { + "id": "c025c15a-c757-402d-adf2-331a35f3721a", + "name": "Gnarly Cedar Brewing", + "brewery_type": "nano", + "address_1": "6381 Hwy 57", + "address_2": null, + "address_3": null, + "city": "Greenleaf", + "state_province": "Wisconsin", + "postal_code": "54126", + "country": "United States", + "longitude": -88.0909977, + "latitude": 44.3341752, + "phone": "9205324384", + "website_url": "https://www.ledgestonevineyards.xyz/gnarly-cedar-brewing/", + "state": "Wisconsin", + "street": "6381 Hwy 57" + }, + { + "id": "4334a92c-8d08-42b0-86b0-b5e73b282253", + "name": "Gneiss Brewing", + "brewery_type": "micro", + "address_1": "94 Patterson Rd", + "address_2": null, + "address_3": null, + "city": "Limerick", + "state_province": "Maine", + "postal_code": "04048-4242", + "country": "United States", + "longitude": -70.81799747, + "latitude": 43.64831306, + "phone": "2077930046", + "website_url": "http://www.gneissbeer.com", + "state": "Maine", + "street": "94 Patterson Rd" + }, + { + "id": "d0b10e4c-895c-4af9-9d07-b3de6d4d882a", + "name": "GnomeTown Brewing Co", + "brewery_type": "brewpub", + "address_1": "203 E Berry St Ste 104", + "address_2": null, + "address_3": null, + "city": "Fort Wayne", + "state_province": "Indiana", + "postal_code": "46802", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2604220070", + "website_url": "http://www.gnometownbrewing.com", + "state": "Indiana", + "street": "203 E Berry St Ste 104" + }, + { + "id": "553e835b-4c41-4d59-954d-25f773afcf80", + "name": "Goat Creek Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Northampton", + "state_province": "Massachusetts", + "postal_code": "01062-1326", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Massachusetts", + "street": null + }, + { + "id": "7ab0e9c9-ffb3-44e1-91fb-99dc7fd4959d", + "name": "Goat Island Brewing", + "brewery_type": "micro", + "address_1": "1646 A John H Cooper Drive", + "address_2": null, + "address_3": null, + "city": "Cullman", + "state_province": "Alabama", + "postal_code": "35055", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2565909081", + "website_url": "http://www.goatislandbrewing.com", + "state": "Alabama", + "street": "1646 A John H Cooper Drive" + }, + { + "id": "4a3268b5-c896-462f-9567-57a490d77f22", + "name": "Goat Lips Chew and Brewhouse / Redneck Riviera Brewing", + "brewery_type": "brewpub", + "address_1": "2811 Copter Rd", + "address_2": null, + "address_3": null, + "city": "Pensacola", + "state_province": "Florida", + "postal_code": "32514-7606", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8504741919", + "website_url": "http://www.goatlips.com", + "state": "Florida", + "street": "2811 Copter Rd" + }, + { + "id": "277c5afe-ab6b-41d9-9200-fafcbf1729e0", + "name": "Goat Patch Brewing Co.", + "brewery_type": "micro", + "address_1": "2727 N Cascade Ave Ste 123", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80907-6288", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7194714628", + "website_url": "http://www.goatpatchbrewing.com", + "state": "Colorado", + "street": "2727 N Cascade Ave Ste 123" + }, + { + "id": "4626a269-2893-4805-9b88-27152e8a6fab", + "name": "Goat Ridge Brewing", + "brewery_type": "micro", + "address_1": "17 Central Ave W", + "address_2": null, + "address_3": null, + "city": "New London", + "state_province": "Minnesota", + "postal_code": "56273-", + "country": "United States", + "longitude": -94.94412651, + "latitude": 45.30119537, + "phone": "3203542383", + "website_url": "http://www.goatridgebrewing.com", + "state": "Minnesota", + "street": "17 Central Ave W" + }, + { + "id": "95872557-1936-47c2-b57c-630e4f1a4466", + "name": "GoatHouse Brewing Co", + "brewery_type": "micro", + "address_1": "600 Wise Rd", + "address_2": null, + "address_3": null, + "city": "Lincoln", + "state_province": "California", + "postal_code": "95648-8518", + "country": "United States", + "longitude": -121.2686181, + "latitude": 38.92452521, + "phone": "9167409100", + "website_url": "http://www.goathousebrewing.com", + "state": "California", + "street": "600 Wise Rd" + }, + { + "id": "ae816087-1f84-4ea5-aa7f-630e6bacb87d", + "name": "Gold Camp Brewing Co", + "brewery_type": "micro", + "address_1": "1007 S Tejon St", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80903-4238", + "country": "United States", + "longitude": -104.823552, + "latitude": 38.8195724, + "phone": "7196950344", + "website_url": null, + "state": "Colorado", + "street": "1007 S Tejon St" + }, + { + "id": "503bccde-e659-431a-9797-c855f31a61bc", + "name": "Gold Hill Brewery", + "brewery_type": "micro", + "address_1": "5660 Vineyard Ln", + "address_2": null, + "address_3": null, + "city": "Placerville", + "state_province": "California", + "postal_code": "95667-9330", + "country": "United States", + "longitude": -120.8889631, + "latitude": 38.78402952, + "phone": "5306266522", + "website_url": "http://www.goldhillvineyard.com", + "state": "California", + "street": "5660 Vineyard Ln" + }, + { + "id": "827402bd-02f7-4a94-ae11-fd3b0f7534e5", + "name": "Golden Avalanche Brewing Co", + "brewery_type": "brewpub", + "address_1": "272 W Main St", + "address_2": null, + "address_3": null, + "city": "Kutztown", + "state_province": "Pennsylvania", + "postal_code": "19530-1604", + "country": "United States", + "longitude": -75.7780207, + "latitude": 40.5164127, + "phone": "6106839600", + "website_url": "http://www.kutztowntavern.com/GoldenAvalancheBrewery", + "state": "Pennsylvania", + "street": "272 W Main St" + }, + { + "id": "4c87f178-be2b-4bda-91c0-f70da145716a", + "name": "Golden Block Brewery", + "brewery_type": "brewpub", + "address_1": "1227 Greene St", + "address_2": null, + "address_3": null, + "city": "Silverton", + "state_province": "Colorado", + "postal_code": "81433", + "country": "United States", + "longitude": -107.6642307, + "latitude": 37.81194434, + "phone": "9703875962", + "website_url": "http://www.goldenblockbrewery.com", + "state": "Colorado", + "street": "1227 Greene St" + }, + { + "id": "0336591f-e7d4-4d3d-b523-eda9bb5e5ec3", + "name": "Golden City Brewery", + "brewery_type": "brewpub", + "address_1": "920 1/2 12th St", + "address_2": null, + "address_3": null, + "city": "Golden", + "state_province": "Colorado", + "postal_code": "80401-1181", + "country": "United States", + "longitude": -105.2227813, + "latitude": 39.75471167, + "phone": "3032798092", + "website_url": null, + "state": "Colorado", + "street": "920 1/2 12th St" + }, + { + "id": "c95ca449-14d0-4188-8f74-8540a64305bf", + "name": "Golden Fox Brewing, LLC", + "brewery_type": "micro", + "address_1": "523 W Matilda St", + "address_2": null, + "address_3": null, + "city": "Illiopolis", + "state_province": "Illinois", + "postal_code": "62539-3607", + "country": "United States", + "longitude": -89.25359479, + "latitude": 39.850216, + "phone": null, + "website_url": "http://www.GoldenFoxBrew.com", + "state": "Illinois", + "street": "523 W Matilda St" + }, + { + "id": "045fb2d4-698c-4d1a-a8ca-ecf225871dd3", + "name": "Golden Handle Project", + "brewery_type": "micro", + "address_1": "111 S Cedar St", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99201", + "country": "United States", + "longitude": -117.4326605, + "latitude": 47.65656661, + "phone": "5098680264", + "website_url": "https://www.goldenhandle.org", + "state": "Washington", + "street": "111 S Cedar St" + }, + { + "id": "745d91d0-9ae1-47d4-a2e1-92cbefe1bed2", + "name": "Golden Road Brewing", + "brewery_type": "large", + "address_1": "2210 E Orangewood Ave", + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92806", + "country": "United States", + "longitude": -117.885189, + "latitude": 33.79565792, + "phone": "7149124015", + "website_url": null, + "state": "California", + "street": "2210 E Orangewood Ave" + }, + { + "id": "cbf3abb3-0bea-4d9c-ae71-d6e0022c49ce", + "name": "Golden Road Brewing", + "brewery_type": "large", + "address_1": "5430 W San Fernando Rd", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90039-1015", + "country": "United States", + "longitude": -118.2744781, + "latitude": 34.15049571, + "phone": "2135426039", + "website_url": "http://www.goldenroad.la", + "state": "California", + "street": "5430 W San Fernando Rd" + }, + { + "id": "a92d1f36-efdc-49eb-bde8-a2435cb4ab08", + "name": "Golden Road Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95811", + "country": "United States", + "longitude": -121.4943996, + "latitude": 38.5815719, + "phone": "9163829445", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "647b33a1-30ea-457c-99bf-77c402b48293", + "name": "Golden State Brew and Grill", + "brewery_type": "brewpub", + "address_1": "7560 Monterey Rd Ste 100", + "address_2": null, + "address_3": null, + "city": "Gilroy", + "state_province": "California", + "postal_code": "95020", + "country": "United States", + "longitude": -121.5695839, + "latitude": 37.0088398, + "phone": "4088467070", + "website_url": null, + "state": "California", + "street": "7560 Monterey Rd Ste 100" + }, + { + "id": "4e6a4f7f-2527-4511-8231-03f80b1d74b8", + "name": "Golden State Brewery", + "brewery_type": "micro", + "address_1": "1252 Memorex Dr", + "address_2": null, + "address_3": null, + "city": "Santa Clara", + "state_province": "California", + "postal_code": "95050-2812", + "country": "United States", + "longitude": -121.9503168, + "latitude": 37.36253839, + "phone": "4087272337", + "website_url": "http://www.goldenstate.beer", + "state": "California", + "street": "1252 Memorex Dr" + }, + { + "id": "474774f5-f9dc-42eb-9487-4bdf5a9533bf", + "name": "Golden Valley Brewery and Pub", + "brewery_type": "brewpub", + "address_1": "980 NE 4th St", + "address_2": null, + "address_3": null, + "city": "McMinnville", + "state_province": "Oregon", + "postal_code": "97128-4308", + "country": "United States", + "longitude": -123.1894925, + "latitude": 45.21065713, + "phone": null, + "website_url": null, + "state": "Oregon", + "street": "980 NE 4th St" + }, + { + "id": "113ef241-1d07-45a6-a9e5-7a528f441063", + "name": "Goldhorn Brewery", + "brewery_type": "brewpub", + "address_1": "1361 E 55th St", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44103-1301", + "country": "United States", + "longitude": -81.6516143, + "latitude": 41.5214479, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": "1361 E 55th St" + }, + { + "id": "f75b8bf1-6fc4-467b-ba8e-cdb09b515042", + "name": "Goldmark Craft Beers LTd", + "brewery_type": "taproom", + "address_1": "The Vinery", + "address_2": null, + "address_3": null, + "city": "Arundel", + "state_province": "West Sussex", + "postal_code": "BN18 9PY", + "country": "England", + "longitude": -0.507102, + "latitude": 50.84058, + "phone": "1903297838", + "website_url": "https://goldmarkbeers.co.uk/?v=79cba1185463", + "state": "West Sussex", + "street": "The Vinery" + }, + { + "id": "5667d9d2-8053-4a56-a246-2c5845ca4c74", + "name": "Goldspot Brewing Co", + "brewery_type": "micro", + "address_1": "4970 Lowell Blvd", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80221-1028", + "country": "United States", + "longitude": -105.0343545, + "latitude": 39.7868924, + "phone": "3039555657", + "website_url": "http://www.goldspotbrewing.com", + "state": "Colorado", + "street": "4970 Lowell Blvd" + }, + { + "id": "1a2ef664-c118-4079-9513-9f374aef67cd", + "name": "Goldwater Brewing Co", + "brewery_type": "micro", + "address_1": "3608 N Scottsdale Rd", + "address_2": null, + "address_3": null, + "city": "Scottsdale", + "state_province": "Arizona", + "postal_code": "85251-5612", + "country": "United States", + "longitude": -111.9254955, + "latitude": 33.658427, + "phone": "4803507305", + "website_url": "http://www.goldwaterbrewing.com", + "state": "Arizona", + "street": "3608 N Scottsdale Rd" + }, + { + "id": "b3128b43-31c0-420c-b2c0-5638c97aea95", + "name": "Golgatha Biergarten", + "brewery_type": "beergarden", + "address_1": "Katzbachstraße & Monumentenstraße", + "address_2": null, + "address_3": null, + "city": "Berlin", + "state_province": "Berlin", + "postal_code": "10965", + "country": "Germany", + "longitude": 52.4868139, + "latitude": 13.3791632, + "phone": null, + "website_url": "http://www.golgatha-berlin.de/", + "state": "Berlin", + "street": "Katzbachstraße & Monumentenstraße" + }, + { + "id": "87b3024f-7071-4399-ace2-a0a6713271f4", + "name": "Goliad Brewing Company", + "brewery_type": "micro", + "address_1": "252 Metting Rd", + "address_2": null, + "address_3": null, + "city": "Goliad", + "state_province": "Texas", + "postal_code": "77963-3966", + "country": "United States", + "longitude": -97.39806345, + "latitude": 28.69079583, + "phone": "2817827860", + "website_url": "http://www.goliadbrewing.com", + "state": "Texas", + "street": "252 Metting Rd" + }, + { + "id": "4c381866-9fca-4612-91e9-bb8294374386", + "name": "Gonzo's BigDogg Brewery", + "brewery_type": "brewpub", + "address_1": "140 S Westnedge Ave", + "address_2": null, + "address_3": null, + "city": "Kalamazoo", + "state_province": "Michigan", + "postal_code": "49007-4600", + "country": "United States", + "longitude": -85.59008261, + "latitude": 42.2908852, + "phone": "2693822739", + "website_url": "http://www.gonzosbiggdoggbrewing.com", + "state": "Michigan", + "street": "140 S Westnedge Ave" + }, + { + "id": "67640d3f-1f88-4f7e-b603-4c52cac5aa1b", + "name": "Good Bad Ugly Brewing Co. @ Tavern+Bowl Westgate", + "brewery_type": "brewpub", + "address_1": "6770 N Sunrise Blvd Ste G100", + "address_2": null, + "address_3": null, + "city": "Glendale", + "state_province": "Arizona", + "postal_code": "85305-3224", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9282088376", + "website_url": "http://www.tavernbowlwestgate.com", + "state": "Arizona", + "street": "6770 N Sunrise Blvd Ste G100" + }, + { + "id": "4fc2ac9a-57df-4cf2-80c6-ba63dd3d8340", + "name": "Good Brewing Company", + "brewery_type": "micro", + "address_1": "16104 125th Pl NE", + "address_2": null, + "address_3": null, + "city": "Woodinville", + "state_province": "Washington", + "postal_code": "98072-7983", + "country": "United States", + "longitude": -122.1717877, + "latitude": 47.74469959, + "phone": "4252473245", + "website_url": "http://www.globalbeercompany.com", + "state": "Washington", + "street": "16104 125th Pl NE" + }, + { + "id": "a20eb612-f3de-4e44-aef5-5a8d0c3548c6", + "name": "Good City Brewing Company", + "brewery_type": "brewpub", + "address_1": "2108 N Farwell Ave", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53202-1115", + "country": "United States", + "longitude": -87.8889038, + "latitude": 43.0565468, + "phone": "4145394173", + "website_url": "http://www.goodcitybrewing.com", + "state": "Wisconsin", + "street": "2108 N Farwell Ave" + }, + { + "id": "f009ebce-715a-4b51-97df-a7d325991f5c", + "name": "Good Drinks Australia", + "brewery_type": "micro", + "address_1": "14 Absolon Street", + "address_2": null, + "address_3": null, + "city": "Palmyra", + "state_province": "WA", + "postal_code": "6157", + "country": "Australia", + "longitude": 115.7921775, + "latitude": -32.0515247, + "phone": "+61 8 9314 0000", + "website_url": "https://gooddrinks.com.au/", + "state": "WA", + "street": "14 Absolon Street" + }, + { + "id": "81a767f3-9342-4102-84b9-ffcb09726574", + "name": "Good Earth Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Terrebonne", + "state_province": "Oregon", + "postal_code": "97760-9709", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5598609998", + "website_url": "http://www.goodearthbrewing.com", + "state": "Oregon", + "street": null + }, + { + "id": "52559e7e-39e4-418e-bb43-368a74e38f1e", + "name": "Good Hops Brewing LLC", + "brewery_type": "micro", + "address_1": "811 Harper Ave", + "address_2": null, + "address_3": null, + "city": "Carolina Beach", + "state_province": "North Carolina", + "postal_code": "28428-4202", + "country": "United States", + "longitude": -77.9038204, + "latitude": 34.04080721, + "phone": "7067131594", + "website_url": "http://www.goodhopsbrewing.com", + "state": "North Carolina", + "street": "811 Harper Ave" + }, + { + "id": "e0905164-9cc4-4bc3-9815-164c701ae48b", + "name": "Good Land Brewing Co.", + "brewery_type": "micro", + "address_1": "12 Standing Drive", + "address_2": null, + "address_3": null, + "city": "Traralgon East", + "state_province": "VIC", + "postal_code": "3844", + "country": "Australia", + "longitude": 146.5637055, + "latitude": -38.1918076, + "phone": "+61 3 5174 8454", + "website_url": "http://goodland.beer/", + "state": "VIC", + "street": "12 Standing Drive" + }, + { + "id": "1df544e7-9d2b-4bc8-a9a0-a57d1baf058d", + "name": "Good Liquid Brewing Company", + "brewery_type": "micro", + "address_1": "4824 14th St W", + "address_2": null, + "address_3": null, + "city": "Bradenton", + "state_province": "Florida", + "postal_code": "34207-2017", + "country": "United States", + "longitude": -82.575274, + "latitude": 27.470805, + "phone": "9418966381", + "website_url": "http://www.thegoodliquidbrewing.com", + "state": "Florida", + "street": "4824 14th St W" + }, + { + "id": "e9231b48-c709-4934-b6eb-0a79117523da", + "name": "Good Measure Brewing Co", + "brewery_type": "micro", + "address_1": "17 East St", + "address_2": null, + "address_3": null, + "city": "Northfield", + "state_province": "Vermont", + "postal_code": "05663-6719", + "country": "United States", + "longitude": -72.6556223, + "latitude": 44.1487966, + "phone": null, + "website_url": "http://www.goodmeasurebrewing.com", + "state": "Vermont", + "street": "17 East St" + }, + { + "id": "6bba0c8b-6d21-4105-841d-bb24e3e49c5a", + "name": "Good Nature Farm Brewery", + "brewery_type": "micro", + "address_1": "1727 State Route 12b", + "address_2": null, + "address_3": null, + "city": "Hamilton", + "state_province": "New York", + "postal_code": "13346-2268", + "country": "United States", + "longitude": -75.54560551, + "latitude": 42.807293, + "phone": "3158242337", + "website_url": "http://goodnaturebrewing.com", + "state": "New York", + "street": "1727 State Route 12b" + }, + { + "id": "a2f7f1df-4a8e-49a2-8272-7804ae685e97", + "name": "Good Neighbor Brews", + "brewery_type": "micro", + "address_1": "211 Regency Dr", + "address_2": null, + "address_3": null, + "city": "Wylie", + "state_province": "Texas", + "postal_code": "75098-7089", + "country": "United States", + "longitude": -96.58583347, + "latitude": 33.00449384, + "phone": "4694714287", + "website_url": "http://www.goodneighborbrews.com", + "state": "Texas", + "street": "211 Regency Dr" + }, + { + "id": "e9d98f63-620d-4282-95bc-e6cc8240cdd2", + "name": "Good News Brewing Company", + "brewery_type": "brewpub", + "address_1": "330 Sonderen St", + "address_2": null, + "address_3": null, + "city": "O Fallon", + "state_province": "Missouri", + "postal_code": "63366-2629", + "country": "United States", + "longitude": -90.694613, + "latitude": 38.807136, + "phone": "6362946593", + "website_url": "http://goodnewsbrewing.com", + "state": "Missouri", + "street": "330 Sonderen St" + }, + { + "id": "9bdcf023-7ca4-4cb2-95f1-8f03d7262810", + "name": "Good People Brewing Co", + "brewery_type": "micro", + "address_1": "114 14th St S", + "address_2": null, + "address_3": null, + "city": "Birmingham", + "state_province": "Alabama", + "postal_code": "35233-1415", + "country": "United States", + "longitude": -86.81217995, + "latitude": 33.50759461, + "phone": "6154984165", + "website_url": "http://www.goodpeoplebrewing.com", + "state": "Alabama", + "street": "114 14th St S" + }, + { + "id": "36785f2c-ba97-48ed-8bcf-2b45c3a4a0d0", + "name": "Good River Beer Company", + "brewery_type": "contract", + "address_1": "1790 S Bannock St.", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80223", + "country": "United States", + "longitude": -104.9898169, + "latitude": 39.68421218, + "phone": "6023697442", + "website_url": "http://www.grbeerco.com", + "state": "Colorado", + "street": "1790 S Bannock St." + }, + { + "id": "0a7e88a9-f4c1-4977-af19-9b5b18431889", + "name": "Good Things Brewing Co Ltd", + "brewery_type": "micro", + "address_1": "Sandhill Lane", + "address_2": null, + "address_3": null, + "city": "Tunbridge Wells", + "state_province": "East Sussex", + "postal_code": "TN3 9LP", + "country": "England", + "longitude": 0.204763, + "latitude": 51.075834, + "phone": "1892249012", + "website_url": "https://goodthingsbrewing.co/", + "state": "East Sussex", + "street": "Sandhill Lane" + }, + { + "id": "b90cc90a-da50-4d39-9c27-67b32e299e57", + "name": "Good Times Brewing", + "brewery_type": "brewpub", + "address_1": "237 Maxwell Ave", + "address_2": null, + "address_3": null, + "city": "Greenwood", + "state_province": "South Carolina", + "postal_code": "29646-2616", + "country": "United States", + "longitude": -82.16363224, + "latitude": 34.18989245, + "phone": "8649937302", + "website_url": "http://www.goodtimesbrewing.beer", + "state": "South Carolina", + "street": "237 Maxwell Ave" + }, + { + "id": "649e9b90-6572-4b02-9652-90d4ffec7a92", + "name": "Good Word Brewing & Public House", + "brewery_type": "brewpub", + "address_1": "3085 Main St Ste 520", + "address_2": null, + "address_3": null, + "city": "Duluth", + "state_province": "Georgia", + "postal_code": "30096-3261", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4049732077", + "website_url": "http://www.goodwordbrewing.com", + "state": "Georgia", + "street": "3085 Main St Ste 520" + }, + { + "id": "1c372c46-860d-40a6-9a33-8b1c491d6090", + "name": "Goodfire Brewing Company", + "brewery_type": "micro", + "address_1": "219 Anderson St Ste 6", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04101-1401", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2078088910", + "website_url": "http://www.goodfirebrewing.com", + "state": "Maine", + "street": "219 Anderson St Ste 6" + }, + { + "id": "df18d9c7-51ad-44b4-a693-02658b23ac8b", + "name": "Goodieson", + "brewery_type": "micro", + "address_1": "194 Sand Road", + "address_2": null, + "address_3": null, + "city": "McLaren Vale", + "state_province": "SA", + "postal_code": "5171", + "country": "Australia", + "longitude": 138.5798321, + "latitude": -35.2177862, + "phone": "+61 409 676 542", + "website_url": "https://www.goodiesonbrewery.com.au/", + "state": "SA", + "street": "194 Sand Road" + }, + { + "id": "26b96041-d01d-4ec8-95a2-d0bb1d050455", + "name": "GoodLife Brewing Company", + "brewery_type": "regional", + "address_1": "70 SW Century Ave 100-464", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97701", + "country": "United States", + "longitude": -121.3302942, + "latitude": 44.05138311, + "phone": "5417280749", + "website_url": "http://www.goodlifebrewing.com", + "state": "Oregon", + "street": "70 SW Century Ave 100-464" + }, + { + "id": "df996aa0-8e03-48af-9143-080e58b236cb", + "name": "GoodWater Brewery", + "brewery_type": "micro", + "address_1": "740 Marshall Ave", + "address_2": null, + "address_3": null, + "city": "Williston", + "state_province": "Vermont", + "postal_code": "05495-8978", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8029997396", + "website_url": "http://www.goodwaterbreweryvt.com", + "state": "Vermont", + "street": "740 Marshall Ave" + }, + { + "id": "0eba6b3c-8158-4610-a120-c0a90e5922c9", + "name": "Goodwood Brewery", + "brewery_type": "micro", + "address_1": "Goodwood Farm", + "address_2": null, + "address_3": null, + "city": "Chichester", + "state_province": "West Sussex", + "postal_code": "PO18 0QF", + "country": "England", + "longitude": -0.721936, + "latitude": 50.871619, + "phone": "1243755154", + "website_url": "https://www.goodwood.com/", + "state": "West Sussex", + "street": "Goodwood Farm" + }, + { + "id": "af71f073-98d7-4791-afe1-6d6c29637ad3", + "name": "Goodwood Brewing Co", + "brewery_type": "micro", + "address_1": "636 E Main St", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40202-1004", + "country": "United States", + "longitude": -85.7400684, + "latitude": 38.254635, + "phone": "5025842739", + "website_url": "http://www.goodwood.beer", + "state": "Kentucky", + "street": "636 E Main St" + }, + { + "id": "c77a6112-2b38-4e69-ae8e-53077c8f2307", + "name": "Goose And The Monkey Brew House, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "North Carolina", + "postal_code": "27292", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3362405310", + "website_url": "http://www.gooseandthemonkeybrewhouse.com", + "state": "North Carolina", + "street": null + }, + { + "id": "f7858573-6456-4a49-84b5-90a52b130668", + "name": "Goose Island Beer Co", + "brewery_type": "micro", + "address_1": "79 Coghlan Road", + "address_2": null, + "address_3": null, + "city": "Cowes", + "state_province": "VIC", + "postal_code": "3922", + "country": "Australia", + "longitude": 145.2573309, + "latitude": -38.4755139, + "phone": "+61 429 832 304", + "website_url": "http://www.islandbeer.com.au/", + "state": "VIC", + "street": "79 Coghlan Road" + }, + { + "id": "8e309724-11ae-4fc0-8d18-3ae64eeaa84a", + "name": "Goose Island Beer Co / Fulton St", + "brewery_type": "large", + "address_1": "1800 W Fulton St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60612-2512", + "country": "United States", + "longitude": -87.6722122, + "latitude": 41.8870058, + "phone": "3122261119", + "website_url": "http://www.gooseisland.com", + "state": "Illinois", + "street": "1800 W Fulton St" + }, + { + "id": "4cc60614-30c4-406a-9fec-c5dc01b22863", + "name": "Goose Island Brewhouse Seoul", + "brewery_type": "brewpub", + "address_1": "118, Yeoksam-ro", + "address_2": null, + "address_3": null, + "city": "Gangnam-gu", + "state_province": "Seoul", + "postal_code": "06251", + "country": "South Korea", + "longitude": 127.0323206, + "latitude": 37.49360307, + "phone": "02-6205-1785", + "website_url": "https://gooseisland.kr", + "state": "Seoul", + "street": "118, Yeoksam-ro" + }, + { + "id": "8ef0b76f-0cd8-4c9d-ad65-61627c7276d7", + "name": "Goose Island Brewpub", + "brewery_type": "large", + "address_1": "1800 N Clybourn Ave Ste B", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60614-4895", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3129150071", + "website_url": "http://www.gooseisland.com", + "state": "Illinois", + "street": "1800 N Clybourn Ave Ste B" + }, + { + "id": "c395ff94-7641-4115-804b-5eec844b6fdb", + "name": "Goose Island Philadelphia", + "brewery_type": "brewpub", + "address_1": "1002 Canal St", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19123", + "country": "United States", + "longitude": -75.13506341, + "latitude": 39.9648491, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": "1002 Canal St" + }, + { + "id": "9a0a767e-4958-40b0-8ed1-74bd5e719cc2", + "name": "Gordon Biersch Brewery Restaurant - Annapolis", + "brewery_type": "brewpub", + "address_1": "1906 Towne Centre Blvd Ste 155", + "address_2": null, + "address_3": null, + "city": "Annapolis", + "state_province": "Maryland", + "postal_code": "21401-3681", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4102665965", + "website_url": "http://www.craftworksrestaurants.com", + "state": "Maryland", + "street": "1906 Towne Centre Blvd Ste 155" + }, + { + "id": "a638f91d-b523-4965-875b-2c2580e990f2", + "name": "Gordon Biersch Brewery Restaurant - Atlanta", + "brewery_type": "brewpub", + "address_1": "3242 Peachtree Rd NE", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30305-2425", + "country": "United States", + "longitude": -84.3620936, + "latitude": 33.8503143, + "phone": "4042640253", + "website_url": "http://www.craftworksrestaurants.com", + "state": "Georgia", + "street": "3242 Peachtree Rd NE" + }, + { + "id": "f7086ed0-8048-47ae-81a9-6de88b8ee3e5", + "name": "Gordon Biersch Brewery Restaurant - Baltimore", + "brewery_type": "brewpub", + "address_1": "1000 Lancaster St Ste B", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21202-4631", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4102309501", + "website_url": "http://www.craftworksrestaurants.com", + "state": "Maryland", + "street": "1000 Lancaster St Ste B" + }, + { + "id": "7cc2bf9e-f8fa-4c55-a414-e3061e288af8", + "name": "Gordon Biersch Brewery Restaurant - Bolingbrook", + "brewery_type": "brewpub", + "address_1": "639 E Boughton Rd Ste 100", + "address_2": null, + "address_3": null, + "city": "Bolingbrook", + "state_province": "Illinois", + "postal_code": "60440-3126", + "country": "United States", + "longitude": -88.042356, + "latitude": 41.721179, + "phone": "6307396036", + "website_url": "http://www.craftworksrestaurants.com", + "state": "Illinois", + "street": "639 E Boughton Rd Ste 100" + }, + { + "id": "022a19bf-eacd-4b5d-a3f3-e65fcebd0576", + "name": "Gordon Biersch Brewery Restaurant - Broomfield", + "brewery_type": "brewpub", + "address_1": "1 W Flatiron Crossing Dr Ste 428", + "address_2": null, + "address_3": null, + "city": "Broomfield", + "state_province": "Colorado", + "postal_code": "80021-8214", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7208872991", + "website_url": "http://www.gordonbiersch.com/restaurant", + "state": "Colorado", + "street": "1 W Flatiron Crossing Dr Ste 428" + }, + { + "id": "08b8bac1-e93f-48cf-9b2d-8a216d721f46", + "name": "Gordon Biersch Brewery Restaurant - Buffalo", + "brewery_type": "brewpub", + "address_1": "Store P102 Galleria Dr", + "address_2": null, + "address_3": null, + "city": "Cheektowaga", + "state_province": "New York", + "postal_code": "14225-5408", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7166830050", + "website_url": "http://www.craftworksrestaurants.com", + "state": "New York", + "street": "Store P102 Galleria Dr" + }, + { + "id": "f075e848-4ad0-428d-9471-4fb577506554", + "name": "Gordon Biersch Brewery Restaurant - Burbank", + "brewery_type": "brewpub", + "address_1": "145 S San Fernando Blvd", + "address_2": null, + "address_3": null, + "city": "Burbank", + "state_province": "California", + "postal_code": "91502-1322", + "country": "United States", + "longitude": -118.3083397, + "latitude": 34.18041759, + "phone": "8185695240", + "website_url": "http://www.gordonbiersch.com/restaurant", + "state": "California", + "street": "145 S San Fernando Blvd" + }, + { + "id": "961d74ed-dc8a-4894-8283-b979b6e547af", + "name": "Gordon Biersch Brewery Restaurant - Columbus", + "brewery_type": "closed", + "address_1": "401 N Front St Ste 120", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43215-8200", + "country": "United States", + "longitude": -83.0040735, + "latitude": 39.9703677, + "phone": "6142462900", + "website_url": "http://www.gordonbiersch.com/restaurant", + "state": "Ohio", + "street": "401 N Front St Ste 120" + }, + { + "id": "f065cdd4-4548-4d3f-9f63-de811f696110", + "name": "Gordon Biersch Brewery Restaurant - Glendale", + "brewery_type": "brewpub", + "address_1": "6915 N 95th Ave", + "address_2": null, + "address_3": null, + "city": "Glendale", + "state_province": "Arizona", + "postal_code": "85305-2488", + "country": "United States", + "longitude": -112.2638679, + "latitude": 33.5050851, + "phone": "6238774300", + "website_url": "http://www.craftworksrestaurants.com", + "state": "Arizona", + "street": "6915 N 95th Ave" + }, + { + "id": "abba7334-109f-4923-89de-c3ba7d83aad1", + "name": "Gordon Biersch Brewery Restaurant - Honolulu", + "brewery_type": "closed", + "address_1": "1 Aloha Tower Dr Ste 1123", + "address_2": null, + "address_3": null, + "city": "Honolulu", + "state_province": "Hawaii", + "postal_code": "96813-4815", + "country": "United States", + "longitude": -157.86622, + "latitude": 21.306704, + "phone": "8085994877", + "website_url": "http://www.gordonbiersch.com/restaurant", + "state": "Hawaii", + "street": "1 Aloha Tower Dr Ste 1123" + }, + { + "id": "cd6ae440-1121-4bc1-9b2f-7afd11e8b57c", + "name": "Gordon Biersch Brewery Restaurant - Las Vegas", + "brewery_type": "brewpub", + "address_1": "3987 Paradise Rd", + "address_2": null, + "address_3": null, + "city": "Las Vegas", + "state_province": "Nevada", + "postal_code": "89169-4607", + "country": "United States", + "longitude": -115.1545679, + "latitude": 36.1442243, + "phone": "7023125247", + "website_url": "http://www.craftworksrestaurants.com", + "state": "Nevada", + "street": "3987 Paradise Rd" + }, + { + "id": "c8e4496a-ab97-491c-81bf-45be3411d3ae", + "name": "Gordon Biersch Brewery Restaurant - Louisville", + "brewery_type": "brewpub", + "address_1": "400 S 4th St", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40202-3418", + "country": "United States", + "longitude": -85.7574044, + "latitude": 38.2528789, + "phone": "5025898935", + "website_url": "http://www.gordonbiersch.com/restaurant", + "state": "Kentucky", + "street": "400 S 4th St" + }, + { + "id": "67e5a01d-01cd-46b0-a54c-d0222d988689", + "name": "Gordon Biersch Brewery Restaurant - Myrtle Beach", + "brewery_type": "brewpub", + "address_1": "3060 Howard Ave", + "address_2": null, + "address_3": null, + "city": "Myrtle Beach", + "state_province": "South Carolina", + "postal_code": "29577-1643", + "country": "United States", + "longitude": -78.939092, + "latitude": 33.668327, + "phone": "8438390249", + "website_url": "http://www.craftworksrestaurants.com", + "state": "South Carolina", + "street": "3060 Howard Ave" + }, + { + "id": "63b91345-1bf4-420d-8f66-206d18476eb9", + "name": "Gordon Biersch Brewery Restaurant - Navy Yard", + "brewery_type": "brewpub", + "address_1": "100 M St SE", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "District of Columbia", + "postal_code": "20003-3519", + "country": "United States", + "longitude": -77.0052971, + "latitude": 38.8766834, + "phone": "2024842739", + "website_url": "http://www.gordonbiersch.com/locations/navy-yard?action=view", + "state": "District of Columbia", + "street": "100 M St SE" + }, + { + "id": "a2735f3a-dfe8-4c31-86df-9e1b19734faf", + "name": "Gordon Biersch Brewery Restaurant - New Orleans", + "brewery_type": "brewpub", + "address_1": "200 Poydras St", + "address_2": null, + "address_3": null, + "city": "New Orleans", + "state_province": "Louisiana", + "postal_code": "70130-1641", + "country": "United States", + "longitude": -90.0651027, + "latitude": 29.9481058, + "phone": "5045522739", + "website_url": "http://www.craftworksrestaurants.com", + "state": "Louisiana", + "street": "200 Poydras St" + }, + { + "id": "1100c128-6ea6-4594-9df7-24b01dca1d77", + "name": "Gordon Biersch Brewery Restaurant - Plano", + "brewery_type": "brewpub", + "address_1": "7401 Lone Star Dr Ste B120", + "address_2": null, + "address_3": null, + "city": "Plano", + "state_province": "Texas", + "postal_code": "75024-5646", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4694670464", + "website_url": "http://www.craftworksrestaurants.com", + "state": "Texas", + "street": "7401 Lone Star Dr Ste B120" + }, + { + "id": "9448e983-7a49-499e-854b-9b2008fe58b2", + "name": "Gordon Biersch Brewery Restaurant - Rockville", + "brewery_type": "brewpub", + "address_1": "200 E Middle Ln Unit A", + "address_2": null, + "address_3": null, + "city": "Rockville", + "state_province": "Maryland", + "postal_code": "20850-2206", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3013407159", + "website_url": "http://www.craftworksrestaurants.com", + "state": "Maryland", + "street": "200 E Middle Ln Unit A" + }, + { + "id": "28945428-2326-41b3-b2d9-97f6e8154783", + "name": "Gordon Biersch Brewery Restaurant - San Diego", + "brewery_type": "brewpub", + "address_1": "5010 Mission Center Rd", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92108-3211", + "country": "United States", + "longitude": -117.1539235, + "latitude": 32.7740128, + "phone": "6196881120", + "website_url": "http://www.craftworksrestaurants.com", + "state": "California", + "street": "5010 Mission Center Rd" + }, + { + "id": "c24f54a0-dbde-40c1-8e15-c78dffb5e2c2", + "name": "Gordon Biersch Brewery Restaurant - Seattle", + "brewery_type": "closed", + "address_1": "600 Pine St Ste 401", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98101-3709", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2064054205", + "website_url": "http://www.craftworksrestaurants.com", + "state": "Washington", + "street": "600 Pine St Ste 401" + }, + { + "id": "43873862-faa8-4ee2-b191-e56745c8fe57", + "name": "Gordon Biersch Brewery Restaurant - Syracuse", + "brewery_type": "brewpub", + "address_1": "304 Hiawatha Blvd West #J-101", + "address_2": null, + "address_3": null, + "city": "Syracuse", + "state_province": "New York", + "postal_code": "13290", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3154780990", + "website_url": "http://www.craftworksrestaurants.com", + "state": "New York", + "street": "304 Hiawatha Blvd West #J-101" + }, + { + "id": "12bbf8b5-aa4a-412b-be50-be1375bf618f", + "name": "Gordon Biersch Brewery Restaurant - Tempe", + "brewery_type": "brewpub", + "address_1": "420 S Mill Ave Ste 201", + "address_2": null, + "address_3": null, + "city": "Tempe", + "state_province": "Arizona", + "postal_code": "85281-2870", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4807360033", + "website_url": "http://www.craftworksrestaurants.com", + "state": "Arizona", + "street": "420 S Mill Ave Ste 201" + }, + { + "id": "ca6efbc1-a838-4db2-b023-c88635530939", + "name": "Gordon Biersch Brewery Restaurant - Tysons Corner", + "brewery_type": "brewpub", + "address_1": "7861 Tysons Corner Center", + "address_2": null, + "address_3": null, + "city": "Mc Lean", + "state_province": "Virginia", + "postal_code": "22102-4515", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7033885454", + "website_url": "http://www.craftworksrestaurants.com", + "state": "Virginia", + "street": "7861 Tysons Corner Center" + }, + { + "id": "f2dab499-6c5f-41d1-b425-0ef5311ef8d6", + "name": "Gordon Biersch Brewery Restaurant - Virginia Beach", + "brewery_type": "brewpub", + "address_1": "4561 Virginia Beach Blvd", + "address_2": null, + "address_3": null, + "city": "Virginia Beach", + "state_province": "Virginia", + "postal_code": "23462-3015", + "country": "United States", + "longitude": -76.1345641, + "latitude": 36.8432205, + "phone": "7574902739", + "website_url": "http://www.craftworksrestaurants.com", + "state": "Virginia", + "street": "4561 Virginia Beach Blvd" + }, + { + "id": "cb2ba6de-fc98-4ae0-83a4-b775bda03f2c", + "name": "Gordon Biersch Brewery Restaurant - Washington", + "brewery_type": "brewpub", + "address_1": "900 F St NW", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "District of Columbia", + "postal_code": "20004-1404", + "country": "United States", + "longitude": -77.0243479, + "latitude": 38.8971375, + "phone": "2027835454", + "website_url": "http://www.gordonbiersch.com/locations/washington-dc?action=view", + "state": "District of Columbia", + "street": "900 F St NW" + }, + { + "id": "4aa4af0b-4ec9-4681-b671-a7f231e27e14", + "name": "Gordon Biersch Brewing Co", + "brewery_type": "regional", + "address_1": "357 E Taylor St", + "address_2": null, + "address_3": null, + "city": "San Jose", + "state_province": "California", + "postal_code": "95112-3105", + "country": "United States", + "longitude": -121.8841169, + "latitude": 37.3567304, + "phone": "4082781008", + "website_url": "http://www.gordonbiersch.com", + "state": "California", + "street": "357 E Taylor St" + }, + { + "id": "8d5259ff-4a8e-486f-8d9a-371b4f2ce224", + "name": "Gordon Street Tavern", + "brewery_type": "brewpub", + "address_1": "114 N Gordon St", + "address_2": null, + "address_3": null, + "city": "Alvin", + "state_province": "Texas", + "postal_code": "77511-2331", + "country": "United States", + "longitude": -95.24398685, + "latitude": 29.42403097, + "phone": "2819687402", + "website_url": "http://www.gordonstreettavern.com", + "state": "Texas", + "street": "114 N Gordon St" + }, + { + "id": "e88af73d-d2a2-43b1-8bf2-b4b668998400", + "name": "Gore Range Brewery", + "brewery_type": "brewpub", + "address_1": "105 Edwards Village Blvd", + "address_2": null, + "address_3": null, + "city": "Edwards", + "state_province": "Colorado", + "postal_code": "81632-2970", + "country": "United States", + "longitude": -106.5953228, + "latitude": 39.64367461, + "phone": "9709262739", + "website_url": "http://www.gorerangebrewery.com", + "state": "Colorado", + "street": "105 Edwards Village Blvd" + }, + { + "id": "df4c24b4-1f52-436f-b804-b920bfe6b47a", + "name": "Goshen Brewing Company", + "brewery_type": "brewpub", + "address_1": "315 W Washington St", + "address_2": null, + "address_3": null, + "city": "Goshen", + "state_province": "Indiana", + "postal_code": "46526-3732", + "country": "United States", + "longitude": -85.8386783, + "latitude": 41.585178, + "phone": "5749715324", + "website_url": "http://www.goshenbrewing.com", + "state": "Indiana", + "street": "315 W Washington St" + }, + { + "id": "fcd9312c-7531-4801-b481-52f4267cf628", + "name": "Gösser Brauerei (Heineken)", + "brewery_type": "large", + "address_1": "Brauhausgasse 1", + "address_2": null, + "address_3": null, + "city": "Leoben", + "state_province": "Steiermark", + "postal_code": "8700", + "country": "Austria", + "longitude": 15.093344205825, + "latitude": 47.362557227479, + "phone": "+438102069791", + "website_url": "https://www.goesser.at", + "state": "Steiermark", + "street": "Brauhausgasse 1" + }, + { + "id": "cbbf76ad-da0e-49b4-935f-6589eba11b2d", + "name": "Gotahold Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Eureka Springs", + "state_province": "Arkansas", + "postal_code": "72632", + "country": "United States", + "longitude": -93.7392419, + "latitude": 36.4000796, + "phone": "8023569163", + "website_url": null, + "state": "Arkansas", + "street": null + }, + { + "id": "6a35d8fa-40c8-4f62-82d1-90273dfd5b41", + "name": "GOTL Brewing Co", + "brewery_type": "brewpub", + "address_1": "5243 Lake Rd E", + "address_2": null, + "address_3": null, + "city": "Geneva", + "state_province": "Ohio", + "postal_code": "44041-9433", + "country": "United States", + "longitude": -80.94434114, + "latitude": 41.86120536, + "phone": "4403614864", + "website_url": "http://www.gotlbrewing.com", + "state": "Ohio", + "street": "5243 Lake Rd E" + }, + { + "id": "c8289fce-485f-454c-9065-c699a7eeb6e3", + "name": "Gottberg Brew Pub", + "brewery_type": "brewpub", + "address_1": "2804 13th St", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Nebraska", + "postal_code": "68601-4919", + "country": "United States", + "longitude": -97.3621271, + "latitude": 41.42940061, + "phone": "4025626488", + "website_url": "http://www.dustersrestaurant.com", + "state": "Nebraska", + "street": "2804 13th St" + }, + { + "id": "54cca727-f3bf-471c-ad15-72d5f3f09f41", + "name": "Goulburn Brewery", + "brewery_type": "micro", + "address_1": "23 Bungonia Road", + "address_2": null, + "address_3": null, + "city": "Goulburn", + "state_province": "NSW", + "postal_code": "2580", + "country": "Australia", + "longitude": 149.720004, + "latitude": -34.7670732, + "phone": "+61 2 4821 6000", + "website_url": "https://www.goulburnbrewery.com/", + "state": "NSW", + "street": "23 Bungonia Road" + }, + { + "id": "c833789a-356a-4f78-8c97-61deb25d5c1b", + "name": "Grace Ridge Brewing", + "brewery_type": "micro", + "address_1": "3388 B St Suite 2", + "address_2": null, + "address_3": null, + "city": "Homer", + "state_province": "Alaska", + "postal_code": "99603-7905", + "country": "United States", + "longitude": -151.504362, + "latitude": 59.639728, + "phone": "9074350601", + "website_url": "https://www.graceridgebrewing.com", + "state": "Alaska", + "street": "3388 B St Suite 2" + }, + { + "id": "ac1d0a22-3c31-4a93-b3c9-e120b7f7c97d", + "name": "Grafton Brewing Co.", + "brewery_type": "micro", + "address_1": "170 North Street", + "address_2": null, + "address_3": null, + "city": "Grafton", + "state_province": "NSW", + "postal_code": "2460", + "country": "Australia", + "longitude": 152.9385193, + "latitude": -29.6708342, + "phone": "+61 2 6642 8168", + "website_url": "https://brewhousegroup.com/", + "state": "NSW", + "street": "170 North Street" + }, + { + "id": "a5dfda47-d7a5-47b5-8bb2-b12b2c867525", + "name": "Grafton Winery & Brewhaus", + "brewery_type": "micro", + "address_1": "300 W Main St", + "address_2": null, + "address_3": null, + "city": "Grafton", + "state_province": "Illinois", + "postal_code": "62037-1124", + "country": "United States", + "longitude": -90.439045, + "latitude": 38.969851, + "phone": "6187863001", + "website_url": "http://www.thegraftonwinery.com", + "state": "Illinois", + "street": "300 W Main St" + }, + { + "id": "e355ff68-d879-48f6-bda8-1b68ecc68096", + "name": "Grail Point Brewery", + "brewery_type": "proprietor", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Emmitsburg", + "state_province": "Maryland", + "postal_code": "21727-0702", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2408442379", + "website_url": "http://www.grailpointbeer.co", + "state": "Maryland", + "street": null + }, + { + "id": "bd14f283-c7e6-469b-9fa6-bc6887148b1a", + "name": "Grain Station Brew Works", + "brewery_type": "brewpub", + "address_1": "755 NE Alpine Ave Ste 200", + "address_2": null, + "address_3": null, + "city": "McMinnville", + "state_province": "Oregon", + "postal_code": "97128-4102", + "country": "United States", + "longitude": -123.1894465, + "latitude": 45.21286658, + "phone": "5036872739", + "website_url": "http://www.grainstation.com", + "state": "Oregon", + "street": "755 NE Alpine Ave Ste 200" + }, + { + "id": "4ea74fb1-ba73-4a89-948a-20c2cabc86f0", + "name": "Grain Theory Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Abilene", + "state_province": "Texas", + "postal_code": "79601", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2142260915", + "website_url": "http://www.graintheorybrewing.com", + "state": "Texas", + "street": null + }, + { + "id": "5bef3f58-f558-4784-8eec-dbd34011b4e3", + "name": "Grainfed Brewing Co.", + "brewery_type": "micro", + "address_1": "52 Young Road", + "address_2": "1", + "address_3": null, + "city": "Lambton", + "state_province": "NSW", + "postal_code": "2299", + "country": "Australia", + "longitude": 151.7197957, + "latitude": -32.915501, + "phone": "+61 429 560 406", + "website_url": "http://www.grainfedbrewing.com.au/", + "state": "NSW", + "street": "52 Young Road" + }, + { + "id": "d06a2b64-5a7c-4dda-8ee3-404473ca3e5c", + "name": "Grains and Taps Brewery and Taproom", + "brewery_type": "micro", + "address_1": "10 SW 3rd St", + "address_2": null, + "address_3": null, + "city": "Lees Summit", + "state_province": "Missouri", + "postal_code": "64063", + "country": "United States", + "longitude": -94.383478, + "latitude": 38.91366, + "phone": "8168665827", + "website_url": "http://www.grainsandtaps.com", + "state": "Missouri", + "street": "10 SW 3rd St" + }, + { + "id": "d1248bce-f8fd-4070-b8c8-714565fa0cbb", + "name": "Grains of Wrath Brewing", + "brewery_type": "brewpub", + "address_1": "230 NE 5th Ave", + "address_2": null, + "address_3": null, + "city": "Camas", + "state_province": "Washington", + "postal_code": "98607", + "country": "United States", + "longitude": -122.4056003, + "latitude": 45.5857341, + "phone": "3602105717", + "website_url": "http://www.gowbeer.com", + "state": "Washington", + "street": "230 NE 5th Ave" + }, + { + "id": "a455bc2a-9c25-40d1-acc1-9e446c40554a", + "name": "Grainworks Brewing Company", + "brewery_type": "micro", + "address_1": "7790 Service Center Dr", + "address_2": null, + "address_3": null, + "city": "West Chester", + "state_province": "Ohio", + "postal_code": "45069-2442", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5134802337", + "website_url": null, + "state": "Ohio", + "street": "7790 Service Center Dr" + }, + { + "id": "73f4533a-d1cc-4d4b-b82f-6a76b348f147", + "name": "Granary 'Cue and Brew", + "brewery_type": "closed", + "address_1": "602 Avenue A", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78215-1222", + "country": "United States", + "longitude": -98.47916983, + "latitude": 29.44143325, + "phone": "2102280124", + "website_url": "http://www.thegranarysa.com", + "state": "Texas", + "street": "602 Avenue A" + }, + { + "id": "1eff5213-e6d2-4182-b367-8bda55edc37f", + "name": "Grand Adventure Brewing Company", + "brewery_type": "brewpub", + "address_1": "207 Central Ave", + "address_2": null, + "address_3": null, + "city": "Kremmling", + "state_province": "Colorado", + "postal_code": "80459", + "country": "United States", + "longitude": -106.3925656, + "latitude": 40.0599844, + "phone": "9707249219", + "website_url": "http://www.grandadventure.us", + "state": "Colorado", + "street": "207 Central Ave" + }, + { + "id": "078de717-a4b4-459a-adb9-192533be58d9", + "name": "Grand Armory Brewing Co", + "brewery_type": "micro", + "address_1": "17 S 2nd St", + "address_2": null, + "address_3": null, + "city": "Grand Haven", + "state_province": "Michigan", + "postal_code": "49417-3328", + "country": "United States", + "longitude": -86.2312558, + "latitude": 43.06378759, + "phone": "6164147822", + "website_url": "http://www.grandarmorybrewing.com", + "state": "Michigan", + "street": "17 S 2nd St" + }, + { + "id": "37250bc7-8131-4fa7-a203-51297a45dd20", + "name": "Grand Armory Brewing Production Facility", + "brewery_type": "micro", + "address_1": "1734 Airpark Dr", + "address_2": null, + "address_3": null, + "city": "Grand Haven", + "state_province": "Michigan", + "postal_code": "49417-8943", + "country": "United States", + "longitude": -86.19774282, + "latitude": 43.03862147, + "phone": "3106978958", + "website_url": null, + "state": "Michigan", + "street": "1734 Airpark Dr" + }, + { + "id": "a48bf221-575d-4581-96cc-9239aeefa100", + "name": "Grand Canyon Brewing", + "brewery_type": "brewpub", + "address_1": "301 N 7th St Ste 101", + "address_2": null, + "address_3": null, + "city": "Williams", + "state_province": "Arizona", + "postal_code": "86046", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Arizona", + "street": "301 N 7th St Ste 101" + }, + { + "id": "64d350e2-cf89-4b54-bc58-95bbedc251c4", + "name": "Grand Canyon Brewing Company", + "brewery_type": "micro", + "address_1": "233 W Route 66", + "address_2": null, + "address_3": null, + "city": "Williams", + "state_province": "Arizona", + "postal_code": "86046-2530", + "country": "United States", + "longitude": -112.1892168, + "latitude": 35.2500282, + "phone": "8005132072", + "website_url": "http://www.grandcanyonbrewingco.com", + "state": "Arizona", + "street": "233 W Route 66" + }, + { + "id": "5f02c62f-dd0c-44a1-ae48-4b0937073129", + "name": "Grand Junction Brewing Co", + "brewery_type": "brewpub", + "address_1": "110 S Union St", + "address_2": null, + "address_3": null, + "city": "Westfield", + "state_province": "Indiana", + "postal_code": "46074-9458", + "country": "United States", + "longitude": -86.1275556, + "latitude": 40.0424222, + "phone": "3178045168", + "website_url": "http://www.grandjunctionbrewing.com", + "state": "Indiana", + "street": "110 S Union St" + }, + { + "id": "7de3ba0f-e2fa-413a-95e0-1e28bca4b04a", + "name": "Grand Lake Brewing Co, The", + "brewery_type": "brewpub", + "address_1": "5610 Yukon St", + "address_2": null, + "address_3": null, + "city": "Arvada", + "state_province": "Colorado", + "postal_code": "80002-2446", + "country": "United States", + "longitude": -105.082456, + "latitude": 39.79927412, + "phone": "3039081677", + "website_url": "http://www.grandlakebrewing.com", + "state": "Colorado", + "street": "5610 Yukon St" + }, + { + "id": "6f3036b7-a9a3-491f-891a-d937c05e5d79", + "name": "Grand Rapids Brewing Company", + "brewery_type": "brewpub", + "address_1": "1 Ionia Ave SW Ste 100", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49503-5122", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6164587000", + "website_url": "http://www.grbrewingcompany.com", + "state": "Michigan", + "street": "1 Ionia Ave SW Ste 100" + }, + { + "id": "c8036fe9-357e-43c8-aafd-9e26fb192bb4", + "name": "Grand Ridge Brewery", + "brewery_type": "micro", + "address_1": "1 Baromi Road", + "address_2": null, + "address_3": null, + "city": "Mirboo North", + "state_province": "VIC", + "postal_code": "3871", + "country": "Australia", + "longitude": 146.1628112, + "latitude": -38.4008598, + "phone": "+61 3 5668 2222", + "website_url": "https://www.grand-ridge.com.au/", + "state": "VIC", + "street": "1 Baromi Road" + }, + { + "id": "6be94240-b669-4729-839a-6828321f7566", + "name": "Grand River Brewery", + "brewery_type": "brewpub", + "address_1": "117 W Louis Glick Hwy", + "address_2": null, + "address_3": null, + "city": "Jackson", + "state_province": "Michigan", + "postal_code": "49201-1327", + "country": "United States", + "longitude": -84.406597, + "latitude": 42.249334, + "phone": "5179622427", + "website_url": "http://www.grandrivermarketplace.com", + "state": "Michigan", + "street": "117 W Louis Glick Hwy" + }, + { + "id": "edc4a449-22c1-46c0-a70a-31b347140ed6", + "name": "Grand River Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Marshall", + "state_province": "Michigan", + "postal_code": "49068-1521", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": null + }, + { + "id": "0a5882a8-ba47-43a1-b5f5-804fa1ea8f2a", + "name": "Grand Rounds Brewing Company", + "brewery_type": "brewpub", + "address_1": "4 3rd St SW", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "Minnesota", + "postal_code": "55902-3019", + "country": "United States", + "longitude": -92.46339522, + "latitude": 44.0202771, + "phone": "5072921628", + "website_url": "http://www.grandroundsbrewing.com", + "state": "Minnesota", + "street": "4 3rd St SW" + }, + { + "id": "34038638-e24e-425e-b7b3-fcaeaa4e088d", + "name": "Grand Teton Brewing Co", + "brewery_type": "micro", + "address_1": "430 Old Jackson Hwy", + "address_2": null, + "address_3": null, + "city": "Victor", + "state_province": "Idaho", + "postal_code": "83455-5500", + "country": "United States", + "longitude": -111.10507, + "latitude": 43.593522, + "phone": "8888991656", + "website_url": "http://grandtetonbrewing.com", + "state": "Idaho", + "street": "430 Old Jackson Hwy" + }, + { + "id": "75074a28-7aff-4047-bebc-b93e2cf17ffd", + "name": "Grande Mere Inn / Cranberry Bog Bar", + "brewery_type": "brewpub", + "address_1": "5800 Red Arrow Hwy", + "address_2": null, + "address_3": null, + "city": "Stevensville", + "state_province": "Michigan", + "postal_code": "49127-1118", + "country": "United States", + "longitude": -86.5287857, + "latitude": 42.01274111, + "phone": "2694293591", + "website_url": "http://www.grandemereinn.com", + "state": "Michigan", + "street": "5800 Red Arrow Hwy" + }, + { + "id": "d9992b88-eaa2-4566-8b0e-51c34f7c477a", + "name": "Grandma's House", + "brewery_type": "micro", + "address_1": "1710 S Broadway", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80210-3102", + "country": "United States", + "longitude": -104.9872737, + "latitude": 39.74350567, + "phone": "3035786754", + "website_url": "http://www.grandmasbeer.com", + "state": "Colorado", + "street": "1710 S Broadway" + }, + { + "id": "d3bdee03-95c7-4b39-a912-2196cda56d8c", + "name": "Granger City Brewing Company", + "brewery_type": "brewpub", + "address_1": "109 W Davilla St", + "address_2": null, + "address_3": null, + "city": "Granger", + "state_province": "Texas", + "postal_code": "76530", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5127171859", + "website_url": "http://www.grangercitybrewingcompany.com", + "state": "Texas", + "street": "109 W Davilla St" + }, + { + "id": "d1313b43-41ef-4489-8838-24599726cf92", + "name": "Granite City Food & Brewery", + "brewery_type": "brewpub", + "address_1": "1864 W McEwen Dr", + "address_2": null, + "address_3": null, + "city": "Franklin", + "state_province": "Tennessee", + "postal_code": "37067-1782", + "country": "United States", + "longitude": -86.8271308, + "latitude": 35.9361408, + "phone": null, + "website_url": null, + "state": "Tennessee", + "street": "1864 W McEwen Dr" + }, + { + "id": "75bac68b-5b63-4dc2-a3b8-05dd0737af92", + "name": "Granite City Food & Brewery", + "brewery_type": "brewpub", + "address_1": "24519 Cedar Rd", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44124-3780", + "country": "United States", + "longitude": -81.5040318, + "latitude": 41.5033931, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": "24519 Cedar Rd" + }, + { + "id": "6e254f25-f604-465e-96ed-5e995ad04059", + "name": "Granite City Food & Brewery", + "brewery_type": "brewpub", + "address_1": "100 Renaissance Ctr", + "address_2": null, + "address_3": null, + "city": "Detroit", + "state_province": "Michigan", + "postal_code": "48243-1114", + "country": "United States", + "longitude": -83.04053931, + "latitude": 42.32916295, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "100 Renaissance Ctr" + }, + { + "id": "686f9013-ad05-449b-bf35-b76061c96c52", + "name": "Granite City Food & Brewery", + "brewery_type": "brewpub", + "address_1": "200 American Way", + "address_2": null, + "address_3": null, + "city": "Oxon Hill", + "state_province": "Maryland", + "postal_code": "20745-4502", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2404933900", + "website_url": null, + "state": "Maryland", + "street": "200 American Way" + }, + { + "id": "010441de-4cf0-4e29-9f81-4b458e212ee6", + "name": "Granite City Food & Brewery", + "brewery_type": "brewpub", + "address_1": "150 W 96th St", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46260-4802", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Indiana", + "street": "150 W 96th St" + }, + { + "id": "783f7e0b-c250-4db0-b46e-6db6ca85bb6e", + "name": "Granite City Food & Brewery", + "brewery_type": "brewpub", + "address_1": "992 Willow Rd", + "address_2": null, + "address_3": null, + "city": "Northbrook", + "state_province": "Illinois", + "postal_code": "60062-6806", + "country": "United States", + "longitude": -87.8570648, + "latitude": 42.1056946, + "phone": "8475040277", + "website_url": null, + "state": "Illinois", + "street": "992 Willow Rd" + }, + { + "id": "2c27d5f3-3bc0-46e0-99d6-643ea0793c2b", + "name": "Granite City Food & Brewery (#1)", + "brewery_type": "brewpub", + "address_1": "3945 2nd St S", + "address_2": null, + "address_3": null, + "city": "Saint Cloud", + "state_province": "Minnesota", + "postal_code": "56301-3792", + "country": "United States", + "longitude": -94.2053715, + "latitude": 45.5497329, + "phone": "3202039000", + "website_url": "http://www.gcfb.net", + "state": "Minnesota", + "street": "3945 2nd St S" + }, + { + "id": "4b782498-3563-4805-a691-548493182001", + "name": "Granite City Food & Brewery (#10)", + "brewery_type": "brewpub", + "address_1": "3330 Pilot Knob Rd", + "address_2": null, + "address_3": null, + "city": "Eagan", + "state_province": "Minnesota", + "postal_code": "55121-2055", + "country": "United States", + "longitude": -93.16714524, + "latitude": 44.83779871, + "phone": "6514524600", + "website_url": "http://www.gcfb.net", + "state": "Minnesota", + "street": "3330 Pilot Knob Rd" + }, + { + "id": "8b012caf-eea9-47a0-a9e3-93a8f30f8403", + "name": "Granite City Food & Brewery (#11)", + "brewery_type": "brewpub", + "address_1": "8461 NW Prairie View Rd", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64153-1842", + "country": "United States", + "longitude": -94.66105, + "latitude": 39.24936415, + "phone": "8165873838", + "website_url": "http://www.gcfb.net", + "state": "Missouri", + "street": "8461 NW Prairie View Rd" + }, + { + "id": "65f4e5eb-5d05-4b40-acb8-a7311ad1460c", + "name": "Granite City Food & Brewery (#12)", + "brewery_type": "brewpub", + "address_1": "1701 Village West Pkwy", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Kansas", + "postal_code": "66111-1879", + "country": "United States", + "longitude": -94.8239539, + "latitude": 39.1233376, + "phone": "9133342255", + "website_url": "http://www.gcfb.net", + "state": "Kansas", + "street": "1701 Village West Pkwy" + }, + { + "id": "34899927-e405-4bc0-8fdb-56887498737f", + "name": "Granite City Food & Brewery (#13)", + "brewery_type": "brewpub", + "address_1": "15085 W 119th St", + "address_2": null, + "address_3": null, + "city": "Olathe", + "state_province": "Kansas", + "postal_code": "66062-9628", + "country": "United States", + "longitude": -94.75995296, + "latitude": 38.91268389, + "phone": "9138296060", + "website_url": "http://www.gcfb.net", + "state": "Kansas", + "street": "15085 W 119th St" + }, + { + "id": "92f4e0c5-ec29-40e4-8798-019f1bbded65", + "name": "Granite City Food & Brewery (#16)", + "brewery_type": "brewpub", + "address_1": "1001 N 102nd St", + "address_2": null, + "address_3": null, + "city": "Omaha", + "state_province": "Nebraska", + "postal_code": "68114-2155", + "country": "United States", + "longitude": -96.071539, + "latitude": 41.268008, + "phone": "4023935000", + "website_url": "http://www.gcfb.net", + "state": "Nebraska", + "street": "1001 N 102nd St" + }, + { + "id": "b6fcdc66-343c-4621-8a3f-d50ce05e0699", + "name": "Granite City Food & Brewery (#17)", + "brewery_type": "brewpub", + "address_1": "1595 Highway 36 W Ste 1005", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55113-1092", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6512093500", + "website_url": "http://www.gcfb.net", + "state": "Minnesota", + "street": "1595 Highway 36 W Ste 1005" + }, + { + "id": "0f7dc247-0bd3-4f6f-8937-c777a369c09f", + "name": "Granite City Food & Brewery (#19)", + "brewery_type": "brewpub", + "address_1": "7144 Harrison Ave Ste 108", + "address_2": null, + "address_3": null, + "city": "Rockford", + "state_province": "Illinois", + "postal_code": "61112-", + "country": "United States", + "longitude": -89.0966204, + "latitude": 42.2377268, + "phone": "8153327070", + "website_url": null, + "state": "Illinois", + "street": "7144 Harrison Ave Ste 108" + }, + { + "id": "3299530b-ec21-407e-8882-4aedfe4cdd2c", + "name": "Granite City Food & Brewery (#2)", + "brewery_type": "brewpub", + "address_1": "2620 S Louise Ave", + "address_2": null, + "address_3": null, + "city": "Sioux Falls", + "state_province": "South Dakota", + "postal_code": "57106-4329", + "country": "United States", + "longitude": -96.7727844, + "latitude": 43.52337192, + "phone": "6053620000", + "website_url": "http://www.gcfb.net", + "state": "South Dakota", + "street": "2620 S Louise Ave" + }, + { + "id": "547cd589-8b2b-4057-a99e-d2252bea5e71", + "name": "Granite City Food & Brewery (#21)", + "brewery_type": "brewpub", + "address_1": "230 Conference Center Dr", + "address_2": null, + "address_3": null, + "city": "East Peoria", + "state_province": "Illinois", + "postal_code": "61611-9501", + "country": "United States", + "longitude": -89.5898359, + "latitude": 40.6830595, + "phone": "3096698080", + "website_url": "http://www.gcfb.com", + "state": "Illinois", + "street": "230 Conference Center Dr" + }, + { + "id": "fbf47d56-1454-4f27-be42-11b45099d02c", + "name": "Granite City Food & Brewery (#22)", + "brewery_type": "brewpub", + "address_1": "14035 S La Grange Rd", + "address_2": null, + "address_3": null, + "city": "Orland Park", + "state_province": "Illinois", + "postal_code": "60462-1321", + "country": "United States", + "longitude": -87.85389056, + "latitude": 41.63748251, + "phone": "7083641212", + "website_url": "http://www.gcfb.com", + "state": "Illinois", + "street": "14035 S La Grange Rd" + }, + { + "id": "ceaf1284-e7b6-4474-8179-c4d38490c16c", + "name": "Granite City Food & Brewery (#24)", + "brewery_type": "brewpub", + "address_1": "3809 Coldwater Rd", + "address_2": null, + "address_3": null, + "city": "Fort Wayne", + "state_province": "Indiana", + "postal_code": "46805-1101", + "country": "United States", + "longitude": -85.13581857, + "latitude": 41.1113216, + "phone": "2604713030", + "website_url": "http://www.gcfb.net", + "state": "Indiana", + "street": "3809 Coldwater Rd" + }, + { + "id": "8ee9964e-dfc5-48c0-b079-06750fad8f70", + "name": "Granite City Food & Brewery (#25)", + "brewery_type": "brewpub", + "address_1": "2300 Village Dr W", + "address_2": null, + "address_3": null, + "city": "Maumee", + "state_province": "Ohio", + "postal_code": "43537-7550", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4198789050", + "website_url": "http://www.gcfb.net", + "state": "Ohio", + "street": "2300 Village Dr W" + }, + { + "id": "650cddc2-44e6-4abc-8c71-d3ebd3c493d9", + "name": "Granite City Food & Brewery (#26)", + "brewery_type": "brewpub", + "address_1": "6501 Grape Rd Ste 1000", + "address_2": null, + "address_3": null, + "city": "Mishawaka", + "state_province": "Indiana", + "postal_code": "46545-1010", + "country": "United States", + "longitude": -86.1923429, + "latitude": 41.7177604, + "phone": "5742430900", + "website_url": "http://www.gcfb.net", + "state": "Indiana", + "street": "6501 Grape Rd Ste 1000" + }, + { + "id": "8d663feb-c355-4edb-9697-6d7536bda3a1", + "name": "Granite City Food & Brewery (#27)", + "brewery_type": "brewpub", + "address_1": "150 W 96th St", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46260-4802", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3172187185", + "website_url": "http://www.gcfb.net", + "state": "Indiana", + "street": "150 W 96th St" + }, + { + "id": "eb977cf8-8cf8-4c2d-8017-8eea84379ed5", + "name": "Granite City Food & Brewery (#28)", + "brewery_type": "brewpub", + "address_1": "699 W Big Beaver Rd", + "address_2": null, + "address_3": null, + "city": "Troy", + "state_province": "Michigan", + "postal_code": "48084-4920", + "country": "United States", + "longitude": -83.1616138, + "latitude": 42.56225169, + "phone": "2485191040", + "website_url": "http://www.gcfb.com", + "state": "Michigan", + "street": "699 W Big Beaver Rd" + }, + { + "id": "b985d531-a4ad-426c-94da-206264dd5eb0", + "name": "Granite City Food & Brewery (#29)", + "brewery_type": "brewpub", + "address_1": "11411 Olive Blvd", + "address_2": null, + "address_3": null, + "city": "Creve Coeur", + "state_province": "Missouri", + "postal_code": "63141-7108", + "country": "United States", + "longitude": -90.43338752, + "latitude": 38.67222065, + "phone": "3144323535", + "website_url": "http://www.gcfb.net", + "state": "Missouri", + "street": "11411 Olive Blvd" + }, + { + "id": "56feb638-f0e8-4ee7-945e-1a5402702dea", + "name": "Granite City Food & Brewery (#3)", + "brewery_type": "brewpub", + "address_1": "1636 42nd St SW", + "address_2": null, + "address_3": null, + "city": "Fargo", + "state_province": "North Dakota", + "postal_code": "58103-3324", + "country": "United States", + "longitude": -96.8500756, + "latitude": 46.8559768, + "phone": "7012933000", + "website_url": "http://www.gcfb.net", + "state": "North Dakota", + "street": "1636 42nd St SW" + }, + { + "id": "cf2342e4-b8a8-460b-ab54-3a5a8041394f", + "name": "Granite City Food & Brewery (#30)", + "brewery_type": "brewpub", + "address_1": "1828 Abriter Ct", + "address_2": null, + "address_3": null, + "city": "Naperville", + "state_province": "Illinois", + "postal_code": "60563-9368", + "country": "United States", + "longitude": -88.12944727, + "latitude": 41.80283897, + "phone": "6305443700", + "website_url": "http://www.gcfb.net", + "state": "Illinois", + "street": "1828 Abriter Ct" + }, + { + "id": "e01d7b7a-8df0-4110-b288-def9f385d8fd", + "name": "Granite City Food & Brewery (#31)", + "brewery_type": "brewpub", + "address_1": "801 N Plaza Dr", + "address_2": null, + "address_3": null, + "city": "Schaumburg", + "state_province": "Illinois", + "postal_code": "60173-4919", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6305235700", + "website_url": "http://www.gcfb.net", + "state": "Illinois", + "street": "801 N Plaza Dr" + }, + { + "id": "dffebed5-2cdf-4cfc-931e-9362d79864e9", + "name": "Granite City Food & Brewery (#32)", + "brewery_type": "brewpub", + "address_1": "39603 Traditions Dr", + "address_2": null, + "address_3": null, + "city": "Northville", + "state_province": "Michigan", + "postal_code": "48168-9496", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2486623400", + "website_url": "http://www.gcfb.net", + "state": "Michigan", + "street": "39603 Traditions Dr" + }, + { + "id": "eeb8b590-826b-4085-a6bc-f199c7c12d96", + "name": "Granite City Food & Brewery (#4)", + "brewery_type": "brewpub", + "address_1": "12801 University Ave", + "address_2": null, + "address_3": null, + "city": "Clive", + "state_province": "Iowa", + "postal_code": "50325-8219", + "country": "United States", + "longitude": -93.795293, + "latitude": 41.600494, + "phone": "5152241300", + "website_url": "http://www.gcfb.net", + "state": "Iowa", + "street": "12801 University Ave" + }, + { + "id": "3e536c0b-f3ec-4723-99e5-768baf817b55", + "name": "Granite City Food & Brewery (#5)", + "brewery_type": "brewpub", + "address_1": "4755 1st Ave SE", + "address_2": null, + "address_3": null, + "city": "Cedar Rapids", + "state_province": "Iowa", + "postal_code": "52402-3211", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3193957500", + "website_url": "http://www.gcfb.net", + "state": "Iowa", + "street": "4755 1st Ave SE" + }, + { + "id": "f61275ff-aa86-4a3a-8612-acd3d2af70a3", + "name": "Granite City Food & Brewery (#6)", + "brewery_type": "brewpub", + "address_1": "5270 Utica Ridge Rd", + "address_2": null, + "address_3": null, + "city": "Davenport", + "state_province": "Iowa", + "postal_code": "52807-3872", + "country": "United States", + "longitude": -90.51357975, + "latitude": 41.57457211, + "phone": "5633449700", + "website_url": "http://www.gcfb.net", + "state": "Iowa", + "street": "5270 Utica Ridge Rd" + }, + { + "id": "fe235f51-102d-4240-b5c9-b0adf45b5b92", + "name": "Granite City Food & Brewery (#7)", + "brewery_type": "brewpub", + "address_1": "6200 O St", + "address_2": null, + "address_3": null, + "city": "Lincoln", + "state_province": "Nebraska", + "postal_code": "68510-2240", + "country": "United States", + "longitude": -96.6872327, + "latitude": 40.8135885, + "phone": "4024661900", + "website_url": "http://www.gcfb.net", + "state": "Nebraska", + "street": "6200 O St" + }, + { + "id": "7f627de4-1a32-40dd-838f-5f0e3a4d700b", + "name": "Granite City Food & Brewery (#8)", + "brewery_type": "brewpub", + "address_1": "11909 Main St", + "address_2": null, + "address_3": null, + "city": "Maple Grove", + "state_province": "Minnesota", + "postal_code": "55369-7098", + "country": "United States", + "longitude": -93.4404863, + "latitude": 45.0916614, + "phone": "7634160010", + "website_url": "http://www.gcfb.net", + "state": "Minnesota", + "street": "11909 Main St" + }, + { + "id": "caab6c5c-2ab1-4496-8ef1-2181f9e4e912", + "name": "Granite City Food & Wort House", + "brewery_type": "micro", + "address_1": "1722 Detroit St", + "address_2": null, + "address_3": null, + "city": "Ellsworth", + "state_province": "Iowa", + "postal_code": "50075", + "country": "United States", + "longitude": -93.57473798, + "latitude": 42.31330919, + "phone": "5158364060", + "website_url": "http://www.gcfb.net", + "state": "Iowa", + "street": "1722 Detroit St" + }, + { + "id": "4c4a6c76-3b34-4061-b690-1d263451426d", + "name": "Granite Falls Brewing Co.", + "brewery_type": "brewpub", + "address_1": "47 Duke St", + "address_2": null, + "address_3": null, + "city": "Granite Falls", + "state_province": "North Carolina", + "postal_code": "28630-1807", + "country": "United States", + "longitude": -81.4285158, + "latitude": 35.7894173, + "phone": "8282121399", + "website_url": "http://www.GraniteFallsBrewing.com", + "state": "North Carolina", + "street": "47 Duke St" + }, + { + "id": "a4ab98db-77ec-4f71-a838-44b06827fbbd", + "name": "Granite Mountain Brewing", + "brewery_type": "micro", + "address_1": "123 N Cortez St", + "address_2": null, + "address_3": null, + "city": "Prescott", + "state_province": "Arizona", + "postal_code": "86302-1109", + "country": "United States", + "longitude": -112.4686018, + "latitude": 34.54238481, + "phone": "9287785535", + "website_url": "http://www.granitemountainbrewing.com", + "state": "Arizona", + "street": "123 N Cortez St" + }, + { + "id": "619567a1-5820-4d76-8e6f-9a6c9fdeb0bb", + "name": "Granite Roots Brewing", + "brewery_type": "closed", + "address_1": "244 N Main St", + "address_2": null, + "address_3": null, + "city": "Troy", + "state_province": "New Hampshire", + "postal_code": "03465", + "country": "United States", + "longitude": -72.18973144, + "latitude": 42.84401358, + "phone": "6032423435", + "website_url": "http://www.graniterootsbrewing.com", + "state": "New Hampshire", + "street": "244 N Main St" + }, + { + "id": "a9c8887b-fd79-4f21-b314-88c44a86c087", + "name": "Granville Brewing Company", + "brewery_type": "micro", + "address_1": "5371 Columbus Rd", + "address_2": null, + "address_3": null, + "city": "Granville", + "state_province": "Ohio", + "postal_code": "43023-9192", + "country": "United States", + "longitude": -82.58861603, + "latitude": 40.03527379, + "phone": null, + "website_url": "http://www.granvillewbrewing.com", + "state": "Ohio", + "street": "5371 Columbus Rd" + }, + { + "id": "1798b840-e915-4e64-a1ca-ac81a0bb8c84", + "name": "Grasslands Brewing Co", + "brewery_type": "micro", + "address_1": "603 W Gaines St Ste 7", + "address_2": null, + "address_3": null, + "city": "Tallahassee", + "state_province": "Florida", + "postal_code": "32304-4447", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8507653014", + "website_url": "http://www.grasslandsbrewery.com", + "state": "Florida", + "street": "603 W Gaines St Ste 7" + }, + { + "id": "b89876b4-681f-46b9-8716-d4a961954a7f", + "name": "Grassy Knoll brewing", + "brewery_type": "micro", + "address_1": "89 Bertie Street", + "address_2": null, + "address_3": null, + "city": "Port Melbourne", + "state_province": "VIC", + "postal_code": "3207", + "country": "Australia", + "longitude": 144.9370538, + "latitude": -37.8285701, + "phone": "+61 3 8644 4044", + "website_url": "http://www.cbco.beer/", + "state": "VIC", + "street": "89 Bertie Street" + }, + { + "id": "5cb67e83-2c03-4d60-b6b1-0e0aa47c72f9", + "name": "Grateful Grain Brewing Company", + "brewery_type": "micro", + "address_1": "26 Route 126", + "address_2": null, + "address_3": null, + "city": "Monmouth", + "state_province": "Maine", + "postal_code": "04259-7727", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.gratefulgrainbrewing.com", + "state": "Maine", + "street": "26 Route 126" + }, + { + "id": "283bb159-494a-47b1-a58b-0229bbcb4891", + "name": "Gravel Bottom Craft Brewery", + "brewery_type": "micro", + "address_1": "452 Ada Dr SE", + "address_2": null, + "address_3": null, + "city": "Ada", + "state_province": "Michigan", + "postal_code": "49301", + "country": "United States", + "longitude": -85.4857858, + "latitude": 42.955144, + "phone": "6169207398", + "website_url": "http://www.gravelbottom.com", + "state": "Michigan", + "street": "452 Ada Dr SE" + }, + { + "id": "99a1c592-3e0a-47fb-b35c-682a601b29c7", + "name": "Gravely Brewing Co.", + "brewery_type": "micro", + "address_1": "514 Baxter Ave", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40204-1104", + "country": "United States", + "longitude": -85.7301702, + "latitude": 38.2470763, + "phone": "5028223202", + "website_url": "http://www.gravelybrewing.com", + "state": "Kentucky", + "street": "514 Baxter Ave" + }, + { + "id": "3eb5427c-533e-4d66-acd1-3f5643020f35", + "name": "Gravity Ales LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Swarthmore", + "state_province": "Pennsylvania", + "postal_code": "19081-1421", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6105472235", + "website_url": "http://gravityales.com", + "state": "Pennsylvania", + "street": null + }, + { + "id": "2c912fda-7f96-474d-8871-f534c6ccdb9e", + "name": "Gravity Brew Works", + "brewery_type": "micro", + "address_1": "11512 Hwy 14 E", + "address_2": null, + "address_3": null, + "city": "Big Flat", + "state_province": "Arkansas", + "postal_code": "72617", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8704482077", + "website_url": "http://www.gravitybrewworks.com", + "state": "Arkansas", + "street": "11512 Hwy 14 E" + }, + { + "id": "a29926af-93f7-4b62-9c4b-fc0dadeeaee0", + "name": "Gravity Brewing", + "brewery_type": "micro", + "address_1": "1150 Pine St Unit B", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Colorado", + "postal_code": "80027-1463", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3035440746", + "website_url": "http://www.thegravitybrewing.com", + "state": "Colorado", + "street": "1150 Pine St Unit B" + }, + { + "id": "8e531fdc-43a7-4783-a070-546bd56b250d", + "name": "Gravity Brewlab", + "brewery_type": "contract", + "address_1": "1521 Alton Rd # 591", + "address_2": null, + "address_3": null, + "city": "Miami Beach", + "state_province": "Florida", + "postal_code": "33139-3301", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7865367085", + "website_url": "http://www.Gravity.beer", + "state": "Florida", + "street": "1521 Alton Rd # 591" + }, + { + "id": "166dfb9e-0c4e-4ffc-ad52-f1eb798265fc", + "name": "GravSouth Brewing Co.", + "brewery_type": "brewpub", + "address_1": "7950 Redwood Dr Ste 15", + "address_2": null, + "address_3": null, + "city": "Cotati", + "state_province": "California", + "postal_code": "94931-3054", + "country": "United States", + "longitude": -122.7140388, + "latitude": 38.33255458, + "phone": "7077534198", + "website_url": "http://www.gravsouthbrewco.com", + "state": "California", + "street": "7950 Redwood Dr Ste 15" + }, + { + "id": "8e5e28a5-6bfb-4b74-8a0e-760cf636fd96", + "name": "Gray Brewing Co", + "brewery_type": "micro", + "address_1": "2424 W Court St", + "address_2": null, + "address_3": null, + "city": "Janesville", + "state_province": "Wisconsin", + "postal_code": "53548", + "country": "United States", + "longitude": -89.04972689, + "latitude": 42.67930794, + "phone": "6087565430", + "website_url": null, + "state": "Wisconsin", + "street": "2424 W Court St" + }, + { + "id": "b560642e-b3a4-4ec9-9a71-00fb884ee623", + "name": "Grayton Beer Brewpub", + "brewery_type": "brewpub", + "address_1": "217 Serenoa Rd", + "address_2": null, + "address_3": null, + "city": "Santa Rosa Beach", + "state_province": "Florida", + "postal_code": "32459-6099", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8502314786", + "website_url": null, + "state": "Florida", + "street": "217 Serenoa Rd" + }, + { + "id": "e19d6c20-0f5a-4b68-859f-ad96654840f2", + "name": "Grayton Beer Company", + "brewery_type": "micro", + "address_1": "217 Serenoa Rd", + "address_2": null, + "address_3": null, + "city": "Santa Rosa Beach", + "state_province": "Florida", + "postal_code": "32459-6099", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8502314786", + "website_url": "http://www.graytonbeer.com", + "state": "Florida", + "street": "217 Serenoa Rd" + }, + { + "id": "7fc10d9b-8289-4db8-9bc4-c09e72d94b6e", + "name": "Greasy Luck Brewery", + "brewery_type": "brewpub", + "address_1": "791 Purchase St", + "address_2": null, + "address_3": null, + "city": "New Bedford", + "state_province": "Massachusetts", + "postal_code": "02740-6345", + "country": "United States", + "longitude": -70.92607527, + "latitude": 41.63507079, + "phone": "7744254600", + "website_url": "http://www.greasyluckbrewery.com", + "state": "Massachusetts", + "street": "791 Purchase St" + }, + { + "id": "607a358d-eef1-4db9-bffc-99c6640b5932", + "name": "Great Adirondack Brewing Company", + "brewery_type": "brewpub", + "address_1": "2442 Main St", + "address_2": null, + "address_3": null, + "city": "Lake Placid", + "state_province": "New York", + "postal_code": "12946-3300", + "country": "United States", + "longitude": -73.985385, + "latitude": 44.288397, + "phone": "5185231629", + "website_url": "http://www.adksteakandseafood.com", + "state": "New York", + "street": "2442 Main St" + }, + { + "id": "fd35a948-4353-490d-8e2c-1ea12ddf0533", + "name": "Great American Restaurants, Sweetwater Tavern", + "brewery_type": "brewpub", + "address_1": "14250 Sweetwater Ln", + "address_2": null, + "address_3": null, + "city": "Centreville", + "state_province": "Virginia", + "postal_code": "20121-5336", + "country": "United States", + "longitude": -77.43946496, + "latitude": 38.82898546, + "phone": "7034491100", + "website_url": "http://www.greatamericanrestaurants.com", + "state": "Virginia", + "street": "14250 Sweetwater Ln" + }, + { + "id": "61858953-2b5c-4ec2-b8a1-e0eb3770bc1f", + "name": "Great American Restaurants, Sweetwater Tavern", + "brewery_type": "brewpub", + "address_1": "3066 Gate House Plz", + "address_2": null, + "address_3": null, + "city": "Falls Church", + "state_province": "Virginia", + "postal_code": "22042-1028", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7036458100", + "website_url": "http://www.greatamericanrestaurants.com", + "state": "Virginia", + "street": "3066 Gate House Plz" + }, + { + "id": "bd1e519b-ec63-49ca-954f-68394ee94d8a", + "name": "Great American Restaurants, Sweetwater Tavern", + "brewery_type": "brewpub", + "address_1": "45980 Waterview Plz", + "address_2": null, + "address_3": null, + "city": "Sterling", + "state_province": "Virginia", + "postal_code": "20166-6556", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5714346500", + "website_url": "http://www.greatamericanrestaurants.com", + "state": "Virginia", + "street": "45980 Waterview Plz" + }, + { + "id": "a92779ca-47e3-4b0b-ab0a-59050ebac620", + "name": "Great Baraboo Brewing Co", + "brewery_type": "brewpub", + "address_1": "35905 Utica Rd", + "address_2": null, + "address_3": null, + "city": "Clinton Township", + "state_province": "Michigan", + "postal_code": "48035-2155", + "country": "United States", + "longitude": -82.96514018, + "latitude": 42.56028034, + "phone": "5867927397", + "website_url": "http://www.greatbaraboo.com", + "state": "Michigan", + "street": "35905 Utica Rd" + }, + { + "id": "09762409-cb4e-4a66-bed3-77788daf8a67", + "name": "Great Barn Brewery", + "brewery_type": "micro", + "address_1": "12 W Mechanic St", + "address_2": null, + "address_3": null, + "city": "New Hope", + "state_province": "Pennsylvania", + "postal_code": "18938", + "country": "United States", + "longitude": -74.95077675, + "latitude": 40.36199585, + "phone": null, + "website_url": "http://www.greatbarnbrewery.com", + "state": "Pennsylvania", + "street": "12 W Mechanic St" + }, + { + "id": "285ea0ca-b7c9-4e81-b72c-ece23cb76946", + "name": "Great Basin Brewing Co", + "brewery_type": "brewpub", + "address_1": "5525 S Virginia St", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89502-6085", + "country": "United States", + "longitude": -119.789957, + "latitude": 39.4762338, + "phone": "7752847711", + "website_url": "http://www.greatbasinbrewingco.com", + "state": "Nevada", + "street": "5525 S Virginia St" + }, + { + "id": "9220f96f-aeaa-48d9-b5b3-7a8e6e228730", + "name": "Great Basin Brewing Co", + "brewery_type": "brewpub", + "address_1": "846 Victorian Ave", + "address_2": null, + "address_3": null, + "city": "Sparks", + "state_province": "Nevada", + "postal_code": "89431-5275", + "country": "United States", + "longitude": -119.775003, + "latitude": 39.53533, + "phone": "7753557711", + "website_url": "http://www.greatbasinbrewingco.com", + "state": "Nevada", + "street": "846 Victorian Ave" + }, + { + "id": "8fb7a6e3-f6ef-47a3-b8e2-46b280be97d6", + "name": "Great Basin Brewing Co - Production Facility", + "brewery_type": "micro", + "address_1": "1155 S Rock Blvd Ste 490", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89502-7174", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7753557711", + "website_url": "http://www.greatbasinbrewingco.com", + "state": "Nevada", + "street": "1155 S Rock Blvd Ste 490" + }, + { + "id": "fe4b240e-0ef8-477e-9c77-0819de38d3e6", + "name": "Great Beer Co", + "brewery_type": "contract", + "address_1": "21119 Superior St", + "address_2": null, + "address_3": null, + "city": "Chatsworth", + "state_province": "California", + "postal_code": "91311-4309", + "country": "United States", + "longitude": -118.5932845, + "latitude": 34.24643282, + "phone": "8187182739", + "website_url": "http://www.greatbeerco.com", + "state": "California", + "street": "21119 Superior St" + }, + { + "id": "c4a394ea-a3df-4a0d-892b-92972acabf9a", + "name": "Great Black Swamp Brewing Co", + "brewery_type": "micro", + "address_1": "3323 Monroe St", + "address_2": null, + "address_3": null, + "city": "Toledo", + "state_province": "Ohio", + "postal_code": "43606-4553", + "country": "United States", + "longitude": -83.5462275, + "latitude": 41.6530711, + "phone": "4199731256", + "website_url": "http://www.greatblackswampbrewing.com", + "state": "Ohio", + "street": "3323 Monroe St" + }, + { + "id": "85e12381-2a52-4710-9be4-0c4243976f28", + "name": "Great Burn Brewing", + "brewery_type": "micro", + "address_1": "2230 McDonald Ave", + "address_2": null, + "address_3": null, + "city": "Missoula", + "state_province": "Montana", + "postal_code": "59801-8802", + "country": "United States", + "longitude": -114.033997, + "latitude": 46.83979192, + "phone": "4063171557", + "website_url": "http://www.greatburnbrewing.com", + "state": "Montana", + "street": "2230 McDonald Ave" + }, + { + "id": "dc1ca2e3-86c7-44b5-aaae-adad3420225f", + "name": "Great Central Brewing Company", + "brewery_type": "micro", + "address_1": "221 N Wood St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60612-2614", + "country": "United States", + "longitude": -87.6712098, + "latitude": 41.8858315, + "phone": "8554644222", + "website_url": "http://www.greatcentralbrewing.com", + "state": "Illinois", + "street": "221 N Wood St" + }, + { + "id": "c5317022-24b2-4730-bca5-2c72d7f68e0b", + "name": "Great Change Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Bakersfield", + "state_province": "California", + "postal_code": "93313", + "country": "United States", + "longitude": -119.0194639, + "latitude": 35.3738712, + "phone": "6195170736", + "website_url": "http://www.greatchangebrewing.com", + "state": "California", + "street": null + }, + { + "id": "dc3e008a-2387-4aea-addd-c05a1049ee89", + "name": "Great Chicago Fire Brewery and Tap Room", + "brewery_type": "brewpub", + "address_1": "311 W Magnolia St", + "address_2": null, + "address_3": null, + "city": "Leesburg", + "state_province": "Florida", + "postal_code": "34748-5894", + "country": "United States", + "longitude": -81.8767662, + "latitude": 28.81023951, + "phone": "3524742739", + "website_url": "http://www.chifibrew.com", + "state": "Florida", + "street": "311 W Magnolia St" + }, + { + "id": "318e515a-fa20-42bb-a8f8-473485d2dbe1", + "name": "Great Crescent Brewery", + "brewery_type": "micro", + "address_1": "315 Importing St", + "address_2": null, + "address_3": null, + "city": "Aurora", + "state_province": "Indiana", + "postal_code": "47001-1415", + "country": "United States", + "longitude": -84.90051257, + "latitude": 39.05760229, + "phone": "8126559079", + "website_url": "http://www.gcbeer.com", + "state": "Indiana", + "street": "315 Importing St" + }, + { + "id": "87921dc2-786e-412d-a560-399768f7cd7b", + "name": "Great Dane Pub and Brewing Co - Downtown", + "brewery_type": "brewpub", + "address_1": "123 E Doty St Ste 1", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Wisconsin", + "postal_code": "53703-5134", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6082840000", + "website_url": "http://www.greatdanepub.com", + "state": "Wisconsin", + "street": "123 E Doty St Ste 1" + }, + { + "id": "7efb41b5-7e36-44e0-86a6-23ff349c0265", + "name": "Great Dane Pub and Brewing Co - Fitchburg", + "brewery_type": "brewpub", + "address_1": "2980 Cahill Main", + "address_2": null, + "address_3": null, + "city": "Fitchburg", + "state_province": "Wisconsin", + "postal_code": "53711-7146", + "country": "United States", + "longitude": -89.42370903, + "latitude": 43.01816267, + "phone": "6084429000", + "website_url": "http://www.greatdanepub.com", + "state": "Wisconsin", + "street": "2980 Cahill Main" + }, + { + "id": "986c3bd0-6cf7-4949-83af-25c4b7439257", + "name": "Great Dane Pub and Brewing Co -- Hilldale", + "brewery_type": "brewpub", + "address_1": "357 Price Pl", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Wisconsin", + "postal_code": "53705-3208", + "country": "United States", + "longitude": -89.45243818, + "latitude": 43.07061375, + "phone": "6086619400", + "website_url": "http://www.greatdanepub.com", + "state": "Wisconsin", + "street": "357 Price Pl" + }, + { + "id": "d69ee73d-78ca-4d7f-b293-0a02f0df6e5f", + "name": "Great Dane Pub and Brewing Co- Wausau", + "brewery_type": "brewpub", + "address_1": "2305 Sherman St", + "address_2": null, + "address_3": null, + "city": "Wausau", + "state_province": "Wisconsin", + "postal_code": "54401-1708", + "country": "United States", + "longitude": -89.66482568, + "latitude": 44.9511963, + "phone": "7158453000", + "website_url": "http://www.greatdanepub.com", + "state": "Wisconsin", + "street": "2305 Sherman St" + }, + { + "id": "f2734f1f-4106-4b74-84b6-16ee5d4e0f1c", + "name": "Great Divide Brewery & Roadhouse - Castle Rock", + "brewery_type": "brewpub", + "address_1": "215 Wilcox St", + "address_2": null, + "address_3": null, + "city": "Castle Rock", + "state_province": "Colorado", + "postal_code": "80104", + "country": "United States", + "longitude": -104.8604851, + "latitude": 39.371586, + "phone": "3039555788", + "website_url": "https://www.greatdividebreweryandroadhouse.com/", + "state": "Colorado", + "street": "215 Wilcox St" + }, + { + "id": "6a8bae2f-396a-4349-90f5-f4dc6c4ea5e8", + "name": "Great Divide Brewery & Roadhouse - Lone Tree", + "brewery_type": "brewpub", + "address_1": "9978 Sky Ridge Ave #240", + "address_2": null, + "address_3": null, + "city": "Lone Tree", + "state_province": "Colorado", + "postal_code": "80124", + "country": "United States", + "longitude": -104.873104, + "latitude": 39.5323743, + "phone": "7205472533", + "website_url": "https://www.greatdividebreweryandroadhouse.com/", + "state": "Colorado", + "street": "9978 Sky Ridge Ave #240" + }, + { + "id": "8d07cc1f-6941-4ee7-8fbe-6ce91eb7b098", + "name": "Great Divide Brewing Co", + "brewery_type": "regional", + "address_1": "2201 Arapahoe St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80205-2512", + "country": "United States", + "longitude": -104.9885279, + "latitude": 39.7539229, + "phone": "3032969460", + "website_url": "http://www.greatdivide.com", + "state": "Colorado", + "street": "2201 Arapahoe St" + }, + { + "id": "419be70a-a970-41f1-99cd-0b42875001e5", + "name": "Great Divide Brewing Co - RiNo Barrel Bar", + "brewery_type": "micro", + "address_1": "1812 35th St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80216-3665", + "country": "United States", + "longitude": -104.979247, + "latitude": 39.7703322, + "phone": "3032969460", + "website_url": "http://greatdivide.com/", + "state": "Colorado", + "street": "1812 35th St" + }, + { + "id": "9a89836a-5d4d-46f4-b51c-4150cc63fc72", + "name": "Great Falls Brewing Company", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Canaan", + "state_province": "Connecticut", + "postal_code": "06018", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8609217843", + "website_url": "http://GreatFallsBrews.com", + "state": "Connecticut", + "street": null + }, + { + "id": "cbf3ff33-da42-4d33-9a6e-8fe1aec55b7c", + "name": "Great Flats Brewing", + "brewery_type": "micro", + "address_1": "151 Lafayette St", + "address_2": null, + "address_3": null, + "city": "Schenectady", + "state_province": "New York", + "postal_code": "12305-2051", + "country": "United States", + "longitude": -73.93839638, + "latitude": 42.81243538, + "phone": "5182800232", + "website_url": "http://www.greatflatsbrewing.com", + "state": "New York", + "street": "151 Lafayette St" + }, + { + "id": "461de6a5-8f4f-4422-a103-df77bd33e6af", + "name": "Great Flood Brewing", + "brewery_type": "micro", + "address_1": "2120 Bardstown Rd", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40205-1916", + "country": "United States", + "longitude": -85.6938076, + "latitude": 38.2239974, + "phone": "5024577711", + "website_url": "http://www.greatfloodbrewing.com", + "state": "Kentucky", + "street": "2120 Bardstown Rd" + }, + { + "id": "cc9854cc-ed86-4336-8a59-4076b40248a5", + "name": "Great Flood Brewing- Production Facility", + "brewery_type": "micro", + "address_1": "629 Bergman St", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40203-2618", + "country": "United States", + "longitude": -85.74511415, + "latitude": 38.2290463, + "phone": "5024577711", + "website_url": null, + "state": "Kentucky", + "street": "629 Bergman St" + }, + { + "id": "aa504ab3-d1c2-46b7-9070-c2b622275a93", + "name": "Great Frontier Brewing Company", + "brewery_type": "micro", + "address_1": "2010 S Oak St", + "address_2": null, + "address_3": null, + "city": "Lakewood", + "state_province": "Colorado", + "postal_code": "80227-2050", + "country": "United States", + "longitude": -105.1177216, + "latitude": 39.6813614, + "phone": "7203281758", + "website_url": "http://www.greatfrontierbeer.com", + "state": "Colorado", + "street": "2010 S Oak St" + }, + { + "id": "fb5582cb-ab8e-4a54-b59e-ad6d5092a60b", + "name": "Great Heights Brewing Company", + "brewery_type": "micro", + "address_1": "938 Wakefield Dr", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77018-6204", + "country": "United States", + "longitude": -95.4223629, + "latitude": 29.8216738, + "phone": "2812206900", + "website_url": "http://www.greatheightsbrewing.com", + "state": "Texas", + "street": "938 Wakefield Dr" + }, + { + "id": "a82ef238-d0fd-40f4-aa1f-c6111d573e45", + "name": "Great Hops Brewing Co.", + "brewery_type": "micro", + "address_1": "33 Old Inverell Road", + "address_2": null, + "address_3": null, + "city": "Armidale", + "state_province": "NSW", + "postal_code": "2350", + "country": "Australia", + "longitude": 151.6334686, + "latitude": -30.5002899, + "phone": "+61 2 5713 0140", + "website_url": "https://www.greathops.com.au/", + "state": "NSW", + "street": "33 Old Inverell Road" + }, + { + "id": "5c7ca72a-568e-4586-b3cb-10043ee53764", + "name": "Great Lakes Brewing Co", + "brewery_type": "regional", + "address_1": "1947 W 28th St", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44113-3422", + "country": "United States", + "longitude": -81.70571113, + "latitude": 41.48405803, + "phone": "2167714404", + "website_url": "http://www.greatlakesbrewing.com", + "state": "Ohio", + "street": "1947 W 28th St" + }, + { + "id": "2517f2a6-d216-43be-be6e-e3bdace21d54", + "name": "Great Lakes Brewing Co", + "brewery_type": "brewpub", + "address_1": "2516 Market Ave", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44113-3434", + "country": "United States", + "longitude": -81.7044266, + "latitude": 41.4844172, + "phone": null, + "website_url": "http://www.greatlakesbrewing.com", + "state": "Ohio", + "street": "2516 Market Ave" + }, + { + "id": "20230888-8096-4466-8d22-29d016781c9c", + "name": "Great Legs Winery, Brewery, and Distillery", + "brewery_type": "micro", + "address_1": "332 E Lakewood Blvd", + "address_2": null, + "address_3": null, + "city": "Holland", + "state_province": "Michigan", + "postal_code": "49424-3306", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6169169729", + "website_url": "http://www.greatlegswinery.com", + "state": "Michigan", + "street": "332 E Lakewood Blvd" + }, + { + "id": "7f6f03e1-2627-4805-b25e-0f2b21f3b8d5", + "name": "Great Life Brewing", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "West Park", + "state_province": "New York", + "postal_code": "12493", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8453313700", + "website_url": "http://www.greatlifebrewing.com", + "state": "New York", + "street": null + }, + { + "id": "b10d422b-421d-4eab-9688-11783edace14", + "name": "Great North Aleworks", + "brewery_type": "micro", + "address_1": "1050 Holt Ave Unit 14", + "address_2": null, + "address_3": null, + "city": "Manchester", + "state_province": "New Hampshire", + "postal_code": "03109-5615", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6034988152", + "website_url": "http://greatnorthaleworks.com", + "state": "New Hampshire", + "street": "1050 Holt Ave Unit 14" + }, + { + "id": "67922a32-e4c3-4ef0-ae6e-6c3ef0c33286", + "name": "Great Northern Brewing Co", + "brewery_type": "micro", + "address_1": "2 Central Ave", + "address_2": null, + "address_3": null, + "city": "Whitefish", + "state_province": "Montana", + "postal_code": "59937-2547", + "country": "United States", + "longitude": -114.3370175, + "latitude": 48.4123443, + "phone": "4068631000", + "website_url": "http://www.greatnorthernbrewing.com", + "state": "Montana", + "street": "2 Central Ave" + }, + { + "id": "241b680f-f114-440d-a662-67869a68e262", + "name": "Great Notion Brewing", + "brewery_type": "brewpub", + "address_1": "2204 NE Alberta St Ste 101", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97211-5885", + "country": "United States", + "longitude": -122.64249, + "latitude": 45.55884, + "phone": "5035484491", + "website_url": "http://www.greatnotionpdx.com", + "state": "Oregon", + "street": "2204 NE Alberta St Ste 101" + }, + { + "id": "e7857396-5a4b-4d13-9280-5bc209512ee0", + "name": "Great Notion Brewing NW", + "brewery_type": "micro", + "address_1": "2444 NW 28th Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97210", + "country": "United States", + "longitude": -122.7089599, + "latitude": 45.54001975, + "phone": "5035484491", + "website_url": null, + "state": "Oregon", + "street": "2444 NW 28th Ave" + }, + { + "id": "514b488e-616a-49fd-9496-eb1a97fe5ba2", + "name": "Great Ocean Road Brewing", + "brewery_type": "micro", + "address_1": "112 Balliang Street", + "address_2": null, + "address_3": null, + "city": "South Geelong", + "state_province": "VIC", + "postal_code": "3220", + "country": "Australia", + "longitude": 144.3660395, + "latitude": -38.1639968, + "phone": "+61 406 752 043", + "website_url": "http://greatoceanroadbrewing.com.au/", + "state": "VIC", + "street": "112 Balliang Street" + }, + { + "id": "457a1fd7-e41f-4229-9c47-0ad74fb4ed90", + "name": "Great Raft Brewing", + "brewery_type": "micro", + "address_1": "1251 Dalzell St", + "address_2": null, + "address_3": null, + "city": "Shreveport", + "state_province": "Louisiana", + "postal_code": "71103-3705", + "country": "United States", + "longitude": -93.75545669, + "latitude": 32.48900686, + "phone": "3187348101", + "website_url": "http://www.greatraftbrewing.com", + "state": "Louisiana", + "street": "1251 Dalzell St" + }, + { + "id": "facf7af6-1103-42ef-9522-de783df81127", + "name": "Great Rhythm Brewing Co.", + "brewery_type": "micro", + "address_1": "105 Bartlett St Ste 6", + "address_2": null, + "address_3": null, + "city": "Portsmouth", + "state_province": "New Hampshire", + "postal_code": "03801-7608", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6034309640", + "website_url": "http://www.greatrhythmbrewing.com", + "state": "New Hampshire", + "street": "105 Bartlett St Ste 6" + }, + { + "id": "2934514c-a0f6-4810-8f4b-042fcb398a0c", + "name": "Great River Brewery", + "brewery_type": "micro", + "address_1": "332 E 2nd St", + "address_2": null, + "address_3": null, + "city": "Davenport", + "state_province": "Iowa", + "postal_code": "52801-1702", + "country": "United States", + "longitude": -90.57063937, + "latitude": 41.52138805, + "phone": "3195415160", + "website_url": "http://www.greatriverbrewery.com", + "state": "Iowa", + "street": "332 E 2nd St" + }, + { + "id": "e681f620-b2fc-445a-afd9-a8777f87d738", + "name": "Great South Bay Brewery", + "brewery_type": "micro", + "address_1": "25 Drexel Dr", + "address_2": null, + "address_3": null, + "city": "Bay Shore", + "state_province": "New York", + "postal_code": "11706-2234", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6313928472", + "website_url": "http://www.greatsouthbaybrewery.com", + "state": "New York", + "street": "25 Drexel Dr" + }, + { + "id": "fdaa1da1-63fb-4a46-9ebc-4dd94bcc3a39", + "name": "Great Valley Farm Brewery", + "brewery_type": "micro", + "address_1": "60 Great Valley Ln", + "address_2": null, + "address_3": null, + "city": "Natural Bridge", + "state_province": "Virginia", + "postal_code": "24578-1100", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5405216163", + "website_url": "http://greatvalleyfarmbrewery.com", + "state": "Virginia", + "street": "60 Great Valley Ln" + }, + { + "id": "64c21730-f704-40c9-98b8-132b3dc1a37e", + "name": "Great Waters Brewing Company", + "brewery_type": "brewpub", + "address_1": "426 Saint Peter St", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55102-1105", + "country": "United States", + "longitude": -93.096926, + "latitude": 44.94672, + "phone": "6512242739", + "website_url": "http://www.greatwatersbc.com", + "state": "Minnesota", + "street": "426 Saint Peter St" + }, + { + "id": "f54f3497-c3bd-406e-a185-c65382c8d7d6", + "name": "Greater Good Imperial Brew Co", + "brewery_type": "brewpub", + "address_1": "55 Millbrook St", + "address_2": null, + "address_3": null, + "city": "Worcester", + "state_province": "Massachusetts", + "postal_code": "01606", + "country": "United States", + "longitude": -71.80355503, + "latitude": 42.2891295, + "phone": null, + "website_url": "http://www.greatergoodimperials.com", + "state": "Massachusetts", + "street": "55 Millbrook St" + }, + { + "id": "4b13f893-3c0a-43a6-a28d-b626ac495e00", + "name": "Green Beacon Brewing Co.", + "brewery_type": "large", + "address_1": "26 Helen Street", + "address_2": null, + "address_3": null, + "city": "Teneriffe", + "state_province": "QLD", + "postal_code": "4005", + "country": "Australia", + "longitude": 153.046519, + "latitude": -27.4528282, + "phone": "+61 460 408 697", + "website_url": "http://www.greenbeacon.com.au/", + "state": "QLD", + "street": "26 Helen Street" + }, + { + "id": "b77b713c-c91c-4c44-8dc2-13148b04edee", + "name": "Green Bench Brewing Co", + "brewery_type": "micro", + "address_1": "1133 Baum Ave N", + "address_2": null, + "address_3": null, + "city": "Saint Petersburg", + "state_province": "Florida", + "postal_code": "33705-1555", + "country": "United States", + "longitude": -82.65067185, + "latitude": 27.7717121, + "phone": "7278007836", + "website_url": "http://www.greenbenchbrewing.com", + "state": "Florida", + "street": "1133 Baum Ave N" + }, + { + "id": "7eda7b52-0edb-46d1-ab98-6a6fb5a00855", + "name": "Green Bird Cellars and Organic Farms", + "brewery_type": "micro", + "address_1": "9825 E Engles Rd", + "address_2": null, + "address_3": null, + "city": "Northport", + "state_province": "Michigan", + "postal_code": "49670-9408", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2313865636", + "website_url": "http://www.greenbirdcellars.com", + "state": "Michigan", + "street": "9825 E Engles Rd" + }, + { + "id": "fad0bdb4-e128-4ff5-bd61-d32139d55f7b", + "name": "Green Bus Brewing", + "brewery_type": "brewpub", + "address_1": "206 Eustis Ave SE", + "address_2": null, + "address_3": null, + "city": "Huntsville", + "state_province": "Alabama", + "postal_code": "35801-4233", + "country": "United States", + "longitude": -86.58405136, + "latitude": 34.73010503, + "phone": "2569902477", + "website_url": "http://www.greenbusbrewing.com", + "state": "Alabama", + "street": "206 Eustis Ave SE" + }, + { + "id": "c9cccb9d-9cba-4a52-a082-b44a4db1551a", + "name": "Green Cheek Beer Company", + "brewery_type": "micro", + "address_1": "2957 Randolph Av unit B", + "address_2": null, + "address_3": null, + "city": "Costa Mesa", + "state_province": "California", + "postal_code": "92626", + "country": "United States", + "longitude": -117.8882255, + "latitude": 33.67893714, + "phone": "7147604995", + "website_url": null, + "state": "California", + "street": "2957 Randolph Av unit B" + }, + { + "id": "cb8cc1f7-2ec1-47a8-af72-66f44320b4ed", + "name": "Green Cheek Beer Company", + "brewery_type": "micro", + "address_1": "2294 N Batavia St Ste C", + "address_2": null, + "address_3": null, + "city": "Orange", + "state_province": "California", + "postal_code": "92865-3108", + "country": "United States", + "longitude": -117.8639647, + "latitude": 33.82585285, + "phone": "7149988172", + "website_url": null, + "state": "California", + "street": "2294 N Batavia St Ste C" + }, + { + "id": "0bafd51b-5a8c-4aaf-999c-13065b7014ce", + "name": "Green Earth Brewing Company", + "brewery_type": "micro", + "address_1": "725 10th St Unit A", + "address_2": null, + "address_3": null, + "city": "Greeley", + "state_province": "Colorado", + "postal_code": "80631-1139", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9707022332", + "website_url": "http://www.greenearthbrewingco.com", + "state": "Colorado", + "street": "725 10th St Unit A" + }, + { + "id": "3fece130-900d-4f23-99cc-5b35402a403c", + "name": "Green Feet Brewing", + "brewery_type": "micro", + "address_1": "3669 E 44th St", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85713-6814", + "country": "United States", + "longitude": -110.9232648, + "latitude": 32.1843632, + "phone": "5209771691", + "website_url": "http://www.greenfeetbrewing.com", + "state": "Arizona", + "street": "3669 E 44th St" + }, + { + "id": "81bda7fc-e284-4140-b2b0-7d43f5ad9212", + "name": "Green Flash Brewing Co", + "brewery_type": "closed", + "address_1": "1630 P St", + "address_2": null, + "address_3": null, + "city": "Lincoln", + "state_province": "Nebraska", + "postal_code": "68508-1644", + "country": "United States", + "longitude": -96.69768022, + "latitude": 40.81481116, + "phone": "4029752285", + "website_url": null, + "state": "Nebraska", + "street": "1630 P St" + }, + { + "id": "f2a06d1e-b89f-40c2-9a52-938dc502ac9b", + "name": "Green Flash Brewing Co", + "brewery_type": "regional", + "address_1": "6550 Mira Mesa Blvd", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92121-4100", + "country": "United States", + "longitude": -117.113975, + "latitude": 32.9167796, + "phone": "8586220085", + "website_url": "http://www.greenflashbrew.com", + "state": "California", + "street": "6550 Mira Mesa Blvd" + }, + { + "id": "76e7738e-61bf-472b-8e97-44c5b2f5d2af", + "name": "Green Gecko Brewing Co - St. Croix USVI", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "North Conway", + "state_province": "New Hampshire", + "postal_code": "03860-3190", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6038606608", + "website_url": null, + "state": "New Hampshire", + "street": null + }, + { + "id": "63707511-0d3a-4b8b-a27c-46e1c785f6e8", + "name": "Green Gully Brewing", + "brewery_type": "micro", + "address_1": "79 Coghlan Road", + "address_2": null, + "address_3": null, + "city": "Cowes", + "state_province": "VIC", + "postal_code": "3922", + "country": "Australia", + "longitude": 145.2573309, + "latitude": -38.4755139, + "phone": "+61 429 832 304", + "website_url": "http://www.islandbeer.com.au/", + "state": "VIC", + "street": "79 Coghlan Road" + }, + { + "id": "467e3456-7b3b-4cc5-abe6-e86460e3473d", + "name": "Green Man Brewing Co", + "brewery_type": "micro", + "address_1": "27 Buxton Ave", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28801-4019", + "country": "United States", + "longitude": -82.55367153, + "latitude": 35.5886249, + "phone": "8282525502", + "website_url": "http://www.greenmanbrewery.com", + "state": "North Carolina", + "street": "27 Buxton Ave" + }, + { + "id": "c949181b-f591-4035-b309-e04b5676ecfa", + "name": "Green Mountain Beer Company", + "brewery_type": "micro", + "address_1": "2585 S Lewis Way Unit 110", + "address_2": null, + "address_3": null, + "city": "Lakewood", + "state_province": "Colorado", + "postal_code": "80227-6560", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3039860201", + "website_url": "http://www.greenmountainbeercompany.com", + "state": "Colorado", + "street": "2585 S Lewis Way Unit 110" + }, + { + "id": "99d5c421-3198-4d61-98b1-726595c930e2", + "name": "Green Oak Brewing", + "brewery_type": "brewpub", + "address_1": "1427 Wine Country Rd", + "address_2": null, + "address_3": null, + "city": "Prosser", + "state_province": "Washington", + "postal_code": "99350-1148", + "country": "United States", + "longitude": -119.7707374, + "latitude": 46.210051, + "phone": "5097864922", + "website_url": "http://www.whitstranbrewing.com", + "state": "Washington", + "street": "1427 Wine Country Rd" + }, + { + "id": "6e0bab8b-6adc-4584-b6d1-927c9379fdd6", + "name": "Green Room Brewing", + "brewery_type": "micro", + "address_1": "228 3rd St N", + "address_2": null, + "address_3": null, + "city": "Jacksonville Beach", + "state_province": "Florida", + "postal_code": "32250-6935", + "country": "United States", + "longitude": -81.39230143, + "latitude": 30.29033471, + "phone": "9042019283", + "website_url": "http://www.greenroombrewing.com", + "state": "Florida", + "street": "228 3rd St N" + }, + { + "id": "113283e7-f702-44d8-b86c-1203b4e20421", + "name": "Green Room Burgers & Beer", + "brewery_type": "brewpub", + "address_1": "4010 Pennsylvania Ave", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64111-3010", + "country": "United States", + "longitude": -94.5932559, + "latitude": 39.0544808, + "phone": "8162167682", + "website_url": "http://www.greenroomkc.com", + "state": "Missouri", + "street": "4010 Pennsylvania Ave" + }, + { + "id": "9a1cdb87-cb36-40c3-8f76-3ef7ae24d6d0", + "name": "Green Tree Brewery", + "brewery_type": "micro", + "address_1": "309 N Cody Road", + "address_2": null, + "address_3": null, + "city": "Le Claire", + "state_province": "Iowa", + "postal_code": "52753", + "country": "United States", + "longitude": -90.343376, + "latitude": 41.599934, + "phone": "5637291164", + "website_url": "https://greentreebrewery.com", + "state": "Iowa", + "street": "309 N Cody Road" + }, + { + "id": "580f1012-2d50-4f18-957e-cad9a534aa79", + "name": "Green Wolf Brewing Co", + "brewery_type": "micro", + "address_1": "315 Main St", + "address_2": null, + "address_3": null, + "city": "Middleburgh", + "state_province": "New York", + "postal_code": "12122-", + "country": "United States", + "longitude": -74.334814, + "latitude": 42.598257, + "phone": "5188276444", + "website_url": "http://www.greenwolfbrew.com", + "state": "New York", + "street": "315 Main St" + }, + { + "id": "4e4dd1c0-4bfb-45ab-ae2d-33a45e0b6307", + "name": "Greenbrier Valley Brewing Co", + "brewery_type": "micro", + "address_1": "862 Industrial Park Rd Ste A", + "address_2": null, + "address_3": null, + "city": "Maxwelton", + "state_province": "West Virginia", + "postal_code": "24957", + "country": "United States", + "longitude": -79.9614382, + "latitude": 39.6272603, + "phone": "3045204669", + "website_url": "http://www.gvbeer.com", + "state": "West Virginia", + "street": "862 Industrial Park Rd Ste A" + }, + { + "id": "aca6e2d8-e3b8-4a29-b77b-f5d91b3179dc", + "name": "Greenbush Annex", + "brewery_type": "micro", + "address_1": "5870 Sawyer Rd", + "address_2": null, + "address_3": null, + "city": "Sawyer", + "state_province": "Michigan", + "postal_code": "49125", + "country": "United States", + "longitude": -86.59404729, + "latitude": 41.88540971, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "5870 Sawyer Rd" + }, + { + "id": "295e2956-574d-4cf1-a472-2df77d81bbc3", + "name": "Greenbush Brewing Co", + "brewery_type": "micro", + "address_1": "5885 Sawyer Rd", + "address_2": null, + "address_3": null, + "city": "Sawyer", + "state_province": "Michigan", + "postal_code": "49125-9380", + "country": "United States", + "longitude": -86.59431314, + "latitude": 41.88557686, + "phone": "2694051076", + "website_url": "http://greenbushbrewing.com", + "state": "Michigan", + "street": "5885 Sawyer Rd" + }, + { + "id": "20b1559c-308c-469c-a5d3-91935ed72755", + "name": "Greene Growlers", + "brewery_type": "brewpub", + "address_1": "227 E Diamond Ave", + "address_2": null, + "address_3": null, + "city": "Gaithersburg", + "state_province": "Maryland", + "postal_code": "20877", + "country": "United States", + "longitude": -77.19355584, + "latitude": 39.1419364, + "phone": "2402616196", + "website_url": "http://www.greenegrowlers.com", + "state": "Maryland", + "street": "227 E Diamond Ave" + }, + { + "id": "a10921c0-aa0f-4ca7-b669-ba0086c3e8a7", + "name": "Greenpoint Beer", + "brewery_type": "brewpub", + "address_1": "7 N 15th St", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11222-2838", + "country": "United States", + "longitude": -73.99607617, + "latitude": 40.66893407, + "phone": "9177501541", + "website_url": "http://www.greenpointbeer.com", + "state": "New York", + "street": "7 N 15th St" + }, + { + "id": "e3560926-3490-4bdd-a5f3-98383f767703", + "name": "Greenport Harbor Brewing Co, LLC", + "brewery_type": "brewpub", + "address_1": "42155 Main Rd", + "address_2": null, + "address_3": null, + "city": "Peconic", + "state_province": "New York", + "postal_code": "11958-1502", + "country": "United States", + "longitude": -72.4545703, + "latitude": 41.0415525, + "phone": "6315139019", + "website_url": "http://www.harborbrewing.com", + "state": "New York", + "street": "42155 Main Rd" + }, + { + "id": "6b18f400-a3e7-4ddd-8445-0b21b3974e3c", + "name": "Greenspring Brewing Company", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Chesapeake Beach", + "state_province": "Maryland", + "postal_code": "20732-4664", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4102063918", + "website_url": "http://www.greenspringbrewingcompany.com", + "state": "Maryland", + "street": null + }, + { + "id": "1850dc68-99e4-4ae4-8c66-f31497c9129c", + "name": "Greenstar Brewing At Uncommon Ground", + "brewery_type": "brewpub", + "address_1": "3810 N Clark St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60613-2812", + "country": "United States", + "longitude": -87.66001045, + "latitude": 41.95128495, + "phone": "8472198834", + "website_url": "http://www.uncommonground.com", + "state": "Illinois", + "street": "3810 N Clark St" + }, + { + "id": "94009625-38ed-40cc-b7bc-df48ddd75b32", + "name": "Greenwood Brewing LLC", + "brewery_type": "contract", + "address_1": "600 N 4th St Apt 210", + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85004-4489", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4802089500", + "website_url": "http://www.greenwoodbrews.com", + "state": "Arizona", + "street": "600 N 4th St Apt 210" + }, + { + "id": "8d234406-06c0-4ae0-8d45-f962b4ef0db0", + "name": "Greer Brewing", + "brewery_type": "closed", + "address_1": "16050 Manchester Rd", + "address_2": null, + "address_3": null, + "city": "Ellisville", + "state_province": "Missouri", + "postal_code": "63011-2161", + "country": "United States", + "longitude": -90.59484652, + "latitude": 38.590625, + "phone": "6363463979", + "website_url": "http://www.greerbrewingco.com", + "state": "Missouri", + "street": "16050 Manchester Rd" + }, + { + "id": "72ca0074-8bfb-4c8e-93c3-d37f82916ef3", + "name": "Grey Sail Brewing Co. LLC", + "brewery_type": "micro", + "address_1": "63 Canal St", + "address_2": null, + "address_3": null, + "city": "Westerly", + "state_province": "Rhode Island", + "postal_code": "02891-1552", + "country": "United States", + "longitude": -71.832459, + "latitude": 41.385011, + "phone": "4102127592", + "website_url": "http://www.greysailbrewing.com", + "state": "Rhode Island", + "street": "63 Canal St" + }, + { + "id": "2b05e2fe-cb8a-49c2-ae69-f15c1491a469", + "name": "Grey Tower Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Ashburn", + "state_province": "Virginia", + "postal_code": "20147-5433", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7032093107", + "website_url": null, + "state": "Virginia", + "street": null + }, + { + "id": "3b4eee5b-3094-46fe-b4df-198617fee502", + "name": "Greyhound Brewery ltd", + "brewery_type": "micro", + "address_1": "Smock Alley", + "address_2": null, + "address_3": null, + "city": "Pulborough", + "state_province": "West Sussex", + "postal_code": "RH20 2QX", + "country": "England", + "longitude": -0.447595, + "latitude": 50.942971, + "phone": "1798815822", + "website_url": "https://www.greyhoundbrewery.co.uk/", + "state": "West Sussex", + "street": "Smock Alley" + }, + { + "id": "54b5f341-23dd-4c5d-bae9-15c0327c53fe", + "name": "Greyline Brewing", + "brewery_type": "brewpub", + "address_1": "1727 Alpine Ave NW", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49504-", + "country": "United States", + "longitude": -85.68843549, + "latitude": 42.99474375, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "1727 Alpine Ave NW" + }, + { + "id": "252407ae-97a3-4204-a988-911047cd8b28", + "name": "Greywolf Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Riverside", + "state_province": "California", + "postal_code": "92508-9793", + "country": "United States", + "longitude": -117.3961623, + "latitude": 33.9533546, + "phone": null, + "website_url": "http://www.greywolfbrewing.com", + "state": "California", + "street": null + }, + { + "id": "76da7caa-4120-4920-aff5-e85cbf15fbac", + "name": "Grid City Beer Works", + "brewery_type": "brewpub", + "address_1": "333 W 2100 S", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84115-1825", + "country": "United States", + "longitude": -111.9008077, + "latitude": 40.7250681, + "phone": "8019068390", + "website_url": "http://www.gridcitybeerworks.com", + "state": "Utah", + "street": "333 W 2100 S" + }, + { + "id": "33b1bd3c-c543-4855-83a6-d39fc99ce074", + "name": "Gridlock Brewing Co", + "brewery_type": "contract", + "address_1": "2659 Pickfair Lane", + "address_2": null, + "address_3": null, + "city": "Livermore", + "state_province": "California", + "postal_code": "94551", + "country": "United States", + "longitude": -121.7669791, + "latitude": 37.69251772, + "phone": "4088358794", + "website_url": "http://www.gridlockbrewing.com", + "state": "California", + "street": "2659 Pickfair Lane" + }, + { + "id": "49f6d4fd-9671-4465-8d83-be8b2255d33e", + "name": "Griesedieck Brothers Brewery", + "brewery_type": "contract", + "address_1": "1240 Switzer Ave", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63147-1840", + "country": "United States", + "longitude": -90.23498721, + "latitude": 38.70903511, + "phone": "3143093210", + "website_url": "http://www.gb-beer.com", + "state": "Missouri", + "street": "1240 Switzer Ave" + }, + { + "id": "b421957f-cf1e-4a49-a263-3452c9e1cd61", + "name": "Griffin Claw Brewing Co", + "brewery_type": "micro", + "address_1": "575 S Eton St", + "address_2": null, + "address_3": null, + "city": "Birmingham", + "state_province": "Michigan", + "postal_code": "48009-6824", + "country": "United States", + "longitude": -83.19546429, + "latitude": 42.5434572, + "phone": null, + "website_url": "http://www.griffinclawbrewingcompany.com", + "state": "Michigan", + "street": "575 S Eton St" + }, + { + "id": "ef0ff365-cdb8-4c4f-b424-081d4a338781", + "name": "Griffin Owens Insurance Group", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Herndon", + "state_province": "Virginia", + "postal_code": "20170-4609", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7034710050", + "website_url": "http://www.griffinowens.com", + "state": "Virginia", + "street": null + }, + { + "id": "bf564705-6478-464b-acb1-04c343cc2ff4", + "name": "Griffs Brewery", + "brewery_type": "micro", + "address_1": "5324 W Ridge Rd", + "address_2": null, + "address_3": null, + "city": "Spencerport", + "state_province": "New York", + "postal_code": "14559-1101", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5856173843", + "website_url": "http://www.griffsbrewery.com", + "state": "New York", + "street": "5324 W Ridge Rd" + }, + { + "id": "7872a82c-855e-489f-bb33-82a3f89268a8", + "name": "Grillin & Chillin Alehouse", + "brewery_type": "brewpub", + "address_1": "401 McCray St # B24", + "address_2": null, + "address_3": null, + "city": "Hollister", + "state_province": "California", + "postal_code": "95023-2225", + "country": "United States", + "longitude": -121.398519, + "latitude": 36.8518573, + "phone": "8316372337", + "website_url": "http://www.relaxgrillinchillin.com", + "state": "California", + "street": "401 McCray St # B24" + }, + { + "id": "40e3e16f-ba2e-4403-8cbd-b7fe50863cb5", + "name": "Grimm Artisanal Ales", + "brewery_type": "micro", + "address_1": "990 Metropolitan Ave", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11211-2607", + "country": "United States", + "longitude": -73.93651911, + "latitude": 40.7142757, + "phone": null, + "website_url": "http://GrimmAles.com", + "state": "New York", + "street": "990 Metropolitan Ave" + }, + { + "id": "a3efb74a-543d-40a2-8820-44cab4a1492d", + "name": "Grimm Brothers Brewhouse, LLC", + "brewery_type": "micro", + "address_1": "623 Denver Ave", + "address_2": null, + "address_3": null, + "city": "Loveland", + "state_province": "Colorado", + "postal_code": "80537-5127", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9706246045", + "website_url": "http://www.grimmbeer.com", + "state": "Colorado", + "street": "623 Denver Ave" + }, + { + "id": "7e5f0162-8ba1-4438-ac08-925878fcd96c", + "name": "Grind City Brewing Company", + "brewery_type": "micro", + "address_1": "76 Waterworks Ave", + "address_2": null, + "address_3": null, + "city": "Memphis", + "state_province": "Tennessee", + "postal_code": "38107-1806", + "country": "United States", + "longitude": -90.0434951, + "latitude": 35.1697202, + "phone": "9015452337", + "website_url": "https://grindcitybrew.com", + "state": "Tennessee", + "street": "76 Waterworks Ave" + }, + { + "id": "bfca8916-7e6b-4978-ba73-ef4faa3898c9", + "name": "Grinder’s High Noon Brewery", + "brewery_type": "brewpub", + "address_1": "206 Choctaw St", + "address_2": null, + "address_3": null, + "city": "Leavenworth", + "state_province": "Kansas", + "postal_code": "66048-2821", + "country": "United States", + "longitude": -94.91052465, + "latitude": 39.31683651, + "phone": "9136511000", + "website_url": "http://info@grindershighnoon.com", + "state": "Kansas", + "street": "206 Choctaw St" + }, + { + "id": "6bfe06c9-8741-41b9-b22a-b7a13d649a03", + "name": "Grindhaus Brew Lab", + "brewery_type": "micro", + "address_1": "1650 N Hercules Ave Ste I", + "address_2": null, + "address_3": null, + "city": "Clearwater", + "state_province": "Florida", + "postal_code": "33765-1969", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7272400804", + "website_url": "http://www.grindhausbrewlab.com", + "state": "Florida", + "street": "1650 N Hercules Ave Ste I" + }, + { + "id": "34536644-1060-4bd2-8103-b9e8352696fb", + "name": "Grist Brewing Company", + "brewery_type": "closed", + "address_1": "9150 Commerce Center Cir Ste 300", + "address_2": null, + "address_3": null, + "city": "Highlands Ranch", + "state_province": "Colorado", + "postal_code": "80129-1563", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "703604782", + "website_url": "http://gristbrewingcompany.com", + "state": "Colorado", + "street": "9150 Commerce Center Cir Ste 300" + }, + { + "id": "7f4e13ac-9368-4324-81ad-ff4dab388ad6", + "name": "Grist House Craft Brewery", + "brewery_type": "micro", + "address_1": "10 Sherman St", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15209-2728", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4124471442", + "website_url": "http://www.gristhouse.com", + "state": "Pennsylvania", + "street": "10 Sherman St" + }, + { + "id": "8bedf283-d3ff-463e-9a7e-1aa4d8f3b491", + "name": "Grist Iron Brewing Co.", + "brewery_type": "brewpub", + "address_1": "4880 State Route 414", + "address_2": null, + "address_3": null, + "city": "Burdett", + "state_province": "New York", + "postal_code": "14818-9729", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6078822739", + "website_url": "http://www.gristironbrewing.com", + "state": "New York", + "street": "4880 State Route 414" + }, + { + "id": "6a01fef8-dd06-4ba6-99f8-fca4874e14af", + "name": "Gristworkz", + "brewery_type": "brewpub", + "address_1": "1504 Chapman St", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77009", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "https://www.gristworkz.com/", + "state": "Texas", + "street": "1504 Chapman St" + }, + { + "id": "89594197-5fd6-4032-842f-429832a52034", + "name": "GRITS Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Chamblee", + "state_province": "Georgia", + "postal_code": "30341-2024", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Georgia", + "street": null + }, + { + "id": "b4d7adbc-50ad-4a81-ba14-1831a1a55b39", + "name": "Gritty McDuffs - Freeport", + "brewery_type": "brewpub", + "address_1": "187 Lower Main St", + "address_2": null, + "address_3": null, + "city": "Freeport", + "state_province": "Maine", + "postal_code": "04032", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2078654321", + "website_url": "http://www.grittys.com", + "state": "Maine", + "street": "187 Lower Main St" + }, + { + "id": "22209ec8-d403-44af-9f67-97f08f89c9be", + "name": "Gritty McDuffs - Lewiston/Auburn", + "brewery_type": "brewpub", + "address_1": "68 Main St", + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "Maine", + "postal_code": "04210-5812", + "country": "United States", + "longitude": -70.22448665, + "latitude": 44.0971728, + "phone": "2073762739", + "website_url": null, + "state": "Maine", + "street": "68 Main St" + }, + { + "id": "0eacb04d-cb09-4f16-83c7-81a7aeefef85", + "name": "Gritty McDuffs - Portland", + "brewery_type": "brewpub", + "address_1": "396 Fore St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04101-4026", + "country": "United States", + "longitude": -70.2533609, + "latitude": 43.6564108, + "phone": "2077722739", + "website_url": "http://www.grittys.com", + "state": "Maine", + "street": "396 Fore St" + }, + { + "id": "8ea7776f-0bc8-445c-8153-7263e2b3124c", + "name": "Grixsen Brewing Co", + "brewery_type": "closed", + "address_1": "1001 SE Division St Ste 1", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97202-1076", + "country": "United States", + "longitude": -122.6554541, + "latitude": 45.5052337, + "phone": "9713473100", + "website_url": "http://www.grixsen.com", + "state": "Oregon", + "street": "1001 SE Division St Ste 1" + }, + { + "id": "91361172-9875-4337-8a10-e12765e47071", + "name": "Grizzly Peak Brewing Co", + "brewery_type": "brewpub", + "address_1": "120 W Washington St Ste 1", + "address_2": null, + "address_3": null, + "city": "Ann Arbor", + "state_province": "Michigan", + "postal_code": "48104-1356", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7347417325", + "website_url": "http://www.grizzlypeak.net", + "state": "Michigan", + "street": "120 W Washington St Ste 1" + }, + { + "id": "3ec5bbe4-5c5a-4428-952a-6b1a55e4004b", + "name": "Groggs Pinnacle Brewing Co", + "brewery_type": "brewpub", + "address_1": "1653 Carbonville Rd", + "address_2": null, + "address_3": null, + "city": "Helper", + "state_province": "Utah", + "postal_code": "84526-2504", + "country": "United States", + "longitude": -110.842552, + "latitude": 39.625031, + "phone": "4356372924", + "website_url": "https://www.groggspinnaclebrewing.com", + "state": "Utah", + "street": "1653 Carbonville Rd" + }, + { + "id": "e0fcd6d9-7845-490d-8ce9-4e26ed33eae5", + "name": "Grossen Bart Brewery", + "brewery_type": "micro", + "address_1": "1025 Delaware Ave Unit A", + "address_2": null, + "address_3": null, + "city": "Longmont", + "state_province": "Colorado", + "postal_code": "80501-6188", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7204382060", + "website_url": "http://www.grossenbart.com", + "state": "Colorado", + "street": "1025 Delaware Ave Unit A" + }, + { + "id": "b7e46ca9-3e5c-4f3e-9d53-910889ce0694", + "name": "Ground Breaker Brewing", + "brewery_type": "brewpub", + "address_1": "715 SE Lincoln St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97214-4600", + "country": "United States", + "longitude": -122.6583697, + "latitude": 45.50809545, + "phone": "5039284195", + "website_url": "http://www.harvesterbrewing.com", + "state": "Oregon", + "street": "715 SE Lincoln St" + }, + { + "id": "e5bd0c69-0309-4696-a031-221df1d49d29", + "name": "GroundLion Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Seagrove", + "state_province": "North Carolina", + "postal_code": "27341-0459", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9192705112", + "website_url": "http://www.groundlionbrewing.com", + "state": "North Carolina", + "street": null + }, + { + "id": "eb8a316f-dd22-4b9d-9165-8b3d8853f84c", + "name": "Groundswell Brewing Co", + "brewery_type": "micro", + "address_1": "10151 Prospect Ave", + "address_2": null, + "address_3": null, + "city": "Santee", + "state_province": "California", + "postal_code": "92071-4411", + "country": "United States", + "longitude": -116.9644235, + "latitude": 32.8310696, + "phone": "6107499123", + "website_url": "http://www.groundswellbrew.com", + "state": "California", + "street": "10151 Prospect Ave" + }, + { + "id": "9a4b3e7f-3c66-4d4a-8318-127d957ca2e4", + "name": "Grove City Brewing Company", + "brewery_type": "brewpub", + "address_1": "3946 Broadway", + "address_2": null, + "address_3": null, + "city": "Grove City", + "state_province": "Ohio", + "postal_code": "43123-2623", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6149910338", + "website_url": "http://www.grovecitybrewingcompany.com", + "state": "Ohio", + "street": "3946 Broadway" + }, + { + "id": "2bd11bd2-132f-46f8-8e0b-5d3ddb3d2db8", + "name": "Grove Roots Brewing", + "brewery_type": "micro", + "address_1": "302 3rd St SW", + "address_2": null, + "address_3": null, + "city": "Winter Haven", + "state_province": "Florida", + "postal_code": "33880-3409", + "country": "United States", + "longitude": -81.73049326, + "latitude": 28.01977247, + "phone": "8632910700", + "website_url": "http://www.groveroots.com", + "state": "Florida", + "street": "302 3rd St SW" + }, + { + "id": "a42cdc23-92ae-4234-a13a-86a3c1af3d8d", + "name": "Growler Bay Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Valdez", + "state_province": "Alaska", + "postal_code": "99686-3716", + "country": "United States", + "longitude": -146.3493638, + "latitude": 61.1299396, + "phone": "9072555191", + "website_url": "https://growlerbaybrewing.com", + "state": "Alaska", + "street": null + }, + { + "id": "c7f34fa1-738d-46d8-a0b2-663c7096990d", + "name": "Growling Bear Brewing Company", + "brewery_type": "micro", + "address_1": "14051 Crown Ct", + "address_2": null, + "address_3": null, + "city": "Woodbridge", + "state_province": "Virginia", + "postal_code": "22193-1458", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Virginia", + "street": "14051 Crown Ct" + }, + { + "id": "98a49693-43bc-4f99-99ff-bdb1bd6470b4", + "name": "Gruff Brewing Company", + "brewery_type": "micro", + "address_1": "104 E Maple St # 101", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98225-5006", + "country": "United States", + "longitude": -122.4822547, + "latitude": 48.7472243, + "phone": "3607340115", + "website_url": "http://www.gruff-brewing.com", + "state": "Washington", + "street": "104 E Maple St # 101" + }, + { + "id": "8a158d9f-026f-4ee4-8941-e78c0c0ec638", + "name": "Gruhlke's Microbrewery / Bias Vineyards", + "brewery_type": "brewpub", + "address_1": "3166 Highway B", + "address_2": null, + "address_3": null, + "city": "Berger", + "state_province": "Missouri", + "postal_code": "63014-1418", + "country": "United States", + "longitude": -91.3352114, + "latitude": 38.6769847, + "phone": "5738345475", + "website_url": "http://www.biaswinery.com", + "state": "Missouri", + "street": "3166 Highway B" + }, + { + "id": "09c1302b-48d1-4272-bcc6-920e67672c86", + "name": "Gruit Brewing", + "brewery_type": "micro", + "address_1": "200 Anderson St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04101-2562", + "country": "United States", + "longitude": -70.255898, + "latitude": 43.669074, + "phone": "2077738331", + "website_url": "http://www.fermentory.com", + "state": "Maine", + "street": "200 Anderson St" + }, + { + "id": "aad1d9f2-87ca-4ca0-8394-17141062ca84", + "name": "Grumpy Mo Brewery", + "brewery_type": "micro", + "address_1": "150 Murphy Street", + "address_2": "148", + "address_3": null, + "city": "Richmond", + "state_province": "VIC", + "postal_code": "3121", + "country": "Australia", + "longitude": 145.0110031, + "latitude": -37.8182717, + "phone": "+61 422 520 477", + "website_url": "https://mountainculture.com.au/pages/melbourne-brewpub-restaurant", + "state": "VIC", + "street": "150 Murphy Street" + }, + { + "id": "924b7483-1f85-4ffc-9ef2-0d2697ff8d09", + "name": "Grumpy Old Men Brewing", + "brewery_type": "micro", + "address_1": "1315 E Main St", + "address_2": null, + "address_3": null, + "city": "Blue Ridge", + "state_province": "Georgia", + "postal_code": "30513-8506", + "country": "United States", + "longitude": -84.33050832, + "latitude": 34.85747136, + "phone": "7703318870", + "website_url": "http://www.grumpyoldmenbrewing.com", + "state": "Georgia", + "street": "1315 E Main St" + }, + { + "id": "8eca212a-08e8-43ae-bbf7-a782408ac247", + "name": "Grumpy Troll, The", + "brewery_type": "micro", + "address_1": "105 S 2nd St", + "address_2": null, + "address_3": null, + "city": "Mount Horeb", + "state_province": "Wisconsin", + "postal_code": "53572-2105", + "country": "United States", + "longitude": -89.73830404, + "latitude": 43.00841443, + "phone": "6084372739", + "website_url": "http://www.thegrumpytroll.com", + "state": "Wisconsin", + "street": "105 S 2nd St" + }, + { + "id": "413d4838-10b7-466a-b755-d8377a8945f4", + "name": "Gruner Brothers Brewing", + "brewery_type": "micro", + "address_1": "1301 Wilkins Cir", + "address_2": null, + "address_3": null, + "city": "Casper", + "state_province": "Wyoming", + "postal_code": "82601-1335", + "country": "United States", + "longitude": -106.34034073094, + "latitude": 42.864174201907, + "phone": "3074392222", + "website_url": "http://www.grunerbrewing.com", + "state": "Wyoming", + "street": "1301 Wilkins Cir" + }, + { + "id": "53b5c0a9-2201-4a60-a110-fe1136a658ea", + "name": "GSP Craft Brewing", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Gig Harbor", + "state_province": "Washington", + "postal_code": "98332-7918", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2533281121", + "website_url": "http://www.facebook.com/gspcraftbrewing", + "state": "Washington", + "street": null + }, + { + "id": "303a23e1-3cb2-4f20-bfcf-25e82eb122e6", + "name": "Guadalupe Brewery", + "brewery_type": "micro", + "address_1": "168 Rachel Dr", + "address_2": null, + "address_3": null, + "city": "Canyon Lake", + "state_province": "Texas", + "postal_code": "78133-3527", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5128789214", + "website_url": "http://www.guadalupebrew.com", + "state": "Texas", + "street": "168 Rachel Dr" + }, + { + "id": "8bc95996-c055-43d9-aeec-fc19240e50fb", + "name": "Guadalupe Brewery", + "brewery_type": "micro", + "address_1": "5674 El Camino Real Ste D", + "address_2": null, + "address_3": null, + "city": "Carlsbad", + "state_province": "California", + "postal_code": "92008-7130", + "country": "United States", + "longitude": -117.2735422, + "latitude": 33.13885281, + "phone": "8587514278", + "website_url": "http://www.guadalupebrewery.com", + "state": "California", + "street": "5674 El Camino Real Ste D" + }, + { + "id": "69a152da-143e-4c71-b3aa-e0ffb6c3048e", + "name": "Guadalupe Mountain Brewing Company", + "brewery_type": "brewpub", + "address_1": "3404 National Parks Hwy", + "address_2": null, + "address_3": null, + "city": "Carlsbad", + "state_province": "New Mexico", + "postal_code": "88220-5349", + "country": "United States", + "longitude": -104.2240211, + "latitude": 32.3821008, + "phone": "5753617761", + "website_url": null, + "state": "New Mexico", + "street": "3404 National Parks Hwy" + }, + { + "id": "8be0f9a4-7c89-4122-ba92-90591ed4aef7", + "name": "Guanacaste Brewing LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lorton", + "state_province": "Virginia", + "postal_code": "22079", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7038537687", + "website_url": "http://www.guanacastebrewingllc.com", + "state": "Virginia", + "street": null + }, + { + "id": "b35b775a-2b1a-4203-b59c-0ce2e039c48c", + "name": "Guanella Pass Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "501 Rose Street", + "address_2": null, + "address_3": null, + "city": "Georgetown", + "state_province": "Colorado", + "postal_code": "80444", + "country": "United States", + "longitude": -105.697303, + "latitude": 39.705772, + "phone": "3035695167", + "website_url": "http://www.guanellapass.com", + "state": "Colorado", + "street": "501 Rose Street" + }, + { + "id": "c67959ff-a884-4d4a-be84-a194b410b969", + "name": "Guardian Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Saugatuck", + "state_province": "Michigan", + "postal_code": "49453", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8125213611", + "website_url": "http://www.guardianbrewingco.com", + "state": "Michigan", + "street": null + }, + { + "id": "893c746b-cc59-44c0-8da1-6239d57a3825", + "name": "Guggman Haus Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46202-2158", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8122302554", + "website_url": "http://www.guggmanhausbrewing.com", + "state": "Indiana", + "street": null + }, + { + "id": "b82b05d8-ca46-4954-b9a9-bb91a98406e5", + "name": "Guinness Brewing (Diageo)", + "brewery_type": "large", + "address_1": "St. James's Gate", + "address_2": "Dublin 8", + "address_3": null, + "city": "Dublin", + "state_province": "Dublin", + "postal_code": "D08 VF8H", + "country": "Ireland", + "longitude": -6.286729743, + "latitude": 53.34193275, + "phone": "35314084800", + "website_url": "https://www.guinness-storehouse.com/en", + "state": "Dublin", + "street": "St. James's Gate" + }, + { + "id": "577e47da-8542-4261-a4ec-83b99325a42d", + "name": "Guinness Open Gate Brewery and Barrel House", + "brewery_type": "large", + "address_1": "5001 Washington Blvd", + "address_2": null, + "address_3": null, + "city": "Halethorpe", + "state_province": "Maryland", + "postal_code": "21227-5000", + "country": "United States", + "longitude": -76.69843865, + "latitude": 39.222265, + "phone": "9022663839", + "website_url": null, + "state": "Maryland", + "street": "5001 Washington Blvd" + }, + { + "id": "ed040add-786c-4758-b42a-1ab876837de7", + "name": "Gulf Coast Brewery LLC", + "brewery_type": "micro", + "address_1": "500 E Heinberg St", + "address_2": null, + "address_3": null, + "city": "Pensacola", + "state_province": "Florida", + "postal_code": "32502-4145", + "country": "United States", + "longitude": -87.20552274, + "latitude": 30.41799103, + "phone": "8506962335", + "website_url": "http://www.gulfcoastbrewery.net", + "state": "Florida", + "street": "500 E Heinberg St" + }, + { + "id": "b096f2f3-c941-418e-9011-f613fecdcd1a", + "name": "Gulf Stream Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fort Lauderdale", + "state_province": "Florida", + "postal_code": "33304-1802", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9547664842", + "website_url": "http://www.gulfstreambeer.com", + "state": "Florida", + "street": null + }, + { + "id": "81b4e34e-0bfb-47d8-917c-a057f2bae670", + "name": "Gull Dam Brewing, Inc.", + "brewery_type": "micro", + "address_1": "23836 Smiley Rd", + "address_2": null, + "address_3": null, + "city": "Nisswa", + "state_province": "Minnesota", + "postal_code": "56468", + "country": "United States", + "longitude": -94.29766266, + "latitude": 46.49834978, + "phone": "2189632739", + "website_url": "http://www.gulldambrewing.com", + "state": "Minnesota", + "street": "23836 Smiley Rd" + }, + { + "id": "0aad28bf-9036-4880-9613-f8a7dcaee10a", + "name": "Gun Brewery Ltd", + "brewery_type": "micro", + "address_1": "Gun Hill", + "address_2": null, + "address_3": null, + "city": "Heathfield", + "state_province": "East Sussex", + "postal_code": "TN21 0JY", + "country": "England", + "longitude": 0.222494, + "latitude": 50.899245, + "phone": "1323700200", + "website_url": "https://www.gunbrewery.co.uk/", + "state": "East Sussex", + "street": "Gun Hill" + }, + { + "id": "21c53c8a-a1c1-4504-9040-a5bd3052c179", + "name": "Gun Flint Tavern", + "brewery_type": "brewpub", + "address_1": "111 W Wisconsin St", + "address_2": null, + "address_3": null, + "city": "Grand Marais", + "state_province": "Minnesota", + "postal_code": "55604-", + "country": "United States", + "longitude": -90.3348245, + "latitude": 47.74937733, + "phone": "2183872836", + "website_url": "http://www.gunflinttavern.com", + "state": "Minnesota", + "street": "111 W Wisconsin St" + }, + { + "id": "7772fff2-1f62-48bf-8653-cff2a21ccaf6", + "name": "Gun Hill Brewing Co", + "brewery_type": "micro", + "address_1": "3227 Laconia Ave", + "address_2": null, + "address_3": null, + "city": "Bronx", + "state_province": "New York", + "postal_code": "10469-1403", + "country": "United States", + "longitude": -73.855814, + "latitude": 40.8721114, + "phone": "7188810010", + "website_url": "http://www.gunhillbrewing.com", + "state": "New York", + "street": "3227 Laconia Ave" + }, + { + "id": "6872c14f-c3c4-49ea-a714-8c25b62163d4", + "name": "Gunbarrel Brewing Company", + "brewery_type": "micro", + "address_1": "7088 Winchester Cir Ste 2", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301-3761", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8008035732", + "website_url": "http://www.gunbarrelbrewing.com", + "state": "Colorado", + "street": "7088 Winchester Cir Ste 2" + }, + { + "id": "c29d029c-2d13-472d-a0b4-94cdc96a2f4f", + "name": "Gunpowder Falls Brewing Co", + "brewery_type": "micro", + "address_1": "15556 Elm Dr", + "address_2": null, + "address_3": null, + "city": "New Freedom", + "state_province": "Pennsylvania", + "postal_code": "17349-9344", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7177590330", + "website_url": "http://www.gunpowderfallsbrewing.com", + "state": "Pennsylvania", + "street": "15556 Elm Dr" + }, + { + "id": "45dcecc1-7ec4-4bbe-86f7-35b57396fa36", + "name": "Guns & Oil Brewery", + "brewery_type": "micro", + "address_1": "111 W 33rd St", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83714", + "country": "United States", + "longitude": -116.2389395, + "latitude": 43.62136196, + "phone": null, + "website_url": "http://www.gunsandoil.com", + "state": "Idaho", + "street": "111 W 33rd St" + }, + { + "id": "0b76ee76-205d-4942-9aac-0008cd3d2e5e", + "name": "Gunwhale Ales", + "brewery_type": "micro", + "address_1": "2960 Randolph Ave Unit A", + "address_2": null, + "address_3": null, + "city": "Costa Mesa", + "state_province": "California", + "postal_code": "92626-4312", + "country": "United States", + "longitude": -117.8872815, + "latitude": 33.67899369, + "phone": "9492399074", + "website_url": "http://www.gunwhaleales.com", + "state": "California", + "street": "2960 Randolph Ave Unit A" + }, + { + "id": "4c58219c-dc41-41b7-aeba-64cc6662c6ef", + "name": "Gyppo Ale Mill", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Whitethorn", + "state_province": "California", + "postal_code": "95589-0627", + "country": "United States", + "longitude": -123.9430832, + "latitude": 40.0237557, + "phone": "7072233443", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "80e11204-916f-4d79-8687-9650e0d647bd", + "name": "Gypsy Brewery", + "brewery_type": "micro", + "address_1": "3506 Vega Ave", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44113-4900", + "country": "United States", + "longitude": -81.70785488, + "latitude": 41.47449194, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": "3506 Vega Ave" + }, + { + "id": "c2c62d00-922c-41be-b603-b3acb04373ee", + "name": "Gypsy Brewing Company", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Huntingtown", + "state_province": "Maryland", + "postal_code": "20639", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Maryland", + "street": null + }, + { + "id": "eaded1c2-728a-4f78-b04e-f2bc9fcb671c", + "name": "Gypsy Fox Brewing Co", + "brewery_type": "micro", + "address_1": "6 Charles Street", + "address_2": "5", + "address_3": null, + "city": "North Richmond", + "state_province": "NSW", + "postal_code": "2754", + "country": "Australia", + "longitude": 150.7164208, + "latitude": -33.5795229, + "phone": "+61 413 696 399", + "website_url": "http://gypsyfoxbrewingco.com/", + "state": "NSW", + "street": "6 Charles Street" + }, + { + "id": "43383e50-f0d2-4a30-95af-0e0ec92513ed", + "name": "H.A. Brewing Co", + "brewery_type": "brewpub", + "address_1": "2525 Grave Creek Rd", + "address_2": null, + "address_3": null, + "city": "Eureka", + "state_province": "Montana", + "postal_code": "59917-9609", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4068893950", + "website_url": "http://www.habrewing.com", + "state": "Montana", + "street": "2525 Grave Creek Rd" + }, + { + "id": "ddfb8618-9884-481c-af46-9db75920906f", + "name": "H2OPS LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92808-1225", + "country": "United States", + "longitude": -117.911732, + "latitude": 33.8347516, + "phone": "7143924414", + "website_url": "http://www.h2ops.com", + "state": "California", + "street": null + }, + { + "id": "b3f83269-b3e9-4637-b5a2-acfbfbe35387", + "name": "Haas Innovations Brewing LLC", + "brewery_type": "micro", + "address_1": "1600 River Rd", + "address_2": null, + "address_3": null, + "city": "Yakima", + "state_province": "Washington", + "postal_code": "98902-1249", + "country": "United States", + "longitude": -120.530565, + "latitude": 46.617844, + "phone": "5094694000", + "website_url": "https://www.johnihaas.com", + "state": "Washington", + "street": "1600 River Rd" + }, + { + "id": "8b8d3e0f-22b8-4350-9975-575793331af8", + "name": "Habitat Brewing Co", + "brewery_type": "micro", + "address_1": "174 Broadway St", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28801-2305", + "country": "United States", + "longitude": -82.5533973, + "latitude": 35.5986648, + "phone": "7047018141", + "website_url": "http://www.habitatbrewing.com", + "state": "North Carolina", + "street": "174 Broadway St" + }, + { + "id": "f98dd11d-f3ca-4bb4-bc2e-e9deb27de42d", + "name": "Hackensack Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Hackensack", + "state_province": "New Jersey", + "postal_code": "07601-4824", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New Jersey", + "street": null + }, + { + "id": "b2d959c1-416a-49e2-9dd3-3efb6cbeb057", + "name": "Hahn Brewery", + "brewery_type": "large", + "address_1": "Unit 6", + "address_2": "29 Nyrang St", + "address_3": null, + "city": "Lidcombe", + "state_province": "NSW", + "postal_code": "2141", + "country": "Australia", + "longitude": 151.0442963, + "latitude": -33.8502714, + "phone": "+61 13 15 13", + "website_url": "https://www.hahn.com.au/", + "state": "NSW", + "street": "Unit 6" + }, + { + "id": "580761b4-cca5-45d8-9eac-4b426bbfad2b", + "name": "HailStorm Brewing Company", + "brewery_type": "micro", + "address_1": "8060 186th St", + "address_2": null, + "address_3": null, + "city": "Tinley Park", + "state_province": "Illinois", + "postal_code": "60487-9215", + "country": "United States", + "longitude": -87.81356158, + "latitude": 41.55317823, + "phone": "6306317173", + "website_url": "http://www.hailstormbrewing.com", + "state": "Illinois", + "street": "8060 186th St" + }, + { + "id": "9b732794-2a95-48ec-80b2-c01ef485d97a", + "name": "Haines Brewing Co", + "brewery_type": "micro", + "address_1": "327 Main St", + "address_2": null, + "address_3": null, + "city": "Haines", + "state_province": "Alaska", + "postal_code": "99827", + "country": "United States", + "longitude": -135.4551927, + "latitude": 59.2357624, + "phone": "9077663823", + "website_url": "http://www.hainesbrewing.com", + "state": "Alaska", + "street": "327 Main St" + }, + { + "id": "314a71f6-2f8c-4461-8a64-d479b1002129", + "name": "Haint Blue Brewing Company", + "brewery_type": "contract", + "address_1": "806 Monroe Street", + "address_2": null, + "address_3": null, + "city": "Mobile", + "state_province": "Alabama", + "postal_code": "36602", + "country": "United States", + "longitude": -88.05126184, + "latitude": 30.68474321, + "phone": null, + "website_url": "http://haintbluebrew.com", + "state": "Alabama", + "street": "806 Monroe Street" + }, + { + "id": "1503f786-1afe-44fb-9668-a32cc139df58", + "name": "Hair of the Dog Brewing Co", + "brewery_type": "brewpub", + "address_1": "61 SE Yamhill St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97214-2134", + "country": "United States", + "longitude": -122.6655236, + "latitude": 45.5160413, + "phone": "5032326585", + "website_url": "http://www.hairofthedog.com", + "state": "Oregon", + "street": "61 SE Yamhill St" + }, + { + "id": "cf1d9929-1881-4f8c-b4e2-9aefe750cc16", + "name": "Hairless Hare Brewery", + "brewery_type": "micro", + "address_1": "738 W National Rd", + "address_2": null, + "address_3": null, + "city": "Vandalia", + "state_province": "Ohio", + "postal_code": "45377-1015", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9373876476", + "website_url": "http://www.hairlessharebrewery.com", + "state": "Ohio", + "street": "738 W National Rd" + }, + { + "id": "99379a99-f52f-4a6a-b966-073e30fa8c1b", + "name": "Hairy Cow Brewing Co, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Byron", + "state_province": "Illinois", + "postal_code": "61010", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8152432866", + "website_url": "http://www.hairycowbrewing.com", + "state": "Illinois", + "street": null + }, + { + "id": "641f33f2-da4b-4435-b1d4-8785e52f9e4b", + "name": "Hairyman Brewery", + "brewery_type": "micro", + "address_1": "14 Northumberland Road", + "address_2": "Unit 10/12", + "address_3": null, + "city": "Caringbah", + "state_province": "NSW", + "postal_code": "2229", + "country": "Australia", + "longitude": 151.131675, + "latitude": -34.0286609, + "phone": "+61 2 9525 4050", + "website_url": "https://hairyman.com.au/", + "state": "NSW", + "street": "14 Northumberland Road" + }, + { + "id": "593a9ce4-520b-458f-a184-05debb3a7295", + "name": "Hale's Ales Brewery and Pub", + "brewery_type": "micro", + "address_1": "4301 Leary Way NW", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98107-4538", + "country": "United States", + "longitude": -122.3655909, + "latitude": 47.6592451, + "phone": "2069632118", + "website_url": "http://www.halesbrewery.com", + "state": "Washington", + "street": "4301 Leary Way NW" + }, + { + "id": "49cf8feb-2997-4da6-99ba-6c2228ffaab1", + "name": "Half Acre Beer Co", + "brewery_type": "regional", + "address_1": "4257 N Lincoln Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60618-2953", + "country": "United States", + "longitude": -87.6820201, + "latitude": 41.9591945, + "phone": "7737548488", + "website_url": "http://www.halfacrebeer.com", + "state": "Illinois", + "street": "4257 N Lincoln Ave" + }, + { + "id": "545394a7-58c6-4c11-92a8-c9218ebc82c7", + "name": "Half Barrel Beer Project", + "brewery_type": "brewpub", + "address_1": "9650 Universal Blvd Ste 143", + "address_2": null, + "address_3": null, + "city": "Orlando", + "state_province": "Florida", + "postal_code": "32819-9383", + "country": "United States", + "longitude": -81.46606722, + "latitude": 28.43441073, + "phone": "4072033946", + "website_url": "http://www.halfbarrelproject.com", + "state": "Florida", + "street": "9650 Universal Blvd Ste 143" + }, + { + "id": "499f13b4-35de-4566-8817-15573433a453", + "name": "Half Batch Brewing", + "brewery_type": "micro", + "address_1": "393 E Main St Suite 6A", + "address_2": null, + "address_3": null, + "city": "Hendersonville", + "state_province": "Tennessee", + "postal_code": "37075-2575", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6153394527", + "website_url": "http://halfbatchbrewing.com", + "state": "Tennessee", + "street": "393 E Main St Suite 6A" + }, + { + "id": "86fab29c-89f5-4a48-99f6-06ef4240e508", + "name": "Half Brothers Brewing Company", + "brewery_type": "brewpub", + "address_1": "17 N 3rd St", + "address_2": null, + "address_3": null, + "city": "Grand Forks", + "state_province": "North Dakota", + "postal_code": "58203-3713", + "country": "United States", + "longitude": -97.0315443, + "latitude": 47.9256052, + "phone": "7017570805", + "website_url": "http://www.halfbrothersbrewing.com", + "state": "North Dakota", + "street": "17 N 3rd St" + }, + { + "id": "2cb07047-36be-45c7-aae3-97c10afa36c4", + "name": "Half Day Brewing Company", + "brewery_type": "brewpub", + "address_1": "200 Village Grn", + "address_2": null, + "address_3": null, + "city": "Lincolnshire", + "state_province": "Illinois", + "postal_code": "60069-3028", + "country": "United States", + "longitude": -87.9330365, + "latitude": 42.2031177, + "phone": "8478216933", + "website_url": "http://www.halfdaybrewing.com", + "state": "Illinois", + "street": "200 Village Grn" + }, + { + "id": "7c4882e0-4366-41f3-b207-7be79d078c52", + "name": "Half Door Brewing Company", + "brewery_type": "brewpub", + "address_1": "903 Island Ave", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92101-7227", + "country": "United States", + "longitude": -117.156268, + "latitude": 32.710248, + "phone": null, + "website_url": "http://www.halfdoorbrewing.com", + "state": "California", + "street": "903 Island Ave" + }, + { + "id": "4c461172-154f-4375-ba95-0c7356311e24", + "name": "Half Full Brewery", + "brewery_type": "micro", + "address_1": "43 Homestead Ave", + "address_2": null, + "address_3": null, + "city": "Stamford", + "state_province": "Connecticut", + "postal_code": "06902-7204", + "country": "United States", + "longitude": -73.54959135, + "latitude": 41.03933226, + "phone": "2032748788", + "website_url": "http://www.halffullbrewery.com", + "state": "Connecticut", + "street": "43 Homestead Ave" + }, + { + "id": "afd6863b-7e66-4f05-aca0-319fc7054288", + "name": "Half Lion Brewing Company", + "brewery_type": "micro", + "address_1": "1723 West Valley Hwy E Ste 101", + "address_2": null, + "address_3": null, + "city": "Sumner", + "state_province": "Washington", + "postal_code": "98390-9700", + "country": "United States", + "longitude": -122.2553244, + "latitude": 47.24128441, + "phone": "2537504479", + "website_url": "http://www.halflion.com", + "state": "Washington", + "street": "1723 West Valley Hwy E Ste 101" + }, + { + "id": "37d585b5-00ee-4be0-ac6b-6d15b6416cac", + "name": "Half Lion Public House", + "brewery_type": "brewpub", + "address_1": "2019 W Meeker St", + "address_2": null, + "address_3": null, + "city": "Kent", + "state_province": "Washington", + "postal_code": "98032", + "country": "United States", + "longitude": -122.2629041, + "latitude": 47.38103, + "phone": "2532770685", + "website_url": "https://www.halflion.com", + "state": "Washington", + "street": "2019 W Meeker St" + }, + { + "id": "79a8cdd5-d995-4575-ba5f-6253077bb4ba", + "name": "Half Moon Bay Brewing Co", + "brewery_type": "brewpub", + "address_1": "390 Capistrano Road", + "address_2": null, + "address_3": null, + "city": "Half Moon Bay", + "state_province": "California", + "postal_code": "94019", + "country": "United States", + "longitude": -122.4855902, + "latitude": 37.50416699, + "phone": "6507282739", + "website_url": "http://www.hmbbrewingco.com", + "state": "California", + "street": "390 Capistrano Road" + }, + { + "id": "d8c8fa76-7764-4315-8e9f-e32af713f713", + "name": "Half Moon Restaurant & Brewery", + "brewery_type": "brewpub", + "address_1": "4051 S Lafountain St", + "address_2": null, + "address_3": null, + "city": "Kokomo", + "state_province": "Indiana", + "postal_code": "46902-6913", + "country": "United States", + "longitude": -86.1281745, + "latitude": 40.4362867, + "phone": "7654552739", + "website_url": null, + "state": "Indiana", + "street": "4051 S Lafountain St" + }, + { + "id": "abf50e49-2787-4478-851f-366154085942", + "name": "Half Wall Brewery", + "brewery_type": "micro", + "address_1": "1887 SR 44", + "address_2": null, + "address_3": null, + "city": "New Smyrna Beach", + "state_province": "Florida", + "postal_code": "32168", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3864268410", + "website_url": "http://www.halfwallbrewery.com", + "state": "Florida", + "street": "1887 SR 44" + }, + { + "id": "408b3c0e-cbf4-470f-a194-a862ac50dd08", + "name": "Half-Pace Brewing Co.", + "brewery_type": "micro", + "address_1": "5 Ponderosa Parade", + "address_2": "Unit 48", + "address_3": null, + "city": "Warriewood", + "state_province": "NSW", + "postal_code": "2102", + "country": "Australia", + "longitude": 151.2894928, + "latitude": -33.6789532, + "phone": null, + "website_url": "https://hang10distillery.com.au/pages/beer", + "state": "NSW", + "street": "5 Ponderosa Parade" + }, + { + "id": "d9817110-ab18-45a3-a48a-220863c8ef4d", + "name": "Halfpenny Brewing Company", + "brewery_type": "micro", + "address_1": "5150 E Arapahoe Rd Ste D1-B", + "address_2": null, + "address_3": null, + "city": "Centennial", + "state_province": "Colorado", + "postal_code": "80122-4825", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7205830580", + "website_url": "http://www.halfpennybrewing.com", + "state": "Colorado", + "street": "5150 E Arapahoe Rd Ste D1-B" + }, + { + "id": "147b44bb-0b7f-49ba-82ae-fd22be3bd123", + "name": "Halmstads Brygghus", + "brewery_type": "micro", + "address_1": "Slottsmöllan", + "address_2": null, + "address_3": null, + "city": "Halmstad", + "state_province": "Halland", + "postal_code": "302 31", + "country": "Sweden", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "https://www.halmstadbrygghus.se/", + "state": "Halland", + "street": "Slottsmöllan" + }, + { + "id": "19fb8b9c-9a8e-4ed9-a5cb-ce00e818265e", + "name": "Halpatter Brewing Company", + "brewery_type": "micro", + "address_1": "264 NE Hernando Ave", + "address_2": null, + "address_3": null, + "city": "Lake City", + "state_province": "Florida", + "postal_code": "32055-4012", + "country": "United States", + "longitude": -82.63654594, + "latitude": 30.19050388, + "phone": "3864388788", + "website_url": "http://www.halpatterbrewing.com", + "state": "Florida", + "street": "264 NE Hernando Ave" + }, + { + "id": "26d5210e-54b9-4375-9d69-5c296ca83038", + "name": "Halyard Brewing Company", + "brewery_type": "micro", + "address_1": "80 Ethan Allen Dr Ste 2", + "address_2": null, + "address_3": null, + "city": "South Burlington", + "state_province": "Vermont", + "postal_code": "05403-5971", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9048742734", + "website_url": "http://www.halyardbrewing.us", + "state": "Vermont", + "street": "80 Ethan Allen Dr Ste 2" + }, + { + "id": "63e07cbd-4eea-445f-94a2-771bd1020b3e", + "name": "Hamburg Brewing Company", + "brewery_type": "micro", + "address_1": "6553 Boston State Rd", + "address_2": null, + "address_3": null, + "city": "Hamburg", + "state_province": "New York", + "postal_code": "14075-6630", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7166493249", + "website_url": "http://www.hamburgbrewing.com", + "state": "New York", + "street": "6553 Boston State Rd" + }, + { + "id": "ba77ee7a-a62c-482e-8c3e-436ef62f11d8", + "name": "Hamburger Mary's/Andersonville Brewing Company", + "brewery_type": "brewpub", + "address_1": "5402 N Clark St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60640-1210", + "country": "United States", + "longitude": -87.66855092, + "latitude": 41.97997865, + "phone": "7737846969", + "website_url": "http://www.hamburgermaryschicago.com", + "state": "Illinois", + "street": "5402 N Clark St" + }, + { + "id": "f31b2eb4-38d1-41b2-90d7-ef41f9362192", + "name": "Hamilton Family Brewery", + "brewery_type": "micro", + "address_1": "9757 7th St Ste 802", + "address_2": null, + "address_3": null, + "city": "Rancho Cucamonga", + "state_province": "California", + "postal_code": "91730-5297", + "country": "United States", + "longitude": -117.591893, + "latitude": 34.08815449, + "phone": "9099897050", + "website_url": "http://hamiltonfamilybrewery.com", + "state": "California", + "street": "9757 7th St Ste 802" + }, + { + "id": "7b619ae8-fd5b-4751-976a-77111100b441", + "name": "Hammer & Forge Brewing Company", + "brewery_type": "micro", + "address_1": "70 Main Street", + "address_2": null, + "address_3": null, + "city": "Boones Mill", + "state_province": "Virginia", + "postal_code": "24064", + "country": "United States", + "longitude": -79.95438626, + "latitude": 37.1151673, + "phone": "5406133913", + "website_url": "http://www.hammerandforgebrewing.com", + "state": "Virginia", + "street": "70 Main Street" + }, + { + "id": "ac43837a-d009-4df2-9984-6c536e85fe93", + "name": "Hammer & Nail Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Trumbull", + "state_province": "Connecticut", + "postal_code": "06611-4975", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2032404987", + "website_url": "http://www.HammerNailBrewing.com", + "state": "Connecticut", + "street": null + }, + { + "id": "2deddb89-ee77-4758-a800-052de103c6db", + "name": "HammerHeart Brewing Company", + "brewery_type": "micro", + "address_1": "7785 Lake Dr", + "address_2": null, + "address_3": null, + "city": "Lino Lakes", + "state_province": "Minnesota", + "postal_code": "55014-1109", + "country": "United States", + "longitude": -93.1064135, + "latitude": 45.1890903, + "phone": "6513482654", + "website_url": "http://www.hammerheartbrewing.com", + "state": "Minnesota", + "street": "7785 Lake Dr" + }, + { + "id": "5fe91dd7-0dac-41d0-aac9-7c2fd664a929", + "name": "Hana Koa Brewing Company", + "brewery_type": "brewpub", + "address_1": "962 Kawaiahao St", + "address_2": null, + "address_3": null, + "city": "Honolulu", + "state_province": "Hawaii", + "postal_code": "96814", + "country": "United States", + "longitude": -157.852894, + "latitude": 21.297494, + "phone": "8085912337", + "website_url": "http://www.hanakoabrewing.com", + "state": "Hawaii", + "street": "962 Kawaiahao St" + }, + { + "id": "71e0c498-d10f-4229-a71c-070561d23702", + "name": "Hand Brew Co Ltd", + "brewery_type": "brewpub", + "address_1": "Upper St. James Street", + "address_2": null, + "address_3": null, + "city": "Brighton", + "state_province": "East Sussex", + "postal_code": "BN2 1JN", + "country": "England", + "longitude": -0.12867, + "latitude": 50.81986, + "phone": "1273699595", + "website_url": "http://www.handbrewpub.com/", + "state": "East Sussex", + "street": "Upper St. James Street" + }, + { + "id": "652b410d-07ea-4134-be36-fd62679f29aa", + "name": "Hand of Fate Brewing Co", + "brewery_type": "micro", + "address_1": "107 E Douglas Ave", + "address_2": null, + "address_3": null, + "city": "Petersburg", + "state_province": "Illinois", + "postal_code": "62675-1558", + "country": "United States", + "longitude": -89.92105943, + "latitude": 38.59194278, + "phone": "2176911098", + "website_url": "http://www.handoffatebrewing.beer", + "state": "Illinois", + "street": "107 E Douglas Ave" + }, + { + "id": "c75293cb-e18c-4c7f-ac21-a08418766428", + "name": "Hand-Brewed Beer", + "brewery_type": "micro", + "address_1": "9771 Variel Ave", + "address_2": null, + "address_3": null, + "city": "Chatsworth", + "state_province": "California", + "postal_code": "91311-4315", + "country": "United States", + "longitude": -118.5930241, + "latitude": 34.24766895, + "phone": "8189641422", + "website_url": "http://www.handbrewedbeer.com", + "state": "California", + "street": "9771 Variel Ave" + }, + { + "id": "58f92618-b1c1-4737-b628-13abdfc7e0d9", + "name": "Hangar 24 Craft Brewery", + "brewery_type": "regional", + "address_1": "1710 Sessums Dr", + "address_2": null, + "address_3": null, + "city": "Redlands", + "state_province": "California", + "postal_code": "92374-1909", + "country": "United States", + "longitude": -117.1419134, + "latitude": 34.0831712, + "phone": "9093891400", + "website_url": "http://www.hangar24brewery.com", + "state": "California", + "street": "1710 Sessums Dr" + }, + { + "id": "48dc261e-1cfa-436f-a947-51b53b330abc", + "name": "Hanging Hills Brewing Company", + "brewery_type": "micro", + "address_1": "150 Ledyard St", + "address_2": null, + "address_3": null, + "city": "Hartford", + "state_province": "Connecticut", + "postal_code": "06114-1403", + "country": "United States", + "longitude": -72.67011733, + "latitude": 41.74481243, + "phone": "8602637033", + "website_url": "http://www.hanginghillsbrewery.com", + "state": "Connecticut", + "street": "150 Ledyard St" + }, + { + "id": "344298b7-4657-4f82-88e7-4e558131da4e", + "name": "Hanging Horseshoe Brewing Company", + "brewery_type": "micro", + "address_1": "73892 332 Ave", + "address_2": null, + "address_3": null, + "city": "Imperial", + "state_province": "Nebraska", + "postal_code": "69033-3034", + "country": "United States", + "longitude": -101.64814, + "latitude": 40.536221, + "phone": "3088827772", + "website_url": null, + "state": "Nebraska", + "street": "73892 332 Ave" + }, + { + "id": "77358748-54f0-4396-bc3c-d73ce170541c", + "name": "Hank Hudson Brewing At Fairways of Halfmoon", + "brewery_type": "brewpub", + "address_1": "17 Johnson Rd", + "address_2": null, + "address_3": null, + "city": "Mechanicville", + "state_province": "New York", + "postal_code": "12118-3505", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5186641578", + "website_url": null, + "state": "New York", + "street": "17 Johnson Rd" + }, + { + "id": "dd702c3b-e231-4e25-865c-c9ef68a57c74", + "name": "Hank Is Wiser Brewery", + "brewery_type": "brewpub", + "address_1": "213 N Main St", + "address_2": null, + "address_3": null, + "city": "Cheney", + "state_province": "Kansas", + "postal_code": "67025-9730", + "country": "United States", + "longitude": -97.7812689, + "latitude": 37.62820924, + "phone": "3165420113", + "website_url": "http://www.hankiswiserbrewery.com", + "state": "Kansas", + "street": "213 N Main St" + }, + { + "id": "1fcb7d97-83ee-4b1b-ba5a-f2c8c2b5b1d1", + "name": "Hansa Brewery", + "brewery_type": "brewpub", + "address_1": "2717 Lorain Ave", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44113-3414", + "country": "United States", + "longitude": -81.70479139, + "latitude": 41.48344207, + "phone": "2166316585", + "website_url": "http://www.hansabrewery.com", + "state": "Ohio", + "street": "2717 Lorain Ave" + }, + { + "id": "d8549701-4cf1-4aff-9af1-b0ef1e2dc072", + "name": "Hanson Brothers Beer Company", + "brewery_type": "contract", + "address_1": "209 N Main St", + "address_2": null, + "address_3": null, + "city": "Tulsa", + "state_province": "Oklahoma", + "postal_code": "74103-2005", + "country": "United States", + "longitude": -95.9936663, + "latitude": 36.15851257, + "phone": null, + "website_url": "http://www.hansonbrothersbeer.com", + "state": "Oklahoma", + "street": "209 N Main St" + }, + { + "id": "765e8c19-78dd-4117-ad3a-61ce5337d5a7", + "name": "Hapa's Brewing Company", + "brewery_type": "micro", + "address_1": "460 Lincoln Ave # 90", + "address_2": null, + "address_3": null, + "city": "San Jose", + "state_province": "California", + "postal_code": "95126-3702", + "country": "United States", + "longitude": -121.888991, + "latitude": 37.2917841, + "phone": "4089823299", + "website_url": "http://hapasbrewing.com/", + "state": "California", + "street": "460 Lincoln Ave # 90" + }, + { + "id": "073d02c4-85e2-4118-955b-89e8d51ff119", + "name": "Happy Basset Brewing Company", + "brewery_type": "micro", + "address_1": "6044 SW 29th St", + "address_2": null, + "address_3": null, + "city": "Topeka", + "state_province": "Kansas", + "postal_code": "66614-4268", + "country": "United States", + "longitude": -95.7637047, + "latitude": 39.01466361, + "phone": "7857833688", + "website_url": "http://www.happybassetbrewingco.com", + "state": "Kansas", + "street": "6044 SW 29th St" + }, + { + "id": "8531b73e-c11f-498c-90bb-317d8783624b", + "name": "Happy Days Brewery at Netherwood", + "brewery_type": "brewpub", + "address_1": "Netherwood Farm R103", + "address_2": null, + "address_3": null, + "city": "Nottingham Road", + "state_province": "KwaZulu-Natal", + "postal_code": "3280", + "country": "South Africa", + "longitude": 29.9861, + "latitude": -29.3879, + "phone": "+27 33 266 7132", + "website_url": "https://www.netherwoodfarm.com/happy-days-brewery", + "state": "KwaZulu-Natal", + "street": "Netherwood Farm R103" + }, + { + "id": "50adab67-c5bf-4be0-8116-e7311e7864d4", + "name": "Happy Hippie Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Richardson", + "state_province": "Texas", + "postal_code": "75080", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2146167681", + "website_url": "http://www.happyhippiebeer.com", + "state": "Texas", + "street": null + }, + { + "id": "2d6f4446-21f5-4453-ac5b-84e228dff82c", + "name": "Happy Trails Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sparta", + "state_province": "Tennessee", + "postal_code": "38583-5577", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9312678027", + "website_url": "http://www.happytrailsbrewingco.com", + "state": "Tennessee", + "street": null + }, + { + "id": "64368dfe-7804-461a-8704-23c31d8125fe", + "name": "Happy Valley Brewing Co.", + "brewery_type": "micro", + "address_1": "34 Wolverhampton Street", + "address_2": null, + "address_3": null, + "city": "Stafford", + "state_province": "QLD", + "postal_code": "4053", + "country": "Australia", + "longitude": 153.013861, + "latitude": -27.4175135, + "phone": "+61 451 534 053", + "website_url": "https://happyvalleybrewingco.com.au/?utm_source=google&utm_medium=wix_google_business_profile&utm_campaign=713965300857523334", + "state": "QLD", + "street": "34 Wolverhampton Street" + }, + { + "id": "e73fe117-041d-477f-ae73-ad19bf5f2f68", + "name": "Happy Valley Brewing Company", + "brewery_type": "brewpub", + "address_1": "137 Elmwood St", + "address_2": null, + "address_3": null, + "city": "State College", + "state_province": "Pennsylvania", + "postal_code": "16801-6851", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": "137 Elmwood St" + }, + { + "id": "1710a317-a662-45f5-9162-f7f3c8a16015", + "name": "Harbinger Beer Company LLC", + "brewery_type": "planning", + "address_1": "111 Buffalo St", + "address_2": null, + "address_3": null, + "city": "Caddo", + "state_province": "Oklahoma", + "postal_code": "74729-2606", + "country": "United States", + "longitude": -96.2601872, + "latitude": 34.1253524, + "phone": "5803809398", + "website_url": "http://harbingerbeer.com", + "state": "Oklahoma", + "street": "111 Buffalo St" + }, + { + "id": "ae916041-5055-42ed-a19f-e03dfeafbf00", + "name": "Harbor Head Brewing Co", + "brewery_type": "micro", + "address_1": "81 Fort Salonga Rd", + "address_2": null, + "address_3": null, + "city": "Northport", + "state_province": "New York", + "postal_code": "11768-2889", + "country": "United States", + "longitude": -73.3539709, + "latitude": 40.8908555, + "phone": "6318155588", + "website_url": "http://www.harborheadbrew.com", + "state": "New York", + "street": "81 Fort Salonga Rd" + }, + { + "id": "eb9f6c47-2c75-4462-9da1-9208979fdb07", + "name": "Harbor Mountain Brewing Co", + "brewery_type": "micro", + "address_1": "1209 Sawmill Creek Rd Ste A", + "address_2": null, + "address_3": null, + "city": "Sitka", + "state_province": "Alaska", + "postal_code": "99835-9759", + "country": "United States", + "longitude": -135.309951, + "latitude": 57.049586, + "phone": "9073087339", + "website_url": "https://www.harbormountainbrewing.com/", + "state": "Alaska", + "street": "1209 Sawmill Creek Rd Ste A" + }, + { + "id": "d3d71277-4b66-4dcf-a217-f92338387e05", + "name": "Hard Road Brewing", + "brewery_type": "micro", + "address_1": "31 Holloway Drive", + "address_2": null, + "address_3": null, + "city": "Bayswater", + "state_province": "VIC", + "postal_code": "3153", + "country": "Australia", + "longitude": 145.281061, + "latitude": -37.850716, + "phone": "+61 499 580 804", + "website_url": "https://www.hardroadbrewing.com/", + "state": "VIC", + "street": "31 Holloway Drive" + }, + { + "id": "24f4fa84-91d9-4cde-8e37-5cb430753f29", + "name": "Harding House Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37209", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3034089405", + "website_url": "http://www.hardinghousebrew.com", + "state": "Tennessee", + "street": null + }, + { + "id": "ee478df6-9033-4f56-b6f7-94d3b242871d", + "name": "Hardwood Bar and Smokery", + "brewery_type": "brewpub", + "address_1": "680 8th St Ste 170", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94103", + "country": "United States", + "longitude": -122.404927, + "latitude": 37.77073989, + "phone": "4157962437", + "website_url": "http://www.hardwoodsf.com", + "state": "California", + "street": "680 8th St Ste 170" + }, + { + "id": "093c8814-568c-4b61-ad11-70ac6a4c3b6d", + "name": "Hardywood Park Craft Brewery", + "brewery_type": "micro", + "address_1": "2408 Ownby Ln", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23220-1319", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8044202420", + "website_url": "http://www.hardywood.com", + "state": "Virginia", + "street": "2408 Ownby Ln" + }, + { + "id": "675e5fbb-fe82-4e44-afee-116d1d924d90", + "name": "Hardywood Park Craft Brewery-Charlottesville", + "brewery_type": "micro", + "address_1": "1000 W Main St", + "address_2": null, + "address_3": null, + "city": "Charlottesville", + "state_province": "Virginia", + "postal_code": "22903-3277", + "country": "United States", + "longitude": -78.49505511, + "latitude": 38.03257623, + "phone": "4342343386", + "website_url": null, + "state": "Virginia", + "street": "1000 W Main St" + }, + { + "id": "09aefb86-1ed9-4838-a5c1-42baa6e833b1", + "name": "Hardywood West Creek", + "brewery_type": "micro", + "address_1": "820 Sanctuary Trail Dr", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23238", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8044183548", + "website_url": "http://hardywood.com/visit-us/westcreek/", + "state": "Virginia", + "street": "820 Sanctuary Trail Dr" + }, + { + "id": "0ed75909-c4d0-4c3f-8639-a24f04620b34", + "name": "Hare In the Forest", + "brewery_type": "micro", + "address_1": "9311 Gibson Ln", + "address_2": null, + "address_3": null, + "city": "Potter Valley", + "state_province": "California", + "postal_code": "95469-8799", + "country": "United States", + "longitude": -123.1252703, + "latitude": 39.33623934, + "phone": "9105457759", + "website_url": "http://www.hareintheforest.com", + "state": "California", + "street": "9311 Gibson Ln" + }, + { + "id": "95e2aecb-8c67-415f-aad7-02f1148871f6", + "name": "Harlem Blue Beer", + "brewery_type": "proprietor", + "address_1": "2214 Frederick Douglass Blvd Ste 267", + "address_2": null, + "address_3": null, + "city": "New York", + "state_province": "New York", + "postal_code": "10026-1123", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.harlemblue.com", + "state": "New York", + "street": "2214 Frederick Douglass Blvd Ste 267" + }, + { + "id": "02f59192-c794-4d3b-b3a3-6d96bb2bb7b2", + "name": "Harlem Brewing Co", + "brewery_type": "contract", + "address_1": "2 W 123rd St", + "address_2": null, + "address_3": null, + "city": "New York", + "state_province": "New York", + "postal_code": "10027-5623", + "country": "United States", + "longitude": -73.94532799, + "latitude": 40.8058068, + "phone": "8885596735", + "website_url": "http://www.harlembrewingcompany.com", + "state": "New York", + "street": "2 W 123rd St" + }, + { + "id": "cdcc3305-d175-4cdb-b775-c150700bca78", + "name": "Harmon Brewing Company", + "brewery_type": "micro", + "address_1": "204 St Helens Ave", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98402-2522", + "country": "United States", + "longitude": -122.4457804, + "latitude": 47.26209356, + "phone": "253212725", + "website_url": "http://www.harmonbrewingco.com", + "state": "Washington", + "street": "204 St Helens Ave" + }, + { + "id": "82ae31f2-9010-4437-9f6c-babf306dabd6", + "name": "Harmonic Brewing", + "brewery_type": "micro", + "address_1": "1050 26th St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94107-3513", + "country": "United States", + "longitude": -122.3900962, + "latitude": 37.75149961, + "phone": "4158726817", + "website_url": "http://www.harmonicbrewing.com", + "state": "California", + "street": "1050 26th St" + }, + { + "id": "063bdb40-056e-489a-b952-0746b4b9e512", + "name": "Harmony Brewing Co", + "brewery_type": "brewpub", + "address_1": "1551 Lake Dr SE", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49506-2705", + "country": "United States", + "longitude": -85.63066846, + "latitude": 42.95501346, + "phone": "6162330063", + "website_url": null, + "state": "Michigan", + "street": "1551 Lake Dr SE" + }, + { + "id": "a3bd0375-cc0f-48cf-82f9-48151f0c411b", + "name": "Harmony Brewing Company - Harmony Hall", + "brewery_type": "brewpub", + "address_1": "401 Stocking Ave NW", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49504-5501", + "country": "United States", + "longitude": -85.684118, + "latitude": 42.970732, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "401 Stocking Ave NW" + }, + { + "id": "5f945959-5237-4b15-83f7-8f8c73e4c50c", + "name": "Harpers Restaurant and Brewpub", + "brewery_type": "brewpub", + "address_1": "131 Albert Ave", + "address_2": null, + "address_3": null, + "city": "East Lansing", + "state_province": "Michigan", + "postal_code": "48823-4315", + "country": "United States", + "longitude": -84.48282452, + "latitude": 42.73626665, + "phone": "5173334040", + "website_url": "http://www.harpersbrewpub.com", + "state": "Michigan", + "street": "131 Albert Ave" + }, + { + "id": "0b2584a1-609c-41f3-a051-f3f46158cd5b", + "name": "Harpoon Brewery", + "brewery_type": "brewpub", + "address_1": "215 Canal St", + "address_2": null, + "address_3": null, + "city": "Manchester", + "state_province": "New Hampshire", + "postal_code": "03101", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6039453797", + "website_url": null, + "state": "New Hampshire", + "street": "215 Canal St" + }, + { + "id": "3b88a2c7-a7be-48e9-9da9-590482876f57", + "name": "Harpoon Brewery", + "brewery_type": "regional", + "address_1": "306 Northern Ave Ste 2", + "address_2": null, + "address_3": null, + "city": "Boston", + "state_province": "Massachusetts", + "postal_code": "02210-2367", + "country": "United States", + "longitude": -71.0348293, + "latitude": 42.3465637, + "phone": "6175749551", + "website_url": "http://www.harpoonbrewery.com", + "state": "Massachusetts", + "street": "306 Northern Ave Ste 2" + }, + { + "id": "f5157980-ddcd-4b1e-ad28-c3430ab6126f", + "name": "Harpoon Brewery - Vermont", + "brewery_type": "regional", + "address_1": "336 Ruth Carney Dr", + "address_2": null, + "address_3": null, + "city": "Windsor", + "state_province": "Vermont", + "postal_code": "05089-9419", + "country": "United States", + "longitude": -72.40380616, + "latitude": 43.51478045, + "phone": "8026745491", + "website_url": "http://www.harpoonbrewery.com", + "state": "Vermont", + "street": "336 Ruth Carney Dr" + }, + { + "id": "8d425e76-0127-4b57-9ddf-b9be4b6ab068", + "name": "Harsens Island Beer Co.", + "brewery_type": "brewpub", + "address_1": "808 Gratiot Blvd", + "address_2": null, + "address_3": null, + "city": "Marysville", + "state_province": "Michigan", + "postal_code": "48040-1127", + "country": "United States", + "longitude": -82.47149301, + "latitude": 42.92247389, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "808 Gratiot Blvd" + }, + { + "id": "3139597e-7646-47c6-aca5-bc867653e21c", + "name": "Harty Brewing Company", + "brewery_type": "brewpub", + "address_1": "146 Walden Way", + "address_2": null, + "address_3": null, + "city": "Mechanicsburg", + "state_province": "Pennsylvania", + "postal_code": "17050-4105", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.hartybrewco.com", + "state": "Pennsylvania", + "street": "146 Walden Way" + }, + { + "id": "4239bcad-284c-462d-9b0c-c8dc02b30627", + "name": "Harvest Moon Brewery/Cafe", + "brewery_type": "brewpub", + "address_1": "392 George St", + "address_2": null, + "address_3": null, + "city": "New Brunswick", + "state_province": "New Jersey", + "postal_code": "08901-2018", + "country": "United States", + "longitude": -74.4442058, + "latitude": 40.4962516, + "phone": "7322496666", + "website_url": "http://www.harvestmoonbrewery.com", + "state": "New Jersey", + "street": "392 George St" + }, + { + "id": "21a8c5a0-6c7d-4176-bf02-4faaaa54a7d1", + "name": "Harvest Moon Brewing", + "brewery_type": "micro", + "address_1": "7 5th St S", + "address_2": null, + "address_3": null, + "city": "Belt", + "state_province": "Montana", + "postal_code": "59412-0510", + "country": "United States", + "longitude": -110.9298527, + "latitude": 47.38221919, + "phone": "4062773188", + "website_url": "http://www.harvestmoonbrew.com", + "state": "Montana", + "street": "7 5th St S" + }, + { + "id": "428cf3ce-3f8f-481c-bbd9-562eb61545df", + "name": "Harvest Seasonal Kitchen", + "brewery_type": "brewpub", + "address_1": "112 E Louisiana St", + "address_2": null, + "address_3": null, + "city": "McKinney", + "state_province": "Texas", + "postal_code": "75069-4412", + "country": "United States", + "longitude": -96.615387, + "latitude": 33.197177, + "phone": "2147260251", + "website_url": "http://www.harvesttx.com", + "state": "Texas", + "street": "112 E Louisiana St" + }, + { + "id": "3ec0c0c6-3ecd-481f-b64a-018e6ab2a52b", + "name": "Harveys & Son", + "brewery_type": "large", + "address_1": "Cliffe High Street", + "address_2": null, + "address_3": null, + "city": "Lewes", + "state_province": "East Sussex", + "postal_code": "BN7 2AH", + "country": "England", + "longitude": 0.01749, + "latitude": 50.874229, + "phone": "1273480209", + "website_url": "https://www.harveys.org.uk/", + "state": "East Sussex", + "street": "Cliffe High Street" + }, + { + "id": "277de331-35c8-4efa-8248-22dd81e768d9", + "name": "Hasseman Brewing", + "brewery_type": "micro", + "address_1": "115 S 6th St", + "address_2": null, + "address_3": null, + "city": "Coshocton", + "state_province": "Ohio", + "postal_code": "43812-1625", + "country": "United States", + "longitude": -81.86176557, + "latitude": 40.27239943, + "phone": "7402941364", + "website_url": "http://www.hassemanbrewing.com", + "state": "Ohio", + "street": "115 S 6th St" + }, + { + "id": "99e8f097-0412-43ec-849e-e95add4bd3c2", + "name": "Hatchet Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Southern Pines", + "state_province": "North Carolina", + "postal_code": "28387-6164", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5715334898", + "website_url": "http://www.hatchetbrewing.com", + "state": "North Carolina", + "street": null + }, + { + "id": "294fc99c-a598-4612-9012-22c8723405c6", + "name": "Havoc Brew", + "brewery_type": "micro", + "address_1": "Unit 17 The Interchange", + "address_2": "9 Nobel Street", + "address_3": null, + "city": "Somerset West", + "state_province": "Western Cape", + "postal_code": "7130", + "country": "South Africa", + "longitude": 18.8132, + "latitude": -34.0734, + "phone": "+27 82 552 9491", + "website_url": "https://havocbrew.com/", + "state": "Western Cape", + "street": "Unit 17 The Interchange" + }, + { + "id": "6d32ae11-f633-45ad-b018-b100c588c69d", + "name": "Haw River Farmhouse Ales", + "brewery_type": "micro", + "address_1": "1713 Saxapahaw-Bethlehem Church Rd", + "address_2": null, + "address_3": null, + "city": "Saxapahaw", + "state_province": "North Carolina", + "postal_code": "27340-0390", + "country": "United States", + "longitude": -79.31872, + "latitude": 35.946942, + "phone": "3365259270", + "website_url": "http://www.hawriverales.com", + "state": "North Carolina", + "street": "1713 Saxapahaw-Bethlehem Church Rd" + }, + { + "id": "6244855f-97dd-487a-bb90-348b8c3b26f5", + "name": "Hawaii Nui Brewing", + "brewery_type": "closed", + "address_1": "275 E Kawili St", + "address_2": null, + "address_3": null, + "city": "Hilo", + "state_province": "Hawaii", + "postal_code": "96720-5074", + "country": "United States", + "longitude": -155.0697885, + "latitude": 19.70587596, + "phone": "8089348211", + "website_url": "http://www.hawaiinuibrewing.com", + "state": "Hawaii", + "street": "275 E Kawili St" + }, + { + "id": "ba11eb1c-3f66-4ac2-8d49-27b7abab4b49", + "name": "Hawk Moth Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "rogers", + "state_province": "Arkansas", + "postal_code": "72756", + "country": "United States", + "longitude": -94.1185366, + "latitude": 36.3320197, + "phone": "4796164800", + "website_url": null, + "state": "Arkansas", + "street": null + }, + { + "id": "7db12629-2a76-45d1-93ed-8cfd1a9efbe7", + "name": "Hawke’s Brewing Co.", + "brewery_type": "micro", + "address_1": "8-12 Sydney Street", + "address_2": null, + "address_3": null, + "city": "Marrickville", + "state_province": "NSW", + "postal_code": "2204", + "country": "Australia", + "longitude": 151.1639375, + "latitude": -33.9119187, + "phone": "+61 2 9069 5583", + "website_url": "https://www.hawkesbrewing.com/", + "state": "NSW", + "street": "8-12 Sydney Street" + }, + { + "id": "5868b402-a6ec-4182-aec9-48a7bd333899", + "name": "Hawkers", + "brewery_type": "micro", + "address_1": "167 Henty Street", + "address_2": null, + "address_3": null, + "city": "Reservoir", + "state_province": "VIC", + "postal_code": "3073", + "country": "Australia", + "longitude": 144.984805, + "latitude": -37.718126, + "phone": "+61 3 9462 0650", + "website_url": "http://www.hawkers.beer/", + "state": "VIC", + "street": "167 Henty Street" + }, + { + "id": "eca98477-5eab-467f-b4b2-ccc871cf9499", + "name": "Hawkers Beer", + "brewery_type": "micro", + "address_1": "167 Henty Street", + "address_2": null, + "address_3": null, + "city": "Reservoir", + "state_province": "VIC", + "postal_code": "3073", + "country": "Australia", + "longitude": 144.984805, + "latitude": -37.718126, + "phone": "+61 3 9462 0650", + "website_url": "http://www.hawkers.beer/", + "state": "VIC", + "street": "167 Henty Street" + }, + { + "id": "541b415e-b1ff-4b39-8af8-6a5b7dd6f27b", + "name": "HawkPeak Brewing Company DBA Grand Haven Brew House", + "brewery_type": "brewpub", + "address_1": "101 Washington Ave # 2B", + "address_2": null, + "address_3": null, + "city": "Grand Haven", + "state_province": "Michigan", + "postal_code": "49417-1302", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6166072060", + "website_url": "http://www.grandhavenbrewhouse.com", + "state": "Michigan", + "street": "101 Washington Ave # 2B" + }, + { + "id": "60540b03-2716-4e2f-b208-fe3b2d2be38c", + "name": "Hawksbill Brewing Company", + "brewery_type": "micro", + "address_1": "22 Zerkel St", + "address_2": null, + "address_3": null, + "city": "Luray", + "state_province": "Virginia", + "postal_code": "22835-1913", + "country": "United States", + "longitude": -78.45970045, + "latitude": 38.66335774, + "phone": "5408605608", + "website_url": "http://www.hawksbillbrewing.com", + "state": "Virginia", + "street": "22 Zerkel St" + }, + { + "id": "3404588d-3a65-4f24-ab30-8d738ac3d108", + "name": "Hay Camp Brewing Company", + "brewery_type": "micro", + "address_1": "601 Kansas City St", + "address_2": null, + "address_3": null, + "city": "Rapid City", + "state_province": "South Dakota", + "postal_code": "57701-3622", + "country": "United States", + "longitude": -103.227816, + "latitude": 44.07889, + "phone": "6057181167", + "website_url": "http://www.haycampbrewing.com", + "state": "South Dakota", + "street": "601 Kansas City St" + }, + { + "id": "fd05cf2c-9058-491f-a77f-b17b767ec0da", + "name": "Hayes Public House", + "brewery_type": "micro", + "address_1": "112 1st St S", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "Minnesota", + "postal_code": "55313-1402", + "country": "United States", + "longitude": -93.87452922, + "latitude": 45.17084806, + "phone": "7637466389", + "website_url": "http://www.hayespublichouse.com", + "state": "Minnesota", + "street": "112 1st St S" + }, + { + "id": "f6d2a5d3-96af-47ff-b3d3-a38a3d6c1e0d", + "name": "Hayesville Brewing Co", + "brewery_type": "brewpub", + "address_1": "1568 Highway 64 W", + "address_2": null, + "address_3": null, + "city": "Hayesville", + "state_province": "North Carolina", + "postal_code": "28904-4651", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8288356010", + "website_url": "http://www.facebook.com/leisa5678/", + "state": "North Carolina", + "street": "1568 Highway 64 W" + }, + { + "id": "3b737ad4-2770-48e6-8897-644fa1886e7a", + "name": "Haymarket Brewery and Taproom", + "brewery_type": "micro", + "address_1": "9301 Red Arrow Hwy", + "address_2": null, + "address_3": null, + "city": "Bridgman", + "state_province": "Michigan", + "postal_code": "49106-9558", + "country": "United States", + "longitude": -86.55947806, + "latitude": 41.94715363, + "phone": "3126380707", + "website_url": null, + "state": "Michigan", + "street": "9301 Red Arrow Hwy" + }, + { + "id": "51c00792-038b-4a5a-af2c-efade94f169f", + "name": "Haymarket Pub and Brewery", + "brewery_type": "brewpub", + "address_1": "737 W Randolph St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60661-2103", + "country": "United States", + "longitude": -87.6472956, + "latitude": 41.8841895, + "phone": "3126380707", + "website_url": "http://www.haymarketbrewing.com", + "state": "Illinois", + "street": "737 W Randolph St" + }, + { + "id": "017c8df5-27bd-4812-b42a-6d5e3e555ecf", + "name": "Haywire Brewing Company", + "brewery_type": "micro", + "address_1": "12125 Treosti Rd", + "address_2": null, + "address_3": null, + "city": "Snohomish", + "state_province": "Washington", + "postal_code": "98290-6918", + "country": "United States", + "longitude": -122.0812498, + "latitude": 47.8860915, + "phone": "3605682739", + "website_url": "http://www.haywirebrewery.com", + "state": "Washington", + "street": "12125 Treosti Rd" + }, + { + "id": "52bfedca-f266-4c5f-9272-9cba60de9587", + "name": "Hazelwood Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "South Carolina", + "postal_code": "29072", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8034765845", + "website_url": "http://Hazelwoodbeer.com", + "state": "South Carolina", + "street": null + }, + { + "id": "165d44f6-04a6-4034-8e86-cb99929f46d2", + "name": "HeadFlyer Brewing", + "brewery_type": "micro", + "address_1": "861 E Hennepin Ave", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55414-1201", + "country": "United States", + "longitude": -93.2437012, + "latitude": 44.9917415, + "phone": "6125676345", + "website_url": "http://www.headflyerbrewing.com", + "state": "Minnesota", + "street": "861 E Hennepin Ave" + }, + { + "id": "712e3674-5d9b-4f12-9c63-0f64311a6024", + "name": "Headlands Brewing Company", + "brewery_type": "proprietor", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mill Valley", + "state_province": "California", + "postal_code": "94941-2003", + "country": "United States", + "longitude": -122.5449763, + "latitude": 37.9060368, + "phone": "4158604226", + "website_url": "http://www.headlandsbrewing.com", + "state": "California", + "street": null + }, + { + "id": "81292878-bdc3-40ab-8237-c84d384c2b6d", + "name": "Headless Mumby Brewing", + "brewery_type": "micro", + "address_1": "232 Division St NW", + "address_2": null, + "address_3": null, + "city": "Olympia", + "state_province": "Washington", + "postal_code": "98502", + "country": "United States", + "longitude": -122.92562, + "latitude": 47.04735502, + "phone": "3607423880", + "website_url": "https://www.headlessmumbybrewing.com", + "state": "Washington", + "street": "232 Division St NW" + }, + { + "id": "023d4223-5217-4834-a4c6-8469b395a900", + "name": "HeadStrong Brewery", + "brewery_type": "closed", + "address_1": "126 N 3rd St", + "address_2": null, + "address_3": null, + "city": "Douglas", + "state_province": "Wyoming", + "postal_code": "82633-2163", + "country": "United States", + "longitude": -105.3842083, + "latitude": 42.76025521, + "phone": "3073514061", + "website_url": "http://www.headstrongbrewery.com", + "state": "Wyoming", + "street": "126 N 3rd St" + }, + { + "id": "856d9ba1-2d2b-4f4c-a4f5-596b273ce762", + "name": "Headtrip Brewery", + "brewery_type": "micro", + "address_1": "1634 Norton Rd", + "address_2": null, + "address_3": null, + "city": "Stow", + "state_province": "Ohio", + "postal_code": "44224-1412", + "country": "United States", + "longitude": -81.442913, + "latitude": 41.202942, + "phone": null, + "website_url": "http://www.headtripbrewery.com", + "state": "Ohio", + "street": "1634 Norton Rd" + }, + { + "id": "48982837-dca0-4eae-824b-5b6194d9d1b3", + "name": "Headworks Brewing", + "brewery_type": "micro", + "address_1": "1110 Marshall Ave", + "address_2": null, + "address_3": null, + "city": "Enumclaw", + "state_province": "Washington", + "postal_code": "98022-3525", + "country": "United States", + "longitude": -121.987758, + "latitude": 47.205096, + "phone": "2532635318", + "website_url": "http://www.headworksbrewing.com", + "state": "Washington", + "street": "1110 Marshall Ave" + }, + { + "id": "b6f4fd70-86a7-42e7-ba37-34eaa411518c", + "name": "Heaps Normal", + "brewery_type": "micro", + "address_1": "10 Brompton Street", + "address_2": "2", + "address_3": null, + "city": "Marrickville", + "state_province": "NSW", + "postal_code": "2042", + "country": "Australia", + "longitude": 151.1644513, + "latitude": -33.9053559, + "phone": null, + "website_url": "http://heapsnormal.com/", + "state": "NSW", + "street": "10 Brompton Street" + }, + { + "id": "107e6673-b345-431f-83c5-98f04b61ad44", + "name": "Heart & Solar Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Parkton", + "state_province": "Maryland", + "postal_code": "21120-9253", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4104938030", + "website_url": "http://www.heartandsolarbrewing.com", + "state": "Maryland", + "street": null + }, + { + "id": "59b15388-72c7-4a2d-895a-7382c5b2d125", + "name": "Heartland Brewery", + "brewery_type": "contract", + "address_1": "35 Union Sq W Frnt 1", + "address_2": null, + "address_3": null, + "city": "New York", + "state_province": "New York", + "postal_code": "10003-3200", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2126453400", + "website_url": "http://www.heartlandbrewery.com", + "state": "New York", + "street": "35 Union Sq W Frnt 1" + }, + { + "id": "2036b68f-d586-4a89-9847-7053011df006", + "name": "Heater Allen Brewery", + "brewery_type": "micro", + "address_1": "907 NE 10th Ave", + "address_2": null, + "address_3": null, + "city": "McMinnville", + "state_province": "Oregon", + "postal_code": "97128-4003", + "country": "United States", + "longitude": -123.1879728, + "latitude": 45.21407234, + "phone": "5034724898", + "website_url": "http://www.heaterallen.com", + "state": "Oregon", + "street": "907 NE 10th Ave" + }, + { + "id": "0e33f372-58f3-4a7e-9126-18898e957351", + "name": "Heathen Brewers Partnership", + "brewery_type": "micro", + "address_1": "The Broadway", + "address_2": null, + "address_3": null, + "city": "Haywards Heath", + "state_province": "West Sussex", + "postal_code": "RH16 3AS", + "country": "England", + "longitude": -0.105976, + "latitude": 51.000799, + "phone": "1444456217", + "website_url": "http://www.heathenbrewers.co.uk/", + "state": "West Sussex", + "street": "The Broadway" + }, + { + "id": "b5295ee6-9e4c-406b-a84e-6aaf544ad1c8", + "name": "Heathen Brewing", + "brewery_type": "micro", + "address_1": "2225 NE 119th St Ste 109", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98686", + "country": "United States", + "longitude": -122.6482176, + "latitude": 45.70807949, + "phone": "3607265239", + "website_url": "https://heathenbrewing.com", + "state": "Washington", + "street": "2225 NE 119th St Ste 109" + }, + { + "id": "927ffb27-e24f-48d9-b1f4-20a4eb1b9e75", + "name": "Heaven & Ale Brewing Co", + "brewery_type": "brewpub", + "address_1": "300 Cherokee Blvd Ste 101", + "address_2": null, + "address_3": null, + "city": "Chattanooga", + "state_province": "Tennessee", + "postal_code": "37405-3811", + "country": "United States", + "longitude": -85.311847, + "latitude": 35.064349, + "phone": "4044416434", + "website_url": "http://www.heavenandalebrewing.com", + "state": "Tennessee", + "street": "300 Cherokee Blvd Ste 101" + }, + { + "id": "04f047c3-12d2-414e-a2f0-bcc7d600126a", + "name": "Heaven's Gate Brewery", + "brewery_type": "micro", + "address_1": "106 S Main St", + "address_2": null, + "address_3": null, + "city": "Riggins", + "state_province": "Idaho", + "postal_code": "83549", + "country": "United States", + "longitude": -116.314621, + "latitude": 45.422235, + "phone": "2086282745", + "website_url": null, + "state": "Idaho", + "street": "106 S Main St" + }, + { + "id": "2fe35f7a-aa03-42c4-a6e2-a418ea36b23a", + "name": "Heavenly Goat Brewing Company", + "brewery_type": "brewpub", + "address_1": "7321 Heritage Square Dr Ste 190", + "address_2": null, + "address_3": null, + "city": "Granger", + "state_province": "Indiana", + "postal_code": "46530-5660", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5742178428", + "website_url": "http://www.heavenlygoatbrew.com", + "state": "Indiana", + "street": "7321 Heritage Square Dr Ste 190" + }, + { + "id": "c8d6c8d2-8e70-4e37-9e97-7311e04b396d", + "name": "Heavenly Vineyards", + "brewery_type": "micro", + "address_1": "15946 Jefferson Rd", + "address_2": null, + "address_3": null, + "city": "Morley", + "state_province": "Michigan", + "postal_code": "49336-9705", + "country": "United States", + "longitude": -85.463503, + "latitude": 43.489827, + "phone": "6167102751", + "website_url": "http://heavenlyvineyards.weebly.com", + "state": "Michigan", + "street": "15946 Jefferson Rd" + }, + { + "id": "12b869d0-0f6e-4cff-a6c6-04532f770c00", + "name": "Heavier Than Air Brewing Co", + "brewery_type": "micro", + "address_1": "497 Miamisburg Centerville Rd", + "address_2": null, + "address_3": null, + "city": "Centerville", + "state_province": "Ohio", + "postal_code": "45459-4753", + "country": "United States", + "longitude": -84.1733314, + "latitude": 39.62796812, + "phone": "9374331500", + "website_url": "http://www.heavierthanairbrewing.com", + "state": "Ohio", + "street": "497 Miamisburg Centerville Rd" + }, + { + "id": "c688395f-2c34-45cb-8628-4f8ae48f8461", + "name": "Heavily Brewing Company", + "brewery_type": "micro", + "address_1": "2471 Hayes Rd", + "address_2": null, + "address_3": null, + "city": "Montour Falls", + "state_province": "New York", + "postal_code": "14865", + "country": "United States", + "longitude": -76.82625029, + "latitude": 42.35452911, + "phone": "6075352739", + "website_url": "http://www.heavilybrewingcompany.com", + "state": "New York", + "street": "2471 Hayes Rd" + }, + { + "id": "b0860796-6b61-4e66-bc0e-4c50a273d385", + "name": "Heavy Brewing", + "brewery_type": "micro", + "address_1": "20333 Patton St", + "address_2": null, + "address_3": null, + "city": "Gretna", + "state_province": "Nebraska", + "postal_code": "68028-8048", + "country": "United States", + "longitude": -96.238132915289, + "latitude": 41.198831738115, + "phone": "5316008245", + "website_url": "https://heavybrewing.beer", + "state": "Nebraska", + "street": "20333 Patton St" + }, + { + "id": "0d94f07a-6372-4069-9c0a-0d52cc3a1616", + "name": "Heavy Reel Brewing", + "brewery_type": "micro", + "address_1": "613 Boulevard", + "address_2": null, + "address_3": null, + "city": "Seaside Heights", + "state_province": "New Jersey", + "postal_code": "08751", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7322502879", + "website_url": "http://www.heavyreelbrewingco.com", + "state": "New Jersey", + "street": "613 Boulevard" + }, + { + "id": "ae561941-e5ed-4f23-87cb-10aafd105bb4", + "name": "Heavy Riff Brewing", + "brewery_type": "brewpub", + "address_1": "6413 Clayton Ave", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63139-3305", + "country": "United States", + "longitude": -90.29310035, + "latitude": 38.62871654, + "phone": "3148286148", + "website_url": "http://www.heavyriffbrewing.com", + "state": "Missouri", + "street": "6413 Clayton Ave" + }, + { + "id": "856b578f-849c-463b-85e8-6e1ad852d960", + "name": "Heavy Seas Beer", + "brewery_type": "regional", + "address_1": "4615 Hollins Ferry Rd Ste B", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21227-4624", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4102477822", + "website_url": "http://www.hsbeer.com", + "state": "Maryland", + "street": "4615 Hollins Ferry Rd Ste B" + }, + { + "id": "24a4e05d-e5f7-4864-a030-a251d1803d82", + "name": "Heirloom Rustic Ales", + "brewery_type": "micro", + "address_1": "2113 E Admiral Blvd", + "address_2": null, + "address_3": null, + "city": "Tulsa", + "state_province": "Oklahoma", + "postal_code": "74110", + "country": "United States", + "longitude": -95.9610136, + "latitude": 36.1601381, + "phone": "9182928757", + "website_url": "http://www.heirloomrusticales.com", + "state": "Oklahoma", + "street": "2113 E Admiral Blvd" + }, + { + "id": "528481d4-f3c8-479a-aad9-fce4b9cfe36a", + "name": "Heist Brewery", + "brewery_type": "brewpub", + "address_1": "2909 N Davidson St", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28205-1190", + "country": "United States", + "longitude": -80.80904551, + "latitude": 35.2451928, + "phone": "7043758260", + "website_url": "http://www.heistbrewery.com", + "state": "North Carolina", + "street": "2909 N Davidson St" + }, + { + "id": "fcffd398-7422-4848-9963-849cc9013012", + "name": "Helderberg Brewery", + "brewery_type": "micro", + "address_1": "63 Huyck Rd", + "address_2": null, + "address_3": null, + "city": "Rensselaerville", + "state_province": "New York", + "postal_code": "12147-2108", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5187975100", + "website_url": "http://careyinstitute.org/programs/sustainable-communities/helderberg-brewery-taproom/", + "state": "New York", + "street": "63 Huyck Rd" + }, + { + "id": "074f4fa7-4f79-44e0-9bcd-e071f5c0e987", + "name": "Helderberg Mountain Brewing Company", + "brewery_type": "micro", + "address_1": "83 Main St", + "address_2": null, + "address_3": null, + "city": "East Berne", + "state_province": "New York", + "postal_code": "12059-2020", + "country": "United States", + "longitude": -74.07306079, + "latitude": 42.61509627, + "phone": "5189373606", + "website_url": "http://www.helderbergmountainbrewingcompany.com", + "state": "New York", + "street": "83 Main St" + }, + { + "id": "d9b61c9d-ec23-4ec7-b549-32cc5d7404a9", + "name": "Helicon Brewing", + "brewery_type": "micro", + "address_1": "102 Union Ave", + "address_2": null, + "address_3": null, + "city": "Oakdale", + "state_province": "Pennsylvania", + "postal_code": "15071-1328", + "country": "United States", + "longitude": -80.1847167, + "latitude": 40.39628695, + "phone": "7246934204", + "website_url": "http://heliconbrewing.com", + "state": "Pennsylvania", + "street": "102 Union Ave" + }, + { + "id": "d99076a4-18ea-4c9c-9d7d-0d3fdc0d0986", + "name": "Helio Basin Brewing Company", + "brewery_type": "brewpub", + "address_1": "3935 E Thomas Rd", + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85018-7511", + "country": "United States", + "longitude": -112.0028173, + "latitude": 33.4804619, + "phone": "6023543525", + "website_url": "http://www.heliobasinbrewing.com", + "state": "Arizona", + "street": "3935 E Thomas Rd" + }, + { + "id": "a947ea30-2bce-4095-b2d4-325a92c5dd1c", + "name": "Helios Brewing", + "brewery_type": "micro", + "address_1": "15 Palomar Road", + "address_2": null, + "address_3": null, + "city": "Yeerongpilly", + "state_province": "QLD", + "postal_code": "4105", + "country": "Australia", + "longitude": 153.0110814, + "latitude": -27.5296816, + "phone": "+61 7 3392 9739", + "website_url": "http://www.heliosbrewing.com.au/", + "state": "QLD", + "street": "15 Palomar Road" + }, + { + "id": "724ce045-3390-42f7-9362-efadedb5e524", + "name": "Helix Brewing Co", + "brewery_type": "micro", + "address_1": "8101 Commercial St", + "address_2": null, + "address_3": null, + "city": "La Mesa", + "state_province": "California", + "postal_code": "91942-2927", + "country": "United States", + "longitude": -117.023442, + "latitude": 32.771907, + "phone": "6197418447", + "website_url": "http://www.drinkhelix.com", + "state": "California", + "street": "8101 Commercial St" + }, + { + "id": "78e2bb06-6b67-42c1-9b8e-9df4c67ac224", + "name": "Hell 'n Blazes Brewing Company", + "brewery_type": "micro", + "address_1": "1002 E New Haven Ave", + "address_2": null, + "address_3": null, + "city": "Melbourne", + "state_province": "Florida", + "postal_code": "32901-5437", + "country": "United States", + "longitude": -80.60455067, + "latitude": 28.07835245, + "phone": "3218214052", + "website_url": "http://www.HellnBlazesBrewing.com", + "state": "Florida", + "street": "1002 E New Haven Ave" + }, + { + "id": "94082cc5-8049-40e5-990f-bb1173c26140", + "name": "Hell or High Water Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Leander", + "state_province": "Texas", + "postal_code": "78641-8882", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5129636701", + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "84c2ff86-a12b-41a9-925b-69c21f182171", + "name": "Hellbender Brewing Company", + "brewery_type": "micro", + "address_1": "5788 2nd St NE", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "District of Columbia", + "postal_code": "20011-2524", + "country": "United States", + "longitude": -77.0053314, + "latitude": 38.9603005, + "phone": "2022301030", + "website_url": "http://www.hellbenderbeer.com", + "state": "District of Columbia", + "street": "5788 2nd St NE" + }, + { + "id": "4b8dd29d-2300-4035-b29f-0b26c90fcb62", + "name": "Hellbent Brewing Company", + "brewery_type": "micro", + "address_1": "13035 Lake City Way NE", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98125-4428", + "country": "United States", + "longitude": -122.2931111, + "latitude": 47.7238772, + "phone": "2063613707", + "website_url": "http://www.hellbentbrewingcompany.com", + "state": "Washington", + "street": "13035 Lake City Way NE" + }, + { + "id": "364f045b-2522-4153-a3d7-6edddd1a1e27", + "name": "Helltown Brewing", + "brewery_type": "micro", + "address_1": "13 Henry C Frick St", + "address_2": null, + "address_3": null, + "city": "Mount Pleasant", + "state_province": "Pennsylvania", + "postal_code": "15666-1343", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7245424339", + "website_url": "http://www.helltownbrewing.com", + "state": "Pennsylvania", + "street": "13 Henry C Frick St" + }, + { + "id": "11f16c8a-e029-4f1c-8535-d8c736df682c", + "name": "Helm's Brewing Company, LLC", + "brewery_type": "closed", + "address_1": "5640 Kearny Mesa Rd Ste C", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92111-1312", + "country": "United States", + "longitude": -117.1389741, + "latitude": 32.8373435, + "phone": "2092024308", + "website_url": "http://www.helmsbrewingco.com", + "state": "California", + "street": "5640 Kearny Mesa Rd Ste C" + }, + { + "id": "50ee41cf-11e5-46df-959e-0bd25adfc780", + "name": "Helmsman Alehouse - Newport Beach Brewing Co", + "brewery_type": "micro", + "address_1": "2920 Newport Blvd Frnt", + "address_2": null, + "address_3": null, + "city": "Newport Beach", + "state_province": "California", + "postal_code": "92663-3758", + "country": "United States", + "longitude": -117.9297866, + "latitude": 33.61461697, + "phone": "9496758449", + "website_url": "http://helmsmanalehouse.com/", + "state": "California", + "street": "2920 Newport Blvd Frnt" + }, + { + "id": "76e24e7f-4edc-4126-81d5-0cd7dc42fc80", + "name": "Helton Brewing Company", + "brewery_type": "brewpub", + "address_1": "2144 E Indian School Rd", + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85016-6130", + "country": "United States", + "longitude": -111.9805956, + "latitude": 33.4946865, + "phone": null, + "website_url": null, + "state": "Arizona", + "street": "2144 E Indian School Rd" + }, + { + "id": "5efb546e-64b3-4a61-96aa-1552e5af0d62", + "name": "Hemel & Aarde Brewery", + "brewery_type": "brewpub", + "address_1": "Hemel en Aarde Village", + "address_2": "R320", + "address_3": null, + "city": "Hermanus", + "state_province": "Western Cape", + "postal_code": "7200", + "country": "South Africa", + "longitude": 19.1918, + "latitude": -34.3986, + "phone": "+27 28 316 2578", + "website_url": "https://thebrewery.co.za/", + "state": "Western Cape", + "street": "Hemel en Aarde Village" + }, + { + "id": "13269c85-3d8d-4f99-992f-66dfbf7eb721", + "name": "Hemingway’s Brewery", + "brewery_type": "micro", + "address_1": "Wharf Street", + "address_2": null, + "address_3": null, + "city": "Cairns City", + "state_province": "QLD", + "postal_code": "4870", + "country": "Australia", + "longitude": 145.7804334, + "latitude": -16.9255244, + "phone": "+61 482 173 756", + "website_url": "http://www.hemingwaysbrewery.com/", + "state": "QLD", + "street": "Wharf Street" + }, + { + "id": "3827ae14-9613-430b-93f9-1ac76593c88a", + "name": "Hemisphere Brewing Co", + "brewery_type": "micro", + "address_1": "2015 Kristy Ln", + "address_2": null, + "address_3": null, + "city": "Rockwall", + "state_province": "Texas", + "postal_code": "75032-6242", + "country": "United States", + "longitude": -96.44026588, + "latitude": 32.91151877, + "phone": "9727224535", + "website_url": "http://www.hemispherebrewing.com", + "state": "Texas", + "street": "2015 Kristy Ln" + }, + { + "id": "f1427bfc-7f95-4c32-a70b-bf937b2cc9c4", + "name": "Hemlock State Brewing Company", + "brewery_type": "micro", + "address_1": " 23601 56th Ave W Ste 400", + "address_2": null, + "address_3": null, + "city": "Lake Forest Park", + "state_province": "Washington", + "postal_code": "98043", + "country": "United States", + "longitude": -122.3081169, + "latitude": 47.78517681, + "phone": "4259672062", + "website_url": "http://www.hemlockstate.com", + "state": "Washington", + "street": " 23601 56th Ave W Ste 400" + }, + { + "id": "6f7ef002-6068-45c7-ad3a-4a4f5a142461", + "name": "Henderson Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Henderson", + "state_province": "Kentucky", + "postal_code": "42420-3226", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2702004314", + "website_url": null, + "state": "Kentucky", + "street": null + }, + { + "id": "3101c087-c2e9-4e5b-9f4b-f35bfba7c9e7", + "name": "HenHouse Brewing", + "brewery_type": "micro", + "address_1": "322 Bellevue Ave # 2", + "address_2": null, + "address_3": null, + "city": "Santa Rosa", + "state_province": "California", + "postal_code": "95407-7711", + "country": "United States", + "longitude": -122.7241302, + "latitude": 38.4017722, + "phone": null, + "website_url": "http://www.henhousebrewing.com", + "state": "California", + "street": "322 Bellevue Ave # 2" + }, + { + "id": "459dfa34-fa3e-4d81-a95f-64c06b81b6d0", + "name": "Henhouse Brewing Company Palace of Barrels", + "brewery_type": "micro", + "address_1": "1333 N McDowell Blvd Ste A", + "address_2": null, + "address_3": null, + "city": "Petaluma", + "state_province": "California", + "postal_code": "94954", + "country": "United States", + "longitude": -122.6637245, + "latitude": 38.27235235, + "phone": null, + "website_url": null, + "state": "California", + "street": "1333 N McDowell Blvd Ste A" + }, + { + "id": "efabcc36-ebba-44f1-82ad-5194fc55574e", + "name": "Henniker Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "129 Centervale Rd", + "address_2": null, + "address_3": null, + "city": "Henniker", + "state_province": "New Hampshire", + "postal_code": "03242-3280", + "country": "United States", + "longitude": -71.7824433, + "latitude": 43.17880862, + "phone": "6034283579", + "website_url": "http://www.hennikerbrewing.com", + "state": "New Hampshire", + "street": "129 Centervale Rd" + }, + { + "id": "9d1339aa-42b0-4e97-a074-bf4a9cf2a0d6", + "name": "Henry And Fran Brewing", + "brewery_type": "micro", + "address_1": "185 Laurel St", + "address_2": null, + "address_3": null, + "city": "West Boylston", + "state_province": "Massachusetts", + "postal_code": "01583-1535", + "country": "United States", + "longitude": -71.81026703, + "latitude": 42.39166897, + "phone": "4253273457", + "website_url": null, + "state": "Massachusetts", + "street": "185 Laurel St" + }, + { + "id": "45e9c4aa-9927-4f36-ba98-68ef71e3b91f", + "name": "Henson Brewing", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Burbank", + "state_province": "California", + "postal_code": "91504", + "country": "United States", + "longitude": -118.3258554, + "latitude": 34.1816482, + "phone": null, + "website_url": "http://www.facebook.com/HensonBrewing/", + "state": "California", + "street": null + }, + { + "id": "73992185-499f-406c-afc8-d11c88c3a220", + "name": "Hepburn Springs Brewing Co.", + "brewery_type": "micro", + "address_1": "12 Forest Avenue", + "address_2": null, + "address_3": null, + "city": "Hepburn Springs", + "state_province": "VIC", + "postal_code": "3461", + "country": "Australia", + "longitude": 144.1432189, + "latitude": -37.3094177, + "phone": "+61 458 151 061", + "website_url": "http://www.hepburnspringsbrewingco.com.au/", + "state": "VIC", + "street": "12 Forest Avenue" + }, + { + "id": "388c4362-24d8-493c-95c2-fc86d6ac2a1e", + "name": "Hepworth & Company Brewing Ltd", + "brewery_type": "micro", + "address_1": "Stane Street", + "address_2": null, + "address_3": null, + "city": "Pulborough", + "state_province": "West Sussex", + "postal_code": "RH20 1DJ", + "country": "England", + "longitude": -0.478064, + "latitude": 50.989042, + "phone": "1403269696", + "website_url": "https://hepworthbrewery.co.uk/", + "state": "West Sussex", + "street": "Stane Street" + }, + { + "id": "b94bee85-f9e3-4ad0-95b5-d9d031e15f1a", + "name": "Herbert B. Friendly Brewing", + "brewery_type": "closed", + "address_1": "527 Wells Ave S", + "address_2": null, + "address_3": null, + "city": "Renton", + "state_province": "Washington", + "postal_code": "98057-2703", + "country": "United States", + "longitude": -122.205605, + "latitude": 47.47609918, + "phone": "4252434372", + "website_url": "http://www.drinkhbf.com", + "state": "Washington", + "street": "527 Wells Ave S" + }, + { + "id": "294a7249-ef76-40dd-828a-67bcd3aea6b7", + "name": "Here and Now Brewing Co", + "brewery_type": "brewpub", + "address_1": "645 Main St", + "address_2": null, + "address_3": null, + "city": "Honesdale", + "state_province": "Pennsylvania", + "postal_code": "18431-1842", + "country": "United States", + "longitude": -75.25482301, + "latitude": 41.5713476, + "phone": "5702530700", + "website_url": "http://hereandnowbrewing.com", + "state": "Pennsylvania", + "street": "645 Main St" + }, + { + "id": "35f260d2-ead8-45da-8f9a-136c9ebf62d1", + "name": "Hereford and Hops Steakhouse and Brewpub", + "brewery_type": "brewpub", + "address_1": "624 Ludington St", + "address_2": null, + "address_3": null, + "city": "Escanaba", + "state_province": "Michigan", + "postal_code": "49829-3844", + "country": "United States", + "longitude": -87.0564571, + "latitude": 45.7458964, + "phone": "9067891945", + "website_url": "http://www.herefordandhops.com", + "state": "Michigan", + "street": "624 Ludington St" + }, + { + "id": "95d9f6f0-5004-484d-be88-e1f8585a8bcb", + "name": "Heretic Brewing Company", + "brewery_type": "micro", + "address_1": "1052 Horizon Dr Ste B", + "address_2": null, + "address_3": null, + "city": "Fairfield", + "state_province": "California", + "postal_code": "94533-1694", + "country": "United States", + "longitude": -122.0154691, + "latitude": 38.27388917, + "phone": "7073894573", + "website_url": "http://www.hereticbrewing.com", + "state": "California", + "street": "1052 Horizon Dr Ste B" + }, + { + "id": "5dbebfaf-6adf-47b7-952a-54dd255dcc48", + "name": "Heritage Brewing Co", + "brewery_type": "micro", + "address_1": "9436 Center Point Ln", + "address_2": null, + "address_3": null, + "city": "Manassas", + "state_province": "Virginia", + "postal_code": "20110-1810", + "country": "United States", + "longitude": -77.48841476, + "latitude": 38.75075083, + "phone": "5712081355", + "website_url": "http://www.heritagebrews.com", + "state": "Virginia", + "street": "9436 Center Point Ln" + }, + { + "id": "0019a864-4e70-479e-b140-29eaba1aff40", + "name": "Herkimer Pub and Brewery", + "brewery_type": "brewpub", + "address_1": "2922 Lyndale Ave S", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55408-2110", + "country": "United States", + "longitude": -93.2883778, + "latitude": 44.9492064, + "phone": "6128210101", + "website_url": "http://www.theherkimer.com", + "state": "Minnesota", + "street": "2922 Lyndale Ave S" + }, + { + "id": "23d34fe5-27e0-489e-ab7c-adbcada944b9", + "name": "Hermanus Brewery", + "brewery_type": "micro", + "address_1": "The Village", + "address_2": "14 Harmony Avenue", + "address_3": null, + "city": "Hermanus", + "state_province": "Western Cape", + "postal_code": "7200", + "country": "South Africa", + "longitude": 19.2291, + "latitude": -34.4215, + "phone": "+27 28 316 1234", + "website_url": "https://www.hermanus-brewery.co.za/", + "state": "Western Cape", + "street": "The Village" + }, + { + "id": "289406b7-ca99-414d-ab35-231f65c00c04", + "name": "Hermiston Brewing Co", + "brewery_type": "brewpub", + "address_1": "125 N 1st St", + "address_2": null, + "address_3": null, + "city": "Hermiston", + "state_province": "Oregon", + "postal_code": "97838-1850", + "country": "United States", + "longitude": -119.2905935, + "latitude": 45.8409084, + "phone": "5412897415", + "website_url": null, + "state": "Oregon", + "street": "125 N 1st St" + }, + { + "id": "8737ea88-e3f4-453b-9239-12a675509b68", + "name": "Hermit Thrush Brewery, LLC", + "brewery_type": "micro", + "address_1": "29 High St Ste 101C", + "address_2": null, + "address_3": null, + "city": "Brattleboro", + "state_province": "Vermont", + "postal_code": "05301-3041", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8022572337", + "website_url": "http://www.hermitthrushbrewery.com", + "state": "Vermont", + "street": "29 High St Ste 101C" + }, + { + "id": "7e73a2ce-ff58-462d-9230-5277d17bb597", + "name": "Hermitage Brewing Company", + "brewery_type": "regional", + "address_1": "1627 S 7th St", + "address_2": null, + "address_3": null, + "city": "San Jose", + "state_province": "California", + "postal_code": "95112-5932", + "country": "United States", + "longitude": -121.8665257, + "latitude": 37.31531409, + "phone": "4082910966", + "website_url": "http://www.hermitagebrewing.com", + "state": "California", + "street": "1627 S 7th St" + }, + { + "id": "f17d4678-6163-4bdf-8031-1baf0ad63f74", + "name": "Heroes Brewing Company", + "brewery_type": "micro", + "address_1": "543 Atlantic Ave", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "New York", + "postal_code": "14609", + "country": "United States", + "longitude": -77.56906418, + "latitude": 43.15634755, + "phone": "5854345472", + "website_url": "https://heroesbrewco.square.site", + "state": "New York", + "street": "543 Atlantic Ave" + }, + { + "id": "3751bd4e-3a02-4f27-8274-15b2d84737f9", + "name": "Heroes Restaurant and Brewery", + "brewery_type": "brewpub", + "address_1": "3397 Mission Inn Ave", + "address_2": null, + "address_3": null, + "city": "Riverside", + "state_province": "California", + "postal_code": "92501-3302", + "country": "United States", + "longitude": -117.3701143, + "latitude": 33.98135954, + "phone": "9512480722", + "website_url": "http://www.heroesrestaurantandbrewery.com", + "state": "California", + "street": "3397 Mission Inn Ave" + }, + { + "id": "95cdaefc-6cdd-4352-a998-b987adb7897c", + "name": "Herrmann Brewthers, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fishers", + "state_province": "Indiana", + "postal_code": "46038-2313", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3179641390", + "website_url": null, + "state": "Indiana", + "street": null + }, + { + "id": "a1e17e3d-a801-4e19-8568-4113fe7297f2", + "name": "Hexagon Brewing Co", + "brewery_type": "micro", + "address_1": "1002 Dutch Valley Dr Ste 101", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37918-6956", + "country": "United States", + "longitude": -83.94717065, + "latitude": 36.00860512, + "phone": "8658885138", + "website_url": "http://www.hexagonbrewing.com", + "state": "Tennessee", + "street": "1002 Dutch Valley Dr Ste 101" + }, + { + "id": "456e17f6-7c51-478e-ae5f-9112a2008b64", + "name": "Hey Joe Brewing Company", + "brewery_type": "brewpub", + "address_1": "R45", + "address_2": null, + "address_3": null, + "city": "Franschhoek", + "state_province": "Western Cape", + "postal_code": "7690", + "country": "South Africa", + "longitude": 18.9678, + "latitude": -33.8583, + "phone": "+27 63 Hey-Joe", + "website_url": "https://www.heyjoebrewery.com/", + "state": "Western Cape", + "street": "R45" + }, + { + "id": "479ee657-8907-4983-9ec4-8d7f1372c69e", + "name": "Hi Sign Brewing", + "brewery_type": "micro", + "address_1": "1201 Old Bastrop Hwy Bldg A", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78742-2600", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5123825264", + "website_url": "http://www.hisignbrewing.com", + "state": "Texas", + "street": "1201 Old Bastrop Hwy Bldg A" + }, + { + "id": "6b16f03c-39e6-48c1-88e5-6889179807cf", + "name": "Hi-Wire Brewing Big Top Production Facility", + "brewery_type": "micro", + "address_1": "2 Huntsman Pl", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28803-2600", + "country": "United States", + "longitude": -82.54566311, + "latitude": 35.57020551, + "phone": null, + "website_url": "http://www.hiwirebrewing.com", + "state": "North Carolina", + "street": "2 Huntsman Pl" + }, + { + "id": "6f18252e-ae65-4c45-9867-2c1b72b4ce11", + "name": "Hi-Wire Brewing South Slope Specialty Brewery", + "brewery_type": "micro", + "address_1": "197 Hilliard Ave", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28801-3616", + "country": "United States", + "longitude": -82.55603747, + "latitude": 35.5912315, + "phone": "8285759675", + "website_url": "http://www.hiwirebrewing.com", + "state": "North Carolina", + "street": "197 Hilliard Ave" + }, + { + "id": "d7338230-e2a4-478e-bb8d-f0b3563e65e1", + "name": "Hi-Wire Brewing Taproom", + "brewery_type": "micro", + "address_1": "800 Taylor St", + "address_2": "#9-150", + "address_3": null, + "city": "Durham", + "state_province": "North Carolina", + "postal_code": "27701", + "country": "United States", + "longitude": -78.8900261, + "latitude": 35.9915017, + "phone": "9198278144", + "website_url": "https://hiwirebrewing.com/durham/", + "state": "North Carolina", + "street": "800 Taylor St" + }, + { + "id": "25a0da54-49c0-4228-9c5a-eb8af9a4d259", + "name": "Hickory Brewery / American Honor Ale House and Brewery", + "brewery_type": "micro", + "address_1": "883 Highland Ave SE", + "address_2": null, + "address_3": null, + "city": "Hickory", + "state_province": "North Carolina", + "postal_code": "28602-1106", + "country": "United States", + "longitude": -81.32549762, + "latitude": 35.73533517, + "phone": "8284149600", + "website_url": null, + "state": "North Carolina", + "street": "883 Highland Ave SE" + }, + { + "id": "01d05be5-e93c-4889-9024-6a57bf67fe7a", + "name": "Hickory Creek Brewing Company LLC", + "brewery_type": "micro", + "address_1": "1005 W Laraway Rd Unit 260", + "address_2": null, + "address_3": null, + "city": "New Lenox", + "state_province": "Illinois", + "postal_code": "60451", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8152456042", + "website_url": "http://www.hickorycreekbrewingil.com", + "state": "Illinois", + "street": "1005 W Laraway Rd Unit 260" + }, + { + "id": "8d913abb-4d7e-4282-bad5-bf3f1884af85", + "name": "Hickory Nut Gorge Brewery", + "brewery_type": "micro", + "address_1": "615 Bottemless Pools Rd", + "address_2": null, + "address_3": null, + "city": "Lake Lure", + "state_province": "North Carolina", + "postal_code": "28746-5525", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "North Carolina", + "street": "615 Bottemless Pools Rd" + }, + { + "id": "82327d79-b1ca-4120-a8f7-b1a74611dd8c", + "name": "Hidden Cove Brewing Co", + "brewery_type": "micro", + "address_1": "73 Mile Rd", + "address_2": null, + "address_3": null, + "city": "Wells", + "state_province": "Maine", + "postal_code": "04090-4135", + "country": "United States", + "longitude": -70.58104548, + "latitude": 43.30407704, + "phone": "2076460228", + "website_url": "http://www.hiddencovebrewingcompany.com", + "state": "Maine", + "street": "73 Mile Rd" + }, + { + "id": "b7cbad5a-14c1-4a1a-baf5-4ac51b372dda", + "name": "Hidden River Brewing Co", + "brewery_type": "brewpub", + "address_1": "1808 W Schuylkill Rd", + "address_2": null, + "address_3": null, + "city": "Douglassville", + "state_province": "Pennsylvania", + "postal_code": "19518-9101", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4842732266", + "website_url": "http://hiddenriverbrewing.com", + "state": "Pennsylvania", + "street": "1808 W Schuylkill Rd" + }, + { + "id": "27c1e1c4-242d-4b7e-94d4-809f8de2a178", + "name": "Hidden Sands Brewing Company", + "brewery_type": "micro", + "address_1": "6754 Washington Ave. Unit B", + "address_2": null, + "address_3": null, + "city": "Egg Harbor Township", + "state_province": "New Jersey", + "postal_code": "08234-3807", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4843191156", + "website_url": "http://hiddensands.com", + "state": "New Jersey", + "street": "6754 Washington Ave. Unit B" + }, + { + "id": "457de2b4-b8fd-4821-8f97-38dd0e27bc37", + "name": "Hidden Springs Ale Works", + "brewery_type": "micro", + "address_1": "1631 N Franklin St", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33602-2621", + "country": "United States", + "longitude": -82.46008537, + "latitude": 27.95878231, + "phone": "8132262739", + "website_url": "http://www.Hiddenspringsaleworks.com", + "state": "Florida", + "street": "1631 N Franklin St" + }, + { + "id": "a55e613d-e948-47ec-a5d7-a789d015c50b", + "name": "Hidden Stories Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Millerstown", + "state_province": "Pennsylvania", + "postal_code": "17062-8474", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6465524847", + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "a76526c6-eb26-4c41-bbae-f9e9596d21a8", + "name": "Hideaway Brewing Co", + "brewery_type": "micro", + "address_1": "18731 SE 314th St", + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "Washington", + "postal_code": "98092-6556", + "country": "United States", + "longitude": -122.1764384, + "latitude": 47.3206933, + "phone": "2536319393", + "website_url": null, + "state": "Washington", + "street": "18731 SE 314th St" + }, + { + "id": "09b47043-56f9-4167-bbb2-ffa66e3438bb", + "name": "Hideaway Park Brewery", + "brewery_type": "micro", + "address_1": "78927 US Highway 40", + "address_2": null, + "address_3": null, + "city": "Winter Park", + "state_province": "Colorado", + "postal_code": "80482", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7204026513", + "website_url": "http://www.hideawayparkbrewery.com", + "state": "Colorado", + "street": "78927 US Highway 40" + }, + { + "id": "0cb8a74d-bea4-4fcd-8b90-dbdcbe5b0657", + "name": "Hideout Brewing Co", + "brewery_type": "brewpub", + "address_1": "3113 Plaza Dr NE", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49525-2901", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6163619658", + "website_url": "http://www.hideoutbrewing.com", + "state": "Michigan", + "street": "3113 Plaza Dr NE" + }, + { + "id": "93000035-2da2-4b19-9efb-9f7c45252684", + "name": "High Alpine Brewing Company", + "brewery_type": "brewpub", + "address_1": "111 N Main St", + "address_2": null, + "address_3": null, + "city": "Gunnison", + "state_province": "Colorado", + "postal_code": "81230-2330", + "country": "United States", + "longitude": -106.9270377, + "latitude": 38.54462278, + "phone": "9706424500", + "website_url": "http://www.highalpinebrewing.com", + "state": "Colorado", + "street": "111 N Main St" + }, + { + "id": "71aaef45-0755-40d8-bbbe-a24adfc0932a", + "name": "High and Dry Brewing", + "brewery_type": "micro", + "address_1": "529 Adams St NE", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87108-1228", + "country": "United States", + "longitude": -106.5942753, + "latitude": 35.08612571, + "phone": "2197750232", + "website_url": "http://www.highanddrybrewing.com", + "state": "New Mexico", + "street": "529 Adams St NE" + }, + { + "id": "0c6e9e51-ab87-45d7-8204-6450076db013", + "name": "High Branch Brewing Co", + "brewery_type": "micro", + "address_1": "325 McGill Ave NW Ste 148", + "address_2": null, + "address_3": null, + "city": "Concord", + "state_province": "North Carolina", + "postal_code": "28027-0011", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "North Carolina", + "street": "325 McGill Ave NW Ste 148" + }, + { + "id": "24b89f21-cf76-400c-9a51-83581985900b", + "name": "High Cotton Brewing", + "brewery_type": "micro", + "address_1": "598 Monroe Ave", + "address_2": null, + "address_3": null, + "city": "Memphis", + "state_province": "Tennessee", + "postal_code": "38103-3214", + "country": "United States", + "longitude": -90.04047907, + "latitude": 35.14088065, + "phone": "9015434444", + "website_url": "http://www.highcottonbrewing.com", + "state": "Tennessee", + "street": "598 Monroe Ave" + }, + { + "id": "6631958b-a386-4865-a02c-4853ec7c2504", + "name": "High Desert Brewing Co", + "brewery_type": "brewpub", + "address_1": "1201 W Hadley Ave", + "address_2": null, + "address_3": null, + "city": "Las Cruces", + "state_province": "New Mexico", + "postal_code": "88005-2422", + "country": "United States", + "longitude": -106.7934619, + "latitude": 32.3096681, + "phone": "5755256752", + "website_url": "http://www.highdesertbrewingco.com", + "state": "New Mexico", + "street": "1201 W Hadley Ave" + }, + { + "id": "643754fe-b293-431f-86ee-23e9a650d8fa", + "name": "High Gravity Brewing Company", + "brewery_type": "micro", + "address_1": "6808 S Memorial Dr Ste 144", + "address_2": null, + "address_3": null, + "city": "Tulsa", + "state_province": "Oklahoma", + "postal_code": "74133", + "country": "United States", + "longitude": -95.8887734, + "latitude": 36.0655116, + "phone": "9189733607", + "website_url": "http://highgravitybrewingco.com", + "state": "Oklahoma", + "street": "6808 S Memorial Dr Ste 144" + }, + { + "id": "d4a8d201-e4ce-4f5e-ad83-b3f3d43cf5dd", + "name": "High Ground Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Saint Francisville", + "state_province": "Louisiana", + "postal_code": "70775-2431", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2254457436", + "website_url": null, + "state": "Louisiana", + "street": null + }, + { + "id": "619494eb-6947-43e5-9af7-222b038c0aa8", + "name": "High Ground Brewing", + "brewery_type": "micro", + "address_1": "102 Railroad Ave", + "address_2": null, + "address_3": null, + "city": "Terra Alta", + "state_province": "West Virginia", + "postal_code": "26764", + "country": "United States", + "longitude": -79.5468713, + "latitude": 39.4441088, + "phone": "3047891216", + "website_url": "https://www.highgroundbrewing.co/", + "state": "West Virginia", + "street": "102 Railroad Ave" + }, + { + "id": "22a3cd4c-ae04-4147-9cd8-b6eaa845ee92", + "name": "High Heel Brewing", + "brewery_type": "closed", + "address_1": "5656 Oakland", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63110", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://highheelbrewing.com", + "state": "Missouri", + "street": "5656 Oakland" + }, + { + "id": "3d8726bb-a769-4961-a62a-d6f8cee739a2", + "name": "High Hops Brewery", + "brewery_type": "micro", + "address_1": "6461 State Highway 392", + "address_2": null, + "address_3": null, + "city": "Windsor", + "state_province": "Colorado", + "postal_code": "80550-3010", + "country": "United States", + "longitude": -104.9357557, + "latitude": 40.4799901, + "phone": "9706742841", + "website_url": "http://www.highhopsbrewery.com", + "state": "Colorado", + "street": "6461 State Highway 392" + }, + { + "id": "82f0d496-e55f-4f4d-944f-1cfefc7f9fbf", + "name": "High Horse Brewery and Bistro", + "brewery_type": "contract", + "address_1": "24 N Pleasant St", + "address_2": null, + "address_3": null, + "city": "Amherst", + "state_province": "Massachusetts", + "postal_code": "01002-1703", + "country": "United States", + "longitude": -72.5201343, + "latitude": 42.376218, + "phone": "4132303034", + "website_url": "http://www.highhorsebrewing.com", + "state": "Massachusetts", + "street": "24 N Pleasant St" + }, + { + "id": "a59a4a55-9dff-4b1e-a618-a8795c6350d6", + "name": "High Perch Brewing Company", + "brewery_type": "micro", + "address_1": "1417 Kania Rd", + "address_2": null, + "address_3": null, + "city": "Amsterdam", + "state_province": "New York", + "postal_code": "12010-6610", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New York", + "street": "1417 Kania Rd" + }, + { + "id": "46631dd6-7842-4f98-8afc-085f96c3b3d5", + "name": "High Plains Brewing", + "brewery_type": "micro", + "address_1": "611 E Main St", + "address_2": null, + "address_3": null, + "city": "Laurel", + "state_province": "Montana", + "postal_code": "59044-3124", + "country": "United States", + "longitude": -108.764099, + "latitude": 45.6710215, + "phone": "4066334594", + "website_url": null, + "state": "Montana", + "street": "611 E Main St" + }, + { + "id": "8611d7e0-6f83-40e3-b387-077bdaa30058", + "name": "High Point Brewing Co, Inc.", + "brewery_type": "micro", + "address_1": "22 Park Pl", + "address_2": null, + "address_3": null, + "city": "Butler", + "state_province": "New Jersey", + "postal_code": "07405-1377", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9738387400", + "website_url": "http://www.ramsteinbeer.com", + "state": "New Jersey", + "street": "22 Park Pl" + }, + { + "id": "f4b55ae0-6552-4653-8d62-1c2cf7ebe4dd", + "name": "High Speed Low Drag Brewing LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Alexandria", + "state_province": "Virginia", + "postal_code": "22307-2001", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7756849197", + "website_url": "http://www.kirklippold.com", + "state": "Virginia", + "street": null + }, + { + "id": "b769741a-84bc-4671-931a-d709e78440b1", + "name": "High Water Brewing", + "brewery_type": "proprietor", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Stockton", + "state_province": "California", + "postal_code": "95204-2943", + "country": "United States", + "longitude": -121.2907796, + "latitude": 37.9577016, + "phone": "5304409098", + "website_url": "http://www.highwaterbrewing.com", + "state": "California", + "street": null + }, + { + "id": "ff97340d-acd0-46c3-a567-8e98e439b30c", + "name": "High Weald Brewery", + "brewery_type": "micro", + "address_1": "Highgate Road", + "address_2": null, + "address_3": null, + "city": "Forest Row", + "state_province": "East Sussex", + "postal_code": "TN7 4LA", + "country": "England", + "longitude": 0.032359, + "latitude": 51.089706, + "phone": "7836291430", + "website_url": "https://www.highwealdbrewery.co.uk/", + "state": "East Sussex", + "street": "Highgate Road" + }, + { + "id": "594bca54-494e-4f0d-998e-9bb3ad39ccf9", + "name": "Higherground Brewing Co", + "brewery_type": "brewpub", + "address_1": "518 N 1st St", + "address_2": null, + "address_3": null, + "city": "Hamilton", + "state_province": "Montana", + "postal_code": "59840-2130", + "country": "United States", + "longitude": -114.1560817, + "latitude": 46.2516766, + "phone": "4063755204", + "website_url": "http://www.highergroundbrewing.com", + "state": "Montana", + "street": "518 N 1st St" + }, + { + "id": "41150a73-f822-46b6-a7cb-3dc74d59c23f", + "name": "Highholder Brewing Company", + "brewery_type": "micro", + "address_1": "2211 Oregon St", + "address_2": null, + "address_3": null, + "city": "Oshkosh", + "state_province": "Wisconsin", + "postal_code": "54902-7001", + "country": "United States", + "longitude": -88.54259731, + "latitude": 43.99385718, + "phone": "9207445122", + "website_url": "http://www.highholderbrewing.com", + "state": "Wisconsin", + "street": "2211 Oregon St" + }, + { + "id": "ccb6368c-cc2a-4bd6-b64f-5cb47c6469d5", + "name": "Highland Brew", + "brewery_type": "micro", + "address_1": "Moolmanshoek", + "address_2": "Ficksburg", + "address_3": null, + "city": "Fouriesburg", + "state_province": "Free State", + "postal_code": "9725", + "country": "South Africa", + "longitude": 28.1882, + "latitude": -28.4907, + "phone": "+27 82 770 9625", + "website_url": "https://moolmanshoek.co.za/activities/highland-brew/", + "state": "Free State", + "street": "Moolmanshoek" + }, + { + "id": "4b013cfb-62b1-441a-b301-5f1d26c2b48c", + "name": "Highland Brewing Co", + "brewery_type": "regional", + "address_1": "12 Old Charlotte Hwy Ste H", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28803-9419", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8282993816", + "website_url": "http://www.highlandbrewing.com", + "state": "North Carolina", + "street": "12 Old Charlotte Hwy Ste H" + }, + { + "id": "f8fb8119-a992-4ae9-a859-60485f7b20be", + "name": "Highland Park Brewery", + "brewery_type": "micro", + "address_1": "5125 York Blvd", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90042", + "country": "United States", + "longitude": -118.1807106, + "latitude": 34.1141508, + "phone": "4255011255", + "website_url": "http://www.hpb.la", + "state": "California", + "street": "5125 York Blvd" + }, + { + "id": "7721c302-94ba-4036-b9dc-edece3663bdb", + "name": "Highland Park Brewery", + "brewery_type": "brewpub", + "address_1": "1229 N Spring St", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90012", + "country": "United States", + "longitude": -118.2339922, + "latitude": 34.06593582, + "phone": "3237396459", + "website_url": null, + "state": "California", + "street": "1229 N Spring St" + }, + { + "id": "c8e5114a-be02-474f-9699-1588ed503c80", + "name": "Highlands Hollow Brewhouse", + "brewery_type": "brewpub", + "address_1": "2455 N Highlands Holw", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83702-0962", + "country": "United States", + "longitude": -116.208703, + "latitude": 43.643125, + "phone": "2083436820", + "website_url": "http://www.highlandshollow.com", + "state": "Idaho", + "street": "2455 N Highlands Holw" + }, + { + "id": "efc40325-b3a3-41c8-abea-1931a69c2a8f", + "name": "Highmark Brewery", + "brewery_type": "micro", + "address_1": "390 Kings Hwy", + "address_2": null, + "address_3": null, + "city": "Fredericksburg", + "state_province": "Virginia", + "postal_code": "22405-3245", + "country": "United States", + "longitude": -77.4551104, + "latitude": 38.3053991, + "phone": "7633007575", + "website_url": "http://www.highmarkbrewery.com", + "state": "Virginia", + "street": "390 Kings Hwy" + }, + { + "id": "13b0242e-a231-4cb7-af2c-e1707cd96961", + "name": "HighSide Brewery", + "brewery_type": "micro", + "address_1": "720 Main St", + "address_2": null, + "address_3": null, + "city": "Frisco", + "state_province": "Colorado", + "postal_code": "80443", + "country": "United States", + "longitude": -106.0935416, + "latitude": 39.57663329, + "phone": "9706682337", + "website_url": "http://www.highsidebrewing.com", + "state": "Colorado", + "street": "720 Main St" + }, + { + "id": "16b4086d-3c39-4b01-9ea3-9342ea428832", + "name": "Hightower Brewing Co", + "brewery_type": "micro", + "address_1": "3445 County Road 16 Unit B", + "address_2": null, + "address_3": null, + "city": "Rayland", + "state_province": "Ohio", + "postal_code": "43943-7765", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7408590764", + "website_url": "http://www.hightowerbrewingcompany.com", + "state": "Ohio", + "street": "3445 County Road 16 Unit B" + }, + { + "id": "e1253c80-0543-4024-bb35-3092589244d7", + "name": "Highway 1 Brewing Company", + "brewery_type": "brewpub", + "address_1": "5720 Cabrillo Hwy", + "address_2": null, + "address_3": null, + "city": "Pescadero", + "state_province": "California", + "postal_code": "94060-9725", + "country": "United States", + "longitude": -122.411815, + "latitude": 37.229747, + "phone": "6508799243", + "website_url": "http://www.highway1brewing.com", + "state": "California", + "street": "5720 Cabrillo Hwy" + }, + { + "id": "a6ccf0f3-1496-479a-8108-56b641ec3922", + "name": "Highway 14 Brewing Company", + "brewery_type": "micro", + "address_1": "134 S 4th St", + "address_2": null, + "address_3": null, + "city": "Albion", + "state_province": "Nebraska", + "postal_code": "68620-1216", + "country": "United States", + "longitude": -98.001389, + "latitude": 41.6922, + "phone": "4023958733", + "website_url": "http://hwy14brewingco.com", + "state": "Nebraska", + "street": "134 S 4th St" + }, + { + "id": "ed35940e-06b8-4323-834d-865d107bb6af", + "name": "Highway 79 Brewery", + "brewery_type": "closed", + "address_1": "27631 SD Hwy 79", + "address_2": null, + "address_3": null, + "city": "Hot Springs", + "state_province": "South Dakota", + "postal_code": "57747-7304", + "country": "United States", + "longitude": -103.3966292, + "latitude": 43.40115, + "phone": null, + "website_url": null, + "state": "South Dakota", + "street": "27631 SD Hwy 79" + }, + { + "id": "b8e3cfd1-8c13-47c4-b0b5-a069b9cb71a7", + "name": "Highway Manor Brewing Co", + "brewery_type": "micro", + "address_1": "2238 Gettysburg Rd", + "address_2": null, + "address_3": null, + "city": "Camp Hill", + "state_province": "Pennsylvania", + "postal_code": "17011-7301", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7177430613", + "website_url": "http://www.HighwayManorBrewing.com", + "state": "Pennsylvania", + "street": "2238 Gettysburg Rd" + }, + { + "id": "051e8ce2-8aa3-4ca2-9157-52e12f1db45f", + "name": "HiHO Brewing Co", + "brewery_type": "brewpub", + "address_1": "1707 Front St", + "address_2": null, + "address_3": null, + "city": "Cuyahoga Falls", + "state_province": "Ohio", + "postal_code": "44221-4711", + "country": "United States", + "longitude": -81.48536118, + "latitude": 41.12813502, + "phone": "2343347564", + "website_url": "http://www.hihobrewingco.com", + "state": "Ohio", + "street": "1707 Front St" + }, + { + "id": "ce4f6c7d-bfe5-4838-89ce-9d56d2d488fc", + "name": "HiJinx Brewing Co", + "brewery_type": "micro", + "address_1": "905 Harrison St", + "address_2": null, + "address_3": null, + "city": "Allentown", + "state_province": "Pennsylvania", + "postal_code": "18103-3188", + "country": "United States", + "longitude": -75.47453708, + "latitude": 40.59343618, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": "905 Harrison St" + }, + { + "id": "8da17028-fe8b-4ff9-98e5-6b57ec7f3335", + "name": "Hill Country Farm Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Jamesville", + "state_province": "New York", + "postal_code": "13078-9637", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3157667885", + "website_url": "http://Hillcountryfarmbrewery.com", + "state": "New York", + "street": null + }, + { + "id": "d3dcc573-2440-4e64-a553-f4945bb38056", + "name": "Hill Farmstead Brewery", + "brewery_type": "micro", + "address_1": "403 Hill Rd", + "address_2": null, + "address_3": null, + "city": "Greensboro Bend", + "state_province": "Vermont", + "postal_code": "05842-8813", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8025337450", + "website_url": "http://www.hillfarmstead.com", + "state": "Vermont", + "street": "403 Hill Rd" + }, + { + "id": "52146aef-1417-4860-ae49-61680902c8de", + "name": "Hillbilly Brewing Company", + "brewery_type": "micro", + "address_1": "23118 NW Maplecrest Rd", + "address_2": null, + "address_3": null, + "city": "Ridgefield", + "state_province": "Washington", + "postal_code": "98642", + "country": "United States", + "longitude": -122.6758409, + "latitude": 45.78840953, + "phone": null, + "website_url": "http://www.hillbillybrewingcompany.com", + "state": "Washington", + "street": "23118 NW Maplecrest Rd" + }, + { + "id": "37b5c3ff-b1cb-468e-8bfc-d6c95004d215", + "name": "Hillcrest Brewing Company", + "brewery_type": "brewpub", + "address_1": "1458 University Ave", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92103-3405", + "country": "United States", + "longitude": -117.1260866, + "latitude": 32.7484921, + "phone": "6192694323", + "website_url": "http://www.hillcrestbrewingcompany.com", + "state": "California", + "street": "1458 University Ave" + }, + { + "id": "0b2b1db2-e196-4b8c-a099-2b94ae8665ad", + "name": "Hillman Beer", + "brewery_type": "brewpub", + "address_1": "25 Sweeten Creek Rd", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28803-2318", + "country": "United States", + "longitude": -82.520631, + "latitude": 35.5139103, + "phone": "8285051312", + "website_url": "http://www.hillmanbeer.com", + "state": "North Carolina", + "street": "25 Sweeten Creek Rd" + }, + { + "id": "403b0470-79bd-4b27-afba-1e1e85ca6943", + "name": "Hillsboro Brewing Company", + "brewery_type": "brewpub", + "address_1": "815 Water Ave", + "address_2": null, + "address_3": null, + "city": "Hillsboro", + "state_province": "Wisconsin", + "postal_code": "54634-6213", + "country": "United States", + "longitude": -90.33984807, + "latitude": 43.65066416, + "phone": "6084897486", + "website_url": "http://www.hillsborobrewingcompany.com", + "state": "Wisconsin", + "street": "815 Water Ave" + }, + { + "id": "794c27df-4aeb-4106-a0d2-cbda9e15adac", + "name": "Hillsborough Farm Brewery / Hillsborough Vineyards", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Purcellville", + "state_province": "Virginia", + "postal_code": "20132", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Virginia", + "street": null + }, + { + "id": "987c6bc6-0a4b-4536-856a-e8be22d544b5", + "name": "Hillsdale Brewing Company", + "brewery_type": "brewpub", + "address_1": "25 Hillsdale St", + "address_2": null, + "address_3": null, + "city": "Hillsdale", + "state_province": "Michigan", + "postal_code": "49242-1208", + "country": "United States", + "longitude": -84.63154725, + "latitude": 41.92470888, + "phone": "5172128182", + "website_url": null, + "state": "Michigan", + "street": "25 Hillsdale St" + }, + { + "id": "ad2d6466-b1a2-45f2-9782-67b1f3b8bfdb", + "name": "Hilo Brewing Co", + "brewery_type": "micro", + "address_1": "275 E Kawili St", + "address_2": null, + "address_3": null, + "city": "Hilo", + "state_province": "Hawaii", + "postal_code": "96720-5074", + "country": "United States", + "longitude": -155.0697885, + "latitude": 19.70587596, + "phone": "8089348211", + "website_url": "https://hilobrewingco.com", + "state": "Hawaii", + "street": "275 E Kawili St" + }, + { + "id": "abaf347e-2480-44a8-8485-8f7ad45415ef", + "name": "Hilton Head Brewing Co", + "brewery_type": "brewpub", + "address_1": "1 Cardinal Ct Ste 13", + "address_2": null, + "address_3": null, + "city": "Hilton Head Island", + "state_province": "South Carolina", + "postal_code": "29926-3401", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8437153251", + "website_url": null, + "state": "South Carolina", + "street": "1 Cardinal Ct Ste 13" + }, + { + "id": "62dcbcdd-ffa4-4a9e-ad1e-bffba2b5cba5", + "name": "Hingham Beer Works", + "brewery_type": "brewpub", + "address_1": "18 Shipyard Dr Ste 1K", + "address_2": null, + "address_3": null, + "city": "Hingham", + "state_province": "Massachusetts", + "postal_code": "02043-1670", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7817492337", + "website_url": null, + "state": "Massachusetts", + "street": "18 Shipyard Dr Ste 1K" + }, + { + "id": "2b528499-e24d-4805-90c7-63fff1dd99e2", + "name": "Hinterland Brewery", + "brewery_type": "micro", + "address_1": "1001 Lombardi Ave", + "address_2": null, + "address_3": null, + "city": "Green Bay", + "state_province": "Wisconsin", + "postal_code": "54304-3956", + "country": "United States", + "longitude": -88.04890406, + "latitude": 44.49896002, + "phone": "9204388050", + "website_url": "http://www.hinterlandbeer.com", + "state": "Wisconsin", + "street": "1001 Lombardi Ave" + }, + { + "id": "6dacc5f5-caa2-4f8e-a974-b072bd9300d9", + "name": "Hips Hops Brewers", + "brewery_type": "micro", + "address_1": "264 South Pine Road", + "address_2": null, + "address_3": null, + "city": "Brendale", + "state_province": "QLD", + "postal_code": "4500", + "country": "Australia", + "longitude": 152.9826715, + "latitude": -27.3281191, + "phone": "+61 7 3448 9339", + "website_url": "http://www.hiphopsbrewers.beer/", + "state": "QLD", + "street": "264 South Pine Road" + }, + { + "id": "832752d5-0acd-4a50-a607-36f8552dd94d", + "name": "Historic Brewing Company", + "brewery_type": "micro", + "address_1": "4366 E Huntington Dr Bldg 2", + "address_2": null, + "address_3": null, + "city": "Flagstaff", + "state_province": "Arizona", + "postal_code": "86004-9400", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8554844677", + "website_url": "http://www.historicbrewingcompany.com", + "state": "Arizona", + "street": "4366 E Huntington Dr Bldg 2" + }, + { + "id": "92a64c1e-ceea-48a8-8d68-5cf039b64cb0", + "name": "HistoryQuest, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Morristown", + "state_province": "New Jersey", + "postal_code": "07960-5298", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New Jersey", + "street": null + }, + { + "id": "93793161-bc9b-46f7-908c-10d7af3cbbf8", + "name": "Hitchcock Brewing Company", + "brewery_type": "micro", + "address_1": "129 Christian Ln", + "address_2": null, + "address_3": null, + "city": "Whately", + "state_province": "Massachusetts", + "postal_code": "01093", + "country": "United States", + "longitude": -72.60641222, + "latitude": 42.44606511, + "phone": "4136952400", + "website_url": "http://www.hitchcockbrewing.com", + "state": "Massachusetts", + "street": "129 Christian Ln" + }, + { + "id": "86590a44-6260-4fc2-a71f-98f52356bc20", + "name": "Hitchhiker Brewing Co.", + "brewery_type": "brewpub", + "address_1": "190 Castle Shannon Blvd", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15228-2267", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4123431950", + "website_url": "http://www.hitchhikerbrewing.com", + "state": "Pennsylvania", + "street": "190 Castle Shannon Blvd" + }, + { + "id": "64112422-723d-4867-9dd8-4d9b448305d7", + "name": "Hix Farm Brewery", + "brewery_type": "micro", + "address_1": "54 S Cedar Ave", + "address_2": null, + "address_3": null, + "city": "Cookeville", + "state_province": "Tennessee", + "postal_code": "38501-3216", + "country": "United States", + "longitude": -85.507921, + "latitude": 36.161868, + "phone": "9313161623", + "website_url": "http://www.hixfarmbrewery.com", + "state": "Tennessee", + "street": "54 S Cedar Ave" + }, + { + "id": "e1b1d684-717c-42d7-b090-071fdc3fa0cd", + "name": "Hobart Brewing Co.", + "brewery_type": "micro", + "address_1": "16 Evans Street", + "address_2": null, + "address_3": null, + "city": "Hobart", + "state_province": "TAS", + "postal_code": "7000", + "country": "Australia", + "longitude": 147.3375329, + "latitude": -42.8811607, + "phone": null, + "website_url": "http://www.hobartbrewingco.com.au/", + "state": "TAS", + "street": "16 Evans Street" + }, + { + "id": "5a5cbcd9-1316-40a8-8c75-6037a8d5ccf2", + "name": "Hobbs Tavern & Brewing Co.", + "brewery_type": "brewpub", + "address_1": "2415 NH Route 16", + "address_2": null, + "address_3": null, + "city": "West Ossipee", + "state_province": "New Hampshire", + "postal_code": "03890", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6035392000", + "website_url": "http://www.hobbstavern.com", + "state": "New Hampshire", + "street": "2415 NH Route 16" + }, + { + "id": "71ac4b9f-1452-42e4-957d-c0075671f9ac", + "name": "Hodad's Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92123", + "country": "United States", + "longitude": -117.1627714, + "latitude": 32.7174209, + "phone": "8582782770", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "f902bfca-fb32-4581-8b09-f3fb80ea731c", + "name": "Hofbrauhaus Buffalo", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14221-4616", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7165631781", + "website_url": "http://www.facebook.com/Hofbrauhaus-Buffalo-476335022466386/", + "state": "New York", + "street": null + }, + { + "id": "5fde3431-947e-41a9-8884-5763020f18a4", + "name": "Hofbrauhaus Chicago", + "brewery_type": "brewpub", + "address_1": "5500 Park Pl", + "address_2": null, + "address_3": null, + "city": "Rosemont", + "state_province": "Illinois", + "postal_code": "60018-3730", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8476712739", + "website_url": "http://www.hofbrauhauschicago.com", + "state": "Illinois", + "street": "5500 Park Pl" + }, + { + "id": "1fcf7c77-15b9-499e-a181-e5d1cdf2bce4", + "name": "Hofbrauhaus Cleveland / Cincinatti Restaurant Group", + "brewery_type": "brewpub", + "address_1": "1550 Chester Ave", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44114-3615", + "country": "United States", + "longitude": -81.68115344, + "latitude": 41.50310892, + "phone": "2166212337", + "website_url": "http://www.hofbrauhauscleveland.com", + "state": "Ohio", + "street": "1550 Chester Ave" + }, + { + "id": "76dd1606-3e5b-4095-92e6-10ffd3c5fc9c", + "name": "Hofbrauhaus Columbus", + "brewery_type": "brewpub", + "address_1": "800 Goodale Blvd", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43212-3825", + "country": "United States", + "longitude": -83.025737, + "latitude": 39.974313, + "phone": "6142942437", + "website_url": "http://www.hofbrauhauscolumbus.com", + "state": "Ohio", + "street": "800 Goodale Blvd" + }, + { + "id": "1c220e79-0fc8-4afc-a733-4e3844321d87", + "name": "Hofbrauhaus Newport", + "brewery_type": "brewpub", + "address_1": "200 E 3rd St", + "address_2": null, + "address_3": null, + "city": "Newport", + "state_province": "Kentucky", + "postal_code": "41071-1612", + "country": "United States", + "longitude": -84.494527, + "latitude": 39.094846, + "phone": "8594917200", + "website_url": "http://www.hofbrauhausnewport.com", + "state": "Kentucky", + "street": "200 E 3rd St" + }, + { + "id": "94f254df-d789-477b-8717-ad89789b9504", + "name": "Hofbrauhaus Pittsburgh", + "brewery_type": "brewpub", + "address_1": "2705 S Water St", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15203", + "country": "United States", + "longitude": -79.9639442, + "latitude": 40.4279919, + "phone": "4122242328", + "website_url": "http://www.hofbrauhauspittsburgh.com", + "state": "Pennsylvania", + "street": "2705 S Water St" + }, + { + "id": "d7ffb1b1-b7db-4a99-a523-9c1a97deb958", + "name": "Hofbrauhaus St. Louis-Belleville", + "brewery_type": "brewpub", + "address_1": "123 Saint Eugene Dr", + "address_2": null, + "address_3": null, + "city": "Belleville", + "state_province": "Illinois", + "postal_code": "62223-1154", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6188002337", + "website_url": "http://www.hofbrauhausstlouis.com", + "state": "Illinois", + "street": "123 Saint Eugene Dr" + }, + { + "id": "f80c2fb9-1203-4f93-b54b-cc05ad0166b3", + "name": "Hog Haus Brewing Co", + "brewery_type": "brewpub", + "address_1": "430 W Dickson St", + "address_2": null, + "address_3": null, + "city": "Fayetteville", + "state_province": "Arkansas", + "postal_code": "72701-5107", + "country": "United States", + "longitude": -94.16524371, + "latitude": 36.0666309, + "phone": "4792833516", + "website_url": "http://www.hoghaus.com", + "state": "Arkansas", + "street": "430 W Dickson St" + }, + { + "id": "0d66df52-905e-492d-8565-1fa33fe40195", + "name": "Hog Island Beer Company", + "brewery_type": "micro", + "address_1": "PO Box 1901", + "address_2": null, + "address_3": null, + "city": "Orleans", + "state_province": "Massachusetts", + "postal_code": "02653-1901", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5082552337", + "website_url": "http://www.hogislandbeerco.com", + "state": "Massachusetts", + "street": "PO Box 1901" + }, + { + "id": "bcc9e2d0-a5cb-48da-b3e9-40229decd273", + "name": "Hog River Brewing Co", + "brewery_type": "micro", + "address_1": "1429 Park St", + "address_2": null, + "address_3": null, + "city": "Hartford", + "state_province": "Connecticut", + "postal_code": "06106-2236", + "country": "United States", + "longitude": -72.70182745, + "latitude": 41.75799856, + "phone": "8602062119", + "website_url": "http://www.hogriverbrewing.com", + "state": "Connecticut", + "street": "1429 Park St" + }, + { + "id": "bba56fa4-5787-426b-9eab-621c4a57d805", + "name": "Hogback Mountain Brewery", + "brewery_type": "micro", + "address_1": "51 North St", + "address_2": null, + "address_3": null, + "city": "Bristol", + "state_province": "Vermont", + "postal_code": "05443-1026", + "country": "United States", + "longitude": -73.079007, + "latitude": 44.136511, + "phone": "8023498195", + "website_url": "http://hogbackbrew.com", + "state": "Vermont", + "street": "51 North St" + }, + { + "id": "b5ccfc00-94ba-43a3-bb23-dffd719a75ec", + "name": "Hoghouse Brewing Company", + "brewery_type": "brewpub", + "address_1": "42 Morningside Street", + "address_2": "Ndabeni", + "address_3": null, + "city": "Cape Town", + "state_province": "Western Cape", + "postal_code": "7405", + "country": "South Africa", + "longitude": 18.4879, + "latitude": -33.9312, + "phone": "+27 21 810 4545", + "website_url": "https://www.hoghouse.co.za/", + "state": "Western Cape", + "street": "42 Morningside Street" + }, + { + "id": "544bcda5-1939-41fd-9b4f-511798a710e2", + "name": "Hogsback Brewing Company", + "brewery_type": "micro", + "address_1": "The Lighthouse Ranch", + "address_2": null, + "address_3": null, + "city": "Hogsback", + "state_province": "Eastern Cape", + "postal_code": "5721", + "country": "South Africa", + "longitude": 26.9329, + "latitude": -32.5936, + "phone": "+27 83 482 4892", + "website_url": null, + "state": "Eastern Cape", + "street": "The Lighthouse Ranch" + }, + { + "id": "a4ef3382-1ed4-426a-a822-5a7e9001597f", + "name": "Hogshead Brewery", + "brewery_type": "micro", + "address_1": "4460 W 29th Ave", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80212-3015", + "country": "United States", + "longitude": -105.04506, + "latitude": 39.758232, + "phone": "3038869655", + "website_url": "http://www.hogsheadbrewery.com", + "state": "Colorado", + "street": "4460 W 29th Ave" + }, + { + "id": "57a523b2-d226-44fc-9469-6a7901a2deee", + "name": "Hoh River Brewery", + "brewery_type": "micro", + "address_1": "2442 Mottman Rd SW", + "address_2": null, + "address_3": null, + "city": "Tumwater", + "state_province": "Washington", + "postal_code": "98512-6219", + "country": "United States", + "longitude": -122.9356218, + "latitude": 47.02543196, + "phone": "3607054000", + "website_url": "http://www.hohriverbrewery.com", + "state": "Washington", + "street": "2442 Mottman Rd SW" + }, + { + "id": "13113114-ed5d-42b1-bc80-6e52259913e9", + "name": "Hoi Polloi Brewpub and Beat Lounge", + "brewery_type": "micro", + "address_1": "1763 Alcatraz Ave", + "address_2": null, + "address_3": null, + "city": "Berkeley", + "state_province": "California", + "postal_code": "94703", + "country": "United States", + "longitude": -122.272181, + "latitude": 37.8487711, + "phone": "5108587334", + "website_url": null, + "state": "California", + "street": "1763 Alcatraz Ave" + }, + { + "id": "4e9edeef-4d5b-4c71-8461-ab35c25094c6", + "name": "Hold Fast Brewing", + "brewery_type": "micro", + "address_1": "235 N Kimbrough Ave", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Missouri", + "postal_code": "65806", + "country": "United States", + "longitude": -93.285942, + "latitude": 37.217206, + "phone": "4177612318", + "website_url": "http://www.hfbrewing.com", + "state": "Missouri", + "street": "235 N Kimbrough Ave" + }, + { + "id": "3f966d4c-cd26-463b-81b0-f30923649fa1", + "name": "Hold Out Brewing", + "brewery_type": "micro", + "address_1": "1208 W 4th St", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78703-5203", + "country": "United States", + "longitude": -97.7611333, + "latitude": 30.2713864, + "phone": "2103165572", + "website_url": "http://www.holdoutbrewing.com", + "state": "Texas", + "street": "1208 W 4th St" + }, + { + "id": "88f36bd6-dc3a-470c-9d88-92c0aa305e56", + "name": "Holgate Brewhouse", + "brewery_type": "micro", + "address_1": "79 High Street", + "address_2": null, + "address_3": null, + "city": "Woodend", + "state_province": "VIC", + "postal_code": "3442", + "country": "Australia", + "longitude": 144.5269444, + "latitude": -37.3569444, + "phone": "+61 3 5427 2510", + "website_url": "http://www.holgatebrewhouse.com/", + "state": "VIC", + "street": "79 High Street" + }, + { + "id": "6934e956-ca42-40f0-b750-7153f2cfbcad", + "name": "Holidaily Brewing Co", + "brewery_type": "micro", + "address_1": "801 Brickyard Cir Ste B", + "address_2": null, + "address_3": null, + "city": "Golden", + "state_province": "Colorado", + "postal_code": "80403-8026", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3032782337", + "website_url": "http://www.holidailybrewing.com", + "state": "Colorado", + "street": "801 Brickyard Cir Ste B" + }, + { + "id": "8844a2f6-bf55-4d74-b7a6-efad8f6d7e0c", + "name": "Holidaily Production Facility", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Golden", + "state_province": "Colorado", + "postal_code": "80403", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "573e03df-998f-432d-b125-140ad05fc08c", + "name": "Holler Brewing Company", + "brewery_type": "micro", + "address_1": "2206 Edwards St Ste A", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77007-4412", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8327810555", + "website_url": "http://www.hollerbeer.com", + "state": "Texas", + "street": "2206 Edwards St Ste A" + }, + { + "id": "4fac3b77-3b22-4494-92f7-159c44230dec", + "name": "Hollister Brewing Co", + "brewery_type": "brewpub", + "address_1": "6980 Market Place Dr", + "address_2": null, + "address_3": null, + "city": "Goleta", + "state_province": "California", + "postal_code": "93117-2997", + "country": "United States", + "longitude": -119.873842, + "latitude": 34.428764, + "phone": "8059682810", + "website_url": "http://www.holisterbrewco.com", + "state": "California", + "street": "6980 Market Place Dr" + }, + { + "id": "1672483e-ca23-4461-b630-3a5bafbb193d", + "name": "Hollow Earth Brewing Co", + "brewery_type": "brewpub", + "address_1": "19 N 3rd St", + "address_2": null, + "address_3": null, + "city": "Oxford", + "state_province": "Pennsylvania", + "postal_code": "19363-1423", + "country": "United States", + "longitude": -75.97857656, + "latitude": 39.78586182, + "phone": "6107323959", + "website_url": "http://www.HollowEarthBrewing.com", + "state": "Pennsylvania", + "street": "19 N 3rd St" + }, + { + "id": "433e1570-3f51-45bb-89c7-20483a0c39f2", + "name": "Hollywood Brewing Co", + "brewery_type": "micro", + "address_1": "3410 N 29th Ave", + "address_2": null, + "address_3": null, + "city": "Hollywood", + "state_province": "Florida", + "postal_code": "33020-1002", + "country": "United States", + "longitude": -80.1658845, + "latitude": 26.0405657, + "phone": "3054144757", + "website_url": "http://www.hollywood.beer", + "state": "Florida", + "street": "3410 N 29th Ave" + }, + { + "id": "7d85c9fb-d831-46a4-8a3b-42757806fa84", + "name": "Hollywood Brewing Co", + "brewery_type": "brewpub", + "address_1": "290 N Broadwalk", + "address_2": null, + "address_3": null, + "city": "Hollywood", + "state_province": "Florida", + "postal_code": "33019-1787", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9546749674", + "website_url": "http://www.hollywood.beer", + "state": "Florida", + "street": "290 N Broadwalk" + }, + { + "id": "f0ccfe60-f36c-4a10-b976-e08d0da22763", + "name": "Holsopple Brewing", + "brewery_type": "micro", + "address_1": "8023 Catherine Ln", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40222-4793", + "country": "United States", + "longitude": -85.6064539, + "latitude": 38.2598078, + "phone": "5027081902", + "website_url": "http://www.holsopplebrewing.com", + "state": "Kentucky", + "street": "8023 Catherine Ln" + }, + { + "id": "7a134345-20ca-4aaa-a769-0a562ea17b73", + "name": "Holston River Brewing Company", + "brewery_type": "micro", + "address_1": "2623 Volunteer Pkwy", + "address_2": null, + "address_3": null, + "city": "Bristol", + "state_province": "Tennessee", + "postal_code": "37620-", + "country": "United States", + "longitude": -82.1910353, + "latitude": 36.574583, + "phone": "4233611572", + "website_url": "http://www.hrbrewing.com", + "state": "Tennessee", + "street": "2623 Volunteer Pkwy" + }, + { + "id": "dbfbda0b-941b-43d2-a71e-6a335097006e", + "name": "Holy City Brewing", + "brewery_type": "micro", + "address_1": "1021 Aragon Ave", + "address_2": null, + "address_3": null, + "city": "North Charleston", + "state_province": "South Carolina", + "postal_code": "29405-4903", + "country": "United States", + "longitude": -79.97884, + "latitude": 32.87298, + "phone": "8434952948", + "website_url": "http://www.holycitybrewing.com", + "state": "South Carolina", + "street": "1021 Aragon Ave" + }, + { + "id": "0944f429-a668-487b-b20d-76be91da063a", + "name": "Holy Mackerel Small Batch Beers", + "brewery_type": "micro", + "address_1": "3260 NW 23rd Ave Ste 400E", + "address_2": null, + "address_3": null, + "city": "Pompano Beach", + "state_province": "Florida", + "postal_code": "33069-5937", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9545320196", + "website_url": "http://www.holymackerelbeers.com", + "state": "Florida", + "street": "3260 NW 23rd Ave Ste 400E" + }, + { + "id": "5ea34660-4d18-4e33-9d78-aecdd3a4ba10", + "name": "Holy Mountain Brewing Co", + "brewery_type": "micro", + "address_1": "1421 Elliott Ave W", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98119-3104", + "country": "United States", + "longitude": -122.3745615, + "latitude": 47.6308277, + "phone": "2064988435", + "website_url": "http://holymountainbrewing.com", + "state": "Washington", + "street": "1421 Elliott Ave W" + }, + { + "id": "df95ed92-c30c-4c27-8608-b3b59e7e59b0", + "name": "Homage Brewing", + "brewery_type": "micro", + "address_1": "1219 N Main St", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90012", + "country": "United States", + "longitude": -118.2324815, + "latitude": 34.0646086, + "phone": null, + "website_url": "http://www.homagebrewing.com/", + "state": "California", + "street": "1219 N Main St" + }, + { + "id": "b8603807-7398-4567-b010-206dfa47a9d8", + "name": "Homage Brewing", + "brewery_type": "micro", + "address_1": "281 S Thomas St Ste 101", + "address_2": null, + "address_3": null, + "city": "Pomona", + "state_province": "California", + "postal_code": "91766-1750", + "country": "United States", + "longitude": -117.7513183, + "latitude": 34.05732408, + "phone": "6263770930", + "website_url": "http://www.homagebrewing.com/", + "state": "California", + "street": "281 S Thomas St Ste 101" + }, + { + "id": "d249f969-0851-4831-9ae9-b7bbb8849da7", + "name": "Home Brewing Co Of Pennsylvania", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Conneaut Lake", + "state_province": "Pennsylvania", + "postal_code": "16316", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4128603015", + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "fff96f3c-0248-4381-bc2a-9cdae3190fc3", + "name": "Home Brewing Co.", + "brewery_type": "micro", + "address_1": "2911 El Cajon Blvd # 2", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92104-1204", + "country": "United States", + "longitude": -117.131109, + "latitude": 32.755029, + "phone": "6194506165", + "website_url": "http://www.thehomebrewerssd.com", + "state": "California", + "street": "2911 El Cajon Blvd # 2" + }, + { + "id": "ad3d52fd-8b41-48f9-82a2-168aeb548402", + "name": "Home of the Brave Brewing Company", + "brewery_type": "closed", + "address_1": "909 Waimanu St", + "address_2": null, + "address_3": null, + "city": "Honolulu", + "state_province": "Hawaii", + "postal_code": "96814-3309", + "country": "United States", + "longitude": -157.8535966, + "latitude": 21.29875689, + "phone": "8083968112", + "website_url": "http://www.hotbbc.com", + "state": "Hawaii", + "street": "909 Waimanu St" + }, + { + "id": "e7b2f34e-1ef8-408c-9113-491139884952", + "name": "Home Republic", + "brewery_type": "micro", + "address_1": "328 Laskin Rd", + "address_2": null, + "address_3": null, + "city": "Virginia Beach", + "state_province": "Virginia", + "postal_code": "23451-3020", + "country": "United States", + "longitude": -75.97981433, + "latitude": 36.85912408, + "phone": "7572269593", + "website_url": "http://www.homerepublicvabeach.com", + "state": "Virginia", + "street": "328 Laskin Rd" + }, + { + "id": "a86a5712-7d32-4ade-a350-2245056ad635", + "name": "Homefield Brewing", + "brewery_type": "brewpub", + "address_1": "3 Arnold Rd", + "address_2": null, + "address_3": null, + "city": "Fiskdale", + "state_province": "Massachusetts", + "postal_code": "01518-", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7742426365", + "website_url": "http://www.homefieldbrewing.com", + "state": "Massachusetts", + "street": "3 Arnold Rd" + }, + { + "id": "3bc09d93-e165-4c5a-81ee-9228b5e3d54d", + "name": "HomeGrown Brewing Company", + "brewery_type": "brewpub", + "address_1": "28 N Washington St", + "address_2": null, + "address_3": null, + "city": "Oxford", + "state_province": "Michigan", + "postal_code": "48371-4665", + "country": "United States", + "longitude": -83.26650386, + "latitude": 42.82656071, + "phone": "2488918290", + "website_url": "http://www.homegrownbrewco.com", + "state": "Michigan", + "street": "28 N Washington St" + }, + { + "id": "f8a0cdb0-843e-431c-8f52-e5e23664ae6a", + "name": "Homeplace Beer Co", + "brewery_type": "micro", + "address_1": "6 South Main Street Area C", + "address_2": null, + "address_3": null, + "city": "Burnsville", + "state_province": "North Carolina", + "postal_code": "28714", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8285365147", + "website_url": "http://www.homeplacebeer.com", + "state": "North Carolina", + "street": "6 South Main Street Area C" + }, + { + "id": "da0d62fc-e0ab-4a8b-a99a-539e09ebc6ff", + "name": "Homer Brewing Co", + "brewery_type": "micro", + "address_1": "1411 Lake Shore Dr", + "address_2": null, + "address_3": null, + "city": "Homer", + "state_province": "Alaska", + "postal_code": "99603-7945", + "country": "United States", + "longitude": -151.506636, + "latitude": 59.640509, + "phone": "9072353626", + "website_url": "http://homerbrew.com", + "state": "Alaska", + "street": "1411 Lake Shore Dr" + }, + { + "id": "bf32b0e2-4258-4f4a-9b72-744d0582034c", + "name": "HOMES Brewery", + "brewery_type": "brewpub", + "address_1": "2321 Jackson Ave", + "address_2": null, + "address_3": null, + "city": "Ann Arbor", + "state_province": "Michigan", + "postal_code": "48103-3814", + "country": "United States", + "longitude": -83.77845211, + "latitude": 42.28032635, + "phone": "7349546637", + "website_url": "http://www.homesbrewery.com", + "state": "Michigan", + "street": "2321 Jackson Ave" + }, + { + "id": "a9ad782a-5e15-4ddb-ad90-a40b599974ff", + "name": "Homestead Beer Co.", + "brewery_type": "micro", + "address_1": "811 Irving Wick Dr W", + "address_2": null, + "address_3": null, + "city": "Heath", + "state_province": "Ohio", + "postal_code": "43056-1199", + "country": "United States", + "longitude": -82.47380719, + "latitude": 40.02494781, + "phone": "7405228018", + "website_url": "http://www.homesteadbeerco.com", + "state": "Ohio", + "street": "811 Irving Wick Dr W" + }, + { + "id": "f64883a1-c4ee-475b-8ab1-629af24daf85", + "name": "Hometown Cellars Winery & Brewery", + "brewery_type": "micro", + "address_1": "108 E Center St Ste D", + "address_2": null, + "address_3": null, + "city": "Ithaca", + "state_province": "Michigan", + "postal_code": "48847-1453", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9898756010", + "website_url": "http://www.hometowncellars.com", + "state": "Michigan", + "street": "108 E Center St Ste D" + }, + { + "id": "15a32929-72b1-425b-8136-eb443c70d244", + "name": "Hondo's Brew and Cork Pub", + "brewery_type": "micro", + "address_1": "2703 Marine Dr", + "address_2": null, + "address_3": null, + "city": "Astoria", + "state_province": "Oregon", + "postal_code": "97103-2900", + "country": "United States", + "longitude": -123.8140426, + "latitude": 46.18885817, + "phone": "5033252234", + "website_url": "http://www.hondosbrew.net", + "state": "Oregon", + "street": "2703 Marine Dr" + }, + { + "id": "06b628c9-8bfb-40c3-abb5-bec1c15dc01f", + "name": "Honest Weight Artisan Beer", + "brewery_type": "micro", + "address_1": "131 W Main St Ste 104", + "address_2": null, + "address_3": null, + "city": "Orange", + "state_province": "Massachusetts", + "postal_code": "01364-1159", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4135376659", + "website_url": "http://www.honestweightbeer.com", + "state": "Massachusetts", + "street": "131 W Main St Ste 104" + }, + { + "id": "1050fc32-3d25-4e81-9e62-56c393000396", + "name": "Honey Hollow Brewery", + "brewery_type": "micro", + "address_1": "376 E. Honey Rd.", + "address_2": null, + "address_3": null, + "city": "Earlton", + "state_province": "New York", + "postal_code": "12058", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5189665560", + "website_url": "http://www.honeyhollowbrewery.com", + "state": "New York", + "street": "376 E. Honey Rd." + }, + { + "id": "3f1aea69-e48b-4325-a181-43f69c6987e6", + "name": "Honeymoon Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Santa Fe", + "state_province": "New Mexico", + "postal_code": "87501", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5059208379", + "website_url": "http://www.honeymoonbrewery.com", + "state": "New Mexico", + "street": null + }, + { + "id": "60acc406-20d7-429e-8e5f-743dd8ad2450", + "name": "Honingklip Brewery", + "brewery_type": "micro", + "address_1": "Honingklip Farm", + "address_2": "R43", + "address_3": null, + "city": "Bot River", + "state_province": "Western Cape", + "postal_code": "7185", + "country": "South Africa", + "longitude": 19.1245, + "latitude": -34.1979, + "phone": "+27 82 887 2927", + "website_url": "https://www.honingklip.co.za/", + "state": "Western Cape", + "street": "Honingklip Farm" + }, + { + "id": "2d7398d5-4d9c-42ee-aee3-680048462d32", + "name": "Honky Tonk Brewing Co", + "brewery_type": "micro", + "address_1": "240 Cumberland Bnd", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37228-1804", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6157429770", + "website_url": "http://www.honkytonkbeer.com", + "state": "Tennessee", + "street": "240 Cumberland Bnd" + }, + { + "id": "31963341-be39-4151-bac5-f69af74f3469", + "name": "Honolulu BeerWorks", + "brewery_type": "brewpub", + "address_1": "328 Cooke St", + "address_2": null, + "address_3": null, + "city": "Honolulu", + "state_province": "Hawaii", + "postal_code": "96813-5531", + "country": "United States", + "longitude": -157.860634, + "latitude": 21.29690603, + "phone": "8085892337", + "website_url": "http://www.honolulubeerworks.com", + "state": "Hawaii", + "street": "328 Cooke St" + }, + { + "id": "14fe825b-3b9f-43dc-b953-b593774e0221", + "name": "Hood Canal Brewery", + "brewery_type": "brewpub", + "address_1": "26499 Bond Rd NE", + "address_2": null, + "address_3": null, + "city": "Kingston", + "state_province": "Washington", + "postal_code": "98346-8477", + "country": "United States", + "longitude": -122.5733597, + "latitude": 47.80443335, + "phone": "3602978316", + "website_url": "http://www.hoodcanalbrewery.com", + "state": "Washington", + "street": "26499 Bond Rd NE" + }, + { + "id": "bd37752a-b7fe-40a2-a9f5-8ed9abcdc97d", + "name": "HooDoo Brewing Co", + "brewery_type": "micro", + "address_1": "1951 Fox Ave", + "address_2": null, + "address_3": null, + "city": "Fairbanks", + "state_province": "Alaska", + "postal_code": "99701-2701", + "country": "United States", + "longitude": -147.7598199, + "latitude": 64.84855501, + "phone": "9074592337", + "website_url": "http://www.hoodoobrew.com", + "state": "Alaska", + "street": "1951 Fox Ave" + }, + { + "id": "deb5a55b-9937-4af4-9888-74d338881600", + "name": "Hoof Hearted Brewing", + "brewery_type": "micro", + "address_1": "300 County Road 26", + "address_2": null, + "address_3": null, + "city": "Marengo", + "state_province": "Ohio", + "postal_code": "43334-9678", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5672333115", + "website_url": "http://www.hoofheartedbrewing.com", + "state": "Ohio", + "street": "300 County Road 26" + }, + { + "id": "5f190fa6-7153-4ecb-bbd8-d2271064a478", + "name": "Hoof Hearted Brewing - Brewery and Kitchen", + "brewery_type": "brewpub", + "address_1": "850 N 4th St", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43215-1845", + "country": "United States", + "longitude": -83.0002482, + "latitude": 39.9803665, + "phone": "6144014033", + "website_url": "https://hoofheartedkitchen.com/", + "state": "Ohio", + "street": "850 N 4th St" + }, + { + "id": "bacde337-e51c-4f1d-a8ff-cf0896a51476", + "name": "Hoogeberg Brewing Company", + "brewery_type": "micro", + "address_1": "Signal Gun Wines", + "address_2": "Hoogeberg Road", + "address_3": null, + "city": "Durbanville", + "state_province": "Western Cape", + "postal_code": "7550", + "country": "South Africa", + "longitude": 18.6011, + "latitude": -33.7845, + "phone": "+27 21 976 7343", + "website_url": "https://signalgun.com/", + "state": "Western Cape", + "street": "Signal Gun Wines" + }, + { + "id": "1318bdb1-58d4-4252-a16c-43b2277887f3", + "name": "Hook Point Brewing Co.", + "brewery_type": "proprietor", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Collierville", + "state_province": "Tennessee", + "postal_code": "38017", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8009582330", + "website_url": "http://www.flathat.com", + "state": "Tennessee", + "street": null + }, + { + "id": "95a61dd8-6e66-4fec-994f-f239441ea385", + "name": "Hoops Brewing", + "brewery_type": "micro", + "address_1": "325 S Lake Ave # 110", + "address_2": null, + "address_3": null, + "city": "Duluth", + "state_province": "Minnesota", + "postal_code": "55802-2305", + "country": "United States", + "longitude": -92.0960811, + "latitude": 46.78348776, + "phone": "2186061666", + "website_url": "http://www.hoopsbrewing.com", + "state": "Minnesota", + "street": "325 S Lake Ave # 110" + }, + { + "id": "c4ce5349-c572-4c37-99a6-e670199d46bf", + "name": "HOOTS Beer Co.", + "brewery_type": "micro", + "address_1": "840 Mill Works St", + "address_2": null, + "address_3": null, + "city": "Winston Salem", + "state_province": "North Carolina", + "postal_code": "27101-1243", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3366086026", + "website_url": "http://www.hootspublic.com", + "state": "North Carolina", + "street": "840 Mill Works St" + }, + { + "id": "57f24b40-a0cc-4a68-b82f-97b0767f6aa7", + "name": "Hop & Barrel Brewing Company LLC", + "brewery_type": "micro", + "address_1": "310 2nd St", + "address_2": null, + "address_3": null, + "city": "Hudson", + "state_province": "Wisconsin", + "postal_code": "54016-1508", + "country": "United States", + "longitude": -92.75667116, + "latitude": 44.97329671, + "phone": "6517959439", + "website_url": "http://www.hopandbarrelbrewing.com", + "state": "Wisconsin", + "street": "310 2nd St" + }, + { + "id": "49af830b-8e3c-456a-8557-504c1ccea48b", + "name": "Hop And Sting Brewing Company", + "brewery_type": "micro", + "address_1": "2405 Squire Pl Ste 200", + "address_2": null, + "address_3": null, + "city": "Farmers Branch", + "state_province": "Texas", + "postal_code": "75234-4714", + "country": "United States", + "longitude": -96.89883128, + "latitude": 32.93044336, + "phone": "6828889614", + "website_url": "http://www.hopandsting.com", + "state": "Texas", + "street": "2405 Squire Pl Ste 200" + }, + { + "id": "b7d9a7e5-45c2-481f-a606-d0e3d579fb50", + "name": "Hop Barn Brewing", + "brewery_type": "micro", + "address_1": "94 Maple Ave", + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "New York", + "postal_code": "12083-3311", + "country": "United States", + "longitude": -74.05510817, + "latitude": 42.42134333, + "phone": "5189564762", + "website_url": "http://hopbarnbrewing.com", + "state": "New York", + "street": "94 Maple Ave" + }, + { + "id": "23fe0267-5f98-4f0e-b86e-cfb9740ce9b3", + "name": "Hop Butcher For the World", + "brewery_type": "micro", + "address_1": "1000 N Frontage Rd Ste C", + "address_2": null, + "address_3": null, + "city": "Darien", + "state_province": "Illinois", + "postal_code": "60561-6448", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.hopbutcher.com", + "state": "Illinois", + "street": "1000 N Frontage Rd Ste C" + }, + { + "id": "8e9415ac-0125-48ab-a575-0323b0e8c0f1", + "name": "HOP Central Brewery and Taproom", + "brewery_type": "micro", + "address_1": "5055 W Ray Rd Ste 2", + "address_2": null, + "address_3": null, + "city": "Chandler", + "state_province": "Arizona", + "postal_code": "85226-6111", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6026971494", + "website_url": "http://www.hopcentraltaproom.com", + "state": "Arizona", + "street": "5055 W Ray Rd Ste 2" + }, + { + "id": "8b907fd1-b55f-44e8-a9c0-04563f809a81", + "name": "Hop Creek Pub", + "brewery_type": "brewpub", + "address_1": "3253 Browns Valley Rd", + "address_2": null, + "address_3": null, + "city": "Napa", + "state_province": "California", + "postal_code": "94558-5424", + "country": "United States", + "longitude": -122.328868, + "latitude": 38.3041333, + "phone": "7072577708", + "website_url": "http://www.hopcreekpub.com", + "state": "California", + "street": "3253 Browns Valley Rd" + }, + { + "id": "b1d29f8f-ee48-4a51-9460-01bdd6485e48", + "name": "Hop Cycle Brewing Company", + "brewery_type": "brewpub", + "address_1": "13965 NW Main St", + "address_2": null, + "address_3": null, + "city": "Banks", + "state_province": "Oregon", + "postal_code": "97106-9213", + "country": "United States", + "longitude": -123.1145847, + "latitude": 45.62137327, + "phone": "5032770997", + "website_url": "http://www.hopcyclebrewing.com", + "state": "Oregon", + "street": "13965 NW Main St" + }, + { + "id": "36b10736-7d32-4ff4-bb48-93297fb2603d", + "name": "Hop Dogma Brewing Company", + "brewery_type": "micro", + "address_1": "270 Capistrano Rd #22", + "address_2": null, + "address_3": null, + "city": "Half Moon Bay", + "state_province": "California", + "postal_code": "94019", + "country": "United States", + "longitude": -122.4831514, + "latitude": 37.50465917, + "phone": "6505608729", + "website_url": "http://www.hopdogma.com", + "state": "California", + "street": "270 Capistrano Rd #22" + }, + { + "id": "585ef4d8-012b-40ce-b5a9-b1573984d629", + "name": "Hop Farm Brewing Co", + "brewery_type": "micro", + "address_1": "5601 Butler St", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15201-2326", + "country": "United States", + "longitude": -79.9224894, + "latitude": 40.4884044, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": "5601 Butler St" + }, + { + "id": "0971ac37-3c31-494d-816b-14c1b503d649", + "name": "Hop Garden Brewing", + "brewery_type": "contract", + "address_1": "N8668 County Road D", + "address_2": null, + "address_3": null, + "city": "Belleville", + "state_province": "Wisconsin", + "postal_code": "53508-9626", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6085169649", + "website_url": "http://www.thehopgarden.net", + "state": "Wisconsin", + "street": "N8668 County Road D" + }, + { + "id": "c18babf8-a7fa-48d1-97eb-d78671e0284e", + "name": "Hop Haus Brewing Co", + "brewery_type": "brewpub", + "address_1": "231 S Main St", + "address_2": null, + "address_3": null, + "city": "Verona", + "state_province": "Wisconsin", + "postal_code": "53593-1470", + "country": "United States", + "longitude": -89.53353021, + "latitude": 42.98803486, + "phone": "6084973165", + "website_url": "http://www.hophausbrewing.com", + "state": "Wisconsin", + "street": "231 S Main St" + }, + { + "id": "ff207d8f-3e3f-4e00-b29e-316b89314d2c", + "name": "Hop Head Farms Brewing, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Baroda", + "state_province": "Michigan", + "postal_code": "49101-9351", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": null + }, + { + "id": "dbaeff16-a93c-4a2f-b40d-866bd4e5c688", + "name": "Hop Hen", + "brewery_type": "micro", + "address_1": "64-86 Beresford Road", + "address_2": "Unit 17", + "address_3": null, + "city": "Lilydale", + "state_province": "VIC", + "postal_code": "3140", + "country": "Australia", + "longitude": 145.3451329, + "latitude": -37.7511644, + "phone": "+61 3 9739 7980", + "website_url": "http://www.hophenbrewing.com.au/", + "state": "VIC", + "street": "64-86 Beresford Road" + }, + { + "id": "f19a1d1c-5c2b-4da1-91c4-7a5a3a816e9f", + "name": "Hop Hill Brewing Company", + "brewery_type": "micro", + "address_1": "1988 Blair Ave", + "address_2": null, + "address_3": null, + "city": "Bethlehem", + "state_province": "Pennsylvania", + "postal_code": "18015-5307", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4848930767", + "website_url": "http://www.hophillbeer.com", + "state": "Pennsylvania", + "street": "1988 Blair Ave" + }, + { + "id": "afc8e516-fcfa-4911-918b-176ff208914e", + "name": "Hop Lot Brewing Co.", + "brewery_type": "brewpub", + "address_1": "658 S West Bay Shore Dr", + "address_2": null, + "address_3": null, + "city": "Suttons Bay", + "state_province": "Michigan", + "postal_code": "49682-9587", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2318664445", + "website_url": "http://www.hoplotbrewing.com", + "state": "Michigan", + "street": "658 S West Bay Shore Dr" + }, + { + "id": "52ff8b56-bde5-4647-b678-0337dd27f070", + "name": "Hop N' Keg Brewery / The Quarry Steakhouse and Brewpub", + "brewery_type": "brewpub", + "address_1": "29 S Vernal Ave", + "address_2": null, + "address_3": null, + "city": "Vernal", + "state_province": "Utah", + "postal_code": "84078-2627", + "country": "United States", + "longitude": -109.5281478, + "latitude": 40.4552593, + "phone": "4357892337", + "website_url": null, + "state": "Utah", + "street": "29 S Vernal Ave" + }, + { + "id": "1a000061-f7a6-43b4-a64f-d9c1afd7558b", + "name": "Hop Nation Brewing Co", + "brewery_type": "micro", + "address_1": "107-109 Whitehall Street", + "address_2": "Unit 6", + "address_3": null, + "city": "Footscray", + "state_province": "VIC", + "postal_code": "3011", + "country": "Australia", + "longitude": 144.9040948, + "latitude": -37.8100439, + "phone": "+61 450 973 644", + "website_url": "https://hopnation.com.au/pages/footscray-taproom", + "state": "VIC", + "street": "107-109 Whitehall Street" + }, + { + "id": "04268b2c-89f1-4aa2-8d95-fca3128b1c73", + "name": "Hop Nation Brewing Co.", + "brewery_type": "micro", + "address_1": "107-109 Whitehall Street", + "address_2": "Unit 6", + "address_3": null, + "city": "Footscray", + "state_province": "VIC", + "postal_code": "3011", + "country": "Australia", + "longitude": 144.9040948, + "latitude": -37.8100439, + "phone": "+61 450 973 644", + "website_url": "https://hopnation.com.au/pages/footscray-taproom", + "state": "VIC", + "street": "107-109 Whitehall Street" + }, + { + "id": "db9c3f9b-48fb-43c2-9a29-26624d6c8ec4", + "name": "Hop Nation Brewing Company", + "brewery_type": "micro", + "address_1": "31 N 1st Ave", + "address_2": null, + "address_3": null, + "city": "Yakima", + "state_province": "Washington", + "postal_code": "98902-2663", + "country": "United States", + "longitude": -120.5097321, + "latitude": 46.6018934, + "phone": "5099856449", + "website_url": "http://www.hopnation.us", + "state": "Washington", + "street": "31 N 1st Ave" + }, + { + "id": "ab9479f2-8245-4847-880a-f7d72512d60a", + "name": "Hop Nuts Brewing", + "brewery_type": "micro", + "address_1": "1120 S Main St Ste 150", + "address_2": null, + "address_3": null, + "city": "Las Vegas", + "state_province": "Nevada", + "postal_code": "89104-1080", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7028165371", + "website_url": "http://www.hopnutsbrewing.com", + "state": "Nevada", + "street": "1120 S Main St Ste 150" + }, + { + "id": "6c7c38ab-4ed5-4939-8506-36b430a24df5", + "name": "Hop Quest Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Wheatfield", + "state_province": "Indiana", + "postal_code": "46392", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2198636393", + "website_url": null, + "state": "Indiana", + "street": null + }, + { + "id": "e24e5a6e-9ca9-4d47-84b8-9c8592f432b1", + "name": "Hop River Brewing Company", + "brewery_type": "micro", + "address_1": "1515 N Harrison St", + "address_2": null, + "address_3": null, + "city": "Fort Wayne", + "state_province": "Indiana", + "postal_code": "46808-2729", + "country": "United States", + "longitude": -85.1434574, + "latitude": 41.0882767, + "phone": null, + "website_url": "http://www.hopriverbrewing.com", + "state": "Indiana", + "street": "1515 N Harrison St" + }, + { + "id": "6a848ef1-0920-4bf6-b521-a9fcf277c8ca", + "name": "Hop Secret Brewing Co", + "brewery_type": "micro", + "address_1": "162 W Pomona Ave", + "address_2": null, + "address_3": null, + "city": "Monrovia", + "state_province": "California", + "postal_code": "91016-4558", + "country": "United States", + "longitude": -118.001973, + "latitude": 34.134155, + "phone": null, + "website_url": "http://www.hopsecretbrewing.com", + "state": "California", + "street": "162 W Pomona Ave" + }, + { + "id": "393fa5cb-5e38-4984-b411-f76bc6865356", + "name": "Hop Soul Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Brunswick", + "state_province": "Georgia", + "postal_code": "31520", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.hopsoulbrewery.com", + "state": "Georgia", + "street": null + }, + { + "id": "75dc420d-0a24-4537-b29b-07b09f168bce", + "name": "Hop Tree Brewing Company Ltd", + "brewery_type": "brewpub", + "address_1": "1297 Hudson Gate Dr", + "address_2": null, + "address_3": null, + "city": "Hudson", + "state_province": "Ohio", + "postal_code": "44236-3764", + "country": "United States", + "longitude": -81.44518205, + "latitude": 41.20893905, + "phone": "3303420060", + "website_url": "http://www.hoptreebrewing.com", + "state": "Ohio", + "street": "1297 Hudson Gate Dr" + }, + { + "id": "cba10f55-3b05-43ef-86d6-6dba4cb4b7af", + "name": "Hop Valley Brewing Co", + "brewery_type": "large", + "address_1": "990 W 1st Ave", + "address_2": null, + "address_3": null, + "city": "Eugene", + "state_province": "Oregon", + "postal_code": "97402-4904", + "country": "United States", + "longitude": -123.1074506, + "latitude": 44.05820645, + "phone": null, + "website_url": null, + "state": "Oregon", + "street": "990 W 1st Ave" + }, + { + "id": "5dcaadf3-ae3f-408a-9d52-fdfaf428c747", + "name": "Hop Valley Brewing Co", + "brewery_type": "large", + "address_1": "980 Kruse Way", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Oregon", + "postal_code": "97477-1073", + "country": "United States", + "longitude": -123.0399796, + "latitude": 44.08270624, + "phone": "5417443330", + "website_url": "http://www.hopvalleybrewing.com", + "state": "Oregon", + "street": "980 Kruse Way" + }, + { + "id": "5d061fd0-cdd3-4dc6-8631-9bbb35aed139", + "name": "Hop'n Moose Brewing Company", + "brewery_type": "brewpub", + "address_1": "41 Center St", + "address_2": null, + "address_3": null, + "city": "Rutland", + "state_province": "Vermont", + "postal_code": "05701-4016", + "country": "United States", + "longitude": -72.97743, + "latitude": 43.606783, + "phone": "8027757063", + "website_url": "http://www.hopnmoose.com", + "state": "Vermont", + "street": "41 Center St" + }, + { + "id": "d9bc1bbe-06ea-42a8-bf8c-9b0f44e0a4a3", + "name": "Hoparazzi Brewing Co", + "brewery_type": "closed", + "address_1": "2910 E La Palma Ave Ste D", + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92806-2618", + "country": "United States", + "longitude": -117.8636661, + "latitude": 33.84931338, + "phone": null, + "website_url": null, + "state": "California", + "street": "2910 E La Palma Ave Ste D" + }, + { + "id": "6b30dd4f-8617-411a-87c7-d6feb2239201", + "name": "Hopcat", + "brewery_type": "brewpub", + "address_1": "25 Ionia Ave SW Ste 100", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49503-4179", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6164514677", + "website_url": "http://www.hopcat.com", + "state": "Michigan", + "street": "25 Ionia Ave SW Ste 100" + }, + { + "id": "80000ed5-15a3-4fe0-819b-c0304647ea54", + "name": "Hopcat - Louisville", + "brewery_type": "brewpub", + "address_1": "1064 Bardstown Rd.", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40204", + "country": "United States", + "longitude": -85.7217319, + "latitude": 38.2385242, + "phone": "5028908676", + "website_url": null, + "state": "Kentucky", + "street": "1064 Bardstown Rd." + }, + { + "id": "7c23dcf5-c2f6-4eea-817f-9850114eafd4", + "name": "HopDog BeerWorks", + "brewery_type": "micro", + "address_1": "175 Princes Highway", + "address_2": "2", + "address_3": null, + "city": "South Nowra", + "state_province": "NSW", + "postal_code": "2541", + "country": "Australia", + "longitude": 150.6018814, + "latitude": -34.9121553, + "phone": null, + "website_url": null, + "state": "NSW", + "street": "175 Princes Highway" + }, + { + "id": "d79cd8ec-6144-4b10-b096-6ad985063cde", + "name": "Hope Craft Brewery", + "brewery_type": "micro", + "address_1": "Unit 1 Howth Junction Business Park", + "address_2": "Kilbarrack Road", + "address_3": "Kilbarrack", + "city": "Dublin", + "state_province": "Dublin", + "postal_code": "D05 H2K2", + "country": "Ireland", + "longitude": -6.1569422, + "latitude": 53.3902607, + "phone": "353874562669", + "website_url": "https://hopebeer.ie/", + "state": "Dublin", + "street": "Unit 1 Howth Junction Business Park" + }, + { + "id": "a2e403d9-ac99-4687-bc7d-77863ef4d32b", + "name": "Hope Estate", + "brewery_type": "micro", + "address_1": "2213 Broke Road", + "address_2": null, + "address_3": null, + "city": "Pokolbin", + "state_province": "NSW", + "postal_code": "2320", + "country": "Australia", + "longitude": 151.3120505, + "latitude": -32.767729, + "phone": "+61 2 4993 3555", + "website_url": "https://www.hopeestate.com.au/", + "state": "NSW", + "street": "2213 Broke Road" + }, + { + "id": "0e74966f-2dd7-422f-92b1-e04e71ea842d", + "name": "Hopewell Brewing Co", + "brewery_type": "micro", + "address_1": "2760 N Milwaukee Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60647-1337", + "country": "United States", + "longitude": -87.7878762, + "latitude": 41.9973481, + "phone": "7736986178", + "website_url": "http://www.hopewellbrewing.com", + "state": "Illinois", + "street": "2760 N Milwaukee Ave" + }, + { + "id": "3a149c58-99fe-45f5-a1ac-9e0aeb9723fa", + "name": "HopFly Brewing Company", + "brewery_type": "micro", + "address_1": "1147 Falls Rd Suite 121", + "address_2": null, + "address_3": null, + "city": "Rocky Mount", + "state_province": "North Carolina", + "postal_code": "27804", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "North Carolina", + "street": "1147 Falls Rd Suite 121" + }, + { + "id": "82f24897-257c-4df6-a629-cea41dce160b", + "name": "Hopfusion Ale Works", + "brewery_type": "micro", + "address_1": "200 E Broadway Ave", + "address_2": null, + "address_3": null, + "city": "Fort Worth", + "state_province": "Texas", + "postal_code": "76104-1302", + "country": "United States", + "longitude": -97.324895, + "latitude": 32.741719, + "phone": "6828411721", + "website_url": "http://www.hopfusionaleworks.com", + "state": "Texas", + "street": "200 E Broadway Ave" + }, + { + "id": "b7a5691c-56ec-4011-8bec-2f121a7be1ae", + "name": "Hopkins Brewing Company", + "brewery_type": "brewpub", + "address_1": "1048 E 2100 S", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84106", + "country": "United States", + "longitude": -111.8609503, + "latitude": 40.7250545, + "phone": "3855283275", + "website_url": "https://www.hopkinsbrewingcompany.com", + "state": "Utah", + "street": "1048 E 2100 S" + }, + { + "id": "14337c32-53a0-4266-b7c1-461c51261dab", + "name": "Hopkins Ordinary Ale Works", + "brewery_type": "micro", + "address_1": "47 Main St", + "address_2": null, + "address_3": null, + "city": "Sperryville", + "state_province": "Virginia", + "postal_code": "22740-", + "country": "United States", + "longitude": -78.227195, + "latitude": 38.65781167, + "phone": "5409873383", + "website_url": "http://www.hopkinsordinary.com", + "state": "Virginia", + "street": "47 Main St" + }, + { + "id": "0391fc81-48a4-445a-bf49-ad447172bc0a", + "name": "Hopkinsville Brewing Company", + "brewery_type": "micro", + "address_1": "102 E 5th St", + "address_2": null, + "address_3": null, + "city": "Hopkinsville", + "state_province": "Kentucky", + "postal_code": "42240-3306", + "country": "United States", + "longitude": -87.48735745, + "latitude": 36.86749436, + "phone": "2703483927", + "website_url": "http://www.hopkinsvillebrewingcompany.com", + "state": "Kentucky", + "street": "102 E 5th St" + }, + { + "id": "98818832-60ab-466d-b0b9-578677d6fc5e", + "name": "HopLife Brewing Company", + "brewery_type": "micro", + "address_1": "679 NW Enterprise Dr", + "address_2": null, + "address_3": null, + "city": "Port Saint Lucie", + "state_province": "Florida", + "postal_code": "34986-2253", + "country": "United States", + "longitude": -80.40865001, + "latitude": 27.3298823, + "phone": "7725280037", + "website_url": null, + "state": "Florida", + "street": "679 NW Enterprise Dr" + }, + { + "id": "d357d621-bbbc-4007-a5a3-b9bf6fb5f176", + "name": "Hopped And Brewed", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78681-7333", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5129225879", + "website_url": "http://Hoppedandbrewed@gmail.com", + "state": "Texas", + "street": null + }, + { + "id": "f8ac7038-8f93-4496-af76-5bb647c3bfb7", + "name": "Hopped Up Brewing Company", + "brewery_type": "closed", + "address_1": "10421 E Sprague Ave", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99206-3629", + "country": "United States", + "longitude": -117.2178526, + "latitude": 47.6571208, + "phone": "5094132488", + "website_url": "http://www.hoppedupbrew.com", + "state": "Washington", + "street": "10421 E Sprague Ave" + }, + { + "id": "92b101e9-e7bb-44c7-bd32-56bab9c9d4d7", + "name": "Hoppers Brewing Co.", + "brewery_type": "micro", + "address_1": "41 Crosby Road", + "address_2": null, + "address_3": null, + "city": "Albion", + "state_province": "QLD", + "postal_code": "4010", + "country": "Australia", + "longitude": 153.0450443, + "latitude": -27.4326487, + "phone": "+61 7 3862 2051", + "website_url": "https://hoppersbrewingco.com/", + "state": "QLD", + "street": "41 Crosby Road" + }, + { + "id": "09487d47-0218-4742-8172-a9f44a9c6f01", + "name": "Hoppers Grill and Brewing Co", + "brewery_type": "brewpub", + "address_1": "890 E Fort Union Blvd", + "address_2": null, + "address_3": null, + "city": "Midvale", + "state_province": "Utah", + "postal_code": "84047-1745", + "country": "United States", + "longitude": -111.8663362, + "latitude": 40.62210005, + "phone": "8015660424", + "website_url": "http://www.hoppersbrewpub.com", + "state": "Utah", + "street": "890 E Fort Union Blvd" + }, + { + "id": "053d96fd-337c-4d7d-9a18-2ed997b4f6b5", + "name": "Hoppin' Frog Brewing Co", + "brewery_type": "micro", + "address_1": "1680 E Waterloo Rd Ste F", + "address_2": null, + "address_3": null, + "city": "Akron", + "state_province": "Ohio", + "postal_code": "44306-4523", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.hoppinfrog.com", + "state": "Ohio", + "street": "1680 E Waterloo Rd Ste F" + }, + { + "id": "b11b2594-f5ba-4586-9b45-fe81be3af157", + "name": "Hopping Gnome Brewing Company", + "brewery_type": "micro", + "address_1": "1710 E Douglas Ave", + "address_2": null, + "address_3": null, + "city": "Wichita", + "state_province": "Kansas", + "postal_code": "67214-4212", + "country": "United States", + "longitude": -97.3335112, + "latitude": 37.6860464, + "phone": null, + "website_url": "http://www.hoppinggnome.com", + "state": "Kansas", + "street": "1710 E Douglas Ave" + }, + { + "id": "19f2790e-12d0-4ff1-aa5b-e029111e1541", + "name": "Hoppy Brewing Co", + "brewery_type": "brewpub", + "address_1": "2425 24th St", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95819-4619", + "country": "United States", + "longitude": -121.4812078, + "latitude": 38.55962229, + "phone": "9164514677", + "website_url": "http://www.hoppy.com", + "state": "California", + "street": "2425 24th St" + }, + { + "id": "9724e0dd-bda2-4375-8baa-c2a83e33eca0", + "name": "Hoppy Trout Brewing Company", + "brewery_type": "brewpub", + "address_1": "911 Main St", + "address_2": null, + "address_3": null, + "city": "Andrews", + "state_province": "North Carolina", + "postal_code": "28901-7087", + "country": "United States", + "longitude": -83.8165709, + "latitude": 35.2016188, + "phone": "8288352111", + "website_url": "http://www.hoppytroutbrewing.com", + "state": "North Carolina", + "street": "911 Main St" + }, + { + "id": "de52f2b1-2821-4958-937c-37296e25fcf2", + "name": "Hops & Grain Brewing", + "brewery_type": "micro", + "address_1": "507 Calles St Ste 101", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78702-3954", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5129142467", + "website_url": "http://www.hopsandgrain.com", + "state": "Texas", + "street": "507 Calles St Ste 101" + }, + { + "id": "ca201290-5cfa-4b87-8231-e7cc86672895", + "name": "Hops and Growlers", + "brewery_type": "micro", + "address_1": "2339 Government St", + "address_2": null, + "address_3": null, + "city": "Ocean Springs", + "state_province": "Mississippi", + "postal_code": "39564", + "country": "United States", + "longitude": -88.8090062, + "latitude": 30.41364785, + "phone": "2283345585", + "website_url": "http://www.hopsandgrowlers.com", + "state": "Mississippi", + "street": "2339 Government St" + }, + { + "id": "5e1386c5-7e61-4b0c-b169-1cab682478c6", + "name": "Hops and Leisure", + "brewery_type": "contract", + "address_1": "1225 Robruck Dr # A", + "address_2": null, + "address_3": null, + "city": "Oconomowoc", + "state_province": "Wisconsin", + "postal_code": "53066-4446", + "country": "United States", + "longitude": -88.4785191, + "latitude": 43.09224436, + "phone": "2625678536", + "website_url": "http://www.hopsandleisure.com", + "state": "Wisconsin", + "street": "1225 Robruck Dr # A" + }, + { + "id": "2f0b4ff8-1d26-4449-b278-e34df9e7aecb", + "name": "Hops and Pops", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Middleburg", + "state_province": "Virginia", + "postal_code": "20117", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5406876539", + "website_url": null, + "state": "Virginia", + "street": null + }, + { + "id": "b7b10f9b-f5e3-444b-94b3-05d9357ac15d", + "name": "Hops Brewery", + "brewery_type": "brewpub", + "address_1": "3507 Central Ave NE", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87106", + "country": "United States", + "longitude": -106.6053016, + "latitude": 35.0800564, + "phone": "5053691378", + "website_url": null, + "state": "New Mexico", + "street": "3507 Central Ave NE" + }, + { + "id": "7769544b-1b3f-4d16-b0a6-3f77e45824a4", + "name": "Hops Grillhouse and Brewery", + "brewery_type": "contract", + "address_1": "3625 Jefferson Davis Hwy", + "address_2": null, + "address_3": null, + "city": "Alexandria", + "state_province": "Virginia", + "postal_code": "22305-3133", + "country": "United States", + "longitude": -77.0523751, + "latitude": 38.8399578, + "phone": "7038379107", + "website_url": "http://www.hopsrestaurants.com", + "state": "Virginia", + "street": "3625 Jefferson Davis Hwy" + }, + { + "id": "b04839a2-bcdb-4f5b-9e6b-8e47abb28974", + "name": "Hops Hollow Craft Brewery", + "brewery_type": "brewpub", + "address_1": "Milestone 22.2 Long Tom Pass R37", + "address_2": null, + "address_3": null, + "city": "Lydenburg", + "state_province": "Mpumalanga", + "postal_code": "1120", + "country": "South Africa", + "longitude": 30.5516, + "latitude": -25.2018, + "phone": "+27 13 235 8910", + "website_url": "https://www.hopshollow.com/", + "state": "Mpumalanga", + "street": "Milestone 22.2 Long Tom Pass R37" + }, + { + "id": "efd73076-9808-46b8-8a58-c490fca726df", + "name": "Hops, Bitters, And Mash", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Allen Park", + "state_province": "Michigan", + "postal_code": "48101-2539", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": null + }, + { + "id": "6dfe19cd-23eb-43f3-a062-5e68bab19f50", + "name": "HopSaint Brewing Company", + "brewery_type": "brewpub", + "address_1": "5160 W 190th St", + "address_2": null, + "address_3": null, + "city": "Torrance", + "state_province": "California", + "postal_code": "90503-1005", + "country": "United States", + "longitude": -118.367733, + "latitude": 33.8577324, + "phone": "3102144611", + "website_url": "http://www.hopsaint.com", + "state": "California", + "street": "5160 W 190th St" + }, + { + "id": "1e49519f-16fc-4641-8b9c-1c883cf03d12", + "name": "HopScratch Farm & Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Harwood", + "state_province": "Maryland", + "postal_code": "20776", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Maryland", + "street": null + }, + { + "id": "1d6422dd-e5b1-4b6a-99b0-d0e349e1b7d3", + "name": "Hopshire Farm and Brewery", + "brewery_type": "micro", + "address_1": "1771 Dryden Rd", + "address_2": null, + "address_3": null, + "city": "Freeville", + "state_province": "New York", + "postal_code": "13068-", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6072791243", + "website_url": "http://www.hopshire.com", + "state": "New York", + "street": "1771 Dryden Rd" + }, + { + "id": "3ed3c518-7c88-4322-b8c9-cb37474be6f3", + "name": "Hopskeller Brewing Company", + "brewery_type": "brewpub", + "address_1": "116 E 3rd St", + "address_2": null, + "address_3": null, + "city": "Waterloo", + "state_province": "Illinois", + "postal_code": "62298-1608", + "country": "United States", + "longitude": -90.14850267, + "latitude": 38.33521743, + "phone": "6189392337", + "website_url": "http://www.hopskeller.com", + "state": "Illinois", + "street": "116 E 3rd St" + }, + { + "id": "19daae01-234c-471b-8541-5ec2ebda543f", + "name": "Hopsters", + "brewery_type": "brewpub", + "address_1": "292 Centre St", + "address_2": null, + "address_3": null, + "city": "Newton", + "state_province": "Massachusetts", + "postal_code": "02458-1618", + "country": "United States", + "longitude": -71.1852104, + "latitude": 42.3560516, + "phone": "6179160752", + "website_url": "http://www.hopstersbrew.com", + "state": "Massachusetts", + "street": "292 Centre St" + }, + { + "id": "99bfdf22-d4ed-49c9-8301-950dc6ad3c87", + "name": "Hopsters Co-operative Brewery", + "brewery_type": "micro", + "address_1": "198 Enmore Road", + "address_2": null, + "address_3": null, + "city": "Enmore", + "state_province": "NSW", + "postal_code": "2042", + "country": "Australia", + "longitude": 151.1717076, + "latitude": -33.8992701, + "phone": null, + "website_url": "http://www.hopsters.coop/", + "state": "NSW", + "street": "198 Enmore Road" + }, + { + "id": "57d4ae82-efea-44e8-8871-743ddb115857", + "name": "Hopstix", + "brewery_type": "brewpub", + "address_1": "3404 Pierce Dr NE", + "address_2": null, + "address_3": null, + "city": "Chamblee", + "state_province": "Georgia", + "postal_code": "30341-2444", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6788882306", + "website_url": "http://www.hopstix.com", + "state": "Georgia", + "street": "3404 Pierce Dr NE" + }, + { + "id": "42ff0098-10cf-4c8a-af0c-ddacd0c59717", + "name": "Hoptimystic Brewing", + "brewery_type": "micro", + "address_1": "31 River Rd", + "address_2": null, + "address_3": null, + "city": "Sunapee", + "state_province": "New Hampshire", + "postal_code": "03782", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6037630341", + "website_url": null, + "state": "New Hampshire", + "street": "31 River Rd" + }, + { + "id": "5b49ceea-89f9-4f40-967a-d1379daf8f80", + "name": "Hopvine Brewing Company", + "brewery_type": "brewpub", + "address_1": "4030 Fox Valley Center Dr", + "address_2": null, + "address_3": null, + "city": "Aurora", + "state_province": "Illinois", + "postal_code": "60504-4109", + "country": "United States", + "longitude": -88.21364002, + "latitude": 41.76082292, + "phone": "6302296030", + "website_url": "http://www.hopvinebrewingcompany.com", + "state": "Illinois", + "street": "4030 Fox Valley Center Dr" + }, + { + "id": "bc8fdd30-e644-4b4a-a05b-41857bc8e0ad", + "name": "Hopworks Urban Brewery", + "brewery_type": "micro", + "address_1": "2944 SE Powell Blvd", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97202-2054", + "country": "United States", + "longitude": -122.634827, + "latitude": 45.4968753, + "phone": "5032324677", + "website_url": "http://www.hopworksbeer.com", + "state": "Oregon", + "street": "2944 SE Powell Blvd" + }, + { + "id": "a8dc325e-aa85-4eea-bde2-a7a9e89b7bcc", + "name": "Hopworks Urban Brewery - Vancouver", + "brewery_type": "micro", + "address_1": "17707 SE Mill Plain Blvd", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98683-7578", + "country": "United States", + "longitude": -122.5483264, + "latitude": 45.6202601, + "phone": "5032324677", + "website_url": "https://www.hopworksbeer.com", + "state": "Washington", + "street": "17707 SE Mill Plain Blvd" + }, + { + "id": "bdaa5724-aa0a-470f-9a3b-ad21d434f43d", + "name": "Hoquiam Brewing Company", + "brewery_type": "micro", + "address_1": "526 8th St", + "address_2": null, + "address_3": null, + "city": "Hoquiam", + "state_province": "Washington", + "postal_code": "98550-3521", + "country": "United States", + "longitude": -123.8865612, + "latitude": 46.97536712, + "phone": "3606378252", + "website_url": "http://www.hoquiambrews.com", + "state": "Washington", + "street": "526 8th St" + }, + { + "id": "0938598a-808e-4d37-98ef-d38539e19a7f", + "name": "Hornbug Brewing Company", + "brewery_type": "micro", + "address_1": "165 Peterborough Road", + "address_2": null, + "address_3": null, + "city": "Hancock", + "state_province": "New Hampshire", + "postal_code": "03449-6011", + "country": "United States", + "longitude": -71.9689697, + "latitude": 42.94829817, + "phone": "7814024308", + "website_url": "http://www.hornburgbrewingcompany.com/", + "state": "New Hampshire", + "street": "165 Peterborough Road" + }, + { + "id": "90584a88-c47c-40e5-bbac-60dccbb39cc5", + "name": "Horny Toad Brewing Co, LLC", + "brewery_type": "micro", + "address_1": "313 Edward St", + "address_2": null, + "address_3": null, + "city": "Rowena", + "state_province": "Texas", + "postal_code": "76875-3609", + "country": "United States", + "longitude": -100.0465467, + "latitude": 31.64750518, + "phone": "3252121177", + "website_url": "http://www.hornytoadbrewery.com", + "state": "Texas", + "street": "313 Edward St" + }, + { + "id": "b302bba4-5c90-4ab5-a9ae-f935ccd19059", + "name": "Horse & Dragon Brewing Company", + "brewery_type": "micro", + "address_1": "124 Racquette Dr", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80524-2757", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9706318038", + "website_url": "http://www.horseanddragonbrewing.com", + "state": "Colorado", + "street": "124 Racquette Dr" + }, + { + "id": "4afaf336-af79-49e2-b2d1-69f5cb920f28", + "name": "Horse Heaven Hills Brewery", + "brewery_type": "micro", + "address_1": "1118 Meade Ave", + "address_2": null, + "address_3": null, + "city": "Prosser", + "state_province": "Washington", + "postal_code": "99350", + "country": "United States", + "longitude": -119.7706331, + "latitude": 46.20447447, + "phone": "5097816400", + "website_url": "http://www.horseheavenhillsbrewery.com", + "state": "Washington", + "street": "1118 Meade Ave" + }, + { + "id": "abc32f81-11fb-43ca-8f37-04b62a3e0d5c", + "name": "Horse Thief Hollow Brewery", + "brewery_type": "brewpub", + "address_1": "10426 S Western Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60643-2508", + "country": "United States", + "longitude": -87.68195116, + "latitude": 41.70388555, + "phone": "7737792739", + "website_url": "http://www.horsethiefbrewing.com", + "state": "Illinois", + "street": "10426 S Western Ave" + }, + { + "id": "e62e0505-9735-4210-97bf-1ac0ca3b15e6", + "name": "Horsefly Brewing Co", + "brewery_type": "brewpub", + "address_1": "846 E Main St", + "address_2": null, + "address_3": null, + "city": "Montrose", + "state_province": "Colorado", + "postal_code": "81401-3938", + "country": "United States", + "longitude": -107.871306, + "latitude": 38.48272365, + "phone": "9702496889", + "website_url": "http://www.horseflybrewing.com", + "state": "Colorado", + "street": "846 E Main St" + }, + { + "id": "23a84148-cfda-4d2e-be3f-d2148c1a0f37", + "name": "Horus Aged Ales", + "brewery_type": "closed", + "address_1": "4040 Calle Platino Ste 120", + "address_2": null, + "address_3": null, + "city": "Oceanside", + "state_province": "California", + "postal_code": "92056-5859", + "country": "United States", + "longitude": -117.295494, + "latitude": 33.20716989, + "phone": "3103475685", + "website_url": "http://www.horusbeer.com", + "state": "California", + "street": "4040 Calle Platino Ste 120" + }, + { + "id": "2ffeece0-e295-46d9-8f2f-9f898e41d80a", + "name": "Hoster Brewing Co", + "brewery_type": "contract", + "address_1": "760 Harmon Ave", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43223", + "country": "United States", + "longitude": -83.01615373, + "latitude": 39.94440869, + "phone": "6142213606", + "website_url": "http://www.hosterbeer.com", + "state": "Ohio", + "street": "760 Harmon Ave" + }, + { + "id": "b9510416-73b8-47ff-a8d7-c2a9a654c75d", + "name": "Hound & Stag Brewing Co.", + "brewery_type": "micro", + "address_1": "13 Wrights Place", + "address_2": null, + "address_3": null, + "city": "Arundel", + "state_province": "QLD", + "postal_code": "4214", + "country": "Australia", + "longitude": 153.3814694, + "latitude": -27.9348471, + "phone": "+61 423 103 076", + "website_url": "https://www.houndnstag.com.au/", + "state": "QLD", + "street": "13 Wrights Place" + }, + { + "id": "9ce8a190-c62a-40bd-826d-858a51c4f700", + "name": "Hourglass Brewing", + "brewery_type": "micro", + "address_1": "480 S Ronald Reagan Blvd Ste 1020", + "address_2": null, + "address_3": null, + "city": "Longwood", + "state_province": "Florida", + "postal_code": "32750-5498", + "country": "United States", + "longitude": -81.3450528, + "latitude": 28.70366681, + "phone": "4072620056", + "website_url": "http://www.HourglassBrewing.com", + "state": "Florida", + "street": "480 S Ronald Reagan Blvd Ste 1020" + }, + { + "id": "fb1c69b9-977d-4797-919c-e0358fb6bde4", + "name": "Housatonic River Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "New Milford", + "state_province": "Connecticut", + "postal_code": "06776-3404", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8609460266", + "website_url": "http://www.housatonicriverbrewing.com", + "state": "Connecticut", + "street": null + }, + { + "id": "bfa37b0d-5331-41c2-979b-ac68cfb07eeb", + "name": "House 6 Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Ashburn", + "state_province": "Virginia", + "postal_code": "20147", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5855205710", + "website_url": "http://www.house6brewing.com", + "state": "Virginia", + "street": null + }, + { + "id": "250e1138-e7eb-4879-bd47-edc7b2d943e1", + "name": "House Beer", + "brewery_type": "proprietor", + "address_1": "219 Rose Ave", + "address_2": null, + "address_3": null, + "city": "Venice", + "state_province": "California", + "postal_code": "90291-2567", + "country": "United States", + "longitude": -118.4775319, + "latitude": 33.99631992, + "phone": "3103103331", + "website_url": "http://www.housebeer.us", + "state": "California", + "street": "219 Rose Ave" + }, + { + "id": "2482f3b6-eb54-4b4b-af1a-7f5bf6cc188d", + "name": "House Cat Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Frederick", + "state_province": "Maryland", + "postal_code": "21704", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3016050733", + "website_url": null, + "state": "Maryland", + "street": null + }, + { + "id": "84534d53-9739-4eea-bbe6-ff80ca5d0d9f", + "name": "House of Brews", + "brewery_type": "micro", + "address_1": "4539 Helgesen Dr", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Wisconsin", + "postal_code": "53718-6747", + "country": "United States", + "longitude": -89.3053312, + "latitude": 43.0662949, + "phone": "6083477243", + "website_url": null, + "state": "Wisconsin", + "street": "4539 Helgesen Dr" + }, + { + "id": "a9dfce2a-48e2-4315-8281-07d11d8b5878", + "name": "House Of Pendragon Brewing Co", + "brewery_type": "micro", + "address_1": "1849 Industrial Way Ste 103", + "address_2": null, + "address_3": null, + "city": "Sanger", + "state_province": "California", + "postal_code": "93657-8727", + "country": "United States", + "longitude": -119.5496094, + "latitude": 36.68923442, + "phone": "5593467786", + "website_url": "http://www.hopbeer.com", + "state": "California", + "street": "1849 Industrial Way Ste 103" + }, + { + "id": "6efacac4-73ee-4c49-8ef1-bf8cd03fb072", + "name": "Howell's MainStreet Winery, Brewery & Pizzeria", + "brewery_type": "brewpub", + "address_1": "201 W Grand River Ave", + "address_2": null, + "address_3": null, + "city": "Howell", + "state_province": "Michigan", + "postal_code": "48843-2238", + "country": "United States", + "longitude": -83.93080102, + "latitude": 42.60768396, + "phone": "5175459463", + "website_url": "http://www.howellsmainstreetwinery.com", + "state": "Michigan", + "street": "201 W Grand River Ave" + }, + { + "id": "24a24d6f-2fcc-46a3-85c6-96f2ef234307", + "name": "HRG Management, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Hartford", + "state_province": "Connecticut", + "postal_code": "06109", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Connecticut", + "street": null + }, + { + "id": "0d053ee5-78ec-4087-b82b-a2fa796144b4", + "name": "Hubbleton Brewing", + "brewery_type": "micro", + "address_1": "W10445 Hubbleton Rd", + "address_2": null, + "address_3": null, + "city": "Waterloo", + "state_province": "Wisconsin", + "postal_code": "53594", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9202537141", + "website_url": null, + "state": "Wisconsin", + "street": "W10445 Hubbleton Rd" + }, + { + "id": "86844328-44bd-4af1-92e8-dc417c3c63f7", + "name": "Hubrew Beer", + "brewery_type": "micro", + "address_1": "3463 State Hwy FF", + "address_2": null, + "address_3": null, + "city": "Jackson", + "state_province": "Missouri", + "postal_code": "63755", + "country": "United States", + "longitude": -89.639478, + "latitude": 37.448863, + "phone": "5732044164", + "website_url": null, + "state": "Missouri", + "street": "3463 State Hwy FF" + }, + { + "id": "6d718d37-3a1f-4eff-91da-6857bbe5756b", + "name": "Hubs", + "brewery_type": "bar", + "address_1": "889 East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "459092", + "country": "Singapore", + "longitude": 1.312782811522, + "latitude": 103.9239284, + "phone": "+65 6908 8037", + "website_url": "https://hubs.sg/", + "state": "Singapore", + "street": "889 East Coast Road" + }, + { + "id": "88a92055-2ca5-40d7-8f6c-d6f7b28b6fa7", + "name": "Huckleberry Brewing Company", + "brewery_type": "micro", + "address_1": "4724 Sterkx Rd", + "address_2": null, + "address_3": null, + "city": "Alexandria", + "state_province": "Louisiana", + "postal_code": "71301", + "country": "United States", + "longitude": -92.45332257, + "latitude": 31.26477666, + "phone": "3187046833", + "website_url": "http://www.huckleberrybrewingco.com", + "state": "Louisiana", + "street": "4724 Sterkx Rd" + }, + { + "id": "8562e8b8-0126-41f1-b00f-4fb3c4b90ef9", + "name": "Hudson Ale Works", + "brewery_type": "brewpub", + "address_1": "17 Milton Ave", + "address_2": null, + "address_3": null, + "city": "Highland", + "state_province": "New York", + "postal_code": "12528-1409", + "country": "United States", + "longitude": -73.96390393, + "latitude": 41.717539, + "phone": "8453842531", + "website_url": "http://www.hudsonaleworks.com", + "state": "New York", + "street": "17 Milton Ave" + }, + { + "id": "51efc15a-7376-436d-baa9-07da93bd5705", + "name": "Hudson Brewing", + "brewery_type": "micro", + "address_1": "28 Gibbs Street", + "address_2": null, + "address_3": null, + "city": "Wynnum", + "state_province": "QLD", + "postal_code": "4178", + "country": "Australia", + "longitude": 153.1670065, + "latitude": -27.4407345, + "phone": null, + "website_url": "https://hudsonbrewing.com.au/", + "state": "QLD", + "street": "28 Gibbs Street" + }, + { + "id": "4600fee8-4518-45cb-b4a7-89979b742829", + "name": "Hudson Valley Brewery", + "brewery_type": "micro", + "address_1": "7 E Main St", + "address_2": null, + "address_3": null, + "city": "Beacon", + "state_province": "New York", + "postal_code": "12508-3301", + "country": "United States", + "longitude": -73.9630491, + "latitude": 41.5016501, + "phone": "8452189156", + "website_url": "http://www.hudsonvalleybrewery.com", + "state": "New York", + "street": "7 E Main St" + }, + { + "id": "ac178aef-9c40-4f64-b54f-1ebeb09dfb26", + "name": "Huebert Brewing Co.", + "brewery_type": "closed", + "address_1": "421 SW 26th St", + "address_2": null, + "address_3": null, + "city": "Oklahoma City", + "state_province": "Oklahoma", + "postal_code": "73109-6712", + "country": "United States", + "longitude": -97.52025365, + "latitude": 35.4384292, + "phone": "4056346528", + "website_url": null, + "state": "Oklahoma", + "street": "421 SW 26th St" + }, + { + "id": "3d084c65-4169-47ed-99e4-eda7aab979e8", + "name": "Huff Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "9805 Koehn Rd", + "address_2": null, + "address_3": null, + "city": "Bellville", + "state_province": "Texas", + "postal_code": "77418-7327", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.huffbrewing.com", + "state": "Texas", + "street": "9805 Koehn Rd" + }, + { + "id": "5da052ee-3285-4b86-be50-4cedfb00ffb5", + "name": "Hugger Mugger Brewing Company", + "brewery_type": "micro", + "address_1": "229 Wicker St", + "address_2": null, + "address_3": null, + "city": "Sanford", + "state_province": "North Carolina", + "postal_code": "27330", + "country": "United States", + "longitude": -79.17896314, + "latitude": 35.47890286, + "phone": null, + "website_url": "http://www.huggermuggerbrewing.com", + "state": "North Carolina", + "street": "229 Wicker St" + }, + { + "id": "b25a0380-2356-4529-b04e-d844eb73858f", + "name": "Hullabaloo Diner", + "brewery_type": "brewpub", + "address_1": "15045 FM 2154 Rd", + "address_2": null, + "address_3": null, + "city": "College Station", + "state_province": "Texas", + "postal_code": "77845-3345", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9796903002", + "website_url": null, + "state": "Texas", + "street": "15045 FM 2154 Rd" + }, + { + "id": "4aa4d89c-fb2a-403f-94a8-9c82d5515b71", + "name": "Human Village Brewing Co.", + "brewery_type": "micro", + "address_1": "148 S Broadway", + "address_2": null, + "address_3": null, + "city": "Pitman", + "state_province": "New Jersey", + "postal_code": "08071-2232", + "country": "United States", + "longitude": -75.1291588, + "latitude": 39.7304838, + "phone": "8565560639", + "website_url": "http://www.humanvillagebrewingco.com", + "state": "New Jersey", + "street": "148 S Broadway" + }, + { + "id": "6e89294b-68f9-4af9-a5e8-f729a7adbc6e", + "name": "Humble Abode Brewery", + "brewery_type": "micro", + "address_1": "1620 E Houston Ave Ste 800", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99217", + "country": "United States", + "longitude": -117.3850304, + "latitude": 47.71699977, + "phone": "5093815055", + "website_url": "https://humbleabodebrewing.square.site", + "state": "Washington", + "street": "1620 E Houston Ave Ste 800" + }, + { + "id": "f55eff77-f0cd-47bf-8797-5b2616143de0", + "name": "Humble Farmer Brewing Co.", + "brewery_type": "brewpub", + "address_1": "116 S Imperial Ave Ste C", + "address_2": null, + "address_3": null, + "city": "Imperial", + "state_province": "California", + "postal_code": "92251-1666", + "country": "United States", + "longitude": -115.376274, + "latitude": 32.80994985, + "phone": "7605450037", + "website_url": null, + "state": "California", + "street": "116 S Imperial Ave Ste C" + }, + { + "id": "a10547aa-605d-44ae-be4e-7c55e7268b03", + "name": "Humble Farmer Brewing Co., Inc.", + "brewery_type": "micro", + "address_1": "438 Walnut Ave", + "address_2": null, + "address_3": null, + "city": "Holtville", + "state_province": "California", + "postal_code": "92250-1343", + "country": "United States", + "longitude": -115.376335, + "latitude": 32.8093331, + "phone": "7603567066", + "website_url": "http://www.humblefarmerbrewing.com", + "state": "California", + "street": "438 Walnut Ave" + }, + { + "id": "21c8faee-c122-4f6f-9bcb-3f5374bead5a", + "name": "Humble Sea Brewing Co", + "brewery_type": "brewpub", + "address_1": "820 Swift St", + "address_2": null, + "address_3": null, + "city": "Santa Cruz", + "state_province": "California", + "postal_code": "95060-5866", + "country": "United States", + "longitude": -122.0490197, + "latitude": 36.9595996, + "phone": "8314316189", + "website_url": "http://www.humblesea.com", + "state": "California", + "street": "820 Swift St" + }, + { + "id": "3755c966-863d-4e8c-bd5c-04200b609899", + "name": "Humboldt Regeneration", + "brewery_type": "micro", + "address_1": "2320 Central Ave Ste F", + "address_2": null, + "address_3": null, + "city": "McKinleyville", + "state_province": "California", + "postal_code": "95519-3682", + "country": "United States", + "longitude": -124.1018943, + "latitude": 40.94775864, + "phone": "7077388225", + "website_url": "http://www.humboldtregeneration.com", + "state": "California", + "street": "2320 Central Ave Ste F" + }, + { + "id": "784d9af0-defa-4322-8121-cd8fe6ae7e19", + "name": "Humboldt Springs Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Eureka", + "state_province": "California", + "postal_code": "95501", + "country": "United States", + "longitude": -124.1636729, + "latitude": 40.8020712, + "phone": "7074993050", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "0bfe25c6-fedf-4c8d-bb37-b6c37be4b667", + "name": "Humperdinks - Arlington", + "brewery_type": "brewpub", + "address_1": "700 Six Flags Dr", + "address_2": null, + "address_3": null, + "city": "Arlington", + "state_province": "Texas", + "postal_code": "76011-6327", + "country": "United States", + "longitude": -97.0769526, + "latitude": 32.7497637, + "phone": "8176408553", + "website_url": "http://www.humperdinks.com", + "state": "Texas", + "street": "700 Six Flags Dr" + }, + { + "id": "f9e4a98f-a333-4f66-826a-6af127c1fdb7", + "name": "Humperdinks - Dallas (Greenville)", + "brewery_type": "brewpub", + "address_1": "6050 Greenville Ave", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75206-1909", + "country": "United States", + "longitude": -96.76798455, + "latitude": 32.8586789, + "phone": "2143681203", + "website_url": "http://www.humperdinks.com", + "state": "Texas", + "street": "6050 Greenville Ave" + }, + { + "id": "247250ee-18e2-4d05-b522-cd78444e34c9", + "name": "Humperdinks Restaurant", + "brewery_type": "brewpub", + "address_1": "2208 W Northwest Hwy", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75220-4305", + "country": "United States", + "longitude": -96.89898835, + "latitude": 32.8637821, + "phone": "2143584159", + "website_url": "http://www.humperdinks.com", + "state": "Texas", + "street": "2208 W Northwest Hwy" + }, + { + "id": "5b39343d-ac51-48b3-b7fe-db6cd1989291", + "name": "Humpy's Great Alaskan Alehouse", + "brewery_type": "contract", + "address_1": "610 W 6th Ave", + "address_2": null, + "address_3": null, + "city": "Anchorage", + "state_province": "Alaska", + "postal_code": "99501-2225", + "country": "United States", + "longitude": -149.8938928, + "latitude": 61.216502, + "phone": "9072762337", + "website_url": "http://www.humpysalaska.com", + "state": "Alaska", + "street": "610 W 6th Ave" + }, + { + "id": "a9913878-49ec-44c4-83cd-13fdaf56c17b", + "name": "Hunga Dunga Brewing", + "brewery_type": "brewpub", + "address_1": "333 N Jackson St", + "address_2": null, + "address_3": null, + "city": "Moscow", + "state_province": "Idaho", + "postal_code": "83843-2065", + "country": "United States", + "longitude": -117.0027808, + "latitude": 46.7344955, + "phone": "2085964855", + "website_url": "http://www.hungadungabrewing.com", + "state": "Idaho", + "street": "333 N Jackson St" + }, + { + "id": "2caa7307-e994-482a-a10f-f82087ff582f", + "name": "Hungry Hollow Brewing Company", + "brewery_type": "micro", + "address_1": "14396 FR 2140", + "address_2": null, + "address_3": null, + "city": "Cassville", + "state_province": "Missouri", + "postal_code": "65625", + "country": "United States", + "longitude": -93.831482, + "latitude": 36.757718, + "phone": "4173422072", + "website_url": "http://www.hungryhollowbrewing.com", + "state": "Missouri", + "street": "14396 FR 2140" + }, + { + "id": "4b8ade34-41a6-4afa-a757-b37dbea62e57", + "name": "Hunter Gatherer Brewery and Alehouse", + "brewery_type": "brewpub", + "address_1": "900 Main St", + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "South Carolina", + "postal_code": "29201-3964", + "country": "United States", + "longitude": -81.0315874, + "latitude": 33.997366, + "phone": "8037480540", + "website_url": "http://www.huntergathererbrewery.com", + "state": "South Carolina", + "street": "900 Main St" + }, + { + "id": "a488e5b0-f8ac-43b0-9851-e9c21b10568d", + "name": "Hunter's Ale House", + "brewery_type": "brewpub", + "address_1": "4855 E Blue Grass Rd", + "address_2": null, + "address_3": null, + "city": "Mount Pleasant", + "state_province": "Michigan", + "postal_code": "48858-7527", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9897792626", + "website_url": null, + "state": "Michigan", + "street": "4855 E Blue Grass Rd" + }, + { + "id": "1ae079e7-be69-48e8-b4c8-efb3a4cfcc91", + "name": "Hunter's Brewing", + "brewery_type": "brewpub", + "address_1": "1535 S Calumet Rd", + "address_2": null, + "address_3": null, + "city": "Chesterton", + "state_province": "Indiana", + "postal_code": "46304-3301", + "country": "United States", + "longitude": -87.0475184, + "latitude": 41.5971593, + "phone": "2197286729", + "website_url": null, + "state": "Indiana", + "street": "1535 S Calumet Rd" + }, + { + "id": "54f06f0e-9f92-40c1-9920-6a87db8626bb", + "name": "Huntington Beach Beer Co", + "brewery_type": "brewpub", + "address_1": "201 Main St Ste E", + "address_2": null, + "address_3": null, + "city": "Huntington Beach", + "state_province": "California", + "postal_code": "92648-8110", + "country": "United States", + "longitude": -118.0012223, + "latitude": 33.65845972, + "phone": "7149605343", + "website_url": "http://www.hbbeerco.com", + "state": "California", + "street": "201 Main St Ste E" + }, + { + "id": "2db716e2-28fb-4db3-95de-11a5d86a29d6", + "name": "Hunyuck Brew Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Oakdale", + "state_province": "Minnesota", + "postal_code": "55128-2276", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6514915066", + "website_url": "http://www.hunyuckbrewco.com", + "state": "Minnesota", + "street": null + }, + { + "id": "48c4fc12-7c05-4a6a-8771-135bd810f38a", + "name": "Hurst Brewery", + "brewery_type": "brewpub", + "address_1": "College Lane", + "address_2": null, + "address_3": null, + "city": "Hassocks", + "state_province": "West Sussex", + "postal_code": "BN6 9JT", + "country": "England", + "longitude": -0.161461, + "latitude": 50.941632, + "phone": "7866438953", + "website_url": "http://www.hurstbrewery.com/", + "state": "West Sussex", + "street": "College Lane" + }, + { + "id": "390f8036-dad5-49da-845e-2f93db0cc19d", + "name": "Huske Hardware House Brewing Co", + "brewery_type": "brewpub", + "address_1": "405 Hay St", + "address_2": null, + "address_3": null, + "city": "Fayetteville", + "state_province": "North Carolina", + "postal_code": "28301-5537", + "country": "United States", + "longitude": -78.88249131, + "latitude": 35.05393051, + "phone": "9104265650", + "website_url": "http://www.huskehardware.com", + "state": "North Carolina", + "street": "405 Hay St" + }, + { + "id": "8c10201d-d42a-4573-9384-dd75d08255bd", + "name": "Huss Brewing", + "brewery_type": "micro", + "address_1": "1520 W Mineral Rd Ste 102", + "address_2": null, + "address_3": null, + "city": "Tempe", + "state_province": "Arizona", + "postal_code": "85283-4343", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4802647611", + "website_url": null, + "state": "Arizona", + "street": "1520 W Mineral Rd Ste 102" + }, + { + "id": "601b1ef6-a25a-4a22-998b-44eb110d0ca1", + "name": "Hutton & Smith Brewing Company", + "brewery_type": "micro", + "address_1": "431 E Martin Luther King Blvd # 120", + "address_2": null, + "address_3": null, + "city": "Chattanooga", + "state_province": "Tennessee", + "postal_code": "37403", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4237603600", + "website_url": "http://www.huttonandsmithbrewing.com", + "state": "Tennessee", + "street": "431 E Martin Luther King Blvd # 120" + }, + { + "id": "8dd50f12-b4db-4fc1-865a-345be886c67f", + "name": "HWY 50 Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Camino", + "state_province": "California", + "postal_code": "95709", + "country": "United States", + "longitude": -120.6749302, + "latitude": 38.7382366, + "phone": null, + "website_url": "http://www.hwy50brewery.com", + "state": "California", + "street": null + }, + { + "id": "7b6d1417-b858-4ec3-9b7a-c54b738e8750", + "name": "Hyde Brewing", + "brewery_type": "brewpub", + "address_1": "2911 Griffith St", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28203-5429", + "country": "United States", + "longitude": -80.86910602, + "latitude": 35.20083417, + "phone": "7046095363", + "website_url": "http://hydebrewing.com/", + "state": "North Carolina", + "street": "2911 Griffith St" + }, + { + "id": "d7f413d6-f2ac-46d2-a2da-6ec77476459b", + "name": "Hyde Park Brewing Co", + "brewery_type": "micro", + "address_1": "4076 Albany Post Rd", + "address_2": null, + "address_3": null, + "city": "Hyde Park", + "state_province": "New York", + "postal_code": "12538-1934", + "country": "United States", + "longitude": -73.93007747, + "latitude": 41.76674824, + "phone": "8452298277", + "website_url": "http://www.hydeparkbrewing.com", + "state": "New York", + "street": "4076 Albany Post Rd" + }, + { + "id": "6e978e0d-a64e-42de-9c9d-d04b5da5b021", + "name": "Hyperion Brewing", + "brewery_type": "micro", + "address_1": "1740 N Main St", + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Florida", + "postal_code": "32206-4404", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9045185131", + "website_url": "http://www.hyperionbrewing.com", + "state": "Florida", + "street": "1740 N Main St" + }, + { + "id": "21b41496-91a2-4372-8fd5-4be78e5152ab", + "name": "HyperNix Brewing", + "brewery_type": "micro", + "address_1": "64-86 Beresford Road", + "address_2": "Unit 17", + "address_3": null, + "city": "Lilydale", + "state_province": "VIC", + "postal_code": "3140", + "country": "Australia", + "longitude": 145.3451329, + "latitude": -37.7511644, + "phone": "+61 3 9739 7980", + "website_url": "http://www.hophenbrewing.com.au/", + "state": "VIC", + "street": "64-86 Beresford Road" + }, + { + "id": "973edf5b-0239-43fa-9c3d-640bb92a5225", + "name": "Hysteria Brewing Company", + "brewery_type": "micro", + "address_1": "9570 Berger Rd Ste J", + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "Maryland", + "postal_code": "21046-1559", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4103608319", + "website_url": "http://www.hysteriabrewing.com", + "state": "Maryland", + "street": "9570 Berger Rd Ste J" + }, + { + "id": "a1c9761d-6656-4e21-919e-8da7c2767842", + "name": "I & I Brewing", + "brewery_type": "micro", + "address_1": "5135 Edison Ave Ste 1", + "address_2": null, + "address_3": null, + "city": "Chino", + "state_province": "California", + "postal_code": "91710-5773", + "country": "United States", + "longitude": -117.6926224, + "latitude": 33.99719342, + "phone": "9095913915", + "website_url": "http://www.iandibrewing.com", + "state": "California", + "street": "5135 Edison Ave Ste 1" + }, + { + "id": "ad71e208-40a4-4f53-b3a5-a92df88d83f7", + "name": "IBC Brewery & Tasting Room", + "brewery_type": "micro", + "address_1": "3200 St Lucie Blvd", + "address_2": null, + "address_3": null, + "city": "Fort Pierce", + "state_province": "Florida", + "postal_code": "34946-6761", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3055089093", + "website_url": null, + "state": "Florida", + "street": "3200 St Lucie Blvd" + }, + { + "id": "8cae70ac-4b7d-4e78-9252-aa57d973dac9", + "name": "Icarus Brewing Company", + "brewery_type": "micro", + "address_1": "1790 Swarthmore Ave Unit 3 Lot 2", + "address_2": null, + "address_3": null, + "city": "Lakewood", + "state_province": "New Jersey", + "postal_code": "08701-4528", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.icarusbrewing.com", + "state": "New Jersey", + "street": "1790 Swarthmore Ave Unit 3 Lot 2" + }, + { + "id": "01ecbbdb-475c-40d0-a336-9951ac60e52e", + "name": "Ice Harbor Brewing Company", + "brewery_type": "brewpub", + "address_1": "206 N Benton St Ste C", + "address_2": null, + "address_3": null, + "city": "Kennewick", + "state_province": "Washington", + "postal_code": "99336-3608", + "country": "United States", + "longitude": -119.119238, + "latitude": 46.2111, + "phone": "5095825340", + "website_url": "http://www.iceharbor.com", + "state": "Washington", + "street": "206 N Benton St Ste C" + }, + { + "id": "feb525c5-293c-4e08-88b7-0005da6e8bea", + "name": "Ice Harbor Brewing Company at the Marina", + "brewery_type": "brewpub", + "address_1": "350 Clover Island Dr", + "address_2": null, + "address_3": null, + "city": "Kennewick", + "state_province": "Washington", + "postal_code": "99336-3678", + "country": "United States", + "longitude": -119.111368, + "latitude": 46.217631, + "phone": "5095863181", + "website_url": "http://www.iceharbor.com", + "state": "Washington", + "street": "350 Clover Island Dr" + }, + { + "id": "0f79930c-9395-4d3d-9611-a9b9f16c759a", + "name": "Icebox Brewing LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Las Cruces", + "state_province": "New Mexico", + "postal_code": "88007-4722", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5755267129", + "website_url": null, + "state": "New Mexico", + "street": null + }, + { + "id": "c2ad7c70-841a-47a0-b863-271f292ab056", + "name": "Icewind Brewing", + "brewery_type": "micro", + "address_1": "349 Knutson St Unit B", + "address_2": null, + "address_3": null, + "city": "Mapleton", + "state_province": "North Dakota", + "postal_code": "58059-4065", + "country": "United States", + "longitude": -97.04609108, + "latitude": 46.88200095, + "phone": "7012033579", + "website_url": "http://www.icewindbrewing.com", + "state": "North Dakota", + "street": "349 Knutson St Unit B" + }, + { + "id": "3581f90d-ae3d-4608-8f26-1d695d811946", + "name": "Icicle Brewing Co", + "brewery_type": "brewpub", + "address_1": "935 Front St", + "address_2": null, + "address_3": null, + "city": "Leavenworth", + "state_province": "Washington", + "postal_code": "98826-1427", + "country": "United States", + "longitude": -120.6597193, + "latitude": 47.5962501, + "phone": "5095482739", + "website_url": "http://www.iciclebrewing.com", + "state": "Washington", + "street": "935 Front St" + }, + { + "id": "5a0c4ee1-3be0-43fa-8bbd-45616b6554d2", + "name": "Iconyc Brewing Company", + "brewery_type": "micro", + "address_1": "45-13 34th Ave", + "address_2": null, + "address_3": null, + "city": "Long Island City", + "state_province": "New York", + "postal_code": "11101-1041", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3473421360", + "website_url": "http://www.iconycbrewing.com", + "state": "New York", + "street": "45-13 34th Ave" + }, + { + "id": "4614e14e-68ec-42b1-b972-598da619bf51", + "name": "Icy Strait Brewery", + "brewery_type": "micro", + "address_1": "286 Front St", + "address_2": null, + "address_3": null, + "city": "Hoonah", + "state_province": "Alaska", + "postal_code": "99829", + "country": "United States", + "longitude": -135.4464887, + "latitude": 58.11031874, + "phone": "9077235482", + "website_url": "http://icystraitbrewing.company", + "state": "Alaska", + "street": "286 Front St" + }, + { + "id": "27d4f742-12fa-46d0-b27f-a42af72e1180", + "name": "Idaho Brewing Co", + "brewery_type": "micro", + "address_1": "775 S Capital Ave", + "address_2": null, + "address_3": null, + "city": "Idaho Falls", + "state_province": "Idaho", + "postal_code": "83402-3965", + "country": "United States", + "longitude": -112.0459845, + "latitude": 43.48724009, + "phone": "2085897233", + "website_url": "http://www.idahobrewing.com", + "state": "Idaho", + "street": "775 S Capital Ave" + }, + { + "id": "6edb4abe-eb25-493c-a514-519cce61a91b", + "name": "IDK Beer Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lakewood", + "state_province": "Colorado", + "postal_code": "80228-4251", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "ac61b0f1-cb04-4362-9446-ad4ade13ec74", + "name": "Idle Hands Craft Ales", + "brewery_type": "micro", + "address_1": "89 Commercial St", + "address_2": null, + "address_3": null, + "city": "Malden", + "state_province": "Massachusetts", + "postal_code": "02148-5509", + "country": "United States", + "longitude": -71.07473084, + "latitude": 42.4243819, + "phone": "7813336070", + "website_url": "http://www.idlehandscraftales.com", + "state": "Massachusetts", + "street": "89 Commercial St" + }, + { + "id": "78f847f7-1c22-4110-82e8-399244097e38", + "name": "Idle Vine Brewing Company", + "brewery_type": "micro", + "address_1": "16920 Joe Barbee Dr", + "address_2": null, + "address_3": null, + "city": "Round Rock", + "state_province": "Texas", + "postal_code": "78664-2373", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5125273235", + "website_url": "http://www.IdleVineBrewery.com", + "state": "Texas", + "street": "16920 Joe Barbee Dr" + }, + { + "id": "16d20128-a551-4eb6-bb79-71b9c2943e35", + "name": "Idletyme Brewing Company", + "brewery_type": "brewpub", + "address_1": "1859 Mountain Rd", + "address_2": null, + "address_3": null, + "city": "Stowe", + "state_province": "Vermont", + "postal_code": "05672-4890", + "country": "United States", + "longitude": -72.698401, + "latitude": 44.473833, + "phone": "8022534765", + "website_url": "http://www.idletymebrewing.com", + "state": "Vermont", + "street": "1859 Mountain Rd" + }, + { + "id": "3a08cc13-e168-491d-8ae9-8de349b438eb", + "name": "Idol Beer Works", + "brewery_type": "micro", + "address_1": "100 S Sacramento St", + "address_2": null, + "address_3": null, + "city": "Lodi", + "state_province": "California", + "postal_code": "95240-3526", + "country": "United States", + "longitude": -121.2722, + "latitude": 38.1328, + "phone": null, + "website_url": "http://www.idolbeerworks.com", + "state": "California", + "street": "100 S Sacramento St" + }, + { + "id": "203fa65b-62d0-4e3c-bd62-48e06b9fb22f", + "name": "Idyll Hounds Brewing Company", + "brewery_type": "micro", + "address_1": "845 Serenoa Rd", + "address_2": null, + "address_3": null, + "city": "Santa Rosa Beach", + "state_province": "Florida", + "postal_code": "32459-5019", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Florida", + "street": "845 Serenoa Rd" + }, + { + "id": "4b96eb3a-b551-4204-9752-ffbf4c3592d7", + "name": "Idyllwild Brewpub", + "brewery_type": "brewpub", + "address_1": "54423 Village Center Dr", + "address_2": null, + "address_3": null, + "city": "Idyllwild", + "state_province": "California", + "postal_code": "92549", + "country": "United States", + "longitude": -116.711296, + "latitude": 33.7436195, + "phone": "9516590163", + "website_url": "http://www.idyllwildbrewpub.com", + "state": "California", + "street": "54423 Village Center Dr" + }, + { + "id": "28e57039-a0ad-4091-aa1f-d7ddb0297002", + "name": "Idylwilde Brewing", + "brewery_type": "micro", + "address_1": "116 Fawn Dr", + "address_2": null, + "address_3": null, + "city": "Carbondale", + "state_province": "Colorado", + "postal_code": "81623-9703", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9702746332", + "website_url": "http://idylwildebrewing.com", + "state": "Colorado", + "street": "116 Fawn Dr" + }, + { + "id": "f8866c52-c47d-4243-96db-9347944077fb", + "name": "Iechyd Da Brewing", + "brewery_type": "brewpub", + "address_1": "317 N Main St", + "address_2": null, + "address_3": null, + "city": "Elkhart", + "state_province": "Indiana", + "postal_code": "46516-3034", + "country": "United States", + "longitude": -85.97531332, + "latitude": 41.69004065, + "phone": "5742930506", + "website_url": "http://www.iechyddabrewingcompany.com", + "state": "Indiana", + "street": "317 N Main St" + }, + { + "id": "ab91cb99-55d9-48e4-96c9-77593a53a78c", + "name": "Ignite Brewing Company, Ltd.", + "brewery_type": "micro", + "address_1": "600 W Tuscarawas Ave", + "address_2": null, + "address_3": null, + "city": "Barberton", + "state_province": "Ohio", + "postal_code": "44203-2460", + "country": "United States", + "longitude": -81.61268, + "latitude": 41.012866, + "phone": "3306966881", + "website_url": "http://www.facebook.com/Ignitebrewingcompany", + "state": "Ohio", + "street": "600 W Tuscarawas Ave" + }, + { + "id": "0a187cd6-eafd-4c4e-869a-78d4bd9f59fc", + "name": "Ill Mannered Brewing Company", + "brewery_type": "micro", + "address_1": "38 Grace Dr", + "address_2": null, + "address_3": null, + "city": "Powell", + "state_province": "Ohio", + "postal_code": "43065-8466", + "country": "United States", + "longitude": -83.0740121, + "latitude": 40.1635259, + "phone": "614-859-6819", + "website_url": "http://www.illmanneredbeer.com/", + "state": "Ohio", + "street": "38 Grace Dr" + }, + { + "id": "c6e87f2a-227c-4549-ab73-aafcb5fd1fef", + "name": "ILL STYLEZ BREWING", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Freeport", + "state_province": "Illinois", + "postal_code": "61032-4761", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Illinois", + "street": null + }, + { + "id": "22e59bb4-690e-41f4-9d63-b65ad57452b1", + "name": "Illuminated Brew Works", + "brewery_type": "micro", + "address_1": "415 N Sangamon St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60642-6546", + "country": "United States", + "longitude": -87.65074933, + "latitude": 41.88958325, + "phone": "7737262874", + "website_url": "http://www.ibw-chicago.com", + "state": "Illinois", + "street": "415 N Sangamon St" + }, + { + "id": "61d70479-54b0-4c2a-ba13-b8d175ba6493", + "name": "Illuminati Brewing Company", + "brewery_type": "closed", + "address_1": "3950 Hammer Dr Ste 101", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98226-7776", + "country": "United States", + "longitude": -122.4560056, + "latitude": 48.7838573, + "phone": "3602207072", + "website_url": "http://www.illuminatibrewing.com", + "state": "Washington", + "street": "3950 Hammer Dr Ste 101" + }, + { + "id": "302e8ee4-1060-490c-8d68-f8dcc277d5d6", + "name": "Imagine Nation Brewing", + "brewery_type": "micro", + "address_1": "1151 W Broadway St", + "address_2": null, + "address_3": null, + "city": "Missoula", + "state_province": "Montana", + "postal_code": "59802-3916", + "country": "United States", + "longitude": -114.0099097, + "latitude": 46.8766353, + "phone": "4069261251", + "website_url": "http://www.imaginenationbrewing.com", + "state": "Montana", + "street": "1151 W Broadway St" + }, + { + "id": "81291016-df53-43a5-9e00-21269ac6b282", + "name": "IMBIB Custom Brews", + "brewery_type": "micro", + "address_1": "785 E 2nd St", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89502-1018", + "country": "United States", + "longitude": -119.8010403, + "latitude": 39.52744792, + "phone": "7753033385", + "website_url": "http://www.imbib.beer", + "state": "Nevada", + "street": "785 E 2nd St" + }, + { + "id": "ea885340-1209-4300-a66e-d272b929c6c5", + "name": "Immersion Brewing", + "brewery_type": "brewpub", + "address_1": "550 SW Industrial Way", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97702-1084", + "country": "United States", + "longitude": -121.3155231, + "latitude": 44.05100445, + "phone": "5416337821", + "website_url": "http://www.imbrewing.com", + "state": "Oregon", + "street": "550 SW Industrial Way" + }, + { + "id": "62baf078-a996-4fd5-8705-256badd33c0f", + "name": "Imminent Brewing", + "brewery_type": "micro", + "address_1": "519 Division St S Unit 2", + "address_2": null, + "address_3": null, + "city": "Northfield", + "state_province": "Minnesota", + "postal_code": "55057-2021", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5076462327", + "website_url": "http://www.imminentbrewing.com", + "state": "Minnesota", + "street": "519 Division St S Unit 2" + }, + { + "id": "507ef015-aa10-4ec9-9f8a-0889e1bb3c9e", + "name": "Immortal Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Las Vegas", + "state_province": "Nevada", + "postal_code": "89183-5893", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.immortalbrewco.com", + "state": "Nevada", + "street": null + }, + { + "id": "e21d9ff5-33e3-4e15-af90-2d8171ff6e7f", + "name": "Imperial Brygghus", + "brewery_type": "micro", + "address_1": "Ronnebygatan 38", + "address_2": null, + "address_3": null, + "city": "Karlskrona", + "state_province": "Blekinge", + "postal_code": "371 33", + "country": "Sweden", + "longitude": 15.5876751, + "latitude": 56.1621939, + "phone": "+46 708-30 02 18", + "website_url": "https://imperialbrygghus.se/", + "state": "Blekinge", + "street": "Ronnebygatan 38" + }, + { + "id": "b93a7663-6121-4458-ba91-d8e1c045d0b4", + "name": "Imperial Oak Brewing Co", + "brewery_type": "micro", + "address_1": "501 Willow Blvd Ste 108", + "address_2": null, + "address_3": null, + "city": "Willow Springs", + "state_province": "Illinois", + "postal_code": "60480-1710", + "country": "United States", + "longitude": -87.879257, + "latitude": 41.73187, + "phone": "7083305096", + "website_url": "http://www.imperialoakbrewing.com", + "state": "Illinois", + "street": "501 Willow Blvd Ste 108" + }, + { + "id": "1cf4be70-96b7-4c19-962a-917e758a2343", + "name": "Imperium Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Hickory", + "state_province": "Pennsylvania", + "postal_code": "15340-1135", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4129991077", + "website_url": "http://imperiumbrewing.com", + "state": "Pennsylvania", + "street": null + }, + { + "id": "2913aacb-935e-49a5-94cc-8bfa9121e015", + "name": "Imprint Beer Company", + "brewery_type": "micro", + "address_1": "1500 Industry Rd Ste O", + "address_2": null, + "address_3": null, + "city": "Hatfield", + "state_province": "Pennsylvania", + "postal_code": "19440-3271", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2676403004", + "website_url": "http://www.imprintbeer.com", + "state": "Pennsylvania", + "street": "1500 Industry Rd Ste O" + }, + { + "id": "2c4ebd88-700d-4707-bd5f-af7dcb121f75", + "name": "In the Loop Brewing", + "brewery_type": "micro", + "address_1": "3338 Land O Lakes Blvd", + "address_2": null, + "address_3": null, + "city": "Land O Lakes", + "state_province": "Florida", + "postal_code": "34639-4408", + "country": "United States", + "longitude": -82.46279799, + "latitude": 28.20530858, + "phone": "8139979189", + "website_url": "http://www.intheloopbrewingcompany.com", + "state": "Florida", + "street": "3338 Land O Lakes Blvd" + }, + { + "id": "257bd673-0171-49b2-bf70-f9400cd08c86", + "name": "In the Shadow Brewing", + "brewery_type": "micro", + "address_1": "19731 Old Burn Rd", + "address_2": null, + "address_3": null, + "city": "Arlington", + "state_province": "Washington", + "postal_code": "98223", + "country": "United States", + "longitude": -122.1126057, + "latitude": 48.17567366, + "phone": "4258769253", + "website_url": "https://www.itsbrewing.com", + "state": "Washington", + "street": "19731 Old Burn Rd" + }, + { + "id": "ef7d4225-1ebe-40a3-86d8-9cc79a1fc609", + "name": "In the Woods Brewing and Spirits", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Groveton", + "state_province": "New Hampshire", + "postal_code": "03582", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New Hampshire", + "street": null + }, + { + "id": "80edf45a-d8dd-458e-9e56-5ca871a77e80", + "name": "In-Law Brewing Co", + "brewery_type": "micro", + "address_1": "5868 County Route 14", + "address_2": null, + "address_3": null, + "city": "Chase Mills", + "state_province": "New York", + "postal_code": "13621-3102", + "country": "United States", + "longitude": -75.04830452, + "latitude": 44.88140997, + "phone": null, + "website_url": "http://www.in-lawbrewingcompany.com", + "state": "New York", + "street": "5868 County Route 14" + }, + { + "id": "cfc5db6b-e633-4f32-bc38-eab080adfbd3", + "name": "Inbound Brewco", + "brewery_type": "micro", + "address_1": "701 N 5th St", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55401-1124", + "country": "United States", + "longitude": -93.28068766, + "latitude": 44.98529275, + "phone": "6126158243", + "website_url": "http://www.inboundbrew.co", + "state": "Minnesota", + "street": "701 N 5th St" + }, + { + "id": "c59530fc-3d03-4185-b54e-870d616f379e", + "name": "Inc 82 Brewing", + "brewery_type": "brewpub", + "address_1": "7370 San Ramon Rd", + "address_2": null, + "address_3": null, + "city": "Dublin", + "state_province": "California", + "postal_code": "94568-2336", + "country": "United States", + "longitude": -121.9377474, + "latitude": 37.7059588, + "phone": "9255608344", + "website_url": "http://www.inc82.com", + "state": "California", + "street": "7370 San Ramon Rd" + }, + { + "id": "b1327f23-762d-4110-9dca-ead7e2cfc42d", + "name": "Incantation Brewing", + "brewery_type": "micro", + "address_1": "4233 S Buckley Rd", + "address_2": null, + "address_3": null, + "city": "Aurora", + "state_province": "Colorado", + "postal_code": "80013-2947", + "country": "United States", + "longitude": -104.7915508, + "latitude": 39.63993222, + "phone": "3039035254", + "website_url": "https://www.incantation.beer/", + "state": "Colorado", + "street": "4233 S Buckley Rd" + }, + { + "id": "5d027860-dc1f-407a-9d80-b887f6ec3b84", + "name": "Incendiary Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Winston Salem", + "state_province": "North Carolina", + "postal_code": "27101", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3369999999", + "website_url": "http://www.incendiarybrewing.com", + "state": "North Carolina", + "street": null + }, + { + "id": "391b3231-8293-4030-a8ff-d0c2a2af6e0e", + "name": "Incline Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Larkspur", + "state_province": "Colorado", + "postal_code": "80118-8721", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "c63bd7c9-1614-4494-8893-077f4e21151e", + "name": "Indeed Brewing Co", + "brewery_type": "regional", + "address_1": "711 15th Ave NE Ste 102", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55413-3103", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6128435090", + "website_url": "http://www.indeedbrewing.com", + "state": "Minnesota", + "street": "711 15th Ave NE Ste 102" + }, + { + "id": "17e75f2d-a365-4ad0-99a7-4e5b4ca3088c", + "name": "Independence Brewing", + "brewery_type": "regional", + "address_1": "3913 Todd Ln Ste 607", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78744-1061", + "country": "United States", + "longitude": -97.7361012, + "latitude": 30.2111313, + "phone": "5127070099", + "website_url": "http://www.independencebrewing.com", + "state": "Texas", + "street": "3913 Todd Ln Ste 607" + }, + { + "id": "c54a8c94-38ec-45b9-a641-e2782a61f6b7", + "name": "Independent Brewing Co", + "brewery_type": "micro", + "address_1": "444 Harrison St", + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94607-4118", + "country": "United States", + "longitude": -122.2711853, + "latitude": 37.7964297, + "phone": null, + "website_url": null, + "state": "California", + "street": "444 Harrison St" + }, + { + "id": "903fc6d6-d574-4b60-aaee-4ca4ea06c9a5", + "name": "Independent Brewing Company", + "brewery_type": "micro", + "address_1": "418 N Main St", + "address_2": null, + "address_3": null, + "city": "Bel Air", + "state_province": "Maryland", + "postal_code": "21014-3509", + "country": "United States", + "longitude": -76.35647784, + "latitude": 39.53986125, + "phone": "4108368313", + "website_url": null, + "state": "Maryland", + "street": "418 N Main St" + }, + { + "id": "73357541-682f-4a38-89c0-599682ed8dbc", + "name": "Independent Fermentations Brewing", + "brewery_type": "micro", + "address_1": "127 Camelot Dr Ste 3", + "address_2": null, + "address_3": null, + "city": "Plymouth", + "state_province": "Massachusetts", + "postal_code": "02360-3039", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5087464634", + "website_url": "http://www.independentfermentations.com", + "state": "Massachusetts", + "street": "127 Camelot Dr Ste 3" + }, + { + "id": "7df04f36-9a89-4cff-8ed2-19eb90019a76", + "name": "Indian Joe Brewing", + "brewery_type": "micro", + "address_1": "2123 Industrial Ct", + "address_2": null, + "address_3": null, + "city": "Vista", + "state_province": "California", + "postal_code": "92081-7900", + "country": "United States", + "longitude": -117.2204292, + "latitude": 33.1694168, + "phone": "7602953945", + "website_url": "http://www.indianjoebrewing.com", + "state": "California", + "street": "2123 Industrial Ct" + }, + { + "id": "84f1650a-80f6-47d0-9af0-b469e846829d", + "name": "Indian Ladder Farmstead Brewery and Cidery", + "brewery_type": "micro", + "address_1": "342 Altamont Rd", + "address_2": null, + "address_3": null, + "city": "Altamont", + "state_province": "New York", + "postal_code": "12009-3500", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5185771484", + "website_url": "http://www.ilfcb.com", + "state": "New York", + "street": "342 Altamont Rd" + }, + { + "id": "83c354b0-473c-41c6-9653-43c705cfb026", + "name": "Indian Ocean Brewery", + "brewery_type": "micro", + "address_1": "33 Ocean Falls Boulevard", + "address_2": null, + "address_3": null, + "city": "Mindarie", + "state_province": "WA", + "postal_code": "6030", + "country": "Australia", + "longitude": 115.7022699, + "latitude": -31.6911453, + "phone": null, + "website_url": "https://www.themarinamindarie.com/iobc/", + "state": "WA", + "street": "33 Ocean Falls Boulevard" + }, + { + "id": "fb6a0065-5bf8-4a97-8036-bba568020d92", + "name": "Indian Springs Brewing Company", + "brewery_type": "proprietor", + "address_1": "109 E Main St", + "address_2": null, + "address_3": null, + "city": "Neosho", + "state_province": "Missouri", + "postal_code": "64850-1810", + "country": "United States", + "longitude": -94.36740902, + "latitude": 36.86853698, + "phone": "4174549498", + "website_url": "http://www.indianspringsbrewing.com", + "state": "Missouri", + "street": "109 E Main St" + }, + { + "id": "8be1fd6d-0452-4ec6-b6d9-4990a6993d28", + "name": "Indian Valley Brewing", + "brewery_type": "micro", + "address_1": "14 Commercial Blvd Ste 125", + "address_2": null, + "address_3": null, + "city": "Novato", + "state_province": "California", + "postal_code": "94949-6110", + "country": "United States", + "longitude": -122.5350144, + "latitude": 38.06828367, + "phone": "4153014983", + "website_url": "http://www.indianvalleybrewing.com", + "state": "California", + "street": "14 Commercial Blvd Ste 125" + }, + { + "id": "7693e499-882f-448f-86a8-5527fbc22961", + "name": "Indian Wells Brewing Co", + "brewery_type": "micro", + "address_1": "2565 State Highway 14", + "address_2": null, + "address_3": null, + "city": "Inyokern", + "state_province": "California", + "postal_code": "93527-2700", + "country": "United States", + "longitude": -117.8727845, + "latitude": 35.6675286, + "phone": "7603775989", + "website_url": "http://www.mojave-red.com", + "state": "California", + "street": "2565 State Highway 14" + }, + { + "id": "14b7019d-d662-4403-b315-7466e59d39a3", + "name": "Indiana City Brewing", + "brewery_type": "micro", + "address_1": "24 Shelby Street", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46202-3941", + "country": "United States", + "longitude": -86.141258, + "latitude": 39.7661102, + "phone": "3176431103", + "website_url": "http://indianacitybeer.com", + "state": "Indiana", + "street": "24 Shelby Street" + }, + { + "id": "dcb29c7b-b8ee-4ae0-a762-aa0df714dddd", + "name": "Indie Brewing Company", + "brewery_type": "micro", + "address_1": "2350 Sunrise St", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90023-1036", + "country": "United States", + "longitude": -118.2227391, + "latitude": 34.0358529, + "phone": "3233544285", + "website_url": "http://indiebrewco.com", + "state": "California", + "street": "2350 Sunrise St" + }, + { + "id": "24e29ba9-71d6-4125-9921-96512e6944d5", + "name": "Indigo Reef Brewing Company", + "brewery_type": "micro", + "address_1": "2079 Wambaw Creek Unit 1", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "South Carolina", + "postal_code": "29492", + "country": "United States", + "longitude": -79.90995, + "latitude": 32.90352, + "phone": "8438676015", + "website_url": "https://www.indigoreefbrewing.com/", + "state": "South Carolina", + "street": "2079 Wambaw Creek Unit 1" + }, + { + "id": "f683b809-ff71-4f95-99a1-febed584ac36", + "name": "Industrial Arts Brewing Co.", + "brewery_type": "micro", + "address_1": "55 W Railroad Ave # 25W", + "address_2": null, + "address_3": null, + "city": "Garnerville", + "state_province": "New York", + "postal_code": "10923-1261", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8459428776", + "website_url": "http://www.industrialartsbrewing.com", + "state": "New York", + "street": "55 W Railroad Ave # 25W" + }, + { + "id": "25da3374-54cf-4773-bec9-dc400671af73", + "name": "Industrial Revolution Brewing Company", + "brewery_type": "micro", + "address_1": "285 Cheesman St", + "address_2": null, + "address_3": null, + "city": "Erie", + "state_province": "Colorado", + "postal_code": "80516-8464", + "country": "United States", + "longitude": -105.0477556, + "latitude": 40.05161529, + "phone": "3038281200", + "website_url": null, + "state": "Colorado", + "street": "285 Cheesman St" + }, + { + "id": "dc0256fa-9a1f-4758-a2c0-73175c17ae2d", + "name": "Industry Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77024-7146", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7138514130", + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "1ac07781-e350-4498-a472-95cf83790adf", + "name": "Industry Brewing", + "brewery_type": "brewpub", + "address_1": "8012 N Hale Ave", + "address_2": null, + "address_3": null, + "city": "Peoria", + "state_province": "Illinois", + "postal_code": "61615-2050", + "country": "United States", + "longitude": -89.60764563, + "latitude": 40.78613406, + "phone": "3098392930", + "website_url": "http://www.spicehospgroup.com", + "state": "Illinois", + "street": "8012 N Hale Ave" + }, + { + "id": "93d9f4fb-7f29-4f3b-bac7-c9e9cca9600e", + "name": "Infamous Brewing", + "brewery_type": "micro", + "address_1": "4602 Weletka Dr", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78734-1829", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5124878786", + "website_url": "http://www.infamousbrewing.com", + "state": "Texas", + "street": "4602 Weletka Dr" + }, + { + "id": "c169996a-d5d7-4499-b868-ca921a80d2a6", + "name": "Infinite Ale Works", + "brewery_type": "micro", + "address_1": "304 S Magnolia Ave", + "address_2": null, + "address_3": null, + "city": "Ocala", + "state_province": "Florida", + "postal_code": "34471-1158", + "country": "United States", + "longitude": -82.1362315, + "latitude": 29.1244956, + "phone": "3525726083", + "website_url": "http://InfiniteAleWorks.com", + "state": "Florida", + "street": "304 S Magnolia Ave" + }, + { + "id": "2cea348d-f05f-471b-a911-79a5ed5b4262", + "name": "Infusion Brewing Company - Benson", + "brewery_type": "micro", + "address_1": "6115 Maple St", + "address_2": null, + "address_3": null, + "city": "Omaha", + "state_province": "Nebraska", + "postal_code": "68104-4043", + "country": "United States", + "longitude": -96.007724, + "latitude": 41.284907, + "phone": "4029342064", + "website_url": "http://www.infusionbrewing.com", + "state": "Nebraska", + "street": "6115 Maple St" + }, + { + "id": "8f012711-6e6e-4f02-ab5c-e67a5c6e5c44", + "name": "Infusion Brewing Company - Southwest", + "brewery_type": "micro", + "address_1": "6271 S 118th St", + "address_2": null, + "address_3": null, + "city": "Omaha", + "state_province": "Nebraska", + "postal_code": "68137-3574", + "country": "United States", + "longitude": -96.0980711, + "latitude": 41.2077948, + "phone": "4029342064", + "website_url": "http://www.infusionbrewing.com", + "state": "Nebraska", + "street": "6271 S 118th St" + }, + { + "id": "64aa273d-2bdc-4bc8-a501-99905a1d070d", + "name": "Infusion Brewing Company of Trinity", + "brewery_type": "micro", + "address_1": "7813 Mitchell Blvd", + "address_2": null, + "address_3": null, + "city": "New Port Richey", + "state_province": "Florida", + "postal_code": "34655-4723", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7273124512", + "website_url": null, + "state": "Florida", + "street": "7813 Mitchell Blvd" + }, + { + "id": "0f10f6cc-b446-4348-97e7-38533986a0ad", + "name": "Ingenious Brewing Company", + "brewery_type": "micro", + "address_1": "1986 S Houston Ave", + "address_2": null, + "address_3": null, + "city": "Humble", + "state_province": "Texas", + "postal_code": "77396-1507", + "country": "United States", + "longitude": -95.2633815, + "latitude": 29.9748544, + "phone": "8324122142", + "website_url": "http://www.ingeniousbeer.com", + "state": "Texas", + "street": "1986 S Houston Ave" + }, + { + "id": "21cbcded-b764-49d4-898c-92a18dd1983f", + "name": "Inland Ale Works Brewing Co", + "brewery_type": "micro", + "address_1": "505 1st St", + "address_2": null, + "address_3": null, + "city": "Cheney", + "state_province": "Washington", + "postal_code": "99004", + "country": "United States", + "longitude": -117.5746659, + "latitude": 47.48762493, + "phone": "5092352037", + "website_url": "https://inlandaleworksbrewing.square.site", + "state": "Washington", + "street": "505 1st St" + }, + { + "id": "d2a69eb1-5b6b-417b-b5d1-6d8b9e46702d", + "name": "Inland Empire Brewing Co", + "brewery_type": "proprietor", + "address_1": "1710 Palmyrita Ave Ste 11", + "address_2": null, + "address_3": null, + "city": "Riverside", + "state_province": "California", + "postal_code": "92507-1627", + "country": "United States", + "longitude": -117.3485896, + "latitude": 34.00435346, + "phone": "9516437687", + "website_url": "http://www.iebrew.com", + "state": "California", + "street": "1710 Palmyrita Ave Ste 11" + }, + { + "id": "3e68be75-66a6-4974-9eab-3e5ee34a2717", + "name": "Inland Wharf Brewing Company", + "brewery_type": "micro", + "address_1": "26440 Jefferson Ave Ste A", + "address_2": null, + "address_3": null, + "city": "Murrieta", + "state_province": "California", + "postal_code": "92562-6951", + "country": "United States", + "longitude": -117.1781802, + "latitude": 33.5346449, + "phone": "9516967999", + "website_url": "http://www.inlandwharfbrewing.com", + "state": "California", + "street": "26440 Jefferson Ave Ste A" + }, + { + "id": "de007555-83ec-4b44-b54c-32c0befded7d", + "name": "Inlet Brewing Co", + "brewery_type": "proprietor", + "address_1": "4448 Nicole Cir", + "address_2": null, + "address_3": null, + "city": "Jupiter", + "state_province": "Florida", + "postal_code": "33469", + "country": "United States", + "longitude": -80.10011389, + "latitude": 26.96003048, + "phone": "5613390004", + "website_url": "http://www.inletbrewingco.com", + "state": "Florida", + "street": "4448 Nicole Cir" + }, + { + "id": "9c5f000c-f091-43c8-9bef-8a7031edbc30", + "name": "Inn On Peaks Island Brewery, The", + "brewery_type": "brewpub", + "address_1": "33 Island Ave", + "address_2": null, + "address_3": null, + "city": "Peaks Island", + "state_province": "Maine", + "postal_code": "04108-1333", + "country": "United States", + "longitude": -70.1979666, + "latitude": 43.65417851, + "phone": "2077665100", + "website_url": "http://www.innonpeaks.com", + "state": "Maine", + "street": "33 Island Ave" + }, + { + "id": "bddf12ae-541c-4c95-8b14-0f107296582c", + "name": "Inner Compass Brewing", + "brewery_type": "micro", + "address_1": "300 E 2nd St", + "address_2": null, + "address_3": null, + "city": "Sanford", + "state_province": "Florida", + "postal_code": "32771-1312", + "country": "United States", + "longitude": -81.270294, + "latitude": 28.810888, + "phone": "4074071792", + "website_url": "http://www.innercompassbrewing.com", + "state": "Florida", + "street": "300 E 2nd St" + }, + { + "id": "13d4b189-7c2e-4d8d-a705-89cdf373c491", + "name": "Inner North Brewing Co.", + "brewery_type": "micro", + "address_1": "10A Russell Street", + "address_2": null, + "address_3": null, + "city": "Brunswick", + "state_province": "VIC", + "postal_code": "3056", + "country": "Australia", + "longitude": 144.9579254, + "latitude": -37.7672834, + "phone": "+61 490 902 818", + "website_url": "http://innernorthbrewing.com.au/", + "state": "VIC", + "street": "10A Russell Street" + }, + { + "id": "c15aae1a-0782-4cf8-8a03-00e986ba7511", + "name": "InnerSpace Brewing Company", + "brewery_type": "micro", + "address_1": "2414 Clinton Ave W", + "address_2": null, + "address_3": null, + "city": "Huntsville", + "state_province": "Alabama", + "postal_code": "35805-3014", + "country": "United States", + "longitude": -86.5932014, + "latitude": 34.7277523, + "phone": "2564895599", + "website_url": "http://www.innerspacebrewing.com", + "state": "Alabama", + "street": "2414 Clinton Ave W" + }, + { + "id": "f52e5cfe-99ba-4c8b-ad2a-2bba33c29e24", + "name": "Innovation Brew Works", + "brewery_type": "micro", + "address_1": "3650 W Temple Ave Bldg 220A", + "address_2": null, + "address_3": null, + "city": "Pomona", + "state_province": "California", + "postal_code": "91768-2582", + "country": "United States", + "longitude": -117.8148645, + "latitude": 34.05000627, + "phone": "9098692788", + "website_url": "http://www.ibrewworks.com/", + "state": "California", + "street": "3650 W Temple Ave Bldg 220A" + }, + { + "id": "e4cad2e2-73fb-4fa2-9705-85a1507acfca", + "name": "Innovation Brewing", + "brewery_type": "brewpub", + "address_1": "414 W Main St", + "address_2": null, + "address_3": null, + "city": "Sylva", + "state_province": "North Carolina", + "postal_code": "28779-5548", + "country": "United States", + "longitude": -83.22208589, + "latitude": 35.37361923, + "phone": "8285869678", + "website_url": "http://www.innovationbrewing.com", + "state": "North Carolina", + "street": "414 W Main St" + }, + { + "id": "a1740e03-084e-4970-8a36-6a2b9653a92f", + "name": "Inoculum Ale Works", + "brewery_type": "micro", + "address_1": "1320 Commercial Way", + "address_2": null, + "address_3": null, + "city": "Spring Hill", + "state_province": "Florida", + "postal_code": "34606", + "country": "United States", + "longitude": -82.551896, + "latitude": 28.6060793, + "phone": null, + "website_url": "http://www.inoculumaleworks.com", + "state": "Florida", + "street": "1320 Commercial Way" + }, + { + "id": "a0d63612-aa12-440a-89fe-da702b1bbeec", + "name": "Inside Passage Brewing Company LLC", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Ketchikan", + "state_province": "Alaska", + "postal_code": "99901-6502", + "country": "United States", + "longitude": -131.6466819, + "latitude": 55.3430696, + "phone": "5133240762", + "website_url": null, + "state": "Alaska", + "street": null + }, + { + "id": "0fd5160d-52eb-4624-a69c-4553618bf8d6", + "name": "Inside The Five Brewing", + "brewery_type": "brewpub", + "address_1": "5703 Main St", + "address_2": null, + "address_3": null, + "city": "Sylvania", + "state_province": "Ohio", + "postal_code": "43560-4901", + "country": "United States", + "longitude": -83.70328149, + "latitude": 41.71726502, + "phone": "5674087212", + "website_url": "http://www.insidethefive.com", + "state": "Ohio", + "street": "5703 Main St" + }, + { + "id": "c7a00c2e-2404-40ca-9157-3819026eac99", + "name": "Insight Brewing Company", + "brewery_type": "micro", + "address_1": "2821 E Hennepin Ave", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55413-2916", + "country": "United States", + "longitude": -93.2702061, + "latitude": 44.9812702, + "phone": null, + "website_url": null, + "state": "Minnesota", + "street": "2821 E Hennepin Ave" + }, + { + "id": "f85daa7e-055a-4649-96e5-9f0527548728", + "name": "Institution Ale Company", + "brewery_type": "brewpub", + "address_1": "3841 Mission Oaks Blvd", + "address_2": null, + "address_3": null, + "city": "Camarillo", + "state_province": "California", + "postal_code": "93012-5036", + "country": "United States", + "longitude": -119.0203372, + "latitude": 34.21646691, + "phone": "8054823777", + "website_url": "http://www.institutionales.com", + "state": "California", + "street": "3841 Mission Oaks Blvd" + }, + { + "id": "e2c014f0-d1c8-43cc-a8c7-639fa846abcb", + "name": "Insurgent Brewing Co. LLC", + "brewery_type": "micro", + "address_1": "990 N State Route 89 Ste B", + "address_2": null, + "address_3": null, + "city": "Chino Valley", + "state_province": "Arizona", + "postal_code": "86323-5139", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9289254773", + "website_url": "http://www.insurgentbrewingco.com", + "state": "Arizona", + "street": "990 N State Route 89 Ste B" + }, + { + "id": "9131dabf-d066-425f-bd88-cb0c3a26952b", + "name": "Insurrection Aleworks", + "brewery_type": "micro", + "address_1": "1635 E Railroad St", + "address_2": null, + "address_3": null, + "city": "Heidelberg", + "state_province": "Pennsylvania", + "postal_code": "15106-4026", + "country": "United States", + "longitude": -80.08755441, + "latitude": 40.39264014, + "phone": "4122762030", + "website_url": "http://insurrectionaleworks.com", + "state": "Pennsylvania", + "street": "1635 E Railroad St" + }, + { + "id": "acd68c1e-2f4c-4cc4-a68c-91e0b4c996e7", + "name": "Interboro Spirits And Ales", + "brewery_type": "brewpub", + "address_1": "942 Grand St", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11211-2707", + "country": "United States", + "longitude": -73.9369567, + "latitude": 40.7126813, + "phone": "6462455417", + "website_url": "http://www.interboro.nyc", + "state": "New York", + "street": "942 Grand St" + }, + { + "id": "f560d7a7-7367-4aa8-a0ed-61e52bb081c9", + "name": "Intercourse Brewing Co", + "brewery_type": "contract", + "address_1": "4166 Ironbridge Dr", + "address_2": null, + "address_3": null, + "city": "Collegeville", + "state_province": "Pennsylvania", + "postal_code": "19426-1188", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6108129426", + "website_url": "http://www.intercoursebrewingco.com", + "state": "Pennsylvania", + "street": "4166 Ironbridge Dr" + }, + { + "id": "e3867dfa-d22e-4091-996a-725df25409d3", + "name": "Intergalactic Brewing Co", + "brewery_type": "micro", + "address_1": "9715 Carroll Centre Rd #107", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92126-6507", + "country": "United States", + "longitude": -117.1223493, + "latitude": 32.89873279, + "phone": "8587500601", + "website_url": "http://www.intergalacticbrew.com", + "state": "California", + "street": "9715 Carroll Centre Rd #107" + }, + { + "id": "848d84a2-bcb7-4b85-b659-99efe94293fb", + "name": "Intermission Beer Company", + "brewery_type": "micro", + "address_1": "10089 Brook Rd unit A", + "address_2": null, + "address_3": null, + "city": "Glen Allen", + "state_province": "Virginia", + "postal_code": "23059", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8045850405", + "website_url": "https://www.intermissionbeer.com/", + "state": "Virginia", + "street": "10089 Brook Rd unit A" + }, + { + "id": "3b174e82-0a69-43c6-9b47-94cd039c59c3", + "name": "Intersect Brewing", + "brewery_type": "micro", + "address_1": "2160 W Drake Rd Unit A1", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80526-1486", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9706822041", + "website_url": "http://www.intersectbrewing.com", + "state": "Colorado", + "street": "2160 W Drake Rd Unit A1" + }, + { + "id": "220200a7-c8b3-481a-8c60-ede62fe291c0", + "name": "Intervention Brewing Company, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Irving", + "state_province": "Texas", + "postal_code": "75061-8826", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2147633070", + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "c5607e29-ab4c-4475-aba5-cf5538bd7df0", + "name": "Intracoastal Brewing Co.", + "brewery_type": "micro", + "address_1": "652 W Eau Gallie Blvd", + "address_2": null, + "address_3": null, + "city": "Melbourne", + "state_province": "Florida", + "postal_code": "32935-6509", + "country": "United States", + "longitude": -80.7039168, + "latitude": 28.1206522, + "phone": "3218727395", + "website_url": "http://www.intracoastalbrewingcompany.com", + "state": "Florida", + "street": "652 W Eau Gallie Blvd" + }, + { + "id": "838a99fa-a7e0-468a-97f4-a9149f627454", + "name": "Intrinsic Brewing", + "brewery_type": "brewpub", + "address_1": "509 W State Street", + "address_2": null, + "address_3": null, + "city": "Garland", + "state_province": "Texas", + "postal_code": "75040", + "country": "United States", + "longitude": -96.63705236, + "latitude": 32.91369215, + "phone": "2144345429", + "website_url": "http://www.intrinsicbrewing.com", + "state": "Texas", + "street": "509 W State Street" + }, + { + "id": "ce5c20ab-e826-470b-afe6-204ed343e2d8", + "name": "Intuition Ale Works", + "brewery_type": "micro", + "address_1": "929 E Bay St", + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Florida", + "postal_code": "32202-2307", + "country": "United States", + "longitude": -81.64490792, + "latitude": 30.32336192, + "phone": "9046837720", + "website_url": "http://www.intuitionaleworks.com", + "state": "Florida", + "street": "929 E Bay St" + }, + { + "id": "07439e86-ae1e-45ce-8078-2ede40215f1a", + "name": "Intuition Ale Works Production Facility", + "brewery_type": "micro", + "address_1": "720 King St", + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Florida", + "postal_code": "32204-3440", + "country": "United States", + "longitude": -81.69702371, + "latitude": 30.31799538, + "phone": null, + "website_url": null, + "state": "Florida", + "street": "720 King St" + }, + { + "id": "f042a269-ee40-4b80-8bdf-dda3af3d37b2", + "name": "Inu Island Ales", + "brewery_type": "micro", + "address_1": "46-147 Kahuhipa St STE E", + "address_2": null, + "address_3": null, + "city": "Kaneohe", + "state_province": "Hawaii", + "postal_code": "96744", + "country": "United States", + "longitude": -157.805414, + "latitude": 21.416279, + "phone": "4088888586", + "website_url": "http://www.inuislandales.com", + "state": "Hawaii", + "street": "46-147 Kahuhipa St STE E" + }, + { + "id": "5f3f1c30-b19d-47da-a908-2b8bafa0e6fc", + "name": "Invasive Species Brewing", + "brewery_type": "micro", + "address_1": "726 NE 2nd Ave", + "address_2": null, + "address_3": null, + "city": "Fort Lauderdale", + "state_province": "Florida", + "postal_code": "33304-2616", + "country": "United States", + "longitude": -80.1418016, + "latitude": 26.1298369, + "phone": "7546662687", + "website_url": "http://www.invasivespeciesbrewing.com", + "state": "Florida", + "street": "726 NE 2nd Ave" + }, + { + "id": "bd199c9c-e52c-4b26-80b1-4b18bf5f69a2", + "name": "Inventors Brewpub", + "brewery_type": "brewpub", + "address_1": "435 N Lake St", + "address_2": null, + "address_3": null, + "city": "Port Washington", + "state_province": "Wisconsin", + "postal_code": "53074-1608", + "country": "United States", + "longitude": -87.86700105, + "latitude": 43.39195039, + "phone": null, + "website_url": null, + "state": "Wisconsin", + "street": "435 N Lake St" + }, + { + "id": "f2d17fb9-2f1a-4654-88fc-105fa0600df3", + "name": "Invictus Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Blaine", + "state_province": "Minnesota", + "postal_code": "55449", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6127234090", + "website_url": "http://www.InvictusBrewingCo.com", + "state": "Minnesota", + "street": null + }, + { + "id": "16d30fe7-5308-4905-8ce9-15bc61275c2a", + "name": "Invictus Brewing Co.", + "brewery_type": "brewpub", + "address_1": "2025 105th Ave NE", + "address_2": null, + "address_3": null, + "city": "Blaine", + "state_province": "Minnesota", + "postal_code": "55449-5202", + "country": "United States", + "longitude": -93.2189616, + "latitude": 45.1608516, + "phone": "6127234090", + "website_url": "http://www.invictusbrewingco.com", + "state": "Minnesota", + "street": "2025 105th Ave NE" + }, + { + "id": "75661940-50cd-4e30-a7dc-772b0852d66f", + "name": "Iowa Brewing Company", + "brewery_type": "micro", + "address_1": "708 3rd St SE", + "address_2": null, + "address_3": null, + "city": "Cedar Rapids", + "state_province": "Iowa", + "postal_code": "52401-2012", + "country": "United States", + "longitude": -91.66212463, + "latitude": 41.97421739, + "phone": "3193662337", + "website_url": "http://www.iowabrewing.beer", + "state": "Iowa", + "street": "708 3rd St SE" + }, + { + "id": "ac2278d6-ed4a-4c1a-a94d-e114717389ce", + "name": "Iowa River Brewing Company", + "brewery_type": "micro", + "address_1": "107 N 1st St", + "address_2": null, + "address_3": null, + "city": "Marshalltown", + "state_province": "Iowa", + "postal_code": "50158-5803", + "country": "United States", + "longitude": -92.91450419, + "latitude": 42.05061076, + "phone": "6417512848", + "website_url": "http://www.iowariverbrewing.com", + "state": "Iowa", + "street": "107 N 1st St" + }, + { + "id": "783cf348-6a53-404f-99f6-eac225d1334d", + "name": "Ipswich Ale Brewery", + "brewery_type": "regional", + "address_1": "2 Brewery Pl", + "address_2": null, + "address_3": null, + "city": "Ipswich", + "state_province": "Massachusetts", + "postal_code": "01938-1196", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9783563329", + "website_url": "http://www.ipswichalebrewery.com", + "state": "Massachusetts", + "street": "2 Brewery Pl" + }, + { + "id": "b2b80cf5-adc4-4e7c-9a53-d3f55ed24d7f", + "name": "Irish Mafia Brewing Co", + "brewery_type": "brewpub", + "address_1": "2971 Whalen Rd", + "address_2": null, + "address_3": null, + "city": "Bloomfield", + "state_province": "New York", + "postal_code": "14469-9786", + "country": "United States", + "longitude": -77.38938696, + "latitude": 42.89268134, + "phone": "5852715172", + "website_url": "http://www.irishmafiabrewing.com", + "state": "New York", + "street": "2971 Whalen Rd" + }, + { + "id": "6b3c07c8-8505-440f-b7f8-bcfc389525ad", + "name": "Iron Beard Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Jersey City", + "state_province": "New Jersey", + "postal_code": "07302-7433", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New Jersey", + "street": null + }, + { + "id": "795d96bb-633e-4d4d-8959-1ba609f409f2", + "name": "Iron Bird Brewing Co.", + "brewery_type": "brewpub", + "address_1": "402 S Nevada Ave", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80903-2110", + "country": "United States", + "longitude": -104.8223799, + "latitude": 38.8280292, + "phone": "7194247002", + "website_url": "http://www.ironbirdbrewing.com", + "state": "Colorado", + "street": "402 S Nevada Ave" + }, + { + "id": "fa970827-906e-4ebd-b68c-19c192778661", + "name": "Iron Brewing Company", + "brewery_type": "brewpub", + "address_1": "136 Washington St", + "address_2": null, + "address_3": null, + "city": "Norwalk", + "state_province": "Connecticut", + "postal_code": "06854", + "country": "United States", + "longitude": -73.41734954, + "latitude": 41.09888787, + "phone": "2033544010", + "website_url": "http://www.ironbrewing.com", + "state": "Connecticut", + "street": "136 Washington St" + }, + { + "id": "df561fc1-54b8-4a17-94fb-c344202bafed", + "name": "Iron Duke Brewing Co", + "brewery_type": "micro", + "address_1": "100 State St Ste 122", + "address_2": null, + "address_3": null, + "city": "Ludlow", + "state_province": "Massachusetts", + "postal_code": "01056-3435", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4136246258", + "website_url": "http://www.irondukebrewing.com", + "state": "Massachusetts", + "street": "100 State St Ste 122" + }, + { + "id": "d3bb9850-31a3-4875-8cd8-41a9486f0738", + "name": "Iron Fist Brewing Co", + "brewery_type": "closed", + "address_1": "1305 Hot Springs Way Ste 101", + "address_2": null, + "address_3": null, + "city": "Vista", + "state_province": "California", + "postal_code": "92081-7876", + "country": "United States", + "longitude": -117.2388018, + "latitude": 33.14569866, + "phone": "7602166500", + "website_url": "http://www.ironfistbrewing.com", + "state": "California", + "street": "1305 Hot Springs Way Ste 101" + }, + { + "id": "bfd07141-cfd5-461d-bbac-17dfc9b8dec1", + "name": "Iron Flamingo Brewery", + "brewery_type": "micro", + "address_1": "196 Baker St", + "address_2": null, + "address_3": null, + "city": "Corning", + "state_province": "New York", + "postal_code": "14830-2074", + "country": "United States", + "longitude": -77.0564722, + "latitude": 42.1551591, + "phone": "6079364766", + "website_url": "http://www.ironflamingobrewery.com", + "state": "New York", + "street": "196 Baker St" + }, + { + "id": "4a58cbd0-a8da-4ea7-8eea-d9be42ec6375", + "name": "Iron Furnace Brewing", + "brewery_type": "micro", + "address_1": "115 Main St", + "address_2": null, + "address_3": null, + "city": "Franconia", + "state_province": "New Hampshire", + "postal_code": "03580", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6038232119", + "website_url": "https://www.ironfurnacebrewing.com/", + "state": "New Hampshire", + "street": "115 Main St" + }, + { + "id": "62593648-b9ed-47aa-811b-544d112df7ae", + "name": "Iron Goat Brewing", + "brewery_type": "brewpub", + "address_1": "1302 W 2nd Ave", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99201-4616", + "country": "United States", + "longitude": -117.4312826, + "latitude": 47.65452878, + "phone": "5094740722", + "website_url": "http://www.irongoatbrewing.com", + "state": "Washington", + "street": "1302 W 2nd Ave" + }, + { + "id": "742eda93-f91a-4b97-b6f6-b5192b2445de", + "name": "Iron Hart", + "brewery_type": "brewpub", + "address_1": "49 N Church St", + "address_2": null, + "address_3": null, + "city": "Carbondale", + "state_province": "Pennsylvania", + "postal_code": "18407-1904", + "country": "United States", + "longitude": -75.50001, + "latitude": 41.573825, + "phone": "5702802739", + "website_url": "http://www.3guysandabeerd.com", + "state": "Pennsylvania", + "street": "49 N Church St" + }, + { + "id": "12ed139d-06c2-4f93-9491-b798f22b1d9f", + "name": "Iron Hill Brewery & Restaurant - Chestnut Hill", + "brewery_type": "brewpub", + "address_1": "8400 Germantown Ave", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19118-3328", + "country": "United States", + "longitude": -75.205095, + "latitude": 40.075132, + "phone": "2159485600", + "website_url": "http://www.ironhillbrewery.com", + "state": "Pennsylvania", + "street": "8400 Germantown Ave" + }, + { + "id": "16bf5f1e-014c-4afc-b350-e9bda8966adc", + "name": "Iron Hill Brewery & Restaurant - Greenville", + "brewery_type": "brewpub", + "address_1": "741 Haywood Rd", + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "South Carolina", + "postal_code": "29607", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8645687009", + "website_url": "http://www.ironhillbrewery.com", + "state": "South Carolina", + "street": "741 Haywood Rd" + }, + { + "id": "77032466-4be5-4202-8609-43c95ebe6a47", + "name": "Iron Hill Brewery & Restaurant - Huntingdon Valley", + "brewery_type": "brewpub", + "address_1": "785 Huntingdon Pike", + "address_2": null, + "address_3": null, + "city": "Huntingdon Valley", + "state_province": "Pennsylvania", + "postal_code": "19006-8362", + "country": "United States", + "longitude": -75.0674691, + "latitude": 40.1192109, + "phone": null, + "website_url": "http://www.ironhillbrewery.com", + "state": "Pennsylvania", + "street": "785 Huntingdon Pike" + }, + { + "id": "bff3cd82-4867-4d0b-8bea-120e70de2ab0", + "name": "Iron Hill Brewery & Restaurant - Lancaster", + "brewery_type": "brewpub", + "address_1": "781 Harrisburg Pike", + "address_2": null, + "address_3": null, + "city": "Lancaster", + "state_province": "Pennsylvania", + "postal_code": "17603-2655", + "country": "United States", + "longitude": -76.3188136, + "latitude": 40.0506816, + "phone": "7172919800", + "website_url": "http://www.ironhillbrewery.com", + "state": "Pennsylvania", + "street": "781 Harrisburg Pike" + }, + { + "id": "e0e11103-11ff-4ec8-865f-9f0b02a42f23", + "name": "Iron Hill Brewery & Restaurant - Maple Shade", + "brewery_type": "brewpub", + "address_1": "124 East King's Hwy", + "address_2": null, + "address_3": null, + "city": "Maple Shade", + "state_province": "New Jersey", + "postal_code": "08052-5405", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8562730300", + "website_url": "http://www.ironhillbrewery.com", + "state": "New Jersey", + "street": "124 East King's Hwy" + }, + { + "id": "08af2081-845a-474e-9f80-efbb605e209c", + "name": "Iron Hill Brewery & Restaurant - Media", + "brewery_type": "brewpub", + "address_1": "30 E State Street", + "address_2": null, + "address_3": null, + "city": "Media", + "state_province": "Pennsylvania", + "postal_code": "19063-2904", + "country": "United States", + "longitude": -75.38831847, + "latitude": 39.9174642, + "phone": "6106279000", + "website_url": "http://www.ironhillbrewery.com", + "state": "Pennsylvania", + "street": "30 E State Street" + }, + { + "id": "22f14965-0761-424c-8824-ed47e3b04dd5", + "name": "Iron Hill Brewery & Restaurant - Newark", + "brewery_type": "brewpub", + "address_1": "147 East Main St", + "address_2": null, + "address_3": null, + "city": "Newark", + "state_province": "Delaware", + "postal_code": "19711-7313", + "country": "United States", + "longitude": -75.7468068, + "latitude": 39.6834128, + "phone": "3022669000", + "website_url": "http://www.ironhillbrewery.com", + "state": "Delaware", + "street": "147 East Main St" + }, + { + "id": "aeb41458-0b55-4613-9b03-99fc0306f3a5", + "name": "Iron Hill Brewery & Restaurant - North Wales", + "brewery_type": "brewpub", + "address_1": "1460 Bethlehem Pike", + "address_2": null, + "address_3": null, + "city": "North Wales", + "state_province": "Pennsylvania", + "postal_code": "19454-2159", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2677082000", + "website_url": "http://www.ironhillbrewery.com", + "state": "Pennsylvania", + "street": "1460 Bethlehem Pike" + }, + { + "id": "672b0dd0-5267-4c96-802a-1285bfaa186c", + "name": "Iron Hill Brewery & Restaurant - Phoenixville", + "brewery_type": "brewpub", + "address_1": "130 Bridge St", + "address_2": null, + "address_3": null, + "city": "Phoenixville", + "state_province": "Pennsylvania", + "postal_code": "19460-3448", + "country": "United States", + "longitude": -75.51335, + "latitude": 40.13418, + "phone": "6109839333", + "website_url": "http://www.ironhillbrewery.com", + "state": "Pennsylvania", + "street": "130 Bridge St" + }, + { + "id": "6deaab2b-0b81-478f-b4dc-0f30fdfe1f9c", + "name": "Iron Hill Brewery & Restaurant - Rehoboth Beach", + "brewery_type": "brewpub", + "address_1": "19815 Coastal Hwy", + "address_2": null, + "address_3": null, + "city": "Rehoboth Beach", + "state_province": "Delaware", + "postal_code": "19971", + "country": "United States", + "longitude": -75.090191, + "latitude": 38.7074994, + "phone": "3022608000", + "website_url": "http://www.ironhillbrewery.com", + "state": "Delaware", + "street": "19815 Coastal Hwy" + }, + { + "id": "b6d5a122-8bb1-4597-903a-c8025c9de6c8", + "name": "Iron Hill Brewery & Restaurant - Voorhees", + "brewery_type": "brewpub", + "address_1": "13107 Town Center Blvd", + "address_2": null, + "address_3": null, + "city": "Voorhees", + "state_province": "New Jersey", + "postal_code": "08043-2668", + "country": "United States", + "longitude": -74.9979656, + "latitude": 39.8524026, + "phone": "3028882739", + "website_url": "http://www.ironhillbrewery.com", + "state": "New Jersey", + "street": "13107 Town Center Blvd" + }, + { + "id": "cc272e55-527c-4099-9b39-0f9f849612d8", + "name": "Iron Hill Brewery & Restaurant - West Chester", + "brewery_type": "brewpub", + "address_1": "3 West Gay St", + "address_2": null, + "address_3": null, + "city": "West Chester", + "state_province": "Pennsylvania", + "postal_code": "19380-3010", + "country": "United States", + "longitude": -75.60564101, + "latitude": 39.96059635, + "phone": "6107389600", + "website_url": "http://www.ironhillbrewery.com", + "state": "Pennsylvania", + "street": "3 West Gay St" + }, + { + "id": "6829ce25-15a6-4383-a81f-1f58fc8884dd", + "name": "Iron Hill Brewery & Restaurant - Wilmington", + "brewery_type": "brewpub", + "address_1": "620 Justison St", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "Delaware", + "postal_code": "19801-5141", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3026588200", + "website_url": "http://www.ironhillbrewery.com", + "state": "Delaware", + "street": "620 Justison St" + }, + { + "id": "9b34bbbe-c448-442e-87ab-03d22245426a", + "name": "Iron Hill Brewery & Restaurant (Ardmore)", + "brewery_type": "brewpub", + "address_1": "60 Greenfield Ave", + "address_2": null, + "address_3": null, + "city": "Ardmore", + "state_province": "Pennsylvania", + "postal_code": "19003-1204", + "country": "United States", + "longitude": -75.29755364, + "latitude": 40.00854097, + "phone": "3028882739", + "website_url": "http://www.ironhillbrewery.com", + "state": "Pennsylvania", + "street": "60 Greenfield Ave" + }, + { + "id": "56289e78-9880-4933-ad9e-e59365be2837", + "name": "Iron Horse Brewery", + "brewery_type": "regional", + "address_1": "1621 Vantage Hwy", + "address_2": null, + "address_3": null, + "city": "Ellensburg", + "state_province": "Washington", + "postal_code": "98926-9001", + "country": "United States", + "longitude": -120.5200004, + "latitude": 47.00287945, + "phone": "5099333134", + "website_url": "http://www.ironhorsebrewery.com", + "state": "Washington", + "street": "1621 Vantage Hwy" + }, + { + "id": "1f3b6f0c-a8f3-4829-a4c1-2901f6c3b8fa", + "name": "Iron House Brewery", + "brewery_type": "micro", + "address_1": "21554 Tasman Highway", + "address_2": null, + "address_3": null, + "city": "Four Mile Creek", + "state_province": "TAS", + "postal_code": "7215", + "country": "Australia", + "longitude": 148.3099476, + "latitude": -41.5737177, + "phone": "+61 3 6372 2228", + "website_url": "http://www.ironhouse.com.au/", + "state": "TAS", + "street": "21554 Tasman Highway" + }, + { + "id": "2764f826-fa1f-4b3a-9240-9e620c06f220", + "name": "Iron John's Brewing Company", + "brewery_type": "micro", + "address_1": "245 S Plumer Ave Ste 27", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85719-6348", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5202373448", + "website_url": "http://www.ironjohnsbrewing.com", + "state": "Arizona", + "street": "245 S Plumer Ave Ste 27" + }, + { + "id": "8950820d-02c8-460d-b6ce-66c0c5c4ac6b", + "name": "Iron Monk Brewing Company", + "brewery_type": "micro", + "address_1": "519 S Husband St", + "address_2": null, + "address_3": null, + "city": "Stillwater", + "state_province": "Oklahoma", + "postal_code": "74074-4031", + "country": "United States", + "longitude": -97.0595399, + "latitude": 36.1163409, + "phone": "4057142585", + "website_url": "http://www.ironmonkbeer.com", + "state": "Oklahoma", + "street": "519 S Husband St" + }, + { + "id": "bfdd1ddf-7cde-4ad6-92ea-932dc9477801", + "name": "Iron Mule Brewery", + "brewery_type": "micro", + "address_1": "514 Perry St Ste C106", + "address_2": null, + "address_3": null, + "city": "Castle Rock", + "state_province": "Colorado", + "postal_code": "80104-1711", + "country": "United States", + "longitude": -104.8584438, + "latitude": 39.3751988, + "phone": "7203289008", + "website_url": "https://www.ironmulebrewery.com/", + "state": "Colorado", + "street": "514 Perry St Ste C106" + }, + { + "id": "8c0bc28a-fb48-4e7c-941a-1d5131fb1787", + "name": "Iron Spike Brewing Company", + "brewery_type": "brewpub", + "address_1": "150 E Simmons St Ste 1", + "address_2": null, + "address_3": null, + "city": "Galesburg", + "state_province": "Illinois", + "postal_code": "61401-4641", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3092974718", + "website_url": "http://www.ironspikebrewpub.com", + "state": "Illinois", + "street": "150 E Simmons St Ste 1" + }, + { + "id": "25e5c66e-d4ed-4557-b748-da3de58c1076", + "name": "Iron Springs Pub & Brewery", + "brewery_type": "brewpub", + "address_1": "765 Center Blvd", + "address_2": null, + "address_3": null, + "city": "Fairfax", + "state_province": "California", + "postal_code": "94930-1764", + "country": "United States", + "longitude": -122.5862525, + "latitude": 37.98670111, + "phone": "4154851005", + "website_url": "http://www.ironspringspub.com", + "state": "California", + "street": "765 Center Blvd" + }, + { + "id": "4a6b7b4f-5857-4635-a67e-9132a6d0e6c8", + "name": "Iron Tree Table & Taps", + "brewery_type": "brewpub", + "address_1": "37 Costello Ave", + "address_2": null, + "address_3": null, + "city": "Florissant", + "state_province": "Colorado", + "postal_code": "80816", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7197480124", + "website_url": "http://www.irontreerestaurant.com", + "state": "Colorado", + "street": "37 Costello Ave" + }, + { + "id": "cc4ccff2-93f4-4134-b2a6-53d06a3e2c89", + "name": "Iron Triangle Brewing Company", + "brewery_type": "micro", + "address_1": "1581 Industrial St", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90021-1217", + "country": "United States", + "longitude": -118.2373618, + "latitude": 34.03612189, + "phone": "3109905702", + "website_url": "http://www.irontrianglebrewing.com", + "state": "California", + "street": "1581 Industrial St" + }, + { + "id": "85006537-0e74-4e0f-823b-592904e96c5b", + "name": "Iron Tug Brewing", + "brewery_type": "micro", + "address_1": "371 Park Ave", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "New York", + "postal_code": "14607", + "country": "United States", + "longitude": -77.58587345, + "latitude": 43.15024613, + "phone": "5857385606", + "website_url": "http://www.irontugbrewing.com", + "state": "New York", + "street": "371 Park Ave" + }, + { + "id": "45076e61-0e44-46f4-a85b-58ad50988a2b", + "name": "Ironbark Brewery", + "brewery_type": "micro", + "address_1": "2610 Kibby Rd", + "address_2": null, + "address_3": null, + "city": "Jackson", + "state_province": "Michigan", + "postal_code": "49203-4908", + "country": "United States", + "longitude": -84.43762976, + "latitude": 42.2188971, + "phone": "5177487988", + "website_url": null, + "state": "Michigan", + "street": "2610 Kibby Rd" + }, + { + "id": "d953db74-1a4c-42ae-bb1d-b17564d85397", + "name": "IronBark Hill Brewing Co.", + "brewery_type": "micro", + "address_1": "694 Hermitage Road", + "address_2": null, + "address_3": null, + "city": "Pokolbin", + "state_province": "NSW", + "postal_code": "2320", + "country": "Australia", + "longitude": 151.2561825, + "latitude": -32.7086098, + "phone": "+61 2 6574 7085", + "website_url": "http://www.ironbarkhill.beer/", + "state": "NSW", + "street": "694 Hermitage Road" + }, + { + "id": "e7444032-8c9b-4755-9ccb-fa603653e1c9", + "name": "Ironclad Brewery", + "brewery_type": "micro", + "address_1": "115 N 2nd St", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "North Carolina", + "postal_code": "28401-3936", + "country": "United States", + "longitude": -77.94767214, + "latitude": 34.23671629, + "phone": "9107690290", + "website_url": "http://www.ironcladbrewery.com", + "state": "North Carolina", + "street": "115 N 2nd St" + }, + { + "id": "7a9c3c72-0fbb-4ad4-9528-5dec234f7538", + "name": "Ironfire Brewing Company", + "brewery_type": "micro", + "address_1": "42095 Zevo Dr Unit 1", + "address_2": null, + "address_3": null, + "city": "Temecula", + "state_province": "California", + "postal_code": "92590-3741", + "country": "United States", + "longitude": -117.1779573, + "latitude": 33.51202561, + "phone": "9512961397", + "website_url": "http://www.ironfirebrewing.com", + "state": "California", + "street": "42095 Zevo Dr Unit 1" + }, + { + "id": "1859086e-a38e-4e00-8760-398e58190dac", + "name": "Ironmonger Brewing", + "brewery_type": "micro", + "address_1": "2129 Northwest Pkwy SE Ste 105", + "address_2": null, + "address_3": null, + "city": "Marietta", + "state_province": "Georgia", + "postal_code": "30067-9223", + "country": "United States", + "longitude": -84.48696353, + "latitude": 33.91959382, + "phone": "6787428551", + "website_url": "http://www.ironmongerbrewing.com", + "state": "Georgia", + "street": "2129 Northwest Pkwy SE Ste 105" + }, + { + "id": "e1b632ac-39c9-465f-b3df-7de3efa2976e", + "name": "Ironwood Brewing Co LLC", + "brewery_type": "micro", + "address_1": "6 Roosevelt Rd", + "address_2": null, + "address_3": null, + "city": "Valparaiso", + "state_province": "Indiana", + "postal_code": "46383-5136", + "country": "United States", + "longitude": -87.046457, + "latitude": 41.46840633, + "phone": "2194054644", + "website_url": "http://www.ironwoodbrewing.beer", + "state": "Indiana", + "street": "6 Roosevelt Rd" + }, + { + "id": "7e10797c-320d-4fdf-940b-09550b0e8fc3", + "name": "Ironwood Creek", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Evans", + "state_province": "Georgia", + "postal_code": "30809-8239", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Georgia", + "street": null + }, + { + "id": "d3fa529b-07fc-436a-98cf-66ba68b0a579", + "name": "Ironworks Brewery & Pub", + "brewery_type": "brewpub", + "address_1": "12354 W Alameda Pkwy Ste 110", + "address_2": null, + "address_3": null, + "city": "Lakewood", + "state_province": "Colorado", + "postal_code": "80228-2844", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3039855818", + "website_url": "http://www.ironworkspub.com", + "state": "Colorado", + "street": "12354 W Alameda Pkwy Ste 110" + }, + { + "id": "77100b94-fd5e-42fb-ac9f-d256817f1e16", + "name": "Irving Cliff Brewery", + "brewery_type": "brewpub", + "address_1": "2 Chapel St", + "address_2": null, + "address_3": null, + "city": "Honesdale", + "state_province": "Pennsylvania", + "postal_code": "18431-2094", + "country": "United States", + "longitude": -75.257181, + "latitude": 41.574806, + "phone": "5706470644", + "website_url": "http://www.irvingcliffbrewery.com", + "state": "Pennsylvania", + "street": "2 Chapel St" + }, + { + "id": "94bce2e1-73b6-4042-bba3-0f6a7df5530d", + "name": "Irwin Brewing Company", + "brewery_type": "micro", + "address_1": "326 Belleview", + "address_2": null, + "address_3": null, + "city": "Crested Butte", + "state_province": "Colorado", + "postal_code": "81224-8706", + "country": "United States", + "longitude": -106.9853012, + "latitude": 38.86695573, + "phone": "9702757578", + "website_url": "http://www.irwinbrewingco.com", + "state": "Colorado", + "street": "326 Belleview" + }, + { + "id": "d2961893-908c-48e2-b691-9f066c1306f6", + "name": "Islamorada Beer Company", + "brewery_type": "micro", + "address_1": "82229 Overseas Hwy", + "address_2": null, + "address_3": null, + "city": "Islamorada", + "state_province": "Florida", + "postal_code": "33036-3659", + "country": "United States", + "longitude": -80.5805987, + "latitude": 24.9552722, + "phone": "3055089093", + "website_url": "http://www.islamoradabeerco.com", + "state": "Florida", + "street": "82229 Overseas Hwy" + }, + { + "id": "0664c3c7-aedb-4748-b4f3-e2964022cf92", + "name": "Island Brewing Co", + "brewery_type": "micro", + "address_1": "5049 6th St", + "address_2": null, + "address_3": null, + "city": "Carpinteria", + "state_province": "California", + "postal_code": "93013-2001", + "country": "United States", + "longitude": -119.521007, + "latitude": 34.39590392, + "phone": "8057458272", + "website_url": "http://www.islandbrewingcompany.com", + "state": "California", + "street": "5049 6th St" + }, + { + "id": "662f9bed-fae7-47a7-96df-bb0a434be701", + "name": "Island City Brewing Company", + "brewery_type": "micro", + "address_1": "65 E Front St", + "address_2": null, + "address_3": null, + "city": "Winona", + "state_province": "Minnesota", + "postal_code": "55987-3494", + "country": "United States", + "longitude": -91.6347433, + "latitude": 44.053748, + "phone": "5074742739", + "website_url": "http://www.islandcitybrew.com", + "state": "Minnesota", + "street": "65 E Front St" + }, + { + "id": "aebe9690-3051-4a17-8aa7-145c3155aa98", + "name": "Island Coastal Lager", + "brewery_type": "micro", + "address_1": "3900 Frontage Rd S", + "address_2": null, + "address_3": null, + "city": "Lakeland", + "state_province": "Florida", + "postal_code": "33815", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8636987600", + "website_url": "http://www.islandcoastallager.com", + "state": "Florida", + "street": "3900 Frontage Rd S" + }, + { + "id": "fa2fde2e-51da-470a-a151-ce76e6d529b3", + "name": "Island Dog Brewing", + "brewery_type": "micro", + "address_1": "125 John Roberts Rd", + "address_2": null, + "address_3": null, + "city": "South Portland", + "state_province": "Maine", + "postal_code": "04106-3295", + "country": "United States", + "longitude": -70.33101442, + "latitude": 43.63059386, + "phone": "2073300283", + "website_url": "http://www.islanddogbrewing.com", + "state": "Maine", + "street": "125 John Roberts Rd" + }, + { + "id": "637e56dd-04c8-4285-8076-4951f9a701fd", + "name": "Island Hoppin' Brewery", + "brewery_type": "micro", + "address_1": "33 Hope Ln", + "address_2": null, + "address_3": null, + "city": "Eastsound", + "state_province": "Washington", + "postal_code": "98245-8915", + "country": "United States", + "longitude": -122.9152526, + "latitude": 48.70268053, + "phone": "3603769253", + "website_url": "http://www.islandhoppinbrewery.com", + "state": "Washington", + "street": "33 Hope Ln" + }, + { + "id": "44f4f0bf-2417-4542-b2a4-b545728ed639", + "name": "Island State Brewing", + "brewery_type": "micro", + "address_1": "17 Oldaker Street", + "address_2": null, + "address_3": null, + "city": "Devonport", + "state_province": "TAS", + "postal_code": "7310", + "country": "Australia", + "longitude": 146.3599193, + "latitude": -41.1770223, + "phone": null, + "website_url": "https://www.islandstatebrewing.com.au/", + "state": "TAS", + "street": "17 Oldaker Street" + }, + { + "id": "a5aec8f0-08ed-49ea-a440-7b30f2aadb79", + "name": "Island To Island Brewery", + "brewery_type": "brewpub", + "address_1": "642 Rogers Ave", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11226-1502", + "country": "United States", + "longitude": -73.95325995, + "latitude": 40.6558144, + "phone": "3479741985", + "website_url": "http://www.islandtoislandbrewery.com", + "state": "New York", + "street": "642 Rogers Ave" + }, + { + "id": "29f0a24d-a6b6-4b3b-999f-37ae825c6e5e", + "name": "Islay Ales", + "brewery_type": "micro", + "address_1": "Islay House Square", + "address_2": "Bridgend", + "address_3": null, + "city": "Isle of Islay", + "state_province": "Argyll", + "postal_code": "PA44 7NZ", + "country": "Scotland", + "longitude": -6.2511858, + "latitude": 55.7845598, + "phone": "1496810014", + "website_url": "https://www.islayales.com/", + "state": "Argyll", + "street": "Islay House Square" + }, + { + "id": "71d2dd5e-51f1-4e20-a625-09d404e487ce", + "name": "Isley Brewing Company", + "brewery_type": "micro", + "address_1": "1715 Summit Ave", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23230-4515", + "country": "United States", + "longitude": -77.46838631, + "latitude": 37.56890085, + "phone": "8047162132", + "website_url": "http://www.isleybrewingcompany.com", + "state": "Virginia", + "street": "1715 Summit Ave" + }, + { + "id": "7e491720-4757-4f4e-9353-71fbb1f4acda", + "name": "Islla Street Brewing Company", + "brewery_type": "micro", + "address_1": "11911 Crosswinds Way", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78233", + "country": "United States", + "longitude": -98.3775366, + "latitude": 29.547909, + "phone": "210-771-6532", + "website_url": "http://www.isllastreetbrewing.com/", + "state": "Texas", + "street": "11911 Crosswinds Way" + }, + { + "id": "90ffbd84-7f7e-4caa-acba-2a7a93212e65", + "name": "ISM Brewing & Kitchen", + "brewery_type": "brewpub", + "address_1": "210 E 3rd St", + "address_2": "Unit A", + "address_3": null, + "city": "Long Beach", + "state_province": "California", + "postal_code": "90802", + "country": "United States", + "longitude": -118.19088877347, + "latitude": 33.770163323328, + "phone": "5624360497", + "website_url": "https://ism.beer/", + "state": "California", + "street": "210 E 3rd St" + }, + { + "id": "e98dd776-54cd-4da8-bb05-3af5b4769924", + "name": "Italian Job Brewery", + "brewery_type": "micro", + "address_1": "Allée Bleue Wine Estate", + "address_2": "Intersection R45 & R310", + "address_3": null, + "city": "Groot Drakenstein", + "state_province": "Western Cape", + "postal_code": "7680", + "country": "South Africa", + "longitude": 18.9669, + "latitude": -33.8569, + "phone": "+27 21 874 1021", + "website_url": "https://alleebleue.co.za/", + "state": "Western Cape", + "street": "Allée Bleue Wine Estate" + }, + { + "id": "6e667bb3-b1d5-42ad-96ef-bdee307a9ad5", + "name": "Itasca Brewing Company Inc", + "brewery_type": "micro", + "address_1": "400 E Orchard St Ste B", + "address_2": null, + "address_3": null, + "city": "Itasca", + "state_province": "Illinois", + "postal_code": "60143-1773", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7738994998", + "website_url": "http://www.itascabrewingcompany.com", + "state": "Illinois", + "street": "400 E Orchard St Ste B" + }, + { + "id": "315fd733-fd6e-4619-af95-98ef88bfba74", + "name": "Ithaca Beer Co", + "brewery_type": "regional", + "address_1": "122 Ithaca Beer Dr", + "address_2": null, + "address_3": null, + "city": "Ithaca", + "state_province": "New York", + "postal_code": "14850-8813", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6072730766", + "website_url": "http://www.ithacabeer.com", + "state": "New York", + "street": "122 Ithaca Beer Dr" + }, + { + "id": "d94d1ba9-02f8-4da2-be5e-2fdc0bb2f582", + "name": "Ivanhoe Aleworks", + "brewery_type": "micro", + "address_1": "220 W Main St", + "address_2": null, + "address_3": null, + "city": "Denison", + "state_province": "Texas", + "postal_code": "75020-3025", + "country": "United States", + "longitude": -96.53729048, + "latitude": 33.75528217, + "phone": "9034640030", + "website_url": null, + "state": "Texas", + "street": "220 W Main St" + }, + { + "id": "34add3a8-8902-41eb-9105-7e4d107284a4", + "name": "Ivanhoe Park Brewing Company", + "brewery_type": "micro", + "address_1": "1300 Alden Rd", + "address_2": null, + "address_3": null, + "city": "Orlando", + "state_province": "Florida", + "postal_code": "32803-1822", + "country": "United States", + "longitude": -81.3718448, + "latitude": 28.5631918, + "phone": "7144254756", + "website_url": "http://www.IvanhoeParkBrewing.com", + "state": "Florida", + "street": "1300 Alden Rd" + }, + { + "id": "35a9e0b9-bd35-45a5-9c18-d393d24e1998", + "name": "Ivory Tower Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Boone", + "state_province": "North Carolina", + "postal_code": "28608-0001", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8282627847", + "website_url": "http://ivorytowerscience.com", + "state": "North Carolina", + "street": null + }, + { + "id": "21ba3bb4-b9ec-47c9-8e95-eda8f7f5b410", + "name": "Iza Local Izakaya", + "brewery_type": "bar", + "address_1": "695E East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "459059", + "country": "Singapore", + "longitude": 1.3118909225065, + "latitude": 103.9219623, + "phone": "+65 6385 2883", + "website_url": null, + "state": "Singapore", + "street": "695E East Coast Road" + }, + { + "id": "e7b2df20-dd98-483d-9263-7284044b95c2", + "name": "J Moe's Brewing Company", + "brewery_type": "brewpub", + "address_1": "7314 Washington St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80229-6302", + "country": "United States", + "longitude": -104.9791943, + "latitude": 39.7800007, + "phone": "3032874824", + "website_url": "http://www.creedebeer.com", + "state": "Colorado", + "street": "7314 Washington St" + }, + { + "id": "1f821dd4-8c5f-4aca-af33-3989ac3f0702", + "name": "J Wakefield Brewing", + "brewery_type": "micro", + "address_1": "120 NW 24th St", + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "Florida", + "postal_code": "33127-4414", + "country": "United States", + "longitude": -80.19752867, + "latitude": 25.7995437, + "phone": "7862547779", + "website_url": "http://www.jwakefieldbrewing.com", + "state": "Florida", + "street": "120 NW 24th St" + }, + { + "id": "902fae19-cdd8-45e3-8aac-209ae6d04ea6", + "name": "J. Boag & Sons (orig. Esk Brewery)", + "brewery_type": "large", + "address_1": "Esplanade", + "address_2": null, + "address_3": null, + "city": "Launceston", + "state_province": "TAS", + "postal_code": "7250", + "country": "Australia", + "longitude": 147.1383758, + "latitude": -41.4317228, + "phone": null, + "website_url": null, + "state": "TAS", + "street": "Esplanade" + }, + { + "id": "e2ba6adc-a7f0-4bb7-aebe-60bce1e19cb2", + "name": "J. Fargo's Family Dining & Micro Brewery / Coyote J Brewing Co", + "brewery_type": "brewpub", + "address_1": "1209 E Main St", + "address_2": null, + "address_3": null, + "city": "Cortez", + "state_province": "Colorado", + "postal_code": "81321-2910", + "country": "United States", + "longitude": -108.570199, + "latitude": 37.348775, + "phone": "9705640242", + "website_url": "http://www.jfargos.com", + "state": "Colorado", + "street": "1209 E Main St" + }, + { + "id": "9c6d4ecb-1788-4bb2-ba9f-ae3efd78c7d0", + "name": "J.J. Bitting Brewing Co.", + "brewery_type": "brewpub", + "address_1": "33 Main St", + "address_2": null, + "address_3": null, + "city": "Woodbridge", + "state_province": "New Jersey", + "postal_code": "07095-3335", + "country": "United States", + "longitude": -74.27717895, + "latitude": 40.55461595, + "phone": "7326342929", + "website_url": "http://www.njbrewpubs.com", + "state": "New Jersey", + "street": "33 Main St" + }, + { + "id": "d4027a1d-bf45-4db4-aaa2-241636f359b5", + "name": "J.W. Sweetman", + "brewery_type": "brewpub", + "address_1": "1-2 Burgh Quay", + "address_2": "Dublin 2", + "address_3": null, + "city": "Dublin", + "state_province": "Dublin", + "postal_code": "D02 F243", + "country": "Ireland", + "longitude": -6.2603268, + "latitude": 53.3469777, + "phone": "35316705777", + "website_url": null, + "state": "Dublin", + "street": "1-2 Burgh Quay" + }, + { + "id": "bc36be6b-e3ad-4821-9b7f-f1844919ad22", + "name": "J'ville Brewery", + "brewery_type": "micro", + "address_1": "201 Vt Route 112", + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Vermont", + "postal_code": "05342-9634", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8023682233", + "website_url": "http://www.jvillebrewery.com", + "state": "Vermont", + "street": "201 Vt Route 112" + }, + { + "id": "fb85d6e1-484f-4076-96f5-bd63259c953d", + "name": "Jack Mason's Tavern and Brewery", + "brewery_type": "brewpub", + "address_1": "400 E Ridgeway St", + "address_2": null, + "address_3": null, + "city": "Clifton Forge", + "state_province": "Virginia", + "postal_code": "24422-1327", + "country": "United States", + "longitude": -79.82746218, + "latitude": 37.81505479, + "phone": "5408625624", + "website_url": "http://www.jackmasonstavern.com", + "state": "Virginia", + "street": "400 E Ridgeway St" + }, + { + "id": "cf0a06ee-0b23-4922-843c-f0443d7e1707", + "name": "Jack Pine Brewery", + "brewery_type": "micro", + "address_1": "15593 Edgewood Dr", + "address_2": null, + "address_3": null, + "city": "Baxter", + "state_province": "Minnesota", + "postal_code": "56401-6952", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2182708072", + "website_url": "http://www.jackpinebrewery.com", + "state": "Minnesota", + "street": "15593 Edgewood Dr" + }, + { + "id": "82177a4e-4178-445e-83d7-47db4466db87", + "name": "Jack Russell Farm Ales", + "brewery_type": "brewpub", + "address_1": "2380 Larsen Dr", + "address_2": null, + "address_3": null, + "city": "Camino", + "state_province": "California", + "postal_code": "95709-9749", + "country": "United States", + "longitude": -120.6801664, + "latitude": 38.75368647, + "phone": "5306479420", + "website_url": "http://www.jackrussellbrewing.com", + "state": "California", + "street": "2380 Larsen Dr" + }, + { + "id": "db792297-5556-4f59-8132-e5b877c9da2e", + "name": "Jack Russell's Steakhouse and Brewery / Maine Coast Brewing Co.", + "brewery_type": "brewpub", + "address_1": "102 Eden St", + "address_2": null, + "address_3": null, + "city": "Bar Harbor", + "state_province": "Maine", + "postal_code": "04609-1106", + "country": "United States", + "longitude": -68.2231868, + "latitude": 44.3946497, + "phone": "2072885214", + "website_url": "http://www.jackrussellssteakhouse.com", + "state": "Maine", + "street": "102 Eden St" + }, + { + "id": "6299623b-bae2-4152-88a5-47e5b63bb4f8", + "name": "Jack's Abby Brewing", + "brewery_type": "regional", + "address_1": "100 Clinton St", + "address_2": null, + "address_3": null, + "city": "Framingham", + "state_province": "Massachusetts", + "postal_code": "01702-6748", + "country": "United States", + "longitude": -71.4109021, + "latitude": 42.2800852, + "phone": "5088720900", + "website_url": "http://www.jacksabbybrewing.com", + "state": "Massachusetts", + "street": "100 Clinton St" + }, + { + "id": "171e24f1-5f57-4da6-acab-61f0f28dd1b7", + "name": "Jack's Brewing Co", + "brewery_type": "brewpub", + "address_1": "39176 Argonaut Way", + "address_2": null, + "address_3": null, + "city": "Fremont", + "state_province": "California", + "postal_code": "94538-1304", + "country": "United States", + "longitude": -121.9884025, + "latitude": 37.5442084, + "phone": "5107962036", + "website_url": null, + "state": "California", + "street": "39176 Argonaut Way" + }, + { + "id": "b5b8c4a7-50b1-4d3d-9f9f-784bf8c1d33c", + "name": "Jack's Run Brewing Co", + "brewery_type": "micro", + "address_1": "108 North 21st Street", + "address_2": null, + "address_3": null, + "city": "Purcellville", + "state_province": "Virginia", + "postal_code": "20132", + "country": "United States", + "longitude": -77.71491185, + "latitude": 39.13704895, + "phone": "5404413382", + "website_url": "http://www.jacksrunbrewing.com", + "state": "Virginia", + "street": "108 North 21st Street" + }, + { + "id": "fa35cb80-3d34-4fcf-b411-f9ad355b1531", + "name": "Jackalope Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "701 8th Ave S", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37203-4104", + "country": "United States", + "longitude": -86.7794989, + "latitude": 36.1503817, + "phone": "6158870807", + "website_url": "http://www.jackalopebrew.com", + "state": "Tennessee", + "street": "701 8th Ave S" + }, + { + "id": "d1061663-6fed-48be-8300-4556f080bae5", + "name": "Jacked Up Brewery", + "brewery_type": "micro", + "address_1": "800 W Grand Ave Ste B Ste 201", + "address_2": null, + "address_3": null, + "city": "Escondido", + "state_province": "California", + "postal_code": "92025-2562", + "country": "United States", + "longitude": -117.0917748, + "latitude": 33.11733983, + "phone": "7603000633", + "website_url": "http://jackedupbrewery.com", + "state": "California", + "street": "800 W Grand Ave Ste B Ste 201" + }, + { + "id": "64c9113d-9f06-4fc4-9db7-e8973bb30bc0", + "name": "Jackie O's Brewery", + "brewery_type": "micro", + "address_1": "25 Campbell St", + "address_2": null, + "address_3": null, + "city": "Athens", + "state_province": "Ohio", + "postal_code": "45701-2616", + "country": "United States", + "longitude": -82.09053555, + "latitude": 39.3315139, + "phone": "6147473434", + "website_url": null, + "state": "Ohio", + "street": "25 Campbell St" + }, + { + "id": "1faa634b-2bef-45e2-a641-67e5c865aa6f", + "name": "Jackie O's Pub & Brewery", + "brewery_type": "brewpub", + "address_1": "22-24 W Union St", + "address_2": null, + "address_3": null, + "city": "Athens", + "state_province": "Ohio", + "postal_code": "45701-2818", + "country": "United States", + "longitude": -82.10216171, + "latitude": 39.32764186, + "phone": "7405929686", + "website_url": "http://www.jackieos.com", + "state": "Ohio", + "street": "22-24 W Union St" + }, + { + "id": "97e9df73-8a99-46f6-b316-afab7b84ce6a", + "name": "Jackrabbit Brewing Co", + "brewery_type": "micro", + "address_1": "1323 Terminal St", + "address_2": null, + "address_3": null, + "city": "West Sacramento", + "state_province": "California", + "postal_code": "95691-3514", + "country": "United States", + "longitude": -121.54112, + "latitude": 38.5719882, + "phone": "2096120259", + "website_url": "http://www.jackrabbitbrewingcompany.com", + "state": "California", + "street": "1323 Terminal St" + }, + { + "id": "2286d60e-a83b-4f9f-b568-1f6fb4cc8810", + "name": "Jackson Street Brew Co.", + "brewery_type": "brewpub", + "address_1": "106 N Jackson St", + "address_2": null, + "address_3": null, + "city": "Perryville", + "state_province": "Missouri", + "postal_code": "63775-1336", + "country": "United States", + "longitude": -89.86375484, + "latitude": 37.72597286, + "phone": "5736053297", + "website_url": "http://jstreetbrewco.com", + "state": "Missouri", + "street": "106 N Jackson St" + }, + { + "id": "37b68562-5c86-4441-823d-dbfacafd75fa", + "name": "Jackson Street Brewing", + "brewery_type": "micro", + "address_1": "607 5th St", + "address_2": null, + "address_3": null, + "city": "Sioux City", + "state_province": "Iowa", + "postal_code": "51101-1301", + "country": "United States", + "longitude": -96.40323429, + "latitude": 42.49533849, + "phone": "7125748403", + "website_url": null, + "state": "Iowa", + "street": "607 5th St" + }, + { + "id": "5ef5d4fd-bc0f-4000-9149-fcf75b9f2168", + "name": "Jacob Leinenkugel Brewing Co", + "brewery_type": "large", + "address_1": "1 Jefferson Ave", + "address_2": null, + "address_3": null, + "city": "Chippewa Falls", + "state_province": "Wisconsin", + "postal_code": "54729-1318", + "country": "United States", + "longitude": -91.396442, + "latitude": 44.944606, + "phone": "7157235558", + "website_url": "http://www.leinie.com", + "state": "Wisconsin", + "street": "1 Jefferson Ave" + }, + { + "id": "a6a00d6b-d6f2-42c1-8810-6709a1a064be", + "name": "Jaden James Brewery @ The Cascade Winery", + "brewery_type": "brewpub", + "address_1": "4665 Broadmoor Ave SE Ste 135", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49512-5387", + "country": "United States", + "longitude": -85.583194, + "latitude": 42.909899, + "phone": "6166564665", + "website_url": "http://jadenjamesbrewery.com", + "state": "Michigan", + "street": "4665 Broadmoor Ave SE Ste 135" + }, + { + "id": "314dfee4-0f05-4eba-aef6-573122095f3f", + "name": "JAFB Brewery", + "brewery_type": "micro", + "address_1": "120 Beall Ave", + "address_2": null, + "address_3": null, + "city": "Wooster", + "state_province": "Ohio", + "postal_code": "44691-3673", + "country": "United States", + "longitude": -81.93429705, + "latitude": 40.7995432, + "phone": "3306011827", + "website_url": "http://www.jafbbeer.com", + "state": "Ohio", + "street": "120 Beall Ave" + }, + { + "id": "018b3e0a-ea27-4f11-acab-16b39607939e", + "name": "Jagged Mountain Brewery", + "brewery_type": "micro", + "address_1": "1139 20th St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80202-1811", + "country": "United States", + "longitude": -104.9913673, + "latitude": 39.7522457, + "phone": "7206892337", + "website_url": "http://www.jaggedmountainbrewery.com", + "state": "Colorado", + "street": "1139 20th St" + }, + { + "id": "cc7a08ca-f10b-4cc8-9dc2-a585d0b2fc61", + "name": "Jags@Siglap", + "brewery_type": "bar", + "address_1": "922 East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "459114", + "country": "Singapore", + "longitude": 1.312338406799, + "latitude": 103.9249077, + "phone": "+65 6241 2168", + "website_url": "https://jags.com.sg/", + "state": "Singapore", + "street": "922 East Coast Road" + }, + { + "id": "151050ee-ccee-4ff2-98b3-4b2be567de2c", + "name": "JagWine", + "brewery_type": "bar", + "address_1": "384 East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "428988", + "country": "Singapore", + "longitude": 1.3088733714989, + "latitude": 103.9116301, + "phone": "+65 6348 1778", + "website_url": "https://www.jagwine.com/", + "state": "Singapore", + "street": "384 East Coast Road" + }, + { + "id": "05ebd2ed-d854-4d35-918c-694451eed6d9", + "name": "Jailbreak Brewing Company", + "brewery_type": "micro", + "address_1": "9445 Washington Blvd N Ste F", + "address_2": null, + "address_3": null, + "city": "Laurel", + "state_province": "Maryland", + "postal_code": "20723-1380", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4433459699", + "website_url": "http://www.jailbreakbrewing.com", + "state": "Maryland", + "street": "9445 Washington Blvd N Ste F" + }, + { + "id": "2620bb33-78fe-4911-b4a5-3df64b547380", + "name": "Jailhouse Brewing Co", + "brewery_type": "micro", + "address_1": "8 Cherry St", + "address_2": null, + "address_3": null, + "city": "Hampton", + "state_province": "Georgia", + "postal_code": "30228-5575", + "country": "United States", + "longitude": -84.282374, + "latitude": 33.387534, + "phone": "4047297681", + "website_url": "http://www.jailhousebrewing.com", + "state": "Georgia", + "street": "8 Cherry St" + }, + { + "id": "c52f614d-30de-455a-a0af-f0d29d5f70db", + "name": "Jaipur Restaurant and Brewpub", + "brewery_type": "brewpub", + "address_1": "10922 Elm St", + "address_2": null, + "address_3": null, + "city": "Omaha", + "state_province": "Nebraska", + "postal_code": "68144-4822", + "country": "United States", + "longitude": -96.08239397, + "latitude": 41.23283768, + "phone": "4023927331", + "website_url": "http://www.jaipurbrewhouse.com", + "state": "Nebraska", + "street": "10922 Elm St" + }, + { + "id": "e33f24c1-438a-434d-ac79-d829faf1dc8b", + "name": "JAKs Brewing Company", + "brewery_type": "micro", + "address_1": "11860 Stapleton Dr", + "address_2": null, + "address_3": null, + "city": "Peyton", + "state_province": "Colorado", + "postal_code": "80831", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7193751116", + "website_url": "http://www.jaksbrewing.com", + "state": "Colorado", + "street": "11860 Stapleton Dr" + }, + { + "id": "b1351021-a901-4b9c-be60-a691bf42b730", + "name": "Jam Room Brewing Co", + "brewery_type": "micro", + "address_1": "875 Main St", + "address_2": null, + "address_3": null, + "city": "Newfoundland", + "state_province": "Pennsylvania", + "postal_code": "18445-5210", + "country": "United States", + "longitude": -75.32415972, + "latitude": 41.3014372, + "phone": "5702526122", + "website_url": "http://www.jamroombrewing.net", + "state": "Pennsylvania", + "street": "875 Main St" + }, + { + "id": "ba029671-6ffc-4c6d-bac8-e6daed74efb5", + "name": "James Peak Brewery", + "brewery_type": "brewpub", + "address_1": "70 E First St", + "address_2": null, + "address_3": null, + "city": "Nederland", + "state_province": "Colorado", + "postal_code": "80466", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3032589453", + "website_url": "http://www.jamespeakbrew.com", + "state": "Colorado", + "street": "70 E First St" + }, + { + "id": "3b92be7f-cdff-41a9-b4bc-c96658727d57", + "name": "James River Brewery", + "brewery_type": "micro", + "address_1": "561 Valley St", + "address_2": null, + "address_3": null, + "city": "Scottsville", + "state_province": "Virginia", + "postal_code": "24590-4983", + "country": "United States", + "longitude": -78.49611667, + "latitude": 37.80066298, + "phone": "4342867837", + "website_url": "http://www.jrbrewery.com/home.html", + "state": "Virginia", + "street": "561 Valley St" + }, + { + "id": "9c26b2c6-1017-4c43-876b-17f7a0d1afa5", + "name": "Jamesport Brewing Co", + "brewery_type": "brewpub", + "address_1": "410 S James St", + "address_2": null, + "address_3": null, + "city": "Ludington", + "state_province": "Michigan", + "postal_code": "49431-2159", + "country": "United States", + "longitude": -86.44787302, + "latitude": 43.95168567, + "phone": "2318452522", + "website_url": "http://www.jamesportbrewingcompany.com", + "state": "Michigan", + "street": "410 S James St" + }, + { + "id": "187b8020-fa4f-435f-80f5-166764b9e1ca", + "name": "Jamesport Farm Brewery", + "brewery_type": "micro", + "address_1": "5873 Sound Ave", + "address_2": null, + "address_3": null, + "city": "Riverhead", + "state_province": "New York", + "postal_code": "11901-5611", + "country": "United States", + "longitude": -72.648395, + "latitude": 40.96775, + "phone": "6317228111", + "website_url": "http://www.jamesportbrewhouse.com", + "state": "New York", + "street": "5873 Sound Ave" + }, + { + "id": "246a9990-7ca0-46ff-b735-a564fabaf8eb", + "name": "Jamestown Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Jamestown", + "state_province": "New York", + "postal_code": "14701-5110", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7168644257", + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "f5951169-a180-4970-aa22-28c534adf3a5", + "name": "Jamex Brewing Co", + "brewery_type": "micro", + "address_1": "21721 Harper Ave", + "address_2": null, + "address_3": null, + "city": "Saint Clair Shores", + "state_province": "Michigan", + "postal_code": "48080-2213", + "country": "United States", + "longitude": -82.8986171, + "latitude": 42.5171113, + "phone": "5869442030", + "website_url": "http://www.jamexbrewing.com", + "state": "Michigan", + "street": "21721 Harper Ave" + }, + { + "id": "b3cc0efa-402d-4a20-8ab8-eb305f544e0a", + "name": "Jamieson Brewery", + "brewery_type": "micro", + "address_1": "5953 Eildon-Jamieson Road", + "address_2": null, + "address_3": null, + "city": "Jamieson", + "state_province": "VIC", + "postal_code": "3723", + "country": "Australia", + "longitude": 146.1323242, + "latitude": -37.2805099, + "phone": "+61 3 5777 0678", + "website_url": "http://jamiesonbrewery.com/", + "state": "VIC", + "street": "5953 Eildon-Jamieson Road" + }, + { + "id": "e6c1a3ed-0f8d-442b-a068-2afb8cb1d20f", + "name": "Jamul Brewing Co. - Production Only", + "brewery_type": "micro", + "address_1": "3113 Calle Allejandro", + "address_2": null, + "address_3": null, + "city": "Jamul", + "state_province": "California", + "postal_code": "91935-3108", + "country": "United States", + "longitude": -116.87742, + "latitude": 32.709923, + "phone": "6195179829", + "website_url": "http://www.jamulbrewingco.com", + "state": "California", + "street": "3113 Calle Allejandro" + }, + { + "id": "f1a026c2-71d3-4675-a4d6-d94f9f4dfaae", + "name": "Jarfly Brewing Co", + "brewery_type": "micro", + "address_1": "103 W Mount Vernon St", + "address_2": null, + "address_3": null, + "city": "Somerset", + "state_province": "Kentucky", + "postal_code": "42501-1627", + "country": "United States", + "longitude": -84.60558001, + "latitude": 37.09179504, + "phone": "6064254962", + "website_url": "http://www.jarflybrewing.com", + "state": "Kentucky", + "street": "103 W Mount Vernon St" + }, + { + "id": "bc25a7f0-db79-4f7c-b405-dbf468b39443", + "name": "Jasper Ridge Brewing Co", + "brewery_type": "brewpub", + "address_1": "1075 Country Ln Ste 100", + "address_2": null, + "address_3": null, + "city": "Ishpeming", + "state_province": "Michigan", + "postal_code": "49849-3402", + "country": "United States", + "longitude": -87.6791485, + "latitude": 46.50148242, + "phone": "9064856017", + "website_url": "http://www.countryvillageresort.com/httpdocs/html/brewery.html", + "state": "Michigan", + "street": "1075 Country Ln Ste 100" + }, + { + "id": "0a1bb754-0318-4482-b8cf-5c4a568bd02f", + "name": "Jaw Brew", + "brewery_type": "micro", + "address_1": "26 Crossveggate", + "address_2": null, + "address_3": null, + "city": "Milngavie", + "state_province": "East Dunbartonshire", + "postal_code": "G62 6RA", + "country": "Scotland", + "longitude": -4.3131808, + "latitude": 55.9408943, + "phone": "7880690995", + "website_url": "https://www.jawbrew.co.uk/", + "state": "East Dunbartonshire", + "street": "26 Crossveggate" + }, + { + "id": "1e7750e9-d014-407c-80ca-a3f70183a7b4", + "name": "Jaworzyński Browar Rzemieślniczy Jauer", + "brewery_type": "brewpub", + "address_1": "Nowa Wieś Legnicka 55B", + "address_2": null, + "address_3": null, + "city": "Legnickie Pole", + "state_province": "dolnośląskie", + "postal_code": "59-241", + "country": "Poland", + "longitude": 16.1744342, + "latitude": 51.1555463, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Nowa Wieś Legnicka 55B" + }, + { + "id": "e9907162-94c6-4d12-983b-fa8ab96c7e5a", + "name": "JC Brewhouse", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Issaquah", + "state_province": "Washington", + "postal_code": "98029-8902", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4252816502", + "website_url": null, + "state": "Washington", + "street": null + }, + { + "id": "9d54b823-d300-4ccc-9cf9-8fcdb8dca252", + "name": "JD's Sports Pub and Brewery", + "brewery_type": "brewpub", + "address_1": "690 Redwood Hwy", + "address_2": null, + "address_3": null, + "city": "Grants Pass", + "state_province": "Oregon", + "postal_code": "97527-5582", + "country": "United States", + "longitude": -123.3420515, + "latitude": 42.42319062, + "phone": "5414710383", + "website_url": "http://www.jdssportsbarandbrewery.com", + "state": "Oregon", + "street": "690 Redwood Hwy" + }, + { + "id": "723e9a14-cd3a-4193-908f-9c5b9eea143f", + "name": "JDub's Brewing Co.", + "brewery_type": "micro", + "address_1": "1215 Mango Ave", + "address_2": null, + "address_3": null, + "city": "Sarasota", + "state_province": "Florida", + "postal_code": "34237-2816", + "country": "United States", + "longitude": -82.52525823, + "latitude": 27.34877798, + "phone": "9419552739", + "website_url": "http://www.jdubsbrewing.com", + "state": "Florida", + "street": "1215 Mango Ave" + }, + { + "id": "7a510870-1ac8-4f7c-9b9a-e112d990e8b2", + "name": "Jekyll Brewing", + "brewery_type": "micro", + "address_1": "2855 Marconi Dr Ste 350", + "address_2": null, + "address_3": null, + "city": "Alpharetta", + "state_province": "Georgia", + "postal_code": "30005-2051", + "country": "United States", + "longitude": -84.2536638, + "latitude": 34.0816562, + "phone": "7705968788", + "website_url": "http://www.jekyllbrewing.com", + "state": "Georgia", + "street": "2855 Marconi Dr Ste 350" + }, + { + "id": "0bcac404-6a13-4b38-9036-df170eaaaf64", + "name": "Jellyfish Brewing Company", + "brewery_type": "micro", + "address_1": "917 S Nebraska St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98108-2747", + "country": "United States", + "longitude": -122.3203471, + "latitude": 47.54956765, + "phone": "2063974999", + "website_url": "http://www.jellyfishbrewing.com", + "state": "Washington", + "street": "917 S Nebraska St" + }, + { + "id": "961fd2c9-a4e9-4b3b-b7c5-3becc0c1ab5b", + "name": "Jeremiah Johnson Brewing Company", + "brewery_type": "brewpub", + "address_1": "215 3rd St NW", + "address_2": null, + "address_3": null, + "city": "Great Falls", + "state_province": "Montana", + "postal_code": "59404-4103", + "country": "United States", + "longitude": -111.3023947, + "latitude": 47.50778029, + "phone": "4067273947", + "website_url": "http://www.jeremiahjohnsonbrewing.com", + "state": "Montana", + "street": "215 3rd St NW" + }, + { + "id": "84c68244-09d4-4c9a-8cfb-744cfe7fdd65", + "name": "Jersey Girl Brewing Company", + "brewery_type": "micro", + "address_1": "426 Sand Shore Rd Unit 1", + "address_2": null, + "address_3": null, + "city": "Hackettstown", + "state_province": "New Jersey", + "postal_code": "07840-5535", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9085914186", + "website_url": "http://www.jerseygirlbrewing.com", + "state": "New Jersey", + "street": "426 Sand Shore Rd Unit 1" + }, + { + "id": "96ab005f-921e-4f92-b32c-dc633d291a33", + "name": "Jervis Bay Brewing Co.", + "brewery_type": "micro", + "address_1": "3 Duranbah Drive", + "address_2": null, + "address_3": null, + "city": "Huskisson", + "state_province": "NSW", + "postal_code": "2540", + "country": "Australia", + "longitude": 150.6604235, + "latitude": -35.0289847, + "phone": "+61 2 4401 2142", + "website_url": "http://www.jervisbaybrewing.co/", + "state": "NSW", + "street": "3 Duranbah Drive" + }, + { + "id": "30d25781-6bd5-4401-bf30-fbde7de4c15b", + "name": "Jessup Farm Barrel House", + "brewery_type": "micro", + "address_1": "1921 Jessup Dr", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80525-2551", + "country": "United States", + "longitude": -105.0380013, + "latitude": 40.5620458, + "phone": "9705688345", + "website_url": "http://jessupfarm.com/barrel-house/", + "state": "Colorado", + "street": "1921 Jessup Dr" + }, + { + "id": "e2139f79-90cb-4ca3-9f42-029569204f91", + "name": "Jester King Brewery", + "brewery_type": "micro", + "address_1": "13187 Fitzhugh Rd", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78736-6510", + "country": "United States", + "longitude": -98.0824692, + "latitude": 30.2547264, + "phone": "5125375100", + "website_url": "http://www.jesterkingbrewery.com", + "state": "Texas", + "street": "13187 Fitzhugh Rd" + }, + { + "id": "90900029-eb0f-4202-accd-a9a01e0af940", + "name": "Jetty Road Brewery", + "brewery_type": "micro", + "address_1": "12-14 Brasser Avenue", + "address_2": null, + "address_3": null, + "city": "Dromana", + "state_province": "VIC", + "postal_code": "3936", + "country": "Australia", + "longitude": 144.987442, + "latitude": -38.3320465, + "phone": "+61 3 5987 2754", + "website_url": "https://www.jettyroad.com.au/", + "state": "VIC", + "street": "12-14 Brasser Avenue" + }, + { + "id": "f60db593-2715-41e9-aa05-b8089f996e74", + "name": "JGR Enterprises Inc", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Omaha", + "state_province": "Nebraska", + "postal_code": "68135-6215", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4028610174", + "website_url": null, + "state": "Nebraska", + "street": null + }, + { + "id": "ee209064-11c6-4650-9e87-5bf9355eed33", + "name": "Jig Head Brewing Company", + "brewery_type": "micro", + "address_1": "310 Newman Dr", + "address_2": null, + "address_3": null, + "city": "Cookeville", + "state_province": "Tennessee", + "postal_code": "38501-4127", + "country": "United States", + "longitude": -85.5237389, + "latitude": 36.14556179, + "phone": "9315104406", + "website_url": "http://www.jigheadbrewing.com", + "state": "Tennessee", + "street": "310 Newman Dr" + }, + { + "id": "e8c066e0-5d8a-485c-bedc-3ddd80d0129f", + "name": "Jigsaw Brewing, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "High Point", + "state_province": "North Carolina", + "postal_code": "27260-5056", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.jigsawbrewing.com", + "state": "North Carolina", + "street": null + }, + { + "id": "1fa23fcf-4e52-4d0d-a7a7-9719fd1a2058", + "name": "Jigsy's Brewpub & Restaurant", + "brewery_type": "brewpub", + "address_1": "225 N Enola Rd", + "address_2": null, + "address_3": null, + "city": "Enola", + "state_province": "Pennsylvania", + "postal_code": "17025-2414", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7177327708", + "website_url": "http://www.jigsyspizza.com", + "state": "Pennsylvania", + "street": "225 N Enola Rd" + }, + { + "id": "eb3620f7-5167-45bb-b2ba-47b0d2733e94", + "name": "Jim Dandy Brewing", + "brewery_type": "micro", + "address_1": "305 E Lander St", + "address_2": null, + "address_3": null, + "city": "Pocatello", + "state_province": "Idaho", + "postal_code": "83201", + "country": "United States", + "longitude": -112.4482702, + "latitude": 42.8663043, + "phone": "2082400470", + "website_url": "http://www.jimdandybrewing.com", + "state": "Idaho", + "street": "305 E Lander St" + }, + { + "id": "27eacffe-b9f8-4312-818a-c2117a704ba0", + "name": "JJs Brewing Company", + "brewery_type": "brewpub", + "address_1": "3615 n steele blvd", + "address_2": null, + "address_3": null, + "city": "fayetteville", + "state_province": "Arkansas", + "postal_code": "72703", + "country": "United States", + "longitude": -94.15714342, + "latitude": 36.11719055, + "phone": "4792632562", + "website_url": "http://www.thejbgb.com/", + "state": "Arkansas", + "street": "3615 n steele blvd" + }, + { + "id": "b50581f8-43c3-4a97-8c1d-c9ad5f2832f8", + "name": "JKB Brewing", + "brewery_type": "micro", + "address_1": "5 Bennet Street", + "address_2": null, + "address_3": null, + "city": "Dandenong", + "state_province": "VIC", + "postal_code": "3175", + "country": "Australia", + "longitude": 145.200171, + "latitude": -37.9850805, + "phone": "+61 481 210 322", + "website_url": "http://bojakbrewing.com.au/", + "state": "VIC", + "street": "5 Bennet Street" + }, + { + "id": "a0f8c970-e9d7-4844-83d1-8ce99ee4b9d3", + "name": "JoBoy's Brew Pub", + "brewery_type": "brewpub", + "address_1": "27 E Main St", + "address_2": null, + "address_3": null, + "city": "Lititz", + "state_province": "Pennsylvania", + "postal_code": "17543-1926", + "country": "United States", + "longitude": -76.3061545, + "latitude": 40.1571224, + "phone": "7175688330", + "website_url": "http://www.joboysbrewpub.com", + "state": "Pennsylvania", + "street": "27 E Main St" + }, + { + "id": "389d305d-6099-4373-8e09-3c936c05944b", + "name": "Johanssons Dining House", + "brewery_type": "brewpub", + "address_1": "4 W Main St", + "address_2": null, + "address_3": null, + "city": "Westminster", + "state_province": "Maryland", + "postal_code": "21157-4816", + "country": "United States", + "longitude": -76.9959315, + "latitude": 39.5753896, + "phone": "4108760101", + "website_url": "http://www.johanssonsdininghouse.com", + "state": "Maryland", + "street": "4 W Main St" + }, + { + "id": "45f45287-e619-4497-87cb-79fab92d6ef7", + "name": "John Harvards Brew House - Framingham", + "brewery_type": "brewpub", + "address_1": "1 Worcester Rd", + "address_2": null, + "address_3": null, + "city": "Framingham", + "state_province": "Massachusetts", + "postal_code": "01701-5359", + "country": "United States", + "longitude": -71.39619245, + "latitude": 42.30411485, + "phone": "5088752337", + "website_url": "http://www.johnharvards.com", + "state": "Massachusetts", + "street": "1 Worcester Rd" + }, + { + "id": "5210079f-267a-4a16-b6f7-e459d8b88426", + "name": "John S. Rhodell Brewery", + "brewery_type": "micro", + "address_1": "100 Walnut St Ste 111", + "address_2": null, + "address_3": null, + "city": "Peoria", + "state_province": "Illinois", + "postal_code": "61602-1544", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3099661047", + "website_url": "http://www.rhodellbrewery.com", + "state": "Illinois", + "street": "100 Walnut St Ste 111" + }, + { + "id": "3a4dc5bd-ac82-444f-8869-cc2d8c38a41c", + "name": "John Scott Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Trabuco Canyon", + "state_province": "California", + "postal_code": "92679-5145", + "country": "United States", + "longitude": -117.58938, + "latitude": 33.6626232, + "phone": "7144702055", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "6a5490c6-bcdc-489e-ae51-f917ce73f468", + "name": "Johnnie Byrd Brewing Company", + "brewery_type": "micro", + "address_1": "121 N Pearl St", + "address_2": null, + "address_3": null, + "city": "Wayne", + "state_province": "Nebraska", + "postal_code": "68787-1932", + "country": "United States", + "longitude": -97.0191502, + "latitude": 42.2294276, + "phone": "4028331522", + "website_url": "http://www.johnniebyrd.beer", + "state": "Nebraska", + "street": "121 N Pearl St" + }, + { + "id": "646eff4c-0945-4b2d-acda-dafee1142c70", + "name": "Johnnie MacCracken's Celtic Firehouse Pub, Inc.", + "brewery_type": "brewpub", + "address_1": "15 Atlanta Street", + "address_2": null, + "address_3": null, + "city": "Marietta", + "state_province": "Georgia", + "postal_code": "30060-1985", + "country": "United States", + "longitude": -84.5417592, + "latitude": 33.9371282, + "phone": "7705907868", + "website_url": "http://www.johnniemaccrackens.com", + "state": "Georgia", + "street": "15 Atlanta Street" + }, + { + "id": "17e63f2a-c464-46e1-a841-04d0b8b6342d", + "name": "Johnny's Calistoga / Mud City Brews", + "brewery_type": "brewpub", + "address_1": "1457 Lincoln Ave", + "address_2": null, + "address_3": null, + "city": "Calistoga", + "state_province": "California", + "postal_code": "94515", + "country": "United States", + "longitude": -122.579054, + "latitude": 38.578753, + "phone": "7079425938", + "website_url": "http://www.johnnyscalistoga.com", + "state": "California", + "street": "1457 Lincoln Ave" + }, + { + "id": "436ddc22-bd9b-4633-86a9-c5cec2d432ea", + "name": "Johnson City Brewing Co", + "brewery_type": "micro", + "address_1": "410 E State of Franklin Rd", + "address_2": null, + "address_3": null, + "city": "Johnson City", + "state_province": "Tennessee", + "postal_code": "37601-4871", + "country": "United States", + "longitude": -82.34636962, + "latitude": 36.31715951, + "phone": "4239304186", + "website_url": "http://www.johnsoncitybrewing.com", + "state": "Tennessee", + "street": "410 E State of Franklin Rd" + }, + { + "id": "6edc70c0-9b5a-4ab6-8b2f-0d2b1e46e2bb", + "name": "Jolly Pumpkin Artisan Ales", + "brewery_type": "micro", + "address_1": "2319 Bishop Cir E", + "address_2": null, + "address_3": null, + "city": "Dexter", + "state_province": "Michigan", + "postal_code": "48130-1567", + "country": "United States", + "longitude": -83.87683682, + "latitude": 42.32487277, + "phone": "7344264962", + "website_url": "http://www.jollypumpkin.com", + "state": "Michigan", + "street": "2319 Bishop Cir E" + }, + { + "id": "fc6aa7bd-8e48-4ff6-814d-ee16cfa86fc5", + "name": "Jolly Pumpkin Cafe and Brewery", + "brewery_type": "brewpub", + "address_1": "311 S Main St", + "address_2": null, + "address_3": null, + "city": "Ann Arbor", + "state_province": "Michigan", + "postal_code": "48104-2107", + "country": "United States", + "longitude": -83.7484551, + "latitude": 42.2791598, + "phone": "7349132730", + "website_url": "http://www.jollypumpkin.com", + "state": "Michigan", + "street": "311 S Main St" + }, + { + "id": "d35177e2-9b5b-4677-b05f-860a1a3b48e4", + "name": "Jolly Pumpkin Pizzeria and Brewery", + "brewery_type": "brewpub", + "address_1": "428 Bridge St NW", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49504", + "country": "United States", + "longitude": -85.6800865, + "latitude": 42.970511, + "phone": "6164194676", + "website_url": null, + "state": "Michigan", + "street": "428 Bridge St NW" + }, + { + "id": "40500db9-a3c6-44b5-b7d3-b4fee71c5f48", + "name": "Jolly Pumpkin Restaurant, Brewery & Distillery", + "brewery_type": "micro", + "address_1": "13512 Peninsula Dr Old Mission Peninsula", + "address_2": null, + "address_3": null, + "city": "Traverse City", + "state_province": "Michigan", + "postal_code": "49686-9717", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2312234333", + "website_url": "http://www.jollypumpkin.com", + "state": "Michigan", + "street": "13512 Peninsula Dr Old Mission Peninsula" + }, + { + "id": "50265193-672b-4d13-9d9a-0344fe4d074c", + "name": "Jolly Roger Brew", + "brewery_type": "micro", + "address_1": "236 Raceway Dr Ste 12", + "address_2": null, + "address_3": null, + "city": "Mooresville", + "state_province": "North Carolina", + "postal_code": "28117-6518", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9194128132", + "website_url": "http://www.jollyrogerbrew.com", + "state": "North Carolina", + "street": "236 Raceway Dr Ste 12" + }, + { + "id": "c7e84585-1dd0-4edb-86e9-283a6afd12ff", + "name": "Jones Brewing Co", + "brewery_type": "contract", + "address_1": "254 Second Street", + "address_2": null, + "address_3": null, + "city": "Smithton", + "state_province": "Pennsylvania", + "postal_code": "15479-0746", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.stoneysbeer.com", + "state": "Pennsylvania", + "street": "254 Second Street" + }, + { + "id": "520af123-af19-47b9-bb8b-c3b48514ebec", + "name": "Jones Creek Brewing", + "brewery_type": "micro", + "address_1": "173 Beam Rd", + "address_2": null, + "address_3": null, + "city": "Chehalis", + "state_province": "Washington", + "postal_code": "98532-9303", + "country": "United States", + "longitude": -123.2774, + "latitude": 46.588152, + "phone": "3602453429", + "website_url": "http://www.jonescreekbrewing.com", + "state": "Washington", + "street": "173 Beam Rd" + }, + { + "id": "da1cdce4-f03a-42cd-bea5-9174991e9127", + "name": "Jordan Lake Brewing Co", + "brewery_type": "micro", + "address_1": "320 E Durham Rd", + "address_2": null, + "address_3": null, + "city": "Cary", + "state_province": "North Carolina", + "postal_code": "27513-4043", + "country": "United States", + "longitude": -78.77537897, + "latitude": 35.79022306, + "phone": "9196945096", + "website_url": "http://jordanlakebrewing.com", + "state": "North Carolina", + "street": "320 E Durham Rd" + }, + { + "id": "2b241add-edd2-4e62-98bf-038700e8e775", + "name": "Joseph James Brewing Co, Inc", + "brewery_type": "micro", + "address_1": "155 N Gibson Rd", + "address_2": null, + "address_3": null, + "city": "Henderson", + "state_province": "Nevada", + "postal_code": "89014-6713", + "country": "United States", + "longitude": -115.0294086, + "latitude": 36.04146875, + "phone": "7024542739", + "website_url": "http://www.jjbrewco.com", + "state": "Nevada", + "street": "155 N Gibson Rd" + }, + { + "id": "e2cbce93-bcc6-4508-85fd-071101a6942d", + "name": "Joseph Wolf Brewing Company", + "brewery_type": "contract", + "address_1": "85 7th Pl E Ste 200", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55101-2143", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6127519422", + "website_url": "http://www.josephwolfbrewing.com", + "state": "Minnesota", + "street": "85 7th Pl E Ste 200" + }, + { + "id": "1b96abd4-d03f-4727-bc2b-686272e2b3ec", + "name": "Jovial Foods, Inc.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "North Stonington", + "state_province": "Connecticut", + "postal_code": "06359-1713", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8605350494", + "website_url": "http://www.jovialfoods.com", + "state": "Connecticut", + "street": null + }, + { + "id": "7fadcb6d-a145-4f04-8e86-afceff597e81", + "name": "Joymongers Brewing Co.", + "brewery_type": "micro", + "address_1": "576 N Eugene St", + "address_2": null, + "address_3": null, + "city": "Greensboro", + "state_province": "North Carolina", + "postal_code": "27401", + "country": "United States", + "longitude": -79.79380945, + "latitude": 36.07871896, + "phone": "3367635255", + "website_url": "http://www.joymongers.com", + "state": "North Carolina", + "street": "576 N Eugene St" + }, + { + "id": "5c8f16b0-45fb-42ce-bb6b-ffcc4582eb42", + "name": "Joyride Brewing Co", + "brewery_type": "micro", + "address_1": "2501 Sheridan Blvd", + "address_2": null, + "address_3": null, + "city": "Edgewater", + "state_province": "Colorado", + "postal_code": "80214-1330", + "country": "United States", + "longitude": -105.053492, + "latitude": 39.7531231, + "phone": "7204327560", + "website_url": "http://joyridebrewing.com", + "state": "Colorado", + "street": "2501 Sheridan Blvd" + }, + { + "id": "d47b743b-1208-4702-bbf8-60bcf9b78954", + "name": "JP DasBrew", + "brewery_type": "micro", + "address_1": "44356 S Grimmer Blvd", + "address_2": null, + "address_3": null, + "city": "Fremont", + "state_province": "California", + "postal_code": "94538-6385", + "country": "United States", + "longitude": -121.9577836, + "latitude": 37.5043737, + "phone": "5102705345", + "website_url": "http://www.dasbrewinc.com", + "state": "California", + "street": "44356 S Grimmer Blvd" + }, + { + "id": "5602d851-d8a1-4004-9e8e-050b663b510a", + "name": "JRH Brewing", + "brewery_type": "micro", + "address_1": "458 W Walnut St", + "address_2": null, + "address_3": null, + "city": "Johnson City", + "state_province": "Tennessee", + "postal_code": "37604-6766", + "country": "United States", + "longitude": -82.35483648, + "latitude": 36.31169595, + "phone": "4237223410", + "website_url": "http://www.jrhbrewing.com", + "state": "Tennessee", + "street": "458 W Walnut St" + }, + { + "id": "f642769d-19fa-46be-992f-f48471567b27", + "name": "JT Schmids Restaurant & Brewery", + "brewery_type": "brewpub", + "address_1": "2610 E Katella Ave", + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92806-5903", + "country": "United States", + "longitude": -117.8770639, + "latitude": 33.8056683, + "phone": "7146349200", + "website_url": "http://www.jtschmids.com", + "state": "California", + "street": "2610 E Katella Ave" + }, + { + "id": "5f1b75ad-6420-420e-bbf1-451955fd1308", + "name": "JT Walker's/Champaign County Brewing Co", + "brewery_type": "brewpub", + "address_1": "402 E Main St", + "address_2": null, + "address_3": null, + "city": "Mahomet", + "state_province": "Illinois", + "postal_code": "61853-7444", + "country": "United States", + "longitude": -88.40289612, + "latitude": 40.19498357, + "phone": "2175861100", + "website_url": "http://www.jtwalkers.com", + "state": "Illinois", + "street": "402 E Main St" + }, + { + "id": "43b62c73-4d76-433d-8c2b-bc19214eddb4", + "name": "Jubeck New World Brewing", + "brewery_type": "micro", + "address_1": "115 W 11th St", + "address_2": null, + "address_3": null, + "city": "Dubuque", + "state_province": "Iowa", + "postal_code": "52001-4802", + "country": "United States", + "longitude": -90.66770404, + "latitude": 42.50362393, + "phone": "7753755692", + "website_url": "http://www.jubeckbrewing.com", + "state": "Iowa", + "street": "115 W 11th St" + }, + { + "id": "c184d97f-0fb1-49d4-89c7-753b7d54393c", + "name": "Jubilee Craft Beer Co", + "brewery_type": "contract", + "address_1": "3430 Hampton Ave", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37215-1408", + "country": "United States", + "longitude": -86.82509853, + "latitude": 36.11746395, + "phone": "6156869397", + "website_url": "http://www.jubileebeer.com", + "state": "Tennessee", + "street": "3430 Hampton Ave" + }, + { + "id": "30844cba-d501-4996-b7f5-26a347a7d89f", + "name": "Jughandle Brewing Co LLC", + "brewery_type": "micro", + "address_1": "4057 Asbury Ave Ste 6", + "address_2": null, + "address_3": null, + "city": "Tinton Falls", + "state_province": "New Jersey", + "postal_code": "07753-7700", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7328982220", + "website_url": "http://www.jughandlebrewing.com", + "state": "New Jersey", + "street": "4057 Asbury Ave Ste 6" + }, + { + "id": "e431c0fc-caf0-49e6-bac5-5f96ec31cd05", + "name": "Jukes Ale Works", + "brewery_type": "brewpub", + "address_1": "20560 Elkhorn Dr", + "address_2": null, + "address_3": null, + "city": "Omaha", + "state_province": "Nebraska", + "postal_code": "68022-3533", + "country": "United States", + "longitude": -96.237282, + "latitude": 41.283478, + "phone": "4023054905", + "website_url": "https://www.jukesaleworks.com", + "state": "Nebraska", + "street": "20560 Elkhorn Dr" + }, + { + "id": "e410f1e7-62c4-449f-81be-b16b606d71fd", + "name": "Julian Brewing Co", + "brewery_type": "micro", + "address_1": "2315 Main St", + "address_2": null, + "address_3": null, + "city": "Julian", + "state_province": "California", + "postal_code": "92065", + "country": "United States", + "longitude": -116.603975, + "latitude": 33.079171, + "phone": "7607653757", + "website_url": "http://www.baileybbq.com", + "state": "California", + "street": "2315 Main St" + }, + { + "id": "d6d0150a-2474-4f3d-97e0-43be00aaae9d", + "name": "Julius Lehrkind Brewing", + "brewery_type": "micro", + "address_1": "1717 N Rouse Ave", + "address_2": null, + "address_3": null, + "city": "Bozeman", + "state_province": "Montana", + "postal_code": "59715-2426", + "country": "United States", + "longitude": -111.031558, + "latitude": 45.69633335, + "phone": "4065510199", + "website_url": "http://www.juliusbrewing.com", + "state": "Montana", + "street": "1717 N Rouse Ave" + }, + { + "id": "123b5e5c-36a0-4ab7-8590-b433bc00110e", + "name": "Jump Ship Brewing", + "brewery_type": "micro", + "address_1": "11-13 Edinburgh Street", + "address_2": null, + "address_3": null, + "city": "Port Lincoln", + "state_province": "SA", + "postal_code": "5606", + "country": "Australia", + "longitude": 135.8605863, + "latitude": -34.7241695, + "phone": "+61 407 171 971", + "website_url": "http://www.jumpshipbrewing.com.au/", + "state": "SA", + "street": "11-13 Edinburgh Street" + }, + { + "id": "834e1ed2-363a-49b0-bbcf-4e2941114d52", + "name": "Junction Brewery & Grill", + "brewery_type": "brewpub", + "address_1": "110 W American Canyon Rd", + "address_2": null, + "address_3": null, + "city": "American Canyon", + "state_province": "California", + "postal_code": "94503-4196", + "country": "United States", + "longitude": -122.261689, + "latitude": 38.1658134, + "phone": "7076492285", + "website_url": "http://www.junctionbreweryandgrill.com", + "state": "California", + "street": "110 W American Canyon Rd" + }, + { + "id": "f26dabb7-ac86-468f-be39-968c1620c5ca", + "name": "June Lake Brewing", + "brewery_type": "micro", + "address_1": "131 S Crawford Ave", + "address_2": null, + "address_3": null, + "city": "June Lake", + "state_province": "California", + "postal_code": "93529", + "country": "United States", + "longitude": -119.0772032, + "latitude": 37.77835282, + "phone": null, + "website_url": "http://www.junelakebrewing.com", + "state": "California", + "street": "131 S Crawford Ave" + }, + { + "id": "acf51425-904f-441a-b8a0-ea3d939a6f7d", + "name": "Junk Ditch Brewing Company", + "brewery_type": "micro", + "address_1": "1825 W Main St", + "address_2": null, + "address_3": null, + "city": "Fort Wayne", + "state_province": "Indiana", + "postal_code": "46808-3715", + "country": "United States", + "longitude": -85.1669014, + "latitude": 41.0779727, + "phone": "2604600460", + "website_url": "http://junkditchbrewingco.com", + "state": "Indiana", + "street": "1825 W Main St" + }, + { + "id": "3399a400-b526-43d1-9900-1b0d04fdaa72", + "name": "Junkyard Brewing Company", + "brewery_type": "micro", + "address_1": "1416 1st Ave N", + "address_2": null, + "address_3": null, + "city": "Moorhead", + "state_province": "Minnesota", + "postal_code": "56560-2208", + "country": "United States", + "longitude": -96.75706974, + "latitude": 46.87621357, + "phone": "7012618403", + "website_url": "http://www.junkyardbeer.com", + "state": "Minnesota", + "street": "1416 1st Ave N" + }, + { + "id": "0ead3779-9ebb-4fe8-9f4d-ed39ab888a79", + "name": "Jupiter", + "brewery_type": "brewpub", + "address_1": "2181 Shattuck Ave", + "address_2": null, + "address_3": null, + "city": "Berkeley", + "state_province": "California", + "postal_code": "94704-1308", + "country": "United States", + "longitude": -122.2676799, + "latitude": 37.8697889, + "phone": "5108438277", + "website_url": "http://www.jupiterbeer.com", + "state": "California", + "street": "2181 Shattuck Ave" + }, + { + "id": "3c9cd3a2-f0b0-4a59-8a34-95f6c83fd1f1", + "name": "Jurnee Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Chantilly", + "state_province": "Virginia", + "postal_code": "20152-2075", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.jurneebeers.com", + "state": "Virginia", + "street": null + }, + { + "id": "6b57c0d0-2f3f-46b0-9de6-5216d8f9bd21", + "name": "K Point Brewing", + "brewery_type": "brewpub", + "address_1": "507 Main St", + "address_2": null, + "address_3": null, + "city": "Eau Claire", + "state_province": "Wisconsin", + "postal_code": "54701-3736", + "country": "United States", + "longitude": -91.49634405, + "latitude": 44.81114834, + "phone": null, + "website_url": "http://www.thecoffeegrounds.com/k-point-brewing/", + "state": "Wisconsin", + "street": "507 Main St" + }, + { + "id": "58ba7fb8-61a9-4a4f-b545-bee0987aa875", + "name": "K-Oz Restaurant Brewery", + "brewery_type": "brewpub", + "address_1": "121 7th St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94103-2835", + "country": "United States", + "longitude": -122.409904, + "latitude": 37.7786408, + "phone": "4158729431", + "website_url": "http://www.kandoz.com", + "state": "California", + "street": "121 7th St" + }, + { + "id": "a1359798-d004-4afc-b32d-5c6f99d6f7a3", + "name": "K2 Brothers Brewing", + "brewery_type": "brewpub", + "address_1": "1221 Empire Blvd", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "New York", + "postal_code": "14609-5946", + "country": "United States", + "longitude": -77.549992, + "latitude": 43.17664, + "phone": "5854131997", + "website_url": "http://www.K2Brewing.com", + "state": "New York", + "street": "1221 Empire Blvd" + }, + { + "id": "f27cfcf7-e5ff-412e-9af2-e3d4cf3b9df1", + "name": "Künstler Brewing", + "brewery_type": "brewpub", + "address_1": "302 E Lachapelle", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78204-1945", + "country": "United States", + "longitude": -98.5000988, + "latitude": 29.40503026, + "phone": "2106884519", + "website_url": "http://www.kuenstlerbrewing.com", + "state": "Texas", + "street": "302 E Lachapelle" + }, + { + "id": "b952998d-6e72-4971-9f01-ece9be765f11", + "name": "KAIJU! Beer", + "brewery_type": "micro", + "address_1": "27 Hume Street", + "address_2": null, + "address_3": null, + "city": "Huntingdale", + "state_province": "VIC", + "postal_code": "3166", + "country": "Australia", + "longitude": 145.1075402, + "latitude": -37.9109742, + "phone": "+61 474 640 868", + "website_url": "https://kaijubeer.com.au/pages/beer-pizza", + "state": "VIC", + "street": "27 Hume Street" + }, + { + "id": "3d54e58d-ed32-4e17-a719-5ccff31e0dcc", + "name": "Kaiser Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "1607 Hawthorne St", + "address_2": null, + "address_3": null, + "city": "Forest Grove", + "state_province": "Oregon", + "postal_code": "97116-2537", + "country": "United States", + "longitude": -123.0990254, + "latitude": 45.51421585, + "phone": "5034129628", + "website_url": "http://www.kaiserbrewingco.com", + "state": "Oregon", + "street": "1607 Hawthorne St" + }, + { + "id": "e4f18c07-2a3d-4019-bae0-463e3591dbeb", + "name": "Kaktus Brewing Co.", + "brewery_type": "brewpub", + "address_1": "471 South Hill Rd", + "address_2": null, + "address_3": null, + "city": "Bernalillo", + "state_province": "New Mexico", + "postal_code": "87004-9199", + "country": "United States", + "longitude": -106.5387392, + "latitude": 35.30844008, + "phone": "5053795072", + "website_url": "http://www.kaktusbrewery.com", + "state": "New Mexico", + "street": "471 South Hill Rd" + }, + { + "id": "a408aa61-48ff-477c-aefe-b38a0aea8dfe", + "name": "Kalispell Brewing Co", + "brewery_type": "micro", + "address_1": "412 Main St", + "address_2": null, + "address_3": null, + "city": "Kalispell", + "state_province": "Montana", + "postal_code": "59901-4849", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4067562739", + "website_url": "http://www.kalispellbrewing.com", + "state": "Montana", + "street": "412 Main St" + }, + { + "id": "715614d8-f8f2-4d32-a1c1-2d0c8ba8536c", + "name": "Kalona Brewing Company", + "brewery_type": "brewpub", + "address_1": "405 B Ave", + "address_2": null, + "address_3": null, + "city": "Kalona", + "state_province": "Iowa", + "postal_code": "52247", + "country": "United States", + "longitude": -91.7075553, + "latitude": 41.4833131, + "phone": "3196563335", + "website_url": "http://www.kalonabrewing.com", + "state": "Iowa", + "street": "405 B Ave" + }, + { + "id": "836b7f89-ce50-485f-8eeb-119b949054b3", + "name": "Kamigata Beer", + "brewery_type": "micro", + "address_1": "3-15-6 Nishiawaji", + "address_2": null, + "address_3": null, + "city": "Osaka", + "state_province": "Osaka", + "postal_code": "533-0031", + "country": "Japan", + "longitude": 135.5098626, + "latitude": 34.740096, + "phone": "81668296550", + "website_url": "https://kamigatabeer.co.jp/", + "state": "Osaka", + "street": "3-15-6 Nishiawaji" + }, + { + "id": "f25211f7-7f93-4d13-a170-d743cb1929c6", + "name": "Kane Brewing", + "brewery_type": "micro", + "address_1": "1750 Bloomsbury Ave", + "address_2": null, + "address_3": null, + "city": "Ocean", + "state_province": "New Jersey", + "postal_code": "07712-3941", + "country": "United States", + "longitude": -74.0448807, + "latitude": 40.2365672, + "phone": "7329228600", + "website_url": "http://www.kanebrewing.com", + "state": "New Jersey", + "street": "1750 Bloomsbury Ave" + }, + { + "id": "63149b79-de6e-4b2f-aabd-82b851e5c546", + "name": "Kannah Creek Brewing Co", + "brewery_type": "brewpub", + "address_1": "1960 N 12th St", + "address_2": null, + "address_3": null, + "city": "Grand Junction", + "state_province": "Colorado", + "postal_code": "81501-2912", + "country": "United States", + "longitude": -108.5522615, + "latitude": 39.08513947, + "phone": "9702630111", + "website_url": "http://www.kannahcreekbrewingco.com", + "state": "Colorado", + "street": "1960 N 12th St" + }, + { + "id": "6224f405-e903-4a89-96f7-c6d6e874eb56", + "name": "Kanook Beer Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Golden", + "state_province": "Colorado", + "postal_code": "80403-2674", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3036188362", + "website_url": "http://www.kanookbeer.com", + "state": "Colorado", + "street": null + }, + { + "id": "d2b60a75-2bed-4360-a4d7-ca0bb6004d0a", + "name": "Kansas City Bier Company", + "brewery_type": "micro", + "address_1": "310 W 79th St", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64114-1843", + "country": "United States", + "longitude": -94.59367119, + "latitude": 38.98548485, + "phone": "8162148691", + "website_url": "http://www.kcbier.com", + "state": "Missouri", + "street": "310 W 79th St" + }, + { + "id": "817b2847-133e-4139-8a6e-97a07259ea82", + "name": "Kansas City Breweries Company", + "brewery_type": "proprietor", + "address_1": "12650 S Pflumm Rd Ste 202", + "address_2": null, + "address_3": null, + "city": "Olathe", + "state_province": "Kansas", + "postal_code": "66062-3895", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8163016313", + "website_url": "http://www.KCLite.com", + "state": "Kansas", + "street": "12650 S Pflumm Rd Ste 202" + }, + { + "id": "76e95144-1f59-427d-9db8-b0a87d5e7f08", + "name": "Kansas Territory Brewing", + "brewery_type": "micro", + "address_1": "310 C St", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "Kansas", + "postal_code": "66968-1909", + "country": "United States", + "longitude": -97.0511838, + "latitude": 39.81655418, + "phone": "7853253300", + "website_url": null, + "state": "Kansas", + "street": "310 C St" + }, + { + "id": "4c8685f6-66d8-48c8-a80a-37edc0c7fa79", + "name": "Karbach Brewing Co", + "brewery_type": "large", + "address_1": "2032 Karbach St", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77092-8406", + "country": "United States", + "longitude": -95.4605283, + "latitude": 29.8063812, + "phone": null, + "website_url": "https://www.karbachbrewing.com/", + "state": "Texas", + "street": "2032 Karbach St" + }, + { + "id": "7ea8e10d-fca5-4705-a303-5a62b2ac60eb", + "name": "Karben4 Brewing", + "brewery_type": "micro", + "address_1": "3698 Kinsman Blvd", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Wisconsin", + "postal_code": "53704-2509", + "country": "United States", + "longitude": -89.32573248, + "latitude": 43.126221, + "phone": "6082414811", + "website_url": "http://www.karben4.com", + "state": "Wisconsin", + "street": "3698 Kinsman Blvd" + }, + { + "id": "85b50705-5285-477e-9858-1dd45a00b6f9", + "name": "Karetas Brewing", + "brewery_type": "contract", + "address_1": "1480 Industrial Dr Ste C", + "address_2": null, + "address_3": null, + "city": "Itasca", + "state_province": "Illinois", + "postal_code": "60143-1857", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3128788720", + "website_url": "http://www.karetasbeer.com", + "state": "Illinois", + "street": "1480 Industrial Dr Ste C" + }, + { + "id": "4e3b6909-1ec5-4ffe-b86a-d4ddaa7ef86f", + "name": "Karl Strauss Brewing Co", + "brewery_type": "regional", + "address_1": "5985 Santa Fe St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92109-1623", + "country": "United States", + "longitude": -117.231429, + "latitude": 32.832579, + "phone": "8582732739", + "website_url": "http://www.karlstrauss.com", + "state": "California", + "street": "5985 Santa Fe St" + }, + { + "id": "91d41bbf-1feb-429e-acf6-58a94353cf64", + "name": "Karl Strauss Brewing Co", + "brewery_type": "brewpub", + "address_1": "40868 Winchester Rd", + "address_2": null, + "address_3": null, + "city": "Temecula", + "state_province": "California", + "postal_code": "92591-5521", + "country": "United States", + "longitude": -117.1584479, + "latitude": 33.52586892, + "phone": "9512257963", + "website_url": "http://www.karlstrauss.com", + "state": "California", + "street": "40868 Winchester Rd" + }, + { + "id": "44dfe5e3-7687-4e3e-a660-9daefbb60cea", + "name": "Karl Strauss Brewing Co - 4S Ranch", + "brewery_type": "brewpub", + "address_1": "10448 Reserve Dr", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92127-3510", + "country": "United States", + "longitude": -117.113249, + "latitude": 33.021301, + "phone": "8582732739", + "website_url": "http://www.karlstrauss.com", + "state": "California", + "street": "10448 Reserve Dr" + }, + { + "id": "0ff9bd30-9fe3-4e27-af3d-e64ebafe8b45", + "name": "Karl Strauss Brewing Co - Anaheim", + "brewery_type": "brewpub", + "address_1": "2390 E Orangewood Ave Ste 100", + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92806-6141", + "country": "United States", + "longitude": -117.8823969, + "latitude": 33.79591925, + "phone": "7149401772", + "website_url": null, + "state": "California", + "street": "2390 E Orangewood Ave Ste 100" + }, + { + "id": "0ad5f944-b41f-4270-9c09-a1ef48cde47c", + "name": "Karl Strauss Brewing Co - Carlsbad", + "brewery_type": "brewpub", + "address_1": "5801 Armada Dr", + "address_2": null, + "address_3": null, + "city": "Carlsbad", + "state_province": "California", + "postal_code": "92008-4609", + "country": "United States", + "longitude": -117.314236, + "latitude": 33.124447, + "phone": "7604312739", + "website_url": "http://www.karlstrauss.com", + "state": "California", + "street": "5801 Armada Dr" + }, + { + "id": "e7260379-82c5-4054-97f2-19a4b8549ba6", + "name": "Karl Strauss Brewing Co - Costa Mesa", + "brewery_type": "brewpub", + "address_1": "901 S Coast Dr Ste A", + "address_2": null, + "address_3": null, + "city": "Costa Mesa", + "state_province": "California", + "postal_code": "92626-7790", + "country": "United States", + "longitude": -117.8958305, + "latitude": 33.68983637, + "phone": "7145462739", + "website_url": "http://www.karlstrauss.com", + "state": "California", + "street": "901 S Coast Dr Ste A" + }, + { + "id": "e5ad3941-dc5d-4283-bb52-cea08d3da6c3", + "name": "Karl Strauss Brewing Co - Downtown", + "brewery_type": "brewpub", + "address_1": "1157 Columbia St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92101-3511", + "country": "United States", + "longitude": -117.1672838, + "latitude": 32.71730086, + "phone": "6192342739", + "website_url": "http://www.karlstrauss.com", + "state": "California", + "street": "1157 Columbia St" + }, + { + "id": "defbc961-6100-4d7c-a4c1-8c99fd794931", + "name": "Karl Strauss Brewing Co - Downtown Los Angeles", + "brewery_type": "brewpub", + "address_1": "600 Wilshire Blvd Ste 100", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90017-3212", + "country": "United States", + "longitude": -118.256154, + "latitude": 34.047978, + "phone": "2132282739", + "website_url": null, + "state": "California", + "street": "600 Wilshire Blvd Ste 100" + }, + { + "id": "39d6b9f0-85b5-41ee-a429-68de5ddf9d1d", + "name": "Karl Strauss Brewing Co - La Jolla", + "brewery_type": "brewpub", + "address_1": "1044 Wall St", + "address_2": null, + "address_3": null, + "city": "La Jolla", + "state_province": "California", + "postal_code": "92037-4437", + "country": "United States", + "longitude": -117.2742141, + "latitude": 32.84679009, + "phone": "8585512739", + "website_url": "http://www.karlstrauss.com", + "state": "California", + "street": "1044 Wall St" + }, + { + "id": "b779fc08-50bb-4a3f-8ac0-314c10c686b7", + "name": "Karl Strauss Brewing Co - Sorrento Mesa", + "brewery_type": "brewpub", + "address_1": "9675 Scranton Rd", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92121-1761", + "country": "United States", + "longitude": -117.2027066, + "latitude": 32.89634566, + "phone": "8585872739", + "website_url": "http://www.karlstrauss.com", + "state": "California", + "street": "9675 Scranton Rd" + }, + { + "id": "7dce6b5c-feab-4ac4-8ce2-29a9fb62d83d", + "name": "Karl Strauss Brewing Co - Universal CityWalk", + "brewery_type": "brewpub", + "address_1": "1000 Universal Studios Blvd", + "address_2": null, + "address_3": null, + "city": "Universal City", + "state_province": "California", + "postal_code": "91608-1008", + "country": "United States", + "longitude": -118.3529336, + "latitude": 34.1322144, + "phone": "8187532739", + "website_url": "http://www.karlstrauss.com", + "state": "California", + "street": "1000 Universal Studios Blvd" + }, + { + "id": "5873d756-fd71-4516-9e2d-e9a8c9eabc7d", + "name": "Karlskrona Mikrobryggeri", + "brewery_type": "micro", + "address_1": "Alamedan 10", + "address_2": null, + "address_3": null, + "city": "Karlskrona", + "state_province": "Blekinge", + "postal_code": "371 31", + "country": "Sweden", + "longitude": 15.5913556, + "latitude": 56.1590806, + "phone": "+46 455 300 250", + "website_url": "https://www.karlskronamikrobryggeri.se/", + "state": "Blekinge", + "street": "Alamedan 10" + }, + { + "id": "8f11d155-4367-4941-856e-a092beb60139", + "name": "Karoo Brew", + "brewery_type": "brewpub", + "address_1": "Laingsburg Country Hotel", + "address_2": "Voortrekker Street", + "address_3": null, + "city": "Laingsburg", + "state_province": "Western Cape", + "postal_code": "6900", + "country": "South Africa", + "longitude": 20.8584, + "latitude": -33.1956, + "phone": "+27 23 551 1009", + "website_url": "https://laingsburgcountryhotel.co.za/", + "state": "Western Cape", + "street": "Laingsburg Country Hotel" + }, + { + "id": "48ea23aa-2239-4bf0-8581-c8bab06f9d26", + "name": "Karoo Craft Breweries", + "brewery_type": "micro", + "address_1": "62 Voortrekker Street", + "address_2": null, + "address_3": null, + "city": "Barrydale", + "state_province": "Western Cape", + "postal_code": "6750", + "country": "South Africa", + "longitude": 20.7208, + "latitude": -33.8967, + "phone": "+27 28 572 1018", + "website_url": "https://www.facebook.com/KarooCraftBreweries/", + "state": "Western Cape", + "street": "62 Voortrekker Street" + }, + { + "id": "07070d73-6cfd-409b-ac55-e8bb95d19884", + "name": "Karst Brewing LLC", + "brewery_type": "micro", + "address_1": "315 1st St", + "address_2": null, + "address_3": null, + "city": "Fountain", + "state_province": "Minnesota", + "postal_code": "55935-8816", + "country": "United States", + "longitude": -92.13521386, + "latitude": 43.73997404, + "phone": "6127476367", + "website_url": "http://www.karstbrewed.com", + "state": "Minnesota", + "street": "315 1st St" + }, + { + "id": "b6371629-e2db-40a4-a29f-59b5cf633f37", + "name": "Karusa Winery & Micro Brewery", + "brewery_type": "micro", + "address_1": "Schoemanshoek", + "address_2": "Cango Valley", + "address_3": null, + "city": "Oudtshoorn", + "state_province": "Western Cape", + "postal_code": "6625", + "country": "South Africa", + "longitude": 22.2598, + "latitude": -33.4795, + "phone": "+27 44 272 8717", + "website_url": "https://www.karusa.co.za/", + "state": "Western Cape", + "street": "Schoemanshoek" + }, + { + "id": "89f65ec7-dd3b-4449-a9fe-3cc3b16ce365", + "name": "Kassik's Brewery", + "brewery_type": "micro", + "address_1": "47160 Spruce Haven St", + "address_2": null, + "address_3": null, + "city": "Kenai", + "state_province": "Alaska", + "postal_code": "99611-9677", + "country": "United States", + "longitude": -151.307721, + "latitude": 60.663773, + "phone": null, + "website_url": null, + "state": "Alaska", + "street": "47160 Spruce Haven St" + }, + { + "id": "0e970da0-ccda-4d50-a8bf-4e84181cc790", + "name": "Kastaway Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Katy", + "state_province": "Texas", + "postal_code": "77493", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "0ec19b32-9ede-4830-be24-e417a317ef43", + "name": "Katabatic Brewing Co", + "brewery_type": "micro", + "address_1": "117 W Park St", + "address_2": null, + "address_3": null, + "city": "Livingston", + "state_province": "Montana", + "postal_code": "59047-2626", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4063332855", + "website_url": "http://www.katabaticbrewing.com", + "state": "Montana", + "street": "117 W Park St" + }, + { + "id": "ca8100c4-aeed-4481-bc51-10d2fcd733b6", + "name": "Kathrin's Biergarten", + "brewery_type": "brewpub", + "address_1": "4810 Granite Dr Ste 1A", + "address_2": null, + "address_3": null, + "city": "Rocklin", + "state_province": "California", + "postal_code": "95677", + "country": "United States", + "longitude": -121.2241825, + "latitude": 38.79092485, + "phone": "9162517502", + "website_url": "http://www.kathrinsbiergarten.com", + "state": "California", + "street": "4810 Granite Dr Ste 1A" + }, + { + "id": "581746ff-1964-4836-8176-966bf9cd3bd7", + "name": "Kauai Beer Company", + "brewery_type": "brewpub", + "address_1": "4265 Rice St", + "address_2": null, + "address_3": null, + "city": "Lihue", + "state_province": "Hawaii", + "postal_code": "96766", + "country": "United States", + "longitude": -159.3647876, + "latitude": 21.9722854, + "phone": "8082452337", + "website_url": "http://www.kauaibeer.com", + "state": "Hawaii", + "street": "4265 Rice St" + }, + { + "id": "9374fec3-c538-4132-a158-9543aedd32df", + "name": "Kauai Island Brewery", + "brewery_type": "brewpub", + "address_1": "4350 Waialo Rd", + "address_2": null, + "address_3": null, + "city": "Eleele", + "state_province": "Hawaii", + "postal_code": "96705", + "country": "United States", + "longitude": -159.586522, + "latitude": 21.901641, + "phone": "8083350006", + "website_url": "http://www.kauaiislandbrewing.com", + "state": "Hawaii", + "street": "4350 Waialo Rd" + }, + { + "id": "0b07d04e-8ede-4294-aeb7-a9cc759fd537", + "name": "Kaweah Brewing Co.", + "brewery_type": "micro", + "address_1": "1054 E Walnut Ave", + "address_2": null, + "address_3": null, + "city": "Tulare", + "state_province": "California", + "postal_code": "93274", + "country": "United States", + "longitude": -119.3349798, + "latitude": 36.19307993, + "phone": "5599725573", + "website_url": "http://www.kaweahbrewing.com", + "state": "California", + "street": "1054 E Walnut Ave" + }, + { + "id": "c0eadf1a-e33e-4721-8e7c-d9e1c6835582", + "name": "Keegan Ales", + "brewery_type": "micro", + "address_1": "20 Saint James St", + "address_2": null, + "address_3": null, + "city": "Kingston", + "state_province": "New York", + "postal_code": "12401-4534", + "country": "United States", + "longitude": -74.012151, + "latitude": 41.931636, + "phone": "8453312739", + "website_url": "http://www.keeganales.com", + "state": "New York", + "street": "20 Saint James St" + }, + { + "id": "4abee17c-99ad-42b6-ab38-348e1ec56c19", + "name": "Keen Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Florida", + "postal_code": "32204-1806", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9044698266", + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "42acde68-870f-4212-ab63-12e3ec609dd8", + "name": "Keg & Lantern Brewing Co", + "brewery_type": "brewpub", + "address_1": "97 Nassau Ave", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11222-3081", + "country": "United States", + "longitude": -73.95031963, + "latitude": 40.7241037, + "phone": "7183895050", + "website_url": "http://www.kegandlanternbrooklyn.com", + "state": "New York", + "street": "97 Nassau Ave" + }, + { + "id": "cd1bd913-e951-4679-9314-4ed1ad3a7736", + "name": "Keg Creek Brewing Company", + "brewery_type": "micro", + "address_1": "22381 221st S", + "address_2": null, + "address_3": null, + "city": "Glenwood", + "state_province": "Iowa", + "postal_code": "51534-5183", + "country": "United States", + "longitude": -95.7611617, + "latitude": 41.0257584, + "phone": "7125209029", + "website_url": "http://www.kegcreekbrewing.com", + "state": "Iowa", + "street": "22381 221st S" + }, + { + "id": "bbc7ea1e-ff95-4eb7-b896-8b98686af71d", + "name": "Keg Grove Brewing Company", + "brewery_type": "micro", + "address_1": "712 E Empire St Ste 2", + "address_2": null, + "address_3": null, + "city": "Bloomington", + "state_province": "Illinois", + "postal_code": "61701-3252", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://keggrovebrewing.com", + "state": "Illinois", + "street": "712 E Empire St Ste 2" + }, + { + "id": "9b79a515-29de-4d79-a0a7-ff48563be76a", + "name": "Kegg Brewing Company", + "brewery_type": "micro", + "address_1": "117 Faust Ln", + "address_2": null, + "address_3": null, + "city": "Champion", + "state_province": "Pennsylvania", + "postal_code": "15622-2107", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7249722350", + "website_url": null, + "state": "Pennsylvania", + "street": "117 Faust Ln" + }, + { + "id": "218545f9-4d45-424e-be42-1e9fca19dc5c", + "name": "Kei Bar", + "brewery_type": "bar", + "address_1": "378 East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "428985", + "country": "Singapore", + "longitude": 1.3087788892434, + "latitude": 103.9112709, + "phone": "+65 8292 6363", + "website_url": null, + "state": "Singapore", + "street": "378 East Coast Road" + }, + { + "id": "e14e681c-4337-471a-b579-e2cadb3e4119", + "name": "Kells Brew Pub", + "brewery_type": "brewpub", + "address_1": "210 NW 21st Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97209-1004", + "country": "United States", + "longitude": -122.6941546, + "latitude": 45.52447285, + "phone": "5037197175", + "website_url": "http://Kellsbrewpub.com", + "state": "Oregon", + "street": "210 NW 21st Ave" + }, + { + "id": "cbc66631-1113-4224-bcd2-148fe61e2bca", + "name": "Kelly Green Brewing Co.", + "brewery_type": "micro", + "address_1": "154 S Broadway # 156", + "address_2": null, + "address_3": null, + "city": "Pitman", + "state_province": "New Jersey", + "postal_code": "08071-2232", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8562702876", + "website_url": "http://www.kellygreenbrewing.com", + "state": "New Jersey", + "street": "154 S Broadway # 156" + }, + { + "id": "50914ed3-6bd6-40d5-bcf7-f1bbebb1c6ab", + "name": "Kellys Brewpub", + "brewery_type": "brewpub", + "address_1": "3222 Central Ave SE", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87106-1458", + "country": "United States", + "longitude": -106.6085695, + "latitude": 35.0800666, + "phone": "5052622739", + "website_url": "http://www.kellysbrewpub.com", + "state": "New Mexico", + "street": "3222 Central Ave SE" + }, + { + "id": "c7eb5f72-f903-4578-bc8d-9ca20592d23c", + "name": "Kelsen Brewing Company", + "brewery_type": "brewpub", + "address_1": "80 N High St Unit 3", + "address_2": null, + "address_3": null, + "city": "Derry", + "state_province": "New Hampshire", + "postal_code": "03038-2272", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6039653078", + "website_url": "http://www.kelsenbrewing.com", + "state": "New Hampshire", + "street": "80 N High St Unit 3" + }, + { + "id": "48d6fc6c-48a8-4e73-bb2b-6ae47c3f6361", + "name": "Kelsey Block Brewing Company", + "brewery_type": "brewpub", + "address_1": "41 N Main St", + "address_2": null, + "address_3": null, + "city": "Three Rivers", + "state_province": "Michigan", + "postal_code": "49093-1531", + "country": "United States", + "longitude": -85.63333961, + "latitude": 41.94474661, + "phone": "2697183667", + "website_url": "http://www.kelseyblock.com", + "state": "Michigan", + "street": "41 N Main St" + }, + { + "id": "54f07de5-d4d1-4d16-b216-02c11d7ee98b", + "name": "Kelsey Creek Brewing", + "brewery_type": "micro", + "address_1": "3945 Main St", + "address_2": null, + "address_3": null, + "city": "Kelseyville", + "state_province": "California", + "postal_code": "95451-7424", + "country": "United States", + "longitude": -122.8382903, + "latitude": 38.97782568, + "phone": "7072792311", + "website_url": "http://www.kelseycreekbrewing.com", + "state": "California", + "street": "3945 Main St" + }, + { + "id": "f41dff48-d079-4852-9416-9a79d64f32fd", + "name": "KelSo Beer Company", + "brewery_type": "contract", + "address_1": "529 Waverly Ave", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11238-2701", + "country": "United States", + "longitude": -73.96564, + "latitude": 40.68267586, + "phone": null, + "website_url": "http://www.kelsoofbrooklyn.com", + "state": "New York", + "street": "529 Waverly Ave" + }, + { + "id": "2c53eb34-d7da-4310-b8c2-3457d13874b7", + "name": "Kenai River Brewing Co", + "brewery_type": "brewpub", + "address_1": "308 Homestead Ln", + "address_2": null, + "address_3": null, + "city": "Soldotna", + "state_province": "Alaska", + "postal_code": "99669-8010", + "country": "United States", + "longitude": -151.0561141, + "latitude": 60.4850753, + "phone": "9072622337", + "website_url": "http://www.kenairiverbrewing.com", + "state": "Alaska", + "street": "308 Homestead Ln" + }, + { + "id": "45567ad8-a070-473e-a129-4e2e7a57e070", + "name": "Kennebec River Brewery", + "brewery_type": "brewpub", + "address_1": "1771 US Rte 201", + "address_2": null, + "address_3": null, + "city": "West Forks", + "state_province": "Maine", + "postal_code": "04985-0100", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8007657238", + "website_url": "http://www.northernoutdoors.com", + "state": "Maine", + "street": "1771 US Rte 201" + }, + { + "id": "27672b6b-dcfb-42eb-841d-6634524fb542", + "name": "Kennebunkport Brewery / Federal Jacks", + "brewery_type": "brewpub", + "address_1": "8 Western Ave Ste 6", + "address_2": null, + "address_3": null, + "city": "Kennebunk", + "state_province": "Maine", + "postal_code": "04043-7756", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2079674311", + "website_url": "http://www.federaljacks.com", + "state": "Maine", + "street": "8 Western Ave Ste 6" + }, + { + "id": "b5afa137-0ed6-42c1-953c-5e496af7e3dc", + "name": "Kennedy Vineyard", + "brewery_type": "micro", + "address_1": "3911 State Route 722", + "address_2": null, + "address_3": null, + "city": "New Madison", + "state_province": "Ohio", + "postal_code": "45346", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9372738381", + "website_url": "http://www.kennedyvineyard.net", + "state": "Ohio", + "street": "3911 State Route 722" + }, + { + "id": "605b096e-2566-4f4a-95ae-75c4426ffc0c", + "name": "Kennel Brewery", + "brewery_type": "micro", + "address_1": "Unit 25 The Interchange", + "address_2": "9 Nobel Street", + "address_3": null, + "city": "Somerset West", + "state_province": "Western Cape", + "postal_code": "7130", + "country": "South Africa", + "longitude": 18.8132, + "latitude": -34.0734, + "phone": "+27 71 361 7122", + "website_url": "https://kennelbrewery.co.za/", + "state": "Western Cape", + "street": "Unit 25 The Interchange" + }, + { + "id": "7cbb7b60-b351-43c0-af7a-f5c7555992ad", + "name": "Kennett Brewing Company", + "brewery_type": "brewpub", + "address_1": "109 S Broad St Ste 2", + "address_2": null, + "address_3": null, + "city": "Kennett Square", + "state_province": "Pennsylvania", + "postal_code": "19348-3101", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6104440440", + "website_url": "http://www.kennettbrewingcompany.com", + "state": "Pennsylvania", + "street": "109 S Broad St Ste 2" + }, + { + "id": "e421437b-f78e-463b-8e75-760210be1021", + "name": "Kensington Barrel Project", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19134", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "16199488705", + "website_url": "http://www.kensingtonbarrelproject.com", + "state": "Pennsylvania", + "street": null + }, + { + "id": "1440dc29-7dcd-446d-a9ac-c53f32b1baeb", + "name": "Kent Falls Brewing Company", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Kent", + "state_province": "Connecticut", + "postal_code": "06757", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8603989645", + "website_url": null, + "state": "Connecticut", + "street": null + }, + { + "id": "6a54d32a-99b0-4824-8779-f403c3ca8d26", + "name": "Kern River Brewing Co", + "brewery_type": "brewpub", + "address_1": "13415 Sierra Way", + "address_2": null, + "address_3": null, + "city": "Kernville", + "state_province": "California", + "postal_code": "93238-9714", + "country": "United States", + "longitude": -118.4192013, + "latitude": 35.75768083, + "phone": "7603762337", + "website_url": "http://www.kernriverbrewingcompany.com", + "state": "California", + "street": "13415 Sierra Way" + }, + { + "id": "3d05adb6-96f4-4f39-8d89-68954bf26620", + "name": "Kernersville Brewing Company", + "brewery_type": "micro", + "address_1": "210 N Main St", + "address_2": null, + "address_3": null, + "city": "Kernersville", + "state_province": "North Carolina", + "postal_code": "27284-4004", + "country": "United States", + "longitude": -80.07181578, + "latitude": 36.12191605, + "phone": "3368167283", + "website_url": null, + "state": "North Carolina", + "street": "210 N Main St" + }, + { + "id": "9ec5dc47-15d0-463a-90ba-40b06610a65f", + "name": "Kettle and Spoke Brewery, LLC", + "brewery_type": "micro", + "address_1": "2500 47th St Ste 12", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301-2335", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7196509697", + "website_url": "http://www.kettleandspoke.com", + "state": "Colorado", + "street": "2500 47th St Ste 12" + }, + { + "id": "ea45c0c1-0366-4353-be3e-0562f6564ab0", + "name": "Kettle House Brewing Co.", + "brewery_type": "regional", + "address_1": "605 Coldsmoke Ave", + "address_2": null, + "address_3": null, + "city": "Bonner", + "state_province": "Montana", + "postal_code": "59823-8504", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4067281660", + "website_url": "http://www.kettlehouse.com", + "state": "Montana", + "street": "605 Coldsmoke Ave" + }, + { + "id": "7818c5b5-3446-4c29-80ac-e0e51cc5bccc", + "name": "Kettlehead Brewing Company", + "brewery_type": "brewpub", + "address_1": "407 W Main St", + "address_2": null, + "address_3": null, + "city": "Tilton", + "state_province": "New Hampshire", + "postal_code": "03276-5012", + "country": "United States", + "longitude": -71.60013898, + "latitude": 43.44219881, + "phone": "6033258266", + "website_url": "http://www.kettleheadbrewing.com", + "state": "New Hampshire", + "street": "407 W Main St" + }, + { + "id": "bae6b4b7-c453-45b9-8a33-857174f66bea", + "name": "Kettlehouse Brewing Co - Bonner Brewery", + "brewery_type": "micro", + "address_1": "605 Coldsmoke Ave", + "address_2": null, + "address_3": null, + "city": "Bonner", + "state_province": "Montana", + "postal_code": "59823-8504", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4067281660", + "website_url": null, + "state": "Montana", + "street": "605 Coldsmoke Ave" + }, + { + "id": "b09bd2f0-5b16-4ab1-8e0b-f305b6371ec6", + "name": "Kettlehouse Brewing Co - Southside", + "brewery_type": "micro", + "address_1": "602 Myrtle St", + "address_2": null, + "address_3": null, + "city": "Missoula", + "state_province": "Montana", + "postal_code": "59801-2704", + "country": "United States", + "longitude": -113.9987621, + "latitude": 46.8655748, + "phone": "4067281660", + "website_url": "http://www.kettlehouse.com", + "state": "Montana", + "street": "602 Myrtle St" + }, + { + "id": "d26aba38-c5d5-4245-8d5e-349521c781f2", + "name": "Keuka Brewing Co", + "brewery_type": "micro", + "address_1": "8572 Briglin Rd", + "address_2": null, + "address_3": null, + "city": "Hammondsport", + "state_province": "New York", + "postal_code": "14840-9633", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6078684648", + "website_url": "http://www.keukabrewingcompany.com", + "state": "New York", + "street": "8572 Briglin Rd" + }, + { + "id": "bfe89204-c3f6-4a97-b084-d45bd61e09c2", + "name": "Keweenaw Brewing Co", + "brewery_type": "micro", + "address_1": "408 Shelden Ave", + "address_2": null, + "address_3": null, + "city": "Houghton", + "state_province": "Michigan", + "postal_code": "49931-2138", + "country": "United States", + "longitude": -88.5687729, + "latitude": 47.1219857, + "phone": "9064825596", + "website_url": "http://www.keweenawbrewing.com", + "state": "Michigan", + "street": "408 Shelden Ave" + }, + { + "id": "84d261cb-a580-4ae6-bc2d-4a95246a91e3", + "name": "Keweenaw Brewing Co - Production Facility", + "brewery_type": "micro", + "address_1": "408 Shelden Ave", + "address_2": null, + "address_3": null, + "city": "Houghton", + "state_province": "Michigan", + "postal_code": "49931", + "country": "United States", + "longitude": -88.5687729, + "latitude": 47.1219857, + "phone": "9064821937", + "website_url": "http://www.keweenawbrewing.com", + "state": "Michigan", + "street": "408 Shelden Ave" + }, + { + "id": "5328dad1-5eb2-4d03-83d7-4754d185cb55", + "name": "Key Brewing Co.", + "brewery_type": "micro", + "address_1": "2500 Grays Rd", + "address_2": null, + "address_3": null, + "city": "Dundalk", + "state_province": "Maryland", + "postal_code": "21222-5044", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Maryland", + "street": "2500 Grays Rd" + }, + { + "id": "7ed3f061-489d-43af-a990-1b944405bf3f", + "name": "Key City Brewing Co.", + "brewery_type": "brewpub", + "address_1": "1311 Washington St.", + "address_2": null, + "address_3": null, + "city": "Vicksburg", + "state_province": "Mississippi", + "postal_code": "39180", + "country": "United States", + "longitude": -90.88216445, + "latitude": 32.34927291, + "phone": "6264871330", + "website_url": "http://keycitybeer.com", + "state": "Mississippi", + "street": "1311 Washington St." + }, + { + "id": "2d416c88-05cf-467a-a144-c056c5d8caeb", + "name": "Keyhole Valley Brewing", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Shelton", + "state_province": "Washington", + "postal_code": "98584", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.keyholevalleybrewing.com", + "state": "Washington", + "street": null + }, + { + "id": "5f6a21d7-310c-4b7e-9448-b3443056f8c2", + "name": "Khoffner Brewery LTD", + "brewery_type": "micro", + "address_1": "1110 NE 8th Avenue Bay #1", + "address_2": null, + "address_3": null, + "city": "Fort Lauderdale", + "state_province": "Florida", + "postal_code": "33304", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7547018860", + "website_url": "http://www.khoffner.us", + "state": "Florida", + "street": "1110 NE 8th Avenue Bay #1" + }, + { + "id": "ee425504-a1ac-4318-916d-3fb918079230", + "name": "Kick Back Brewing Co", + "brewery_type": "micro", + "address_1": "11 Old Coach Road", + "address_2": null, + "address_3": null, + "city": "Aldinga", + "state_province": "SA", + "postal_code": "5173", + "country": "Australia", + "longitude": 138.4828559, + "latitude": -35.2679294, + "phone": "+61 423 739 745", + "website_url": "http://www.kickbackbrewing.com.au/", + "state": "SA", + "street": "11 Old Coach Road" + }, + { + "id": "43345a90-663e-4e85-9434-777cc8be53e1", + "name": "Kickback Brewery", + "brewery_type": "micro", + "address_1": "934 Osgood Hill Rd", + "address_2": null, + "address_3": null, + "city": "Westford", + "state_province": "Vermont", + "postal_code": "05494-9740", + "country": "United States", + "longitude": -72.99402467, + "latitude": 44.582023, + "phone": "8029994997", + "website_url": "http://www.kickbackbrewery.com", + "state": "Vermont", + "street": "934 Osgood Hill Rd" + }, + { + "id": "97aa09e9-e589-4781-83e0-e636e3edb28e", + "name": "Kicks Brewing", + "brewery_type": "micro", + "address_1": "31 Shepherd Street", + "address_2": null, + "address_3": null, + "city": "Marrickville", + "state_province": "NSW", + "postal_code": "2204", + "country": "Australia", + "longitude": 151.1639203, + "latitude": -33.9039233, + "phone": null, + "website_url": "https://kicksbrewing.com.au/", + "state": "NSW", + "street": "31 Shepherd Street" + }, + { + "id": "b5901cf4-8a11-4fac-a4e7-5297c96258a0", + "name": "Kickstand Brewing Co", + "brewery_type": "brewpub", + "address_1": "3050 Union Lake Rd Ste 4A", + "address_2": null, + "address_3": null, + "city": "Commerce Township", + "state_province": "Michigan", + "postal_code": "48382-4543", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2483015941", + "website_url": "http://www.kickstandbrewingco.com", + "state": "Michigan", + "street": "3050 Union Lake Rd Ste 4A" + }, + { + "id": "48c6f977-9987-4d38-9894-1ba67492c650", + "name": "Kiitos Brewing", + "brewery_type": "micro", + "address_1": "608 W 700 S", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84104-1016", + "country": "United States", + "longitude": -111.895509, + "latitude": 40.75505333, + "phone": "8012013942", + "website_url": "http://www.kiitosbrewing.com", + "state": "Utah", + "street": "608 W 700 S" + }, + { + "id": "e5feb9e8-459d-46d0-845e-cdb52c2f5f3f", + "name": "Kildare Brewing Company", + "brewery_type": "micro", + "address_1": "Canal View", + "address_2": null, + "address_3": null, + "city": "Sallins", + "state_province": "Kildare", + "postal_code": "W91 DFK2", + "country": "Ireland", + "longitude": -6.6668728, + "latitude": 53.2494668, + "phone": "35345850500", + "website_url": "https://www.kildarebrewing.ie/", + "state": "Kildare", + "street": "Canal View" + }, + { + "id": "80c6ae17-20f4-45a1-ac71-bb5fe6f821fa", + "name": "Killarney Brewing Company", + "brewery_type": "micro", + "address_1": "Muckross Rd ", + "address_2": null, + "address_3": null, + "city": "Killarney", + "state_province": "Kerry", + "postal_code": "V93 RC95", + "country": "Ireland", + "longitude": -9.5092943, + "latitude": 52.0543192, + "phone": "353646636505", + "website_url": "http://www.killarneybrewing.com/", + "state": "Kerry", + "street": "Muckross Rd " + }, + { + "id": "32239ea5-85c6-4011-823f-8137bba67846", + "name": "Killer Sprocket", + "brewery_type": "micro", + "address_1": "981 Mountain Highway", + "address_2": "Factory 1c", + "address_3": null, + "city": "Boronia", + "state_province": "VIC", + "postal_code": "3155", + "country": "Australia", + "longitude": 145.2907463, + "latitude": -37.8376208, + "phone": "+61 434 154 557", + "website_url": "http://www.killersprocket.com.au/", + "state": "VIC", + "street": "981 Mountain Highway" + }, + { + "id": "9c28b33d-f0b1-44d4-953f-61cefac7179c", + "name": "Killer Sprocket Brewery & Tasting Room", + "brewery_type": "micro", + "address_1": "981 Mountain Highway", + "address_2": "Factory 1c", + "address_3": null, + "city": "Boronia", + "state_province": "VIC", + "postal_code": "3155", + "country": "Australia", + "longitude": 145.2907463, + "latitude": -37.8376208, + "phone": "+61 434 154 557", + "website_url": "http://www.killersprocket.com.au/", + "state": "VIC", + "street": "981 Mountain Highway" + }, + { + "id": "c6ba8d58-a482-428b-bd1e-6efc2f49911e", + "name": "Kills Boro Brewing Company", + "brewery_type": "micro", + "address_1": "62 Van Duzer St", + "address_2": null, + "address_3": null, + "city": "Staten Island", + "state_province": "New York", + "postal_code": "10301-3226", + "country": "United States", + "longitude": -74.07740788, + "latitude": 40.636479, + "phone": "3472778680", + "website_url": "http://www.killsboro.com", + "state": "New York", + "street": "62 Van Duzer St" + }, + { + "id": "bebd0907-2a5a-4bb5-9a9a-1ff1cbb8bd0d", + "name": "Kilowatt Brewing", + "brewery_type": "micro", + "address_1": "7576 Clairemont Mesa Blvd", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92111-1504", + "country": "United States", + "longitude": -117.208801, + "latitude": 32.8276353, + "phone": "8587153998", + "website_url": "http://www.kilowatt.beer", + "state": "California", + "street": "7576 Clairemont Mesa Blvd" + }, + { + "id": "2d6e2ddc-da91-43d2-87e6-56e50cbde70c", + "name": "Kilstone Brewing", + "brewery_type": "closed", + "address_1": "764 34th St N Unit R", + "address_2": null, + "address_3": null, + "city": "Fargo", + "state_province": "North Dakota", + "postal_code": "58102-3097", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7018935224", + "website_url": "http://www.kilstonebrewing.com", + "state": "North Dakota", + "street": "764 34th St N Unit R" + }, + { + "id": "70c7aa10-d43f-44c0-b78c-07a2bf3f03c9", + "name": "Kilt Check Brewing Co", + "brewery_type": "micro", + "address_1": "4814 Hardware Dr NE", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87109", + "country": "United States", + "longitude": -106.5898844, + "latitude": 35.13600551, + "phone": "5058810234", + "website_url": "http://www.draftykiltbrewingco.com", + "state": "New Mexico", + "street": "4814 Hardware Dr NE" + }, + { + "id": "d0955deb-f952-4a6a-b470-61efa8b3d64a", + "name": "Kind Beer Distributing", + "brewery_type": "contract", + "address_1": "6014 McDaniel Ln Ste C", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28213-7351", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9105154140", + "website_url": "http://www.kindbeers.com", + "state": "North Carolina", + "street": "6014 McDaniel Ln Ste C" + }, + { + "id": "fc649f04-8490-4309-9e68-9b93139caa3f", + "name": "Kindred Beer", + "brewery_type": "micro", + "address_1": "750 Cross Pointe Rd Unit I and J", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43230", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6146264341", + "website_url": "http://www.kindredbeer.com", + "state": "Ohio", + "street": "750 Cross Pointe Rd Unit I and J" + }, + { + "id": "33744af1-03be-44ab-94e2-e1cebfb72874", + "name": "Kindred Spirit Brewing", + "brewery_type": "brewpub", + "address_1": "12830 West Creek Pkwy Ste J", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23238-1126", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8047080309", + "website_url": "http://www.kindredspiritbrewing.com", + "state": "Virginia", + "street": "12830 West Creek Pkwy Ste J" + }, + { + "id": "52d376d5-a888-4d05-bdb4-7b3f8b20e3d5", + "name": "Kinematic Brewing Company", + "brewery_type": "micro", + "address_1": "635 State Highway 46 E Ste 207", + "address_2": null, + "address_3": null, + "city": "Boerne", + "state_province": "Texas", + "postal_code": "78006-6010", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": "635 State Highway 46 E Ste 207" + }, + { + "id": "784c248a-7ed7-4ec9-8b99-eb64b85107a8", + "name": "Kinetic Brewing Company", + "brewery_type": "brewpub", + "address_1": "735 W Lancaster Blvd", + "address_2": null, + "address_3": null, + "city": "Lancaster", + "state_province": "California", + "postal_code": "93534-3118", + "country": "United States", + "longitude": -118.1433223, + "latitude": 34.6978404, + "phone": "6619422337", + "website_url": "http://www.kineticbrewing.com", + "state": "California", + "street": "735 W Lancaster Blvd" + }, + { + "id": "52cf27d7-5cce-4438-b0fe-f4bc1fc79b29", + "name": "King Canary Brewing Company", + "brewery_type": "micro", + "address_1": "562 Williamson Rd", + "address_2": null, + "address_3": null, + "city": "Mooresville", + "state_province": "North Carolina", + "postal_code": "28117-9186", + "country": "United States", + "longitude": -80.8683812, + "latitude": 35.5706022, + "phone": null, + "website_url": "http://www.kingcanarybrewing.com", + "state": "North Carolina", + "street": "562 Williamson Rd" + }, + { + "id": "ccfb87b8-ec95-46bb-ae80-47f322b6e45d", + "name": "King Cong Brewing Company", + "brewery_type": "micro", + "address_1": "1709 del Paso Blvd", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95815-3016", + "country": "United States", + "longitude": -121.456029, + "latitude": 38.60771757, + "phone": "9165148041", + "website_url": null, + "state": "California", + "street": "1709 del Paso Blvd" + }, + { + "id": "cc49edfb-728e-44ad-a34b-187460ce8b1b", + "name": "King Fox Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Hialeah", + "state_province": "Florida", + "postal_code": "33014-5231", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "aa3929fc-604e-4376-9cbe-7997d9e9a1b0", + "name": "King Harbor Brewing Co", + "brewery_type": "micro", + "address_1": "2907 182nd St", + "address_2": null, + "address_3": null, + "city": "Redondo Beach", + "state_province": "California", + "postal_code": "90278-3922", + "country": "United States", + "longitude": -118.3600656, + "latitude": 33.86561891, + "phone": "3105428657", + "website_url": "http://www.kingharborbrewing.com", + "state": "California", + "street": "2907 182nd St" + }, + { + "id": "af79623b-e521-40a4-b96c-c1435c975432", + "name": "King Island Brewhouse", + "brewery_type": "micro", + "address_1": "36 Lancaster Road", + "address_2": null, + "address_3": null, + "city": "Pegarah", + "state_province": "TAS", + "postal_code": "7256", + "country": "Australia", + "longitude": 144.0138244, + "latitude": -39.9592247, + "phone": "+61 455 666 138", + "website_url": "http://kibrew.house/", + "state": "TAS", + "street": "36 Lancaster Road" + }, + { + "id": "a438ad69-c7c2-4727-9ae5-ca3f1a7e70aa", + "name": "King River Brewing", + "brewery_type": "micro", + "address_1": "4515 Wangaratta-Whitfield Road", + "address_2": null, + "address_3": null, + "city": "Whitfield", + "state_province": "VIC", + "postal_code": "3733", + "country": "Australia", + "longitude": 146.4069976, + "latitude": -36.7305259, + "phone": "+61 3 5729 3604", + "website_url": "http://www.kingriverbrewing.com.au/", + "state": "VIC", + "street": "4515 Wangaratta-Whitfield Road" + }, + { + "id": "bdb14d3a-10d9-4fbb-967d-10ff70532c60", + "name": "King Road Brewing Co.", + "brewery_type": "micro", + "address_1": "796 King Road", + "address_2": null, + "address_3": null, + "city": "Oldbury", + "state_province": "WA", + "postal_code": "6121", + "country": "Australia", + "longitude": 115.9045099, + "latitude": -32.288994, + "phone": "+61 8 9511 1095", + "website_url": "https://kingroadbrewery.com/", + "state": "WA", + "street": "796 King Road" + }, + { + "id": "a0a49f09-fed5-4a49-b6f0-e95ed67ea1c0", + "name": "King Street Brewing Co", + "brewery_type": "micro", + "address_1": "9050 King Street", + "address_2": null, + "address_3": null, + "city": "Anchorage", + "state_province": "Alaska", + "postal_code": "99515", + "country": "United States", + "longitude": -149.879076, + "latitude": 61.13848935, + "phone": "9073365464", + "website_url": "http://www.kingstreetbrewing.com", + "state": "Alaska", + "street": "9050 King Street" + }, + { + "id": "2861ae77-a6cf-42e7-a7e9-813b66736a9c", + "name": "King Tide Brewing", + "brewery_type": "micro", + "address_1": "1 Studio Lane", + "address_2": null, + "address_3": null, + "city": "Coffs Harbour", + "state_province": "NSW", + "postal_code": "2450", + "country": "Australia", + "longitude": 153.1132014, + "latitude": -30.2980493, + "phone": "+61 2 5642 4242", + "website_url": "http://kingtidebrewing.com.au/", + "state": "NSW", + "street": "1 Studio Lane" + }, + { + "id": "3fb492d0-f799-4678-ac00-f5b43b6e808e", + "name": "Kingdom Brewing", + "brewery_type": "micro", + "address_1": "1876 Vt Route 105", + "address_2": null, + "address_3": null, + "city": "Newport", + "state_province": "Vermont", + "postal_code": "05855-9915", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8023347096", + "website_url": "http://www.kingdombrewingvt.com", + "state": "Vermont", + "street": "1876 Vt Route 105" + }, + { + "id": "6a935805-4994-41ea-8f35-28312a08f1a7", + "name": "Kings & Convicts Brewing", + "brewery_type": "micro", + "address_1": "523 Bank Ln", + "address_2": null, + "address_3": null, + "city": "Highwood", + "state_province": "Illinois", + "postal_code": "60040-1303", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2246198102", + "website_url": "http://www.kingsandconvicts.com", + "state": "Illinois", + "street": "523 Bank Ln" + }, + { + "id": "8061c26a-8738-4103-bdf4-34a78af72027", + "name": "Kings Brewing Company", + "brewery_type": "micro", + "address_1": "8560 Vineyard Ave Ste 301", + "address_2": null, + "address_3": null, + "city": "Rancho Cucamonga", + "state_province": "California", + "postal_code": "91730-4395", + "country": "United States", + "longitude": -117.6110744, + "latitude": 34.1064155, + "phone": "9097273333", + "website_url": "http://www.kingsbrewingco.com", + "state": "California", + "street": "8560 Vineyard Ave Ste 301" + }, + { + "id": "462e4ff7-0374-443f-b44f-fd09b77a9523", + "name": "Kings County Brewers Collective", + "brewery_type": "micro", + "address_1": "381 Troutman St", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11237-2613", + "country": "United States", + "longitude": -73.9236202, + "latitude": 40.7060306, + "phone": "7182882891", + "website_url": "http://www.kcbcbeer.com", + "state": "New York", + "street": "381 Troutman St" + }, + { + "id": "9f58f6bd-ef5d-4581-9df7-c13fe9ff2018", + "name": "Kings River Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Clovis", + "state_province": "California", + "postal_code": "93612-2825", + "country": "United States", + "longitude": -119.7029194, + "latitude": 36.8252277, + "phone": "5599060615", + "website_url": "http://www.kingsriverbrewing.com", + "state": "California", + "street": null + }, + { + "id": "97ece97b-b919-46b3-a063-cc5bbae50787", + "name": "Kingston Standard Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Kingston", + "state_province": "New York", + "postal_code": "12401", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.kingstonstandard.com", + "state": "New York", + "street": null + }, + { + "id": "1288cc89-fd41-431b-a65e-fe67f20939f7", + "name": "Kinkaider Brewing Co", + "brewery_type": "micro", + "address_1": "43860 Paulsen Rd", + "address_2": null, + "address_3": null, + "city": "Broken Bow", + "state_province": "Nebraska", + "postal_code": "68822-7120", + "country": "United States", + "longitude": -99.6608581, + "latitude": 41.4234199, + "phone": "3088728348", + "website_url": "http://www.kinkaiderbrewing.com", + "state": "Nebraska", + "street": "43860 Paulsen Rd" + }, + { + "id": "70092761-7618-4348-8370-c0d6ffc7d60e", + "name": "Kinnegar Brewing", + "brewery_type": "micro", + "address_1": "K2", + "address_2": "Ballyraine Industrial Estate", + "address_3": null, + "city": "Letterkenny", + "state_province": "Donegal", + "postal_code": "F92 R263", + "country": "Ireland", + "longitude": -7.7083241, + "latitude": 54.9557214, + "phone": "353749103890", + "website_url": null, + "state": "Donegal", + "street": "K2" + }, + { + "id": "90d71e53-16cf-4e32-ab36-fd068ab717aa", + "name": "Kinney Creek Brewery", + "brewery_type": "micro", + "address_1": "1016 7th St NW", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "Minnesota", + "postal_code": "55901-2668", + "country": "United States", + "longitude": -92.47808893, + "latitude": 44.0312604, + "phone": null, + "website_url": null, + "state": "Minnesota", + "street": "1016 7th St NW" + }, + { + "id": "f0130011-f340-4933-9601-ed71a88ffb24", + "name": "Kinslahger Brewing Company", + "brewery_type": "micro", + "address_1": "6806 Roosevelt Rd", + "address_2": null, + "address_3": null, + "city": "Oak Park", + "state_province": "Illinois", + "postal_code": "60304-1905", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8445524437", + "website_url": "http://kinslahger.com", + "state": "Illinois", + "street": "6806 Roosevelt Rd" + }, + { + "id": "41905729-681e-4b57-b0cc-13d053e296c6", + "name": "Kinsmen Brewing", + "brewery_type": "micro", + "address_1": "409 Canal Street", + "address_2": null, + "address_3": null, + "city": "Milldale", + "state_province": "Connecticut", + "postal_code": "06467", + "country": "United States", + "longitude": -72.9027141, + "latitude": 41.56679473, + "phone": "8605784778", + "website_url": "http://www.kinsmenbrewing.com", + "state": "Connecticut", + "street": "409 Canal Street" + }, + { + "id": "5c7d9592-68ed-4509-b68c-18f932001ebe", + "name": "Kirkwood Station Brewing", + "brewery_type": "closed", + "address_1": "105 E Jefferson Ave", + "address_2": null, + "address_3": null, + "city": "Kirkwood", + "state_province": "Missouri", + "postal_code": "63122-4025", + "country": "United States", + "longitude": -90.40608849, + "latitude": 38.58234304, + "phone": "3149662739", + "website_url": "http://www.kirkwoodstationbrewing.com", + "state": "Missouri", + "street": "105 E Jefferson Ave" + }, + { + "id": "c343a4f2-8c31-4424-8ac6-ae514fe7f64e", + "name": "Kismet Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Westfield", + "state_province": "Massachusetts", + "postal_code": "01085", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9789957711", + "website_url": "http://www.kismetbrewing.com", + "state": "Massachusetts", + "street": null + }, + { + "id": "793f55c2-e8d8-4e30-91d6-e92d649adcc7", + "name": "Kissingate Brewery", + "brewery_type": "taproom", + "address_1": "Church Lane", + "address_2": null, + "address_3": null, + "city": "Horsham", + "state_province": "West Sussex", + "postal_code": "RH13 6LU", + "country": "England", + "longitude": -0.26049, + "latitude": 51.041848, + "phone": "1403891335", + "website_url": "http://www.kissingate.co.uk/", + "state": "West Sussex", + "street": "Church Lane" + }, + { + "id": "32f4a19a-3950-4d44-9241-d5f02227ba08", + "name": "Kitzingen Brewery", + "brewery_type": "brewpub", + "address_1": "1760 44th St SW Ste 8", + "address_2": null, + "address_3": null, + "city": "Wyoming", + "state_province": "Michigan", + "postal_code": "49519-6422", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6168055077", + "website_url": "http://www.Kitzingen-Brewery.com", + "state": "Michigan", + "street": "1760 44th St SW Ste 8" + }, + { + "id": "92a774e5-ba50-422d-b644-e791e4962523", + "name": "Klamath Basin Brewing Co", + "brewery_type": "brewpub", + "address_1": "1320 Main St", + "address_2": null, + "address_3": null, + "city": "Klamath Falls", + "state_province": "Oregon", + "postal_code": "97601-5914", + "country": "United States", + "longitude": -121.7763705, + "latitude": 42.2280361, + "phone": "5412735222", + "website_url": "http://www.kbbrewing.com", + "state": "Oregon", + "street": "1320 Main St" + }, + { + "id": "de4d69d9-27e6-412f-8fd1-d32a1e05b4cc", + "name": "Klaus Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77065", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7134985004", + "website_url": "http://www.klausbrewing.com", + "state": "Texas", + "street": null + }, + { + "id": "a33adc30-c0cc-4222-b3a8-7fe7f213fdb2", + "name": "Klockow Brewing Company", + "brewery_type": "micro", + "address_1": "36 SE 10th St", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Minnesota", + "postal_code": "55744-3947", + "country": "United States", + "longitude": -93.52833525, + "latitude": 47.22108337, + "phone": "2189997229", + "website_url": "http://www.klockowbrewing.com", + "state": "Minnesota", + "street": "36 SE 10th St" + }, + { + "id": "5d5339d0-738d-4619-a5f8-8390ab694465", + "name": "Klondike Brewing Company", + "brewery_type": "brewpub", + "address_1": "365 2nd Ave", + "address_2": null, + "address_3": null, + "city": "Skagway", + "state_province": "Alaska", + "postal_code": "99840", + "country": "United States", + "longitude": -135.3188721, + "latitude": 59.45385743, + "phone": "9079832778", + "website_url": "http://www.klondikebeer.com", + "state": "Alaska", + "street": "365 2nd Ave" + }, + { + "id": "867eee9e-2138-4e62-97a9-b25e7fd1a1ff", + "name": "Klosterbrauerei Stift Engelszell", + "brewery_type": "nano", + "address_1": "Stiftstra�e 6", + "address_2": null, + "address_3": null, + "city": "Engelhartszell", + "state_province": "Oberösterreich", + "postal_code": "4090", + "country": "Austria", + "longitude": 13.73460683957, + "latitude": 48.49861615095, + "phone": "+4377178010", + "website_url": "https://www.stift-engelszell.at/trappistenbrauerei/brauerei", + "state": "Oberösterreich", + "street": "Stiftstra�e 6" + }, + { + "id": "26b358f9-89c5-483a-97e4-0bb511b8a77f", + "name": "Knee Deep Brewing Co", + "brewery_type": "regional", + "address_1": "13395 New Airport Rd Ste H", + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "California", + "postal_code": "95602-7419", + "country": "United States", + "longitude": -121.0799931, + "latitude": 38.95200534, + "phone": "5307974677", + "website_url": "http://www.kneedeepbrewing.com", + "state": "California", + "street": "13395 New Airport Rd Ste H" + }, + { + "id": "bd87d056-d676-4efa-bb1c-ee3541aa1478", + "name": "Knotty Brewing Co", + "brewery_type": "micro", + "address_1": "842 Market St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92101-6425", + "country": "United States", + "longitude": -117.127434, + "latitude": 32.711658, + "phone": "6192694337", + "website_url": "http://www.knottybrewing.com", + "state": "California", + "street": "842 Market St" + }, + { + "id": "d6bbd553-b258-4860-b522-938490e779f0", + "name": "Knotty Pine Brewing", + "brewery_type": "brewpub", + "address_1": "1765 W 3rd Ave", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43212-2769", + "country": "United States", + "longitude": -83.0529324, + "latitude": 39.9852813, + "phone": "6148171515", + "website_url": "http://www.knottypinebrewing.net", + "state": "Ohio", + "street": "1765 W 3rd Ave" + }, + { + "id": "cda79fca-998b-47aa-8659-d64f4e1ae6a1", + "name": "Knox County Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Galesburg", + "state_province": "Illinois", + "postal_code": "61401", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5126528793", + "website_url": "http://www.knoxcobrewco.com", + "state": "Illinois", + "street": null + }, + { + "id": "ce08319b-e0e5-41de-a8b3-7a7f7a970e58", + "name": "Knucklehead Craft Brewing", + "brewery_type": "brewpub", + "address_1": "426 Ridge Rd", + "address_2": null, + "address_3": null, + "city": "Webster", + "state_province": "New York", + "postal_code": "14580-1793", + "country": "United States", + "longitude": -77.51128726, + "latitude": 43.20572922, + "phone": "5853476236", + "website_url": "http://www.knuckleheadcraftbrewing.com", + "state": "New York", + "street": "426 Ridge Rd" + }, + { + "id": "937fd8a2-c9ca-4112-b9c3-09586ea57408", + "name": "KNURD Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Oakmont", + "state_province": "Pennsylvania", + "postal_code": "15139-2171", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3045509439", + "website_url": "http://www.knurdbrewing.com", + "state": "Pennsylvania", + "street": null + }, + { + "id": "ab339ec9-e818-404e-aa83-98adf4669f9c", + "name": "Knuth Brewing Company", + "brewery_type": "brewpub", + "address_1": "221 Watson St", + "address_2": null, + "address_3": null, + "city": "Ripon", + "state_province": "Wisconsin", + "postal_code": "54971-1514", + "country": "United States", + "longitude": -88.8386613, + "latitude": 43.8446401, + "phone": "9207485188", + "website_url": "http://www.knuthbrewingcompany.com", + "state": "Wisconsin", + "street": "221 Watson St" + }, + { + "id": "f5786ba6-a38a-44ae-80fa-164b538a9210", + "name": "Ko na Brewing Co", + "brewery_type": "micro", + "address_1": "89 Bertie Street", + "address_2": null, + "address_3": null, + "city": "Port Melbourne", + "state_province": "VIC", + "postal_code": "3207", + "country": "Australia", + "longitude": 144.9370538, + "latitude": -37.8285701, + "phone": "+61 3 8644 4044", + "website_url": "http://www.cbco.beer/", + "state": "VIC", + "street": "89 Bertie Street" + }, + { + "id": "f8c48bdf-6db1-4c2d-b9d2-7f45518b905e", + "name": "Kobold Brewing", + "brewery_type": "micro", + "address_1": "245 SW 6th St", + "address_2": null, + "address_3": null, + "city": "Redmond", + "state_province": "Oregon", + "postal_code": "97756-2108", + "country": "United States", + "longitude": -121.1744086, + "latitude": 44.27499604, + "phone": "5416783884", + "website_url": "http://www.koboldbrewing.com", + "state": "Oregon", + "street": "245 SW 6th St" + }, + { + "id": "c4bf52e4-1afc-4373-bead-a0871f261adf", + "name": "Kodiak Island Brewing Co", + "brewery_type": "micro", + "address_1": "117 Lower Mill Bay Rd", + "address_2": null, + "address_3": null, + "city": "Kodiak", + "state_province": "Alaska", + "postal_code": "99615-6580", + "country": "United States", + "longitude": -152.407155, + "latitude": 57.79008256, + "phone": "9074862537", + "website_url": "http://www.kodiakbrewery.com", + "state": "Alaska", + "street": "117 Lower Mill Bay Rd" + }, + { + "id": "0fc75aed-9415-4b33-a7aa-2529e5f092a6", + "name": "Koehler Brewing Co", + "brewery_type": "micro", + "address_1": "231 Park St", + "address_2": null, + "address_3": null, + "city": "Grove City", + "state_province": "Pennsylvania", + "postal_code": "16127-2011", + "country": "United States", + "longitude": -80.08130057, + "latitude": 41.16044545, + "phone": "8335634537", + "website_url": "http://koehlerbrewingcompany.com", + "state": "Pennsylvania", + "street": "231 Park St" + }, + { + "id": "5f56a466-73e1-4146-89eb-efaa6db0c27c", + "name": "Kohola Brewery", + "brewery_type": "micro", + "address_1": "910 Honoapiilani Hwy", + "address_2": null, + "address_3": null, + "city": "Lahaina", + "state_province": "Hawaii", + "postal_code": "96761-1507", + "country": "United States", + "longitude": -156.653963, + "latitude": 20.845329, + "phone": "8088683198", + "website_url": "http://www.koholabrewery.com", + "state": "Hawaii", + "street": "910 Honoapiilani Hwy" + }, + { + "id": "9cfadedb-019c-48df-ba2c-3811cc10687a", + "name": "Koi Pond Brewing Co", + "brewery_type": "micro", + "address_1": "1107 Falls Rd", + "address_2": null, + "address_3": null, + "city": "Rocky Mount", + "state_province": "North Carolina", + "postal_code": "27804-4407", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2529035127", + "website_url": "http://www.koipondbrewing.com", + "state": "North Carolina", + "street": "1107 Falls Rd" + }, + { + "id": "9f6df09c-b5f7-4854-ab9d-e2033a4eefc6", + "name": "Kokopelli Beer Company", + "brewery_type": "brewpub", + "address_1": "8931 Harlan St", + "address_2": null, + "address_3": null, + "city": "Westminster", + "state_province": "Colorado", + "postal_code": "80031-2931", + "country": "United States", + "longitude": -105.0640386, + "latitude": 39.8590102, + "phone": "7208406835", + "website_url": "http://www.kokopellibeer.com", + "state": "Colorado", + "street": "8931 Harlan St" + }, + { + "id": "54b5153a-ae15-47c0-8e81-b58a3ce58d40", + "name": "Kona Brewing Co", + "brewery_type": "regional", + "address_1": "74-5612 Pawai Pl", + "address_2": null, + "address_3": null, + "city": "Kailua Kona", + "state_province": "Hawaii", + "postal_code": "96740-1617", + "country": "United States", + "longitude": -155.997661, + "latitude": 19.643069, + "phone": "8083341133", + "website_url": "http://www.konabrewingco.com", + "state": "Hawaii", + "street": "74-5612 Pawai Pl" + }, + { + "id": "6a675ef6-c877-4ea5-b001-d9b10422d24a", + "name": "Kootenai River Brewing Co", + "brewery_type": "brewpub", + "address_1": "6424 Riverside Street", + "address_2": null, + "address_3": null, + "city": "Bonners Ferry", + "state_province": "Idaho", + "postal_code": "83805-1901", + "country": "United States", + "longitude": -116.3105154, + "latitude": 48.6965721, + "phone": "2082674677", + "website_url": "http://kootbrew.com", + "state": "Idaho", + "street": "6424 Riverside Street" + }, + { + "id": "bae80975-5b23-43db-96d5-7d4712dea985", + "name": "Kotobuki Brewing", + "brewery_type": "micro", + "address_1": "3−26−12 Tondacho", + "address_2": null, + "address_3": null, + "city": "Takatsuki", + "state_province": "Osaka", + "postal_code": "569-0814", + "country": "Japan", + "longitude": 135.5929565, + "latitude": 34.8330891, + "phone": "81726960003", + "website_url": "https://kuninocho.jp/", + "state": "Osaka", + "street": "3−26−12 Tondacho" + }, + { + "id": "33d1d1b3-2f70-4271-a561-a4de4cdc7183", + "name": "Kozy Yak Brewery & Fresar Winery", + "brewery_type": "brewpub", + "address_1": "197 N Main St", + "address_2": null, + "address_3": null, + "city": "Rosholt", + "state_province": "Wisconsin", + "postal_code": "54473-9741", + "country": "United States", + "longitude": -89.30914763, + "latitude": 44.62934343, + "phone": "7156773082", + "website_url": "http://www.kozyyak.com", + "state": "Wisconsin", + "street": "197 N Main St" + }, + { + "id": "de636cf2-1aa7-4f49-bff6-72deb55f3e02", + "name": "Krafty Draft Brew Pub", + "brewery_type": "brewpub", + "address_1": "269 Charter Oak Rd", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "South Carolina", + "postal_code": "29072-9200", + "country": "United States", + "longitude": -81.30586817, + "latitude": 33.98711021, + "phone": "8039960345", + "website_url": "http://www.draftydraft.com", + "state": "South Carolina", + "street": "269 Charter Oak Rd" + }, + { + "id": "e92070f8-b06f-42c0-9d6f-d20870fdfe3a", + "name": "Krauski's Brewskis / The Hoppy Brewer", + "brewery_type": "micro", + "address_1": "328 N Main Ave", + "address_2": null, + "address_3": null, + "city": "Gresham", + "state_province": "Oregon", + "postal_code": "97030-7210", + "country": "United States", + "longitude": -122.430839, + "latitude": 45.49992243, + "phone": "5033288474", + "website_url": "http://www.oregonshoppyplace.com", + "state": "Oregon", + "street": "328 N Main Ave" + }, + { + "id": "703642bf-e271-404d-9da3-7f753a0e7fb4", + "name": "Kretschmann Brewing Company", + "brewery_type": "micro", + "address_1": "9 Frederick St", + "address_2": null, + "address_3": null, + "city": "Webster", + "state_province": "Massachusetts", + "postal_code": "01570-2286", + "country": "United States", + "longitude": -71.8807961, + "latitude": 42.05004191, + "phone": "5086717711", + "website_url": "http://kbcbrewery.com", + "state": "Massachusetts", + "street": "9 Frederick St" + }, + { + "id": "b02f6b59-3f96-4f2b-a415-78047088d7f1", + "name": "Krikelkay Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Appomattox", + "state_province": "Virginia", + "postal_code": "24522-4034", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4344263419", + "website_url": "http://www.krikelkaybrewing.com", + "state": "Virginia", + "street": null + }, + { + "id": "f5d6d218-1a4e-4c29-a0d9-76f79cbbf5a7", + "name": "Krogh's Brewing, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Newton", + "state_province": "New Jersey", + "postal_code": "07860-2349", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9732415391", + "website_url": "http://www.kroghs.com", + "state": "New Jersey", + "street": null + }, + { + "id": "f64ab9e1-5d96-4c97-9e58-c176108d5d1c", + "name": "Krogh's Restaurant and Brewpub", + "brewery_type": "brewpub", + "address_1": "23 White Deer Plz", + "address_2": null, + "address_3": null, + "city": "Sparta", + "state_province": "New Jersey", + "postal_code": "07871-1823", + "country": "United States", + "longitude": -74.6395694, + "latitude": 41.03263072, + "phone": "9737298428", + "website_url": "http://www.kroghs.com", + "state": "New Jersey", + "street": "23 White Deer Plz" + }, + { + "id": "950ef73e-0766-4f4b-81f6-a5acc694d1f6", + "name": "Kros Strain Brewing Company", + "brewery_type": "micro", + "address_1": "10411 Portal Rd", + "address_2": null, + "address_3": null, + "city": "LaVista", + "state_province": "Nebraska", + "postal_code": "68128-5527", + "country": "United States", + "longitude": -96.075783, + "latitude": 41.171749, + "phone": "4027797990", + "website_url": "http://www.krosstrainbrewing.com", + "state": "Nebraska", + "street": "10411 Portal Rd" + }, + { + "id": "7266a350-71d2-4127-b1a4-9ab430d2bc16", + "name": "Kuhnhenn Brewing Co", + "brewery_type": "micro", + "address_1": "5919 Chicago Rd", + "address_2": null, + "address_3": null, + "city": "Warren", + "state_province": "Michigan", + "postal_code": "48092-1606", + "country": "United States", + "longitude": -83.023691, + "latitude": 42.523306, + "phone": "5869798361", + "website_url": "http://www.kuhnhenn.beer", + "state": "Michigan", + "street": "5919 Chicago Rd" + }, + { + "id": "1f1ed563-c408-4140-a284-fb41c5fbbe1a", + "name": "Kuhnhenn Clinton Township", + "brewery_type": "micro", + "address_1": "36000 Groesbeck Hwy", + "address_2": null, + "address_3": null, + "city": "Clinton Township", + "state_province": "Michigan", + "postal_code": "48035-1541", + "country": "United States", + "longitude": -82.91782739, + "latitude": 42.56179646, + "phone": "5862310249", + "website_url": null, + "state": "Michigan", + "street": "36000 Groesbeck Hwy" + }, + { + "id": "b0739f36-9c8a-47d3-b9cf-04873f11ea1d", + "name": "Kul Brewing", + "brewery_type": "contract", + "address_1": "1106 3rd St S", + "address_2": null, + "address_3": null, + "city": "La Crosse", + "state_province": "Wisconsin", + "postal_code": "54601", + "country": "United States", + "longitude": -91.25359353, + "latitude": 43.80249029, + "phone": null, + "website_url": "http://www.kulbrewing.com", + "state": "Wisconsin", + "street": "1106 3rd St S" + }, + { + "id": "72ceee38-898f-40c2-a1ae-a7cbc3b53aea", + "name": "Kulshan Brewing Co - K2", + "brewery_type": "micro", + "address_1": "1538 Kentucky St", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98229-4720", + "country": "United States", + "longitude": -122.4539281, + "latitude": 48.75767348, + "phone": "3603895348", + "website_url": "http://www.kulshanbrewing.com", + "state": "Washington", + "street": "1538 Kentucky St" + }, + { + "id": "e0643011-6445-4f77-bdde-052910e1d1ba", + "name": "Kulshan Brewing Co - Sunnyland", + "brewery_type": "micro", + "address_1": "2238 James St", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98225-4142", + "country": "United States", + "longitude": -122.4645645, + "latitude": 48.7601273, + "phone": "3603895348", + "website_url": "http://www.kulshanbrewing.com", + "state": "Washington", + "street": "2238 James St" + }, + { + "id": "b82ee348-f390-4de1-a996-87fcb2b76382", + "name": "Kulshan Brewing Co - Trackside", + "brewery_type": "location", + "address_1": "298 W Laurel St", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98225", + "country": "United States", + "longitude": -122.485461, + "latitude": 48.748621, + "phone": "3603895348", + "website_url": "https://kulshanbrewing.com/trackside", + "state": "Washington", + "street": "298 W Laurel St" + }, + { + "id": "0e2acbb1-c2b9-41ae-9fae-fda8487bf92f", + "name": "Kuracali Inc", + "brewery_type": "proprietor", + "address_1": "821 Caminito del Reposo", + "address_2": null, + "address_3": null, + "city": "Carlsbad", + "state_province": "California", + "postal_code": "92011-2404", + "country": "United States", + "longitude": -117.315852, + "latitude": 33.11493, + "phone": "8587756502", + "website_url": "http://www.kuracali.com", + "state": "California", + "street": "821 Caminito del Reposo" + }, + { + "id": "a8506d30-21bf-4a06-929e-e12ca46e7a2c", + "name": "LA Bodega Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Whittier", + "state_province": "California", + "postal_code": "90603-1207", + "country": "United States", + "longitude": -118.0336975, + "latitude": 33.9748932, + "phone": null, + "website_url": "http://LABODEGABREWINGCO.COM", + "state": "California", + "street": null + }, + { + "id": "2b1c6d10-8c88-4dbd-ac42-91b79373b6fb", + "name": "La Cabra Brewing", + "brewery_type": "brewpub", + "address_1": "642 Lancaster Ave", + "address_2": null, + "address_3": null, + "city": "Berwyn", + "state_province": "Pennsylvania", + "postal_code": "19312-1663", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6102407908", + "website_url": "http://www.lacabrabrewing.com", + "state": "Pennsylvania", + "street": "642 Lancaster Ave" + }, + { + "id": "839534f7-965a-4316-a719-3eded9e41b69", + "name": "La Conner Brewing Co", + "brewery_type": "brewpub", + "address_1": "117 S 1st St", + "address_2": null, + "address_3": null, + "city": "La Conner", + "state_province": "Washington", + "postal_code": "98257", + "country": "United States", + "longitude": -122.495792, + "latitude": 48.392231, + "phone": "3604661415", + "website_url": "https://www.laconnerbrewery.com", + "state": "Washington", + "street": "117 S 1st St" + }, + { + "id": "e8b5db64-dfbd-41b0-beff-0c4fd4c9be96", + "name": "La Cumbre Brewing Co", + "brewery_type": "micro", + "address_1": "3313 Girard Blvd NE", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87107-1930", + "country": "United States", + "longitude": -106.6138649, + "latitude": 35.11789781, + "phone": "5058720225", + "website_url": "http://www.lacumbrebrewing.com", + "state": "New Mexico", + "street": "3313 Girard Blvd NE" + }, + { + "id": "5770e017-bc96-414f-9b13-58f94246266c", + "name": "La Dona Cerveceria", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55405", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.dameladona.com", + "state": "Minnesota", + "street": null + }, + { + "id": "9b2e8e78-6823-416c-8c7d-6a4dfd12ac0a", + "name": "La Funke Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Bulverde", + "state_province": "Texas", + "postal_code": "78163-4156", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2104602083", + "website_url": "http://www.lafunke.com", + "state": "Texas", + "street": null + }, + { + "id": "ac41870a-13d1-446c-80e4-6cb4570f5fbb", + "name": "La Minotte", + "brewery_type": "micro", + "address_1": "14 Blvd de l'Europe", + "address_2": null, + "address_3": null, + "city": "Vitrolles", + "state_province": "Bouche du Rhône", + "postal_code": "13127", + "country": "France", + "longitude": 5.24158474, + "latitude": 43.43965026, + "phone": "465948644", + "website_url": "https://www.minot-brasserie.fr/", + "state": "Bouche du Rhône", + "street": "14 Blvd de l'Europe" + }, + { + "id": "57d6ec78-32cd-40c4-a480-4b7f987e3e55", + "name": "La Quinta Brewing Co", + "brewery_type": "micro", + "address_1": "74714 Technology Dr", + "address_2": null, + "address_3": null, + "city": "Palm Desert", + "state_province": "California", + "postal_code": "92211", + "country": "United States", + "longitude": -116.3572573, + "latitude": 33.78572864, + "phone": "7602002597", + "website_url": "http://www.laquintabrewing.com", + "state": "California", + "street": "74714 Technology Dr" + }, + { + "id": "dbe5aae8-47bc-4f8f-a9f4-8e0f328cb2bf", + "name": "La Verne Brewing", + "brewery_type": "micro", + "address_1": "2125 Wright Ave Ste C15", + "address_2": null, + "address_3": null, + "city": "La Verne", + "state_province": "California", + "postal_code": "91750-5816", + "country": "United States", + "longitude": -117.7717666, + "latitude": 34.09572437, + "phone": "9095965804", + "website_url": "http://www.lavernebrewingco.com", + "state": "California", + "street": "2125 Wright Ave Ste C15" + }, + { + "id": "55c1eb54-704c-4d7b-a4d7-7fa9804cc3bc", + "name": "LAB Brewing Co / Twisted Oak Tavern", + "brewery_type": "brewpub", + "address_1": "30105 Agoura Rd", + "address_2": null, + "address_3": null, + "city": "Agoura Hills", + "state_province": "California", + "postal_code": "91301-2003", + "country": "United States", + "longitude": -118.7799133, + "latitude": 34.14511931, + "phone": "8187350091", + "website_url": "http://www.twistedoaktavern.pub", + "state": "California", + "street": "30105 Agoura Rd" + }, + { + "id": "c881a3b1-c830-4feb-a50e-77f12da07592", + "name": "LABrewatory", + "brewery_type": "micro", + "address_1": "670 N Russell St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97227-1728", + "country": "United States", + "longitude": -122.6730826, + "latitude": 45.54092271, + "phone": "9712718151", + "website_url": "http://www.thelabrewatory.com", + "state": "Oregon", + "street": "670 N Russell St" + }, + { + "id": "1eb023fa-2183-4dbb-84a8-bfbc70a8abf2", + "name": "Labyrinth Brewing Company", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Manchester", + "state_province": "Connecticut", + "postal_code": "06040-5906", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.LBC.Beer", + "state": "Connecticut", + "street": null + }, + { + "id": "b0d195a7-b6df-4988-aef1-d598d3aff4d0", + "name": "Ladbroken Distillery Brewhouse", + "brewery_type": "micro", + "address_1": "7 Albury Street", + "address_2": null, + "address_3": null, + "city": "Tumbarumba", + "state_province": "NSW", + "postal_code": "2653", + "country": "Australia", + "longitude": 148.0076172, + "latitude": -35.7770584, + "phone": "+61 2 6046 9746", + "website_url": "http://www.ladbroken.com/", + "state": "NSW", + "street": "7 Albury Street" + }, + { + "id": "09e6cf26-a3e1-40b1-8af2-72532439fdb2", + "name": "Ladd & Lass Brewing", + "brewery_type": "planning", + "address_1": "722 NE 45th St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98105", + "country": "United States", + "longitude": -122.3197369, + "latitude": 47.66164527, + "phone": null, + "website_url": "http://www.laddandlassbrewing.com", + "state": "Washington", + "street": "722 NE 45th St" + }, + { + "id": "f45b808e-219d-4ccf-bbd2-a81c6161fcfc", + "name": "Lady Burra Brewhouse", + "brewery_type": "micro", + "address_1": "4 Topham Mall", + "address_2": null, + "address_3": null, + "city": "Adelaide", + "state_province": "SA", + "postal_code": "5000", + "country": "Australia", + "longitude": 138.5977858, + "latitude": -34.9248574, + "phone": "+61 8 8231 8928", + "website_url": "https://www.ladyburrabrewhouse.com.au/", + "state": "SA", + "street": "4 Topham Mall" + }, + { + "id": "2f852b07-f68a-4bef-a0b9-9c5bd05d5413", + "name": "Lady Justice Brewing Company", + "brewery_type": "micro", + "address_1": "4375 Eaton St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80212-7308", + "country": "United States", + "longitude": -105.0593393, + "latitude": 39.7909855, + "phone": null, + "website_url": "http://www.ladyjusticebrewing.com", + "state": "Colorado", + "street": "4375 Eaton St" + }, + { + "id": "e9f9632d-21de-4422-b8c0-29be7dee33a6", + "name": "Ladyface Ale Companie", + "brewery_type": "brewpub", + "address_1": "29281 Agoura Rd", + "address_2": null, + "address_3": null, + "city": "Agoura Hills", + "state_province": "California", + "postal_code": "91301-2597", + "country": "United States", + "longitude": -118.7661536, + "latitude": 34.14404216, + "phone": "8184774566", + "website_url": "http://www.ladyfaceale.com", + "state": "California", + "street": "29281 Agoura Rd" + }, + { + "id": "df201565-95ea-4d32-839e-857acf881c98", + "name": "Lafayette Brewing Co", + "brewery_type": "brewpub", + "address_1": "391 Washington St", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14203-2108", + "country": "United States", + "longitude": -78.8734526, + "latitude": 42.8847967, + "phone": "7168560062", + "website_url": "http://www.panamericangrill.com", + "state": "New York", + "street": "391 Washington St" + }, + { + "id": "f6ee7fb1-b7d4-4bd2-99a3-e466b2f72bf7", + "name": "Lafayette Brewing Co", + "brewery_type": "brewpub", + "address_1": "622 Main St", + "address_2": null, + "address_3": null, + "city": "Lafayette", + "state_province": "Indiana", + "postal_code": "47901-1451", + "country": "United States", + "longitude": -86.88994924, + "latitude": 40.41921732, + "phone": "7657422591", + "website_url": "http://www.lafayettebrewingco.com", + "state": "Indiana", + "street": "622 Main St" + }, + { + "id": "30c84a6c-3fc8-4025-a025-22cdc5e3165a", + "name": "Lager Heads Brewing Co.", + "brewery_type": "micro", + "address_1": "325 W Smith Rd", + "address_2": null, + "address_3": null, + "city": "Medina", + "state_province": "Ohio", + "postal_code": "44256-2352", + "country": "United States", + "longitude": -81.86844379, + "latitude": 41.13633377, + "phone": "3307212337", + "website_url": "http://www.lagerheads.us", + "state": "Ohio", + "street": "325 W Smith Rd" + }, + { + "id": "85cd6388-ee30-4325-8fd3-6ac7018eabda", + "name": "Lager Heads Smokehouse", + "brewery_type": "brewpub", + "address_1": "2832 Abbeyville Rd", + "address_2": null, + "address_3": null, + "city": "Medina", + "state_province": "Ohio", + "postal_code": "44256", + "country": "United States", + "longitude": -81.88755054, + "latitude": 41.19980605, + "phone": "3307251947", + "website_url": null, + "state": "Ohio", + "street": "2832 Abbeyville Rd" + }, + { + "id": "52953326-4295-42ce-b0aa-44b398ab9dc7", + "name": "Lagerhaus Brewery & Grill", + "brewery_type": "brewpub", + "address_1": "3438 E Lake Rd", + "address_2": null, + "address_3": null, + "city": "Palm Harbor", + "state_province": "Florida", + "postal_code": "34685-2400", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7272169682", + "website_url": "http://www.lagerhausbrewery.com", + "state": "Florida", + "street": "3438 E Lake Rd" + }, + { + "id": "709b32f8-b1ae-4288-b953-acd373f24e53", + "name": "Laguna Beach Beer Co", + "brewery_type": "micro", + "address_1": "29851 Aventura", + "address_2": null, + "address_3": null, + "city": "Rancho Santa Margarita", + "state_province": "California", + "postal_code": "92688-2014", + "country": "United States", + "longitude": -117.6108194, + "latitude": 33.63603528, + "phone": "9492646821", + "website_url": "http://www.lagunabeer.com", + "state": "California", + "street": "29851 Aventura" + }, + { + "id": "9f90e54e-0e87-415e-b01b-12f9c1261a3a", + "name": "Laguna Beach Brewery and Grille", + "brewery_type": "brewpub", + "address_1": "237 Ocean Ave", + "address_2": null, + "address_3": null, + "city": "Laguna Beach", + "state_province": "California", + "postal_code": "92651-2106", + "country": "United States", + "longitude": -117.7835382, + "latitude": 33.5427913, + "phone": "9494973381", + "website_url": "http://www.lagunabeachbrewery.net", + "state": "California", + "street": "237 Ocean Ave" + }, + { + "id": "f9f49460-31c1-4237-b59a-69cf2285e694", + "name": "Lagunitas Brewing Co", + "brewery_type": "large", + "address_1": "2607 W 17th St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60608-1823", + "country": "United States", + "longitude": -87.6932373, + "latitude": 41.8583603, + "phone": "7735222503", + "website_url": "http://www.lagunitas.com", + "state": "Illinois", + "street": "2607 W 17th St" + }, + { + "id": "0ede1ab1-f8fe-4d92-8d21-b5491a5591f7", + "name": "Lagunitas Brewing Co", + "brewery_type": "large", + "address_1": "1280 N McDowell Blvd", + "address_2": null, + "address_3": null, + "city": "Petaluma", + "state_province": "California", + "postal_code": "94954-1113", + "country": "United States", + "longitude": -122.6619198, + "latitude": 38.27264795, + "phone": "7077694495", + "website_url": "http://www.lagunitas.com", + "state": "California", + "street": "1280 N McDowell Blvd" + }, + { + "id": "d4e5d8fc-646b-4ff7-8f5a-3310971684b8", + "name": "Lagunitas Seattle Taproom and Beer Sanctuary", + "brewery_type": "brewpub", + "address_1": "1550 NW 49th St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98107-4731", + "country": "United States", + "longitude": -122.3784629, + "latitude": 47.6645881, + "phone": "2067842230", + "website_url": "https://lagunitas.com", + "state": "Washington", + "street": "1550 NW 49th St" + }, + { + "id": "2a6af192-e363-4432-ab79-bb32bcc0eaa5", + "name": "Laht Neppur Brewing", + "brewery_type": "brewpub", + "address_1": "444 Preston Ave", + "address_2": null, + "address_3": null, + "city": "Waitsburg", + "state_province": "Washington", + "postal_code": "99361-0738", + "country": "United States", + "longitude": -118.148767, + "latitude": 46.270046, + "phone": "5093376261", + "website_url": "http://lahtneppur.com", + "state": "Washington", + "street": "444 Preston Ave" + }, + { + "id": "f8cc3f9d-2d0f-4063-b6a8-f79cc4f4ced7", + "name": "Laines Brew Hub", + "brewery_type": "micro", + "address_1": "Stane Street", + "address_2": null, + "address_3": null, + "city": "Pulborough", + "state_province": "West Sussex", + "postal_code": "RH20 1DJ", + "country": "England", + "longitude": -0.478064, + "latitude": 50.989042, + "phone": "1273550000", + "website_url": "http://laine.beer/", + "state": "West Sussex", + "street": "Stane Street" + }, + { + "id": "8a240e31-0084-4199-9c3b-ae9b40785cfa", + "name": "Lake Ann Brewing Co", + "brewery_type": "micro", + "address_1": "6535 First St", + "address_2": null, + "address_3": null, + "city": "Lake Ann", + "state_province": "Michigan", + "postal_code": "49650-9549", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2316402327", + "website_url": "http://www.lakeannbrewing.com", + "state": "Michigan", + "street": "6535 First St" + }, + { + "id": "a0a910d5-9aa9-43e2-8416-b684624c393e", + "name": "Lake Anne Brew House", + "brewery_type": "micro", + "address_1": "11424 Washington Plz W", + "address_2": null, + "address_3": null, + "city": "Reston", + "state_province": "Virginia", + "postal_code": "20190-4310", + "country": "United States", + "longitude": -77.3411707, + "latitude": 38.9682812, + "phone": "5717582739", + "website_url": "http://www.lakeannebrewhouse.com", + "state": "Virginia", + "street": "11424 Washington Plz W" + }, + { + "id": "29654ba8-8b59-4704-8723-83e5769bc4ea", + "name": "Lake Austin Ales", + "brewery_type": "micro", + "address_1": "3200 Woodall Dr STE C-1", + "address_2": null, + "address_3": null, + "city": "Cedar Park", + "state_province": "Texas", + "postal_code": "78613", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5129644630", + "website_url": "http://lakeaustinales.com", + "state": "Texas", + "street": "3200 Woodall Dr STE C-1" + }, + { + "id": "3e64338a-ce72-4ccf-b234-bf01bb9c9788", + "name": "Lake Bluff Brewing Company", + "brewery_type": "micro", + "address_1": "16 E Scranton Ave", + "address_2": null, + "address_3": null, + "city": "Lake Bluff", + "state_province": "Illinois", + "postal_code": "60044-2543", + "country": "United States", + "longitude": -87.8453204, + "latitude": 42.2798322, + "phone": "2245445179", + "website_url": "http://www.lbbrew.com", + "state": "Illinois", + "street": "16 E Scranton Ave" + }, + { + "id": "bc2b5412-d16a-4bd9-9764-1dfd992737f8", + "name": "Lake Brothers Beer Company", + "brewery_type": "contract", + "address_1": "25W275 Woodstock Ct", + "address_2": null, + "address_3": null, + "city": "Naperville", + "state_province": "Illinois", + "postal_code": "60540-3427", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6302583938", + "website_url": "http://www.lakebrothersbeer.com", + "state": "Illinois", + "street": "25W275 Woodstock Ct" + }, + { + "id": "af6716b1-35fe-4511-9c87-05d9d9d408af", + "name": "Lake Bums BrewCo, LLC.", + "brewery_type": "micro", + "address_1": "112 Parrothead Ln", + "address_2": null, + "address_3": null, + "city": "Pontiac", + "state_province": "Missouri", + "postal_code": "65729-7134", + "country": "United States", + "longitude": -92.602321, + "latitude": 36.509057, + "phone": "4172936684", + "website_url": "http://www.lakebumsbrewco.com", + "state": "Missouri", + "street": "112 Parrothead Ln" + }, + { + "id": "dce821fa-491a-41a5-b8c3-0ae142f7e382", + "name": "Lake Charlevoix Brewing Company", + "brewery_type": "brewpub", + "address_1": "111 Bridge Park Dr", + "address_2": null, + "address_3": null, + "city": "Charlevoix", + "state_province": "Michigan", + "postal_code": "49720-1397", + "country": "United States", + "longitude": -85.25800112, + "latitude": 45.31728307, + "phone": "2314373220", + "website_url": "http://www.lakecharlevoixbrewing.com", + "state": "Michigan", + "street": "111 Bridge Park Dr" + }, + { + "id": "aed97693-3a01-4bca-834d-8669462fc3f9", + "name": "Lake Chelan Brewing Co", + "brewery_type": "micro", + "address_1": "50 Wapato Way", + "address_2": null, + "address_3": null, + "city": "Manson", + "state_province": "Washington", + "postal_code": "98831", + "country": "United States", + "longitude": -120.15943, + "latitude": 47.885978, + "phone": "5096874444", + "website_url": "https://lakechelanbrewery.com", + "state": "Washington", + "street": "50 Wapato Way" + }, + { + "id": "183ff86e-721b-4763-93ca-beb410b15ea8", + "name": "Lake City Brewing Company", + "brewery_type": "brewpub", + "address_1": "130 Bluff St", + "address_2": null, + "address_3": null, + "city": "Lake City", + "state_province": "Colorado", + "postal_code": "81235", + "country": "United States", + "longitude": -107.3191335, + "latitude": 38.02729486, + "phone": "9709445222", + "website_url": "http://www.lcbrewco.com", + "state": "Colorado", + "street": "130 Bluff St" + }, + { + "id": "95a2d108-4cdc-4a82-acf4-60bc4d1dd0de", + "name": "Lake Drum Brewing", + "brewery_type": "micro", + "address_1": "16 E Castle St", + "address_2": null, + "address_3": null, + "city": "Geneva", + "state_province": "New York", + "postal_code": "14456-2400", + "country": "United States", + "longitude": -76.98094035, + "latitude": 42.8677738, + "phone": "3157891200", + "website_url": "http://www.lakedrumbrewing.com", + "state": "New York", + "street": "16 E Castle St" + }, + { + "id": "760581e5-1ed8-452e-82e5-4a845f088c12", + "name": "Lake Effect Brewing Company", + "brewery_type": "micro", + "address_1": "4727 W Montrose Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60641-1504", + "country": "United States", + "longitude": -87.7459687, + "latitude": 41.9604369, + "phone": "3129194473", + "website_url": "http://www.lakeeffectbrewing.com", + "state": "Illinois", + "street": "4727 W Montrose Ave" + }, + { + "id": "5fbb8bd8-de7e-4a7c-be21-f5f291e84026", + "name": "Lake Gaston Brewing Company", + "brewery_type": "brewpub", + "address_1": "124 Hay St", + "address_2": null, + "address_3": null, + "city": "Fayetteville", + "state_province": "North Carolina", + "postal_code": "28301-5650", + "country": "United States", + "longitude": -78.87881455, + "latitude": 35.0528321, + "phone": "9107790444", + "website_url": "http://www.lakegastonbrew.com", + "state": "North Carolina", + "street": "124 Hay St" + }, + { + "id": "3466a4a4-b6dc-4aa5-b3bd-0277c3105e39", + "name": "Lake George Beer Hub", + "brewery_type": "micro", + "address_1": "1043 State Route 9", + "address_2": null, + "address_3": null, + "city": "Queensbury", + "state_province": "New York", + "postal_code": "12804-1374", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5182230372", + "website_url": "http://www.lakegeorgebrewingcompany.com", + "state": "New York", + "street": "1043 State Route 9" + }, + { + "id": "07b2c580-d9ef-4618-a2d4-bcbf4799a854", + "name": "Lake Louie Brewing Co", + "brewery_type": "micro", + "address_1": "7556 Pine Rd", + "address_2": null, + "address_3": null, + "city": "Arena", + "state_province": "Wisconsin", + "postal_code": "53503-9236", + "country": "United States", + "longitude": -89.93226918, + "latitude": 43.17299719, + "phone": "6087532675", + "website_url": "http://www.lakelouie.com", + "state": "Wisconsin", + "street": "7556 Pine Rd" + }, + { + "id": "eda1f691-d8b9-4358-8017-4a1e2d48de05", + "name": "Lake Mac Brewing", + "brewery_type": "micro", + "address_1": "2 Brodie Street", + "address_2": "3", + "address_3": null, + "city": "Morisset", + "state_province": "NSW", + "postal_code": "2264", + "country": "Australia", + "longitude": 151.4758611, + "latitude": -33.1159122, + "phone": "+61 435 056 220", + "website_url": "https://www.lakemacbrewing.co/", + "state": "NSW", + "street": "2 Brodie Street" + }, + { + "id": "d9896031-9330-4530-95c4-7cde7b22ebb8", + "name": "Lake Meran Brewery", + "brewery_type": "micro", + "address_1": "325 Meering West Road", + "address_2": null, + "address_3": null, + "city": "Meering West", + "state_province": "VIC", + "postal_code": "3579", + "country": "Australia", + "longitude": 143.7417908, + "latitude": -35.9117735, + "phone": "+61 499 023 975", + "website_url": "http://www.lakemeranfarm.com.au/", + "state": "VIC", + "street": "325 Meering West Road" + }, + { + "id": "fa5713fd-507f-458e-bf79-0e4f552281f4", + "name": "Lake Monster Brewing", + "brewery_type": "micro", + "address_1": "550 Vandalia St Ste 160", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55114-1997", + "country": "United States", + "longitude": -93.19071829, + "latitude": 44.95927578, + "phone": null, + "website_url": null, + "state": "Minnesota", + "street": "550 Vandalia St Ste 160" + }, + { + "id": "00745d83-0317-4c50-bb86-df7f6a98220b", + "name": "Lake of the Woods Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Williams", + "state_province": "Minnesota", + "postal_code": "56686-4652", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8074682337", + "website_url": null, + "state": "Minnesota", + "street": null + }, + { + "id": "2122a24b-761a-40e0-aed7-5ed13881fe48", + "name": "Lake Placid Pub and Brewery", + "brewery_type": "brewpub", + "address_1": "813 Mirror Lake Dr", + "address_2": null, + "address_3": null, + "city": "Lake Placid", + "state_province": "New York", + "postal_code": "12946-3829", + "country": "United States", + "longitude": -73.98108306, + "latitude": 44.28340973, + "phone": "5185233813", + "website_url": "http://www.ubuale.com", + "state": "New York", + "street": "813 Mirror Lake Dr" + }, + { + "id": "54a9a10c-dd29-45f7-8b67-0a0c7b6ad2b6", + "name": "Lake Rat Brewing", + "brewery_type": "brewpub", + "address_1": "108 S Main St", + "address_2": null, + "address_3": null, + "city": "Celina", + "state_province": "Ohio", + "postal_code": "45822", + "country": "United States", + "longitude": -84.57069367, + "latitude": 40.54820057, + "phone": "4197331830", + "website_url": "http://www.lakeratbrewing.com", + "state": "Ohio", + "street": "108 S Main St" + }, + { + "id": "4d099da0-bbe4-4a93-8d4f-f9e2cc12653a", + "name": "Lake St Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Oak Park", + "state_province": "Illinois", + "postal_code": "60302-1355", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7732512125", + "website_url": null, + "state": "Illinois", + "street": null + }, + { + "id": "249b9b41-61c6-47da-855e-41bc35e43bcb", + "name": "Lake St George Brewing Company", + "brewery_type": "micro", + "address_1": "4 Marshall Shore Rd", + "address_2": null, + "address_3": null, + "city": "Liberty", + "state_province": "Maine", + "postal_code": "04949", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2075893031", + "website_url": "http://www.lakestgeorgebrewing.com", + "state": "Maine", + "street": "4 Marshall Shore Rd" + }, + { + "id": "6f495faa-5c38-45f5-987e-c2201ea1c206", + "name": "Lake Stevens Brewing Company", + "brewery_type": "micro", + "address_1": "2010 Grade Rd", + "address_2": null, + "address_3": null, + "city": "Lake Stevens", + "state_province": "Washington", + "postal_code": "98258-9182", + "country": "United States", + "longitude": -122.0632552, + "latitude": 48.01611072, + "phone": "3605243678", + "website_url": "https://www.lakestevensbrewingco.com", + "state": "Washington", + "street": "2010 Grade Rd" + }, + { + "id": "259fd742-dcfc-4a77-90dc-78e89103fef9", + "name": "Lake Superior Brewing Co", + "brewery_type": "micro", + "address_1": "2711 W Superior St Ste 204", + "address_2": null, + "address_3": null, + "city": "Duluth", + "state_province": "Minnesota", + "postal_code": "55806-1893", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2187234000", + "website_url": "http://www.lakesuperiorbrewing.com", + "state": "Minnesota", + "street": "2711 W Superior St Ste 204" + }, + { + "id": "39958031-1672-4ef4-aa2f-c143a352ae05", + "name": "Lake Superior Brewing Co", + "brewery_type": "brewpub", + "address_1": "N-14283 Lake Avenue", + "address_2": null, + "address_3": null, + "city": "Grand Marais", + "state_province": "Michigan", + "postal_code": "49839", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9064942337", + "website_url": "http://www.grandmaraismichigan.com/LSBC", + "state": "Michigan", + "street": "N-14283 Lake Avenue" + }, + { + "id": "b7c67a98-42bc-4fd8-a7f8-d60527385c1e", + "name": "Lake Tahoe AleWorX", + "brewery_type": "micro", + "address_1": "2050 Lake Tahoe Blvd", + "address_2": null, + "address_3": null, + "city": "South Lake Tahoe", + "state_province": "California", + "postal_code": "96150-6404", + "country": "United States", + "longitude": -120.0019957, + "latitude": 38.91476209, + "phone": "5306000442", + "website_url": "http://www.laketahoealeworx.com", + "state": "California", + "street": "2050 Lake Tahoe Blvd" + }, + { + "id": "9e2794b8-6979-455c-9abf-d59473456d65", + "name": "Lake Texoma Lodge And Resort", + "brewery_type": "brewpub", + "address_1": "3263 US 70", + "address_2": null, + "address_3": null, + "city": "Mead", + "state_province": "Oklahoma", + "postal_code": "73449-5020", + "country": "United States", + "longitude": -96.488335, + "latitude": 33.998197, + "phone": "5809310100", + "website_url": "http://laketexomalodge.com", + "state": "Oklahoma", + "street": "3263 US 70" + }, + { + "id": "dff1b174-0608-4025-9d5c-dcc38fc05944", + "name": "Lake Time Brewery", + "brewery_type": "micro", + "address_1": "801 Main Ave Ste C", + "address_2": null, + "address_3": null, + "city": "Clear Lake", + "state_province": "Iowa", + "postal_code": "50428-1919", + "country": "United States", + "longitude": -93.378387, + "latitude": 43.137066, + "phone": "6413572040", + "website_url": "http://www.laketimebrewery.com", + "state": "Iowa", + "street": "801 Main Ave Ste C" + }, + { + "id": "ca3ec22e-8fdc-4437-9de0-d7af9e5cb382", + "name": "Lake Tribe Brewing", + "brewery_type": "micro", + "address_1": "3357 Garber Dr Unit 4", + "address_2": null, + "address_3": null, + "city": "Tallahassee", + "state_province": "Florida", + "postal_code": "32303-1123", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.laketribebrewing.com", + "state": "Florida", + "street": "3357 Garber Dr Unit 4" + }, + { + "id": "fad85278-37f6-437b-b9bc-825f20882475", + "name": "Lakefront Brewery Inc", + "brewery_type": "regional", + "address_1": "1872 N Commerce St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53212-3701", + "country": "United States", + "longitude": -87.9051723, + "latitude": 43.0547874, + "phone": "4143728800", + "website_url": "http://www.lakefrontbrewery.com", + "state": "Wisconsin", + "street": "1872 N Commerce St" + }, + { + "id": "613ec22c-761a-4d9b-bfa6-548d6349b1c0", + "name": "Lakes & Legends Brewing Company", + "brewery_type": "micro", + "address_1": "1368 Lasalle Ave", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55403-2316", + "country": "United States", + "longitude": -93.2794629, + "latitude": 44.9689387, + "phone": "6129996020", + "website_url": "http://www.lakesandlegends.com", + "state": "Minnesota", + "street": "1368 Lasalle Ave" + }, + { + "id": "f4c82777-00d8-43b8-905f-ebec11e16795", + "name": "Lakeville Brewing Co., LLC", + "brewery_type": "brewpub", + "address_1": "8790 Upper 208th Street W", + "address_2": null, + "address_3": null, + "city": "Lakeville", + "state_province": "Minnesota", + "postal_code": "55044", + "country": "United States", + "longitude": -93.2438161, + "latitude": 44.6477282, + "phone": "9524692739", + "website_url": "http://www.lakevillebrewing.com", + "state": "Minnesota", + "street": "8790 Upper 208th Street W" + }, + { + "id": "98fbb597-d6b0-4bf9-8029-4854766c568f", + "name": "Lakewood Brewing Co", + "brewery_type": "micro", + "address_1": "2302 Executive Dr", + "address_2": null, + "address_3": null, + "city": "Garland", + "state_province": "Texas", + "postal_code": "75041-6121", + "country": "United States", + "longitude": -96.6813726, + "latitude": 32.88842285, + "phone": "9728642337", + "website_url": "http://www.lakewoodbrewing.com", + "state": "Texas", + "street": "2302 Executive Dr" + }, + { + "id": "52ea2f4a-4fa3-4b6e-9c96-bd89a8689d16", + "name": "Lamplighter Brewing Co.", + "brewery_type": "micro", + "address_1": "284 Broadway", + "address_2": null, + "address_3": null, + "city": "Cambridge", + "state_province": "Massachusetts", + "postal_code": "02139-1808", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6179450450", + "website_url": "http://www.lamplighterbrewing.com", + "state": "Massachusetts", + "street": "284 Broadway" + }, + { + "id": "8e0083cf-6e94-4d89-81ab-0c3ec0dfd83c", + "name": "Lancaster Brewing Co", + "brewery_type": "micro", + "address_1": "302 N Plum St # 304", + "address_2": null, + "address_3": null, + "city": "Lancaster", + "state_province": "Pennsylvania", + "postal_code": "17602-2402", + "country": "United States", + "longitude": -76.29853301, + "latitude": 40.0438635, + "phone": "7173916258", + "website_url": "http://www.lancasterbrewing.com", + "state": "Pennsylvania", + "street": "302 N Plum St # 304" + }, + { + "id": "6bab7191-a9a7-4518-8c30-f30fbeea3c8d", + "name": "Land & Sea Brewery", + "brewery_type": "micro", + "address_1": "19 Venture Drive", + "address_2": null, + "address_3": null, + "city": "Noosaville", + "state_province": "QLD", + "postal_code": "4566", + "country": "Australia", + "longitude": 153.0433734, + "latitude": -26.408304, + "phone": "+61 7 5455 6128", + "website_url": "https://www.landandseabrewery.com/?utm_source=google&utm_medium=organic&utm_campaign=gmb", + "state": "QLD", + "street": "19 Venture Drive" + }, + { + "id": "1405d04f-3c3d-4c07-8fae-d7a9e7187c09", + "name": "Land Run Craft Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "El Reno", + "state_province": "Oklahoma", + "postal_code": "73036-1019", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4056267176", + "website_url": null, + "state": "Oklahoma", + "street": null + }, + { + "id": "045c0c63-50a7-423d-b65a-681179f870e9", + "name": "Land-Grant Brewing Company", + "brewery_type": "micro", + "address_1": "424 W Town St", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43215-4040", + "country": "United States", + "longitude": -83.01150763, + "latitude": 39.95787195, + "phone": "2169562634", + "website_url": "http://www.landgrantbrewing.com", + "state": "Ohio", + "street": "424 W Town St" + }, + { + "id": "7bd1ef5b-ae67-445a-a4ea-72700db24150", + "name": "Lander Brewing Co", + "brewery_type": "brewpub", + "address_1": "148 Main St", + "address_2": null, + "address_3": null, + "city": "Lander", + "state_province": "Wyoming", + "postal_code": "82520-3126", + "country": "United States", + "longitude": -108.739316, + "latitude": 42.8348632, + "phone": "3073328227", + "website_url": "http://www.landerbrewing.com", + "state": "Wyoming", + "street": "148 Main St" + }, + { + "id": "0d571efd-3562-4e7a-8b73-728e3929c416", + "name": "Landlocked Ales", + "brewery_type": "micro", + "address_1": "3225 S Wadsworth Blvd Unit R", + "address_2": null, + "address_3": null, + "city": "Lakewood", + "state_province": "Colorado", + "postal_code": "80227-5009", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3032848748", + "website_url": "http://www.landlockedales.com", + "state": "Colorado", + "street": "3225 S Wadsworth Blvd Unit R" + }, + { + "id": "60f5240c-7860-4044-99fc-a537b1c3296a", + "name": "Landon Winery", + "brewery_type": "micro", + "address_1": "2508 Lee Street", + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "Texas", + "postal_code": "75401", + "country": "United States", + "longitude": -96.10598813, + "latitude": 33.13987105, + "phone": "9034547878", + "website_url": "http://www.landonwinery.com", + "state": "Texas", + "street": "2508 Lee Street" + }, + { + "id": "602d2208-7f70-4996-b6cd-2e7b12f1be66", + "name": "Lanikai Brewing Co", + "brewery_type": "micro", + "address_1": "175-C Hamakua Dr", + "address_2": null, + "address_3": null, + "city": "Kailua", + "state_province": "Hawaii", + "postal_code": "96734", + "country": "United States", + "longitude": -157.7403266, + "latitude": 21.39044286, + "phone": null, + "website_url": "https://www.lanikaibrewing.com", + "state": "Hawaii", + "street": "175-C Hamakua Dr" + }, + { + "id": "8a3a7075-3f20-4947-b093-b685a18caf7e", + "name": "Lansing Brewing Company", + "brewery_type": "brewpub", + "address_1": "518 E Shiawassee St", + "address_2": null, + "address_3": null, + "city": "Lansing", + "state_province": "Michigan", + "postal_code": "48912-1214", + "country": "United States", + "longitude": -84.5455093, + "latitude": 42.7368424, + "phone": "5175996001", + "website_url": null, + "state": "Michigan", + "street": "518 E Shiawassee St" + }, + { + "id": "6f57d1be-a7fb-456c-979c-cf4cda27f63d", + "name": "Lantern Brewing", + "brewery_type": "micro", + "address_1": "938 N 95th St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98103-3206", + "country": "United States", + "longitude": -122.3455994, + "latitude": 47.6980806, + "phone": "2067295350", + "website_url": "http://www.lanternbrewing.com", + "state": "Washington", + "street": "938 N 95th St" + }, + { + "id": "498336ae-d10e-4598-a7f8-74a60ebb1312", + "name": "LaOtto Brewing LLC", + "brewery_type": "brewpub", + "address_1": "202 S Main St", + "address_2": null, + "address_3": null, + "city": "Laotto", + "state_province": "Indiana", + "postal_code": "46763-4800", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2608973360", + "website_url": null, + "state": "Indiana", + "street": "202 S Main St" + }, + { + "id": "ea302610-7ff2-449c-acda-074e4610143c", + "name": "Lariat Lodge Brewing", + "brewery_type": "brewpub", + "address_1": "27618 Fireweed Dr", + "address_2": null, + "address_3": null, + "city": "Evergreen", + "state_province": "Colorado", + "postal_code": "80439-8462", + "country": "United States", + "longitude": -105.3136925, + "latitude": 39.63935145, + "phone": "3036741842", + "website_url": "http://www.LariatLodgeBrewing.com", + "state": "Colorado", + "street": "27618 Fireweed Dr" + }, + { + "id": "97e95da5-4527-40fa-9690-2d195561b45e", + "name": "Lark Brewing", + "brewery_type": "brewpub", + "address_1": "3295 University Ave", + "address_2": null, + "address_3": null, + "city": "Waterloo", + "state_province": "Iowa", + "postal_code": "50701-2003", + "country": "United States", + "longitude": -92.39002129, + "latitude": 42.50147007, + "phone": "3192385275", + "website_url": "http://www.larkbrewing.com", + "state": "Iowa", + "street": "3295 University Ave" + }, + { + "id": "d1cb16f8-70d9-4819-aea9-75c9ed9f959a", + "name": "Larrabee Lager Co", + "brewery_type": "brewpub", + "address_1": "4151 Meridian St", + "address_2": "Suite 100", + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98226", + "country": "United States", + "longitude": -122.490476, + "latitude": 48.791769, + "phone": "3606565768", + "website_url": "https://www.larrabeelagerco.com/", + "state": "Washington", + "street": "4151 Meridian St" + }, + { + "id": "540e67b5-83ff-427b-a3d6-5e8fb187ad81", + "name": "Larrikin Beer", + "brewery_type": "brewpub", + "address_1": "Belfast Street", + "address_2": null, + "address_3": null, + "city": "Hove", + "state_province": "East Sussex", + "postal_code": "BN3 3YS", + "country": "England", + "longitude": -0.175401, + "latitude": 50.830522, + "phone": "1273241881", + "website_url": "https://www.urchinpub.co.uk/", + "state": "East Sussex", + "street": "Belfast Street" + }, + { + "id": "ac58a585-c2cf-4ac8-861b-2a45acba63a7", + "name": "Las Cazuelas Brewing", + "brewery_type": "brewpub", + "address_1": "4051 Sara Rd SE", + "address_2": null, + "address_3": null, + "city": "Rio Rancho", + "state_province": "New Mexico", + "postal_code": "87124-1031", + "country": "United States", + "longitude": -106.6559686, + "latitude": 35.23142306, + "phone": "5059949364", + "website_url": "http://www.cazuelasmexicangrill.com", + "state": "New Mexico", + "street": "4051 Sara Rd SE" + }, + { + "id": "6122eb31-07f0-4546-9067-651dd3ef684a", + "name": "Lassen Ale Works @ The Pioneer Saloon", + "brewery_type": "brewpub", + "address_1": "724 Main St", + "address_2": null, + "address_3": null, + "city": "Susanville", + "state_province": "California", + "postal_code": "96130-4372", + "country": "United States", + "longitude": -120.6326661, + "latitude": 40.4055904, + "phone": "5302577666", + "website_url": "http://www.lassenaleworks.com", + "state": "California", + "street": "724 Main St" + }, + { + "id": "2533ff4b-6bf8-4219-88c6-4eb45865e467", + "name": "Last Call Brewing Co", + "brewery_type": "micro", + "address_1": "944 Shepard Ct Ste C", + "address_2": null, + "address_3": null, + "city": "Oakdale", + "state_province": "California", + "postal_code": "95361-7785", + "country": "United States", + "longitude": -120.8501901, + "latitude": 37.76676049, + "phone": "8885125592", + "website_url": "http://www.lastcallbrewing.com", + "state": "California", + "street": "944 Shepard Ct Ste C" + }, + { + "id": "347f8eaf-8de7-4f8d-9055-7bb3d9634210", + "name": "Last Chair Brewery & Restaurant", + "brewery_type": "brewpub", + "address_1": "5 NH-25", + "address_2": null, + "address_3": null, + "city": "Plymouth", + "state_province": "New Hampshire", + "postal_code": "03264", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6032389545", + "website_url": "https://www.thelastchairnh.com/", + "state": "New Hampshire", + "street": "5 NH-25" + }, + { + "id": "dc24a14b-053d-4ce8-9f70-00cff94ed4a6", + "name": "Last Days of Autumn Brewing", + "brewery_type": "brewpub", + "address_1": "808 E Magnolia Ave", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37917-7637", + "country": "United States", + "longitude": -83.914805, + "latitude": 35.97603, + "phone": "8652024298", + "website_url": "http://www.lastdaysofautumn.com", + "state": "Tennessee", + "street": "808 E Magnolia Ave" + }, + { + "id": "d08ba7d7-3d15-4127-bd79-89f9f482efd3", + "name": "Last Frontier Brewing Company", + "brewery_type": "brewpub", + "address_1": "238 N Boundary St", + "address_2": null, + "address_3": null, + "city": "Wasilla", + "state_province": "Alaska", + "postal_code": "99654-7127", + "country": "United States", + "longitude": -149.4395534, + "latitude": 61.581483, + "phone": "9073577200", + "website_url": "https://lastfrontierbrew.com", + "state": "Alaska", + "street": "238 N Boundary St" + }, + { + "id": "841cd723-8ea8-449b-ac58-cab18ba0360d", + "name": "Last Mile Brewery", + "brewery_type": "micro", + "address_1": "221 Swanzey St Unit F", + "address_2": null, + "address_3": null, + "city": "Keystone", + "state_province": "South Dakota", + "postal_code": "57751-2042", + "country": "United States", + "longitude": -103.4237317, + "latitude": 43.89448562, + "phone": null, + "website_url": "http://lastmilebeer.com", + "state": "South Dakota", + "street": "221 Swanzey St Unit F" + }, + { + "id": "12327675-9ad1-496a-90b9-d3d46a68b8b1", + "name": "Last Mile Brewery", + "brewery_type": "micro", + "address_1": "635 Creek Dr Unit C", + "address_2": null, + "address_3": null, + "city": "Rapid City", + "state_province": "South Dakota", + "postal_code": "57703-4012", + "country": "United States", + "longitude": -103.1866638, + "latitude": 44.07909761, + "phone": null, + "website_url": "http://lastmilebeer.com", + "state": "South Dakota", + "street": "635 Creek Dr Unit C" + }, + { + "id": "ba33dfcc-f926-4762-9d58-62cfcbfa1c5b", + "name": "Last Name Brewing", + "brewery_type": "micro", + "address_1": "2120 Porterfield Way", + "address_2": null, + "address_3": null, + "city": "Upland", + "state_province": "California", + "postal_code": "91786-2111", + "country": "United States", + "longitude": -117.690875, + "latitude": 34.10932596, + "phone": "9095790032", + "website_url": "http://www.lastnamebrewing.com", + "state": "California", + "street": "2120 Porterfield Way" + }, + { + "id": "940ff56d-c454-425a-9de1-ceda447405af", + "name": "Last Stand Brewing Company", + "brewery_type": "micro", + "address_1": "12345 Pauls Valley Rd", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78737-9615", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5123733629", + "website_url": "http://www.laststandbrewing.com", + "state": "Texas", + "street": "12345 Pauls Valley Rd" + }, + { + "id": "56d73bd8-c80f-48e6-8b26-fa2121896823", + "name": "Last Wave Brewing Co", + "brewery_type": "micro", + "address_1": "601 Bay Ave", + "address_2": null, + "address_3": null, + "city": "Point Pleasant Beach", + "state_province": "New Jersey", + "postal_code": "08742-2536", + "country": "United States", + "longitude": -74.051905, + "latitude": 40.089573, + "phone": "7329035278", + "website_url": "http://www.lastwavebrewing.com", + "state": "New Jersey", + "street": "601 Bay Ave" + }, + { + "id": "0e175a90-d11f-4089-8170-0218afe784d8", + "name": "Lasting Brass Craft Brewing", + "brewery_type": "micro", + "address_1": "1864 Watertown Ave", + "address_2": null, + "address_3": null, + "city": "Oakville", + "state_province": "Connecticut", + "postal_code": "06779-1754", + "country": "United States", + "longitude": -73.0716733, + "latitude": 41.5801589, + "phone": "8604172581", + "website_url": "http://www.lastingbrass.com", + "state": "Connecticut", + "street": "1864 Watertown Ave" + }, + { + "id": "557f528d-1b5e-40ee-bc7c-faeaba038bd6", + "name": "Latchkey Brewing Co", + "brewery_type": "micro", + "address_1": "1795 Hancock St Mission Brewery Plaza", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92110-2006", + "country": "United States", + "longitude": -117.1836532, + "latitude": 32.74209039, + "phone": "9165551212", + "website_url": "http://www.latchkeybrew.com", + "state": "California", + "street": "1795 Hancock St Mission Brewery Plaza" + }, + { + "id": "df0c8917-503f-4c64-916c-8ea9870dab60", + "name": "Late Night Hype Brewing Co", + "brewery_type": "micro", + "address_1": "Unit 17", + "address_2": "Andrew Court", + "address_3": "South Douglas Streeet", + "city": "Clydebank", + "state_province": "West Dunbartonshire", + "postal_code": "G81 1PD", + "country": "Scotland", + "longitude": -4.4023283, + "latitude": 55.8959515, + "phone": "1412611278", + "website_url": "http://www.latenighthypebrewing.com/", + "state": "West Dunbartonshire", + "street": "Unit 17" + }, + { + "id": "2757b86d-3e69-4017-ab3c-f1b9b9c41da4", + "name": "Latin Beer", + "brewery_type": "micro", + "address_1": "279 La Trobe Street", + "address_2": null, + "address_3": null, + "city": "Melbourne", + "state_province": "VIC", + "postal_code": "3000", + "country": "Australia", + "longitude": 144.9609685, + "latitude": -37.8107314, + "phone": "+61 416 502 798", + "website_url": null, + "state": "VIC", + "street": "279 La Trobe Street" + }, + { + "id": "8ecc98ad-0ed5-4738-b0f6-71164c49da3c", + "name": "Latitude 33 Brewing Co", + "brewery_type": "micro", + "address_1": "1430 Vantage Ct Ste 104", + "address_2": null, + "address_3": null, + "city": "Vista", + "state_province": "California", + "postal_code": "92081-8545", + "country": "United States", + "longitude": -117.22485, + "latitude": 33.136105, + "phone": "7604106333", + "website_url": "http://www.latitude33brewing.com", + "state": "California", + "street": "1430 Vantage Ct Ste 104" + }, + { + "id": "6eea2677-7c24-43d8-9735-53c6a1584d7a", + "name": "Latitude 42", + "brewery_type": "brewpub", + "address_1": "7842 Portage Rd Attn: Scott Freitas", + "address_2": null, + "address_3": null, + "city": "Portage", + "state_province": "Michigan", + "postal_code": "49002-4472", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2694594242", + "website_url": "http://www.latitude42brewingco.com", + "state": "Michigan", + "street": "7842 Portage Rd Attn: Scott Freitas" + }, + { + "id": "6e780304-7cea-43ee-893f-74819c224a86", + "name": "LauderAle", + "brewery_type": "micro", + "address_1": "3305 SE 14th Ave Bldg 4", + "address_2": null, + "address_3": null, + "city": "Fort Lauderdale", + "state_province": "Florida", + "postal_code": "33316-4212", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9546539711", + "website_url": "http://www.lauderale.co", + "state": "Florida", + "street": "3305 SE 14th Ave Bldg 4" + }, + { + "id": "e4c8261f-0f96-4951-81a6-667166ce4586", + "name": "Laughing Dog Brewing", + "brewery_type": "micro", + "address_1": "805 Schweitzer Plaza Dr", + "address_2": null, + "address_3": null, + "city": "Ponderay", + "state_province": "Idaho", + "postal_code": "83852-9823", + "country": "United States", + "longitude": -116.5464216, + "latitude": 48.3050088, + "phone": "2082639222", + "website_url": "http://www.laughingdogbrewing.com", + "state": "Idaho", + "street": "805 Schweitzer Plaza Dr" + }, + { + "id": "8c762397-a0f7-444f-bd6b-5f07d2915f20", + "name": "Laughing Monk Brewing", + "brewery_type": "micro", + "address_1": "1439 Egbert Ave Unit A", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94124-3221", + "country": "United States", + "longitude": -122.3934567, + "latitude": 37.72320112, + "phone": "4158905970", + "website_url": "http://www.laughingmonkbrewing.com", + "state": "California", + "street": "1439 Egbert Ave Unit A" + }, + { + "id": "1f975c95-1cf7-45d7-b3c4-1393462508fc", + "name": "Laughing Sun Brewing", + "brewery_type": "micro", + "address_1": "1023 E Front Ave", + "address_2": null, + "address_3": null, + "city": "Bismarck", + "state_province": "North Dakota", + "postal_code": "58504-5652", + "country": "United States", + "longitude": -100.7757809, + "latitude": 46.80388227, + "phone": "7014009750", + "website_url": "http://www.laughingsunbrewing.com", + "state": "North Dakota", + "street": "1023 E Front Ave" + }, + { + "id": "b95af364-dbcf-4842-8a12-59d3c2e41fea", + "name": "Laughinghouse Brewing", + "brewery_type": "nano", + "address_1": "7 Austin Rd", + "address_2": null, + "address_3": null, + "city": "Amherst", + "state_province": "New Hampshire", + "postal_code": "03031", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New Hampshire", + "street": "7 Austin Rd" + }, + { + "id": "eb3bca03-12e0-49b2-ae4f-42616521289c", + "name": "Launch Pad Brewery", + "brewery_type": "micro", + "address_1": "884 S Buckley Rd", + "address_2": null, + "address_3": null, + "city": "Aurora", + "state_province": "Colorado", + "postal_code": "80017-3174", + "country": "United States", + "longitude": -104.7911253, + "latitude": 39.6853036, + "phone": "7208782627", + "website_url": "http://www.launchpadbrewery.com", + "state": "Colorado", + "street": "884 S Buckley Rd" + }, + { + "id": "f8b827e6-e5f7-4a49-b8bf-f07450505cff", + "name": "Laurel Highlands Brewing", + "brewery_type": "micro", + "address_1": "21 Enamel St", + "address_2": null, + "address_3": null, + "city": "Uniontown", + "state_province": "Pennsylvania", + "postal_code": "15401-", + "country": "United States", + "longitude": -79.71813225, + "latitude": 39.91008063, + "phone": "7248805497", + "website_url": "http://www.laurelhighlandsbrewing.com", + "state": "Pennsylvania", + "street": "21 Enamel St" + }, + { + "id": "06340393-a873-4844-92ad-fc352d19967b", + "name": "Laurelwood Public House & Brewery - SE Portland", + "brewery_type": "brewpub", + "address_1": "6716 SE Milwaukie Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97202-5618", + "country": "United States", + "longitude": -122.6484951, + "latitude": 45.47415655, + "phone": "5039436157", + "website_url": null, + "state": "Oregon", + "street": "6716 SE Milwaukie Ave" + }, + { + "id": "280f45f0-7772-4ce5-aa97-b2c83e815950", + "name": "Laurelwood Public House and Brewery - NE", + "brewery_type": "closed", + "address_1": "14300 NE 145th St", + "address_2": null, + "address_3": null, + "city": "Woodinville", + "state_province": "Washington", + "postal_code": "98072-6950", + "country": "United States", + "longitude": -122.1460064, + "latitude": 47.7328255, + "phone": "4254833232", + "website_url": null, + "state": "Washington", + "street": "14300 NE 145th St" + }, + { + "id": "1a73f78b-ca39-46f4-a6ed-71b22876889b", + "name": "Laurelwood Public House and Brewery - NE", + "brewery_type": "micro", + "address_1": "5115 NE Sandy Blvd", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97213-2525", + "country": "United States", + "longitude": -122.6106727, + "latitude": 45.54014675, + "phone": "5032820622", + "website_url": "http://laurelwoodbrewingco.com", + "state": "Oregon", + "street": "5115 NE Sandy Blvd" + }, + { + "id": "3ee87e75-96e5-44d9-bd1c-0768d71ca878", + "name": "Lava Rock Brewing Company", + "brewery_type": "brewpub", + "address_1": "2220 Unser Blvd", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87120", + "country": "United States", + "longitude": -106.7227497, + "latitude": 35.0769954, + "phone": "5058361022", + "website_url": "http://www.lavarockbrewpub.com", + "state": "New Mexico", + "street": "2220 Unser Blvd" + }, + { + "id": "602ed446-ac06-416d-bd88-ab80e8e95bec", + "name": "Lavery Brewing Co", + "brewery_type": "micro", + "address_1": "128 W 12th St", + "address_2": null, + "address_3": null, + "city": "Erie", + "state_province": "Pennsylvania", + "postal_code": "16501-1750", + "country": "United States", + "longitude": -80.1219366, + "latitude": 42.108963, + "phone": "8144540405", + "website_url": "http://www.laverybrewing.com", + "state": "Pennsylvania", + "street": "128 W 12th St" + }, + { + "id": "dcc25aca-8440-4542-a8b4-120d13f83527", + "name": "Lawless Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90068-1436", + "country": "United States", + "longitude": -118.2427669, + "latitude": 34.0536834, + "phone": "8184567345", + "website_url": "http://www.lawlessbeer.com", + "state": "California", + "street": null + }, + { + "id": "adee1eae-92a4-4ce5-80c3-bff045a4dd7a", + "name": "Lawrence Beer Company", + "brewery_type": "brewpub", + "address_1": "826 Pennsylvania St", + "address_2": null, + "address_3": null, + "city": "Lawrence", + "state_province": "Kansas", + "postal_code": "66044-2754", + "country": "United States", + "longitude": -95.2285539, + "latitude": 38.9683511, + "phone": "7858560453", + "website_url": "http://www.lawrencebeerco.com", + "state": "Kansas", + "street": "826 Pennsylvania St" + }, + { + "id": "1100b021-9189-4b09-9d0b-73c66782136b", + "name": "Lawson's Finest Liquids", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Warren", + "state_province": "Vermont", + "postal_code": "05674", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8024964677", + "website_url": "http://www.lawsonsfinest.com", + "state": "Vermont", + "street": null + }, + { + "id": "b34a359c-6b74-4f5a-8900-cca5edc1aef6", + "name": "Laxton Hollow Brewing Works", + "brewery_type": "micro", + "address_1": "302 E Main St", + "address_2": null, + "address_3": null, + "city": "Mansfield", + "state_province": "Ohio", + "postal_code": "44904-1300", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4195252842", + "website_url": "http://www.laxtonhollow.com", + "state": "Ohio", + "street": "302 E Main St" + }, + { + "id": "fb886548-908a-4589-9c34-aa5bebe7a114", + "name": "Lazarus Brewing Company", + "brewery_type": "brewpub", + "address_1": "1902 E 6th St", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78702-3402", + "country": "United States", + "longitude": -97.7220388, + "latitude": 30.2616838, + "phone": null, + "website_url": "http://www.lazarusbrewing.com", + "state": "Texas", + "street": "1902 E 6th St" + }, + { + "id": "09c592e2-4f01-4f54-aca1-25ce4c42daba", + "name": "Lazlo's Brewery & Grill - Haymarket", + "brewery_type": "brewpub", + "address_1": "210 N 7th St", + "address_2": null, + "address_3": null, + "city": "Lincoln", + "state_province": "Nebraska", + "postal_code": "68508-1301", + "country": "United States", + "longitude": -96.71088449, + "latitude": 40.81497373, + "phone": "4024345636", + "website_url": "https://lazlosbreweryandgrill.com", + "state": "Nebraska", + "street": "210 N 7th St" + }, + { + "id": "21575f11-4155-422f-b3ba-741f3261dc30", + "name": "Lazy Beach Brewing", + "brewery_type": "micro", + "address_1": "7522 Bichon Dr Ste 100", + "address_2": null, + "address_3": null, + "city": "Corpus Christi", + "state_province": "Texas", + "postal_code": "78414-3910", + "country": "United States", + "longitude": -97.3721494, + "latitude": 27.6545883, + "phone": "3616935347", + "website_url": "http://lazybeachbrewing.com", + "state": "Texas", + "street": "7522 Bichon Dr Ste 100" + }, + { + "id": "7f3b7fb8-4656-4abf-b40a-8b1c2fbac82d", + "name": "Lazy Boy Brewing", + "brewery_type": "micro", + "address_1": "715 100th St SE Ste A1", + "address_2": null, + "address_3": null, + "city": "Everett", + "state_province": "Washington", + "postal_code": "98208-3762", + "country": "United States", + "longitude": -122.2208542, + "latitude": 47.9088448, + "phone": "4254237700", + "website_url": "http://www.lazyboybrewing.com", + "state": "Washington", + "street": "715 100th St SE Ste A1" + }, + { + "id": "a78bc94c-b905-49fc-ad69-8d7fbf52cdfc", + "name": "Lazy Hiker Brewing Co.", + "brewery_type": "micro", + "address_1": "188 W Main St", + "address_2": null, + "address_3": null, + "city": "Franklin", + "state_province": "North Carolina", + "postal_code": "28734-2949", + "country": "United States", + "longitude": -83.3828255, + "latitude": 35.18133363, + "phone": "8283492337", + "website_url": "http://www.lazyhikerbrewing.com", + "state": "North Carolina", + "street": "188 W Main St" + }, + { + "id": "4ca6c0a9-4e75-484a-aa6e-fe609887a7c1", + "name": "Lazy Horse Brewing and Vineyard", + "brewery_type": "brewpub", + "address_1": "211 Road 20", + "address_2": null, + "address_3": null, + "city": "Ohiowa", + "state_province": "Nebraska", + "postal_code": "68416-3005", + "country": "United States", + "longitude": -97.461952, + "latitude": 40.37289, + "phone": "4023145266", + "website_url": "https://www.lazyhorsevineyard.com", + "state": "Nebraska", + "street": "211 Road 20" + }, + { + "id": "147013b0-866c-4579-9312-5277df314577", + "name": "Lazy Loon Brewing Co", + "brewery_type": "micro", + "address_1": "8750 County Road 43", + "address_2": null, + "address_3": null, + "city": "Chaska", + "state_province": "Minnesota", + "postal_code": "55318-9358", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9524673500", + "website_url": "http://www.lazyloonbrewing.com", + "state": "Minnesota", + "street": "8750 County Road 43" + }, + { + "id": "7a980f26-f18f-48a1-8a1c-7bec1dc79e83", + "name": "Lazy Magnolia Brewing Co, LLC", + "brewery_type": "micro", + "address_1": "7030 Roscoe Turner Rd", + "address_2": null, + "address_3": null, + "city": "Kiln", + "state_province": "Mississippi", + "postal_code": "39556-8000", + "country": "United States", + "longitude": -89.44948769, + "latitude": 30.37690176, + "phone": "2284672727", + "website_url": "http://www.lazymagnolia.com", + "state": "Mississippi", + "street": "7030 Roscoe Turner Rd" + }, + { + "id": "2df2e1c7-aa9e-4d9a-8c71-fbb28559e840", + "name": "Lazy Monk Brewing", + "brewery_type": "micro", + "address_1": "320 Putnam St Unit 4", + "address_2": null, + "address_3": null, + "city": "Eau Claire", + "state_province": "Wisconsin", + "postal_code": "54703-3896", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7152710848", + "website_url": "http://www.lazymonkbrewing.com", + "state": "Wisconsin", + "street": "320 Putnam St Unit 4" + }, + { + "id": "20063b5b-6218-44c5-bc19-932339a6b2d1", + "name": "Lazy Sloth & Drunken Sloth", + "brewery_type": "bar", + "address_1": "41 East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "428761", + "country": "Singapore", + "longitude": 1.3050925197507, + "latitude": 103.9029638, + "phone": "+65 6241 3933", + "website_url": null, + "state": "Singapore", + "street": "41 East Coast Road" + }, + { + "id": "8ebd6439-dc44-4655-a40e-58987de9a664", + "name": "Lazy Tree Ranch Brewing", + "brewery_type": "micro", + "address_1": "1431 County Road 264", + "address_2": null, + "address_3": null, + "city": "Bertram", + "state_province": "Texas", + "postal_code": "78605", + "country": "United States", + "longitude": -98.069394, + "latitude": 30.749121, + "phone": "5125088697", + "website_url": null, + "state": "Texas", + "street": "1431 County Road 264" + }, + { + "id": "6b105e5d-a0d6-4368-8766-5d1cc4bee458", + "name": "LazyG Brewhouse", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Prescott", + "state_province": "Arizona", + "postal_code": "86303-4270", + "country": "United States", + "longitude": -112.469518, + "latitude": 34.5402813, + "phone": "4806951218", + "website_url": null, + "state": "Arizona", + "street": null + }, + { + "id": "a35771c8-3596-4ac0-99b1-d00a400cd923", + "name": "Le Chien Brewing Company", + "brewery_type": "micro", + "address_1": "101 S Hummell St", + "address_2": null, + "address_3": null, + "city": "Denham Springs", + "state_province": "Louisiana", + "postal_code": "70726", + "country": "United States", + "longitude": -90.95537, + "latitude": 30.483981, + "phone": "7815324436", + "website_url": "http://www.lechien.beer", + "state": "Louisiana", + "street": "101 S Hummell St" + }, + { + "id": "7c6bc6c6-dd61-41a6-b794-6a1f742c0ebb", + "name": "Lead Dog Brewing", + "brewery_type": "micro", + "address_1": "415 E 4th St", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89512-3315", + "country": "United States", + "longitude": -119.8084451, + "latitude": 39.5316052, + "phone": "7753915110", + "website_url": "http://www.leaddogbrewing.com", + "state": "Nevada", + "street": "415 E 4th St" + }, + { + "id": "7e2593a2-8276-4e06-84e5-e2e0869fbebc", + "name": "Leaf & Hive", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Santa Fe", + "state_province": "New Mexico", + "postal_code": "87507-6203", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6024481294", + "website_url": "http://www.leafandhive.com", + "state": "New Mexico", + "street": null + }, + { + "id": "d17629b9-8cfb-404e-a6cd-8e62017f5841", + "name": "Lean Horse Productions", + "brewery_type": "contract", + "address_1": "600 Meier Ave", + "address_2": null, + "address_3": null, + "city": "Spearfish", + "state_province": "South Dakota", + "postal_code": "57783-1991", + "country": "United States", + "longitude": -103.8647996, + "latitude": 44.48900743, + "phone": "6056413534", + "website_url": null, + "state": "South Dakota", + "street": "600 Meier Ave" + }, + { + "id": "10c141e1-c097-46a5-afa6-a59e62db219d", + "name": "Leaning Cask Brewing Co", + "brewery_type": "micro", + "address_1": "850 Pittsburgh St", + "address_2": null, + "address_3": null, + "city": "Springdale", + "state_province": "Pennsylvania", + "postal_code": "15144-1623", + "country": "United States", + "longitude": -79.77844044, + "latitude": 40.54126655, + "phone": "7247157539", + "website_url": "http://www.leaningcaskbrewing.com", + "state": "Pennsylvania", + "street": "850 Pittsburgh St" + }, + { + "id": "871dd5ea-3e1c-4379-88d4-ab02cbf47dad", + "name": "Leashless Brewing", + "brewery_type": "micro", + "address_1": "585 E Thompson Blvd", + "address_2": null, + "address_3": null, + "city": "Ventura", + "state_province": "California", + "postal_code": "93001-2826", + "country": "United States", + "longitude": -119.2908735, + "latitude": 34.2783584, + "phone": "8056289474", + "website_url": "http://www.leashlessbrewing.com", + "state": "California", + "street": "585 E Thompson Blvd" + }, + { + "id": "f9268939-529c-4d4d-a76d-99b97092e6d3", + "name": "Leaven Brewing Co.", + "brewery_type": "micro", + "address_1": "11238 Boyette Rd", + "address_2": null, + "address_3": null, + "city": "Riverview", + "state_province": "Florida", + "postal_code": "33569-8009", + "country": "United States", + "longitude": -82.31417467, + "latitude": 27.85381371, + "phone": "8136777023", + "website_url": "http://www.leavenbrewing.com", + "state": "Florida", + "street": "11238 Boyette Rd" + }, + { + "id": "4f134c49-b755-42d5-ab99-0f091ee345d9", + "name": "Lebanon Valley Craft Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lebanon", + "state_province": "Pennsylvania", + "postal_code": "17046", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5134048600", + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "3eb1047d-6e01-459d-9ba2-94db505df08a", + "name": "Ledge Brewing", + "brewery_type": "brewpub", + "address_1": "15 Town Hall Rd", + "address_2": null, + "address_3": null, + "city": "Intervale", + "state_province": "New Hampshire", + "postal_code": "03845", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6033071070", + "website_url": "https://ledgebrewing.com/", + "state": "New Hampshire", + "street": "15 Town Hall Rd" + }, + { + "id": "627ccf1e-aea1-4404-96fc-c241dd6118be", + "name": "Ledge Hill Brewing Co", + "brewery_type": "micro", + "address_1": "6700 Main St", + "address_2": null, + "address_3": null, + "city": "Westport", + "state_province": "New York", + "postal_code": "12993-2007", + "country": "United States", + "longitude": -73.452543, + "latitude": 44.188294, + "phone": "5189121783", + "website_url": "http://www.ledgehillbrewing.com/", + "state": "New York", + "street": "6700 Main St" + }, + { + "id": "76bb95fe-4382-4931-95f8-4678aa334e40", + "name": "Left Coast Brewing Co.", + "brewery_type": "micro", + "address_1": "1245 Puerta del Sol", + "address_2": null, + "address_3": null, + "city": "San Clemente", + "state_province": "California", + "postal_code": "92673-6310", + "country": "United States", + "longitude": -117.5922336, + "latitude": 33.4587307, + "phone": "9493619972", + "website_url": "http://www.leftcoastbrewing.com", + "state": "California", + "street": "1245 Puerta del Sol" + }, + { + "id": "250dd3e0-2adb-4d18-8838-194b78cd8868", + "name": "Left Coast Brewing Co. Tasting Room Smokehouse Distillery", + "brewery_type": "brewpub", + "address_1": "6652 Irvine Center Dr", + "address_2": null, + "address_3": null, + "city": "Irvine", + "state_province": "California", + "postal_code": "92618", + "country": "United States", + "longitude": -117.7640733, + "latitude": 33.66814585, + "phone": "9493619972", + "website_url": null, + "state": "California", + "street": "6652 Irvine Center Dr" + }, + { + "id": "3ef4fdd1-cf1f-4227-a6b6-5e4d13471c0b", + "name": "Left Hand Brewing - RiNo", + "brewery_type": "micro", + "address_1": "4180 Wynkoop Street", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80216", + "country": "United States", + "longitude": -104.9701988, + "latitude": 39.78107841, + "phone": "7204497535", + "website_url": "https://lefthandbrewing.com/rino", + "state": "Colorado", + "street": "4180 Wynkoop Street" + }, + { + "id": "e5453b50-8dfe-4aee-9cea-d8c4bc5f282b", + "name": "Left Hand Brewing Company", + "brewery_type": "regional", + "address_1": "1265 Boston Ave", + "address_2": null, + "address_3": null, + "city": "Longmont", + "state_province": "Colorado", + "postal_code": "80501-5809", + "country": "United States", + "longitude": -105.1168403, + "latitude": 40.158688, + "phone": "3037720258", + "website_url": "http://www.lefthandbrewing.com", + "state": "Colorado", + "street": "1265 Boston Ave" + }, + { + "id": "da535f17-3fc1-45be-aefe-1620c774815d", + "name": "Left Nut Brewing Co", + "brewery_type": "micro", + "address_1": "2100 Atlanta Rd", + "address_2": null, + "address_3": null, + "city": "Gainesville", + "state_province": "Georgia", + "postal_code": "30504-7168", + "country": "United States", + "longitude": -83.84759634, + "latitude": 34.25442345, + "phone": "6788276678", + "website_url": "http://www.leftnutbrewing.com", + "state": "Georgia", + "street": "2100 Atlanta Rd" + }, + { + "id": "69d7f5d8-0d45-48dc-8f7c-95d3c05efcbc", + "name": "Lefty's Brewing Co", + "brewery_type": "micro", + "address_1": "301 Wells St", + "address_2": null, + "address_3": null, + "city": "Greenfield", + "state_province": "Massachusetts", + "postal_code": "01301", + "country": "United States", + "longitude": -72.60686067, + "latitude": 42.60121604, + "phone": "4136486111", + "website_url": "http://www.leftysbrew.com", + "state": "Massachusetts", + "street": "301 Wells St" + }, + { + "id": "23a4fc72-237e-48fd-b06f-4484d8fc7ef7", + "name": "Legacy", + "brewery_type": "bar", + "address_1": "274 East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "428942", + "country": "Singapore", + "longitude": 1.3082136591314, + "latitude": 103.9090124, + "phone": null, + "website_url": null, + "state": "Singapore", + "street": "274 East Coast Road" + }, + { + "id": "aeb83fab-b449-41c6-aed0-a84b0f9abaac", + "name": "Legacy Ale Works", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Florida", + "postal_code": "32258", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9043253195", + "website_url": "http://www.legacyaleworks.com", + "state": "Florida", + "street": null + }, + { + "id": "73708b08-1697-4001-84db-8ce69b7886e1", + "name": "Legacy Brewing Company", + "brewery_type": "micro", + "address_1": "363 Airport Rd", + "address_2": null, + "address_3": null, + "city": "Oceanside", + "state_province": "California", + "postal_code": "92058-1203", + "country": "United States", + "longitude": -117.3501687, + "latitude": 33.21546892, + "phone": "7607053221", + "website_url": "http://www.legacybrewingco.com", + "state": "California", + "street": "363 Airport Rd" + }, + { + "id": "4c341afe-af5b-4793-abc4-c1010e3e5bb5", + "name": "Legacy Caribbean Craft Brewery", + "brewery_type": "micro", + "address_1": "13416 NW 38th Ct", + "address_2": null, + "address_3": null, + "city": "Opa Locka", + "state_province": "Florida", + "postal_code": "33054-4506", + "country": "United States", + "longitude": -80.2626834, + "latitude": 25.8950665, + "phone": "7866816572", + "website_url": "http://Www.legacyccb.com", + "state": "Florida", + "street": "13416 NW 38th Ct" + }, + { + "id": "82faa8a9-2ee7-4869-85c0-d23620b5431d", + "name": "Legal Draft Beer Company", + "brewery_type": "micro", + "address_1": "500 E Division St", + "address_2": null, + "address_3": null, + "city": "Arlington", + "state_province": "Texas", + "postal_code": "76011-7212", + "country": "United States", + "longitude": -97.0489748, + "latitude": 32.7400863, + "phone": "8179622210", + "website_url": "http://www.legaldraftbeer.com", + "state": "Texas", + "street": "500 E Division St" + }, + { + "id": "23dcb869-5fb7-461b-adfe-ee73c2dd5a88", + "name": "Legal Remedy Brewing", + "brewery_type": "brewpub", + "address_1": "129 Oakland Ave", + "address_2": null, + "address_3": null, + "city": "Rock Hill", + "state_province": "South Carolina", + "postal_code": "29730-4019", + "country": "United States", + "longitude": -81.0249405, + "latitude": 34.9304961, + "phone": "8033242337", + "website_url": "http://www.legalremedybrewing.com", + "state": "South Carolina", + "street": "129 Oakland Ave" + }, + { + "id": "2d6465bf-6977-453b-a013-6c0b76ec22d1", + "name": "Legend Brewing Co", + "brewery_type": "brewpub", + "address_1": "1 High St", + "address_2": null, + "address_3": null, + "city": "Portsmouth", + "state_province": "Virginia", + "postal_code": "23704-3814", + "country": "United States", + "longitude": -76.29666342, + "latitude": 36.83482035, + "phone": "8042328871", + "website_url": null, + "state": "Virginia", + "street": "1 High St" + }, + { + "id": "298156f9-917f-4572-82d3-77b251edeb2d", + "name": "Legend Brewing Co", + "brewery_type": "micro", + "address_1": "321 W 7th St", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23224-2307", + "country": "United States", + "longitude": -77.4429749, + "latitude": 37.5266924, + "phone": "8042328871", + "website_url": "http://www.legendbrewing.com", + "state": "Virginia", + "street": "321 W 7th St" + }, + { + "id": "0b459520-1f9c-42a5-a94c-bcc7221d6231", + "name": "Legends Brewery", + "brewery_type": "brewpub", + "address_1": "101 Ghwarri Road", + "address_2": "Rietvalleirand", + "address_3": null, + "city": "Pretoria", + "state_province": "Gauteng", + "postal_code": "0181", + "country": "South Africa", + "longitude": 28.2721, + "latitude": -25.8459, + "phone": "+27 12 345 5969", + "website_url": "https://legendsbrewery.co.za/", + "state": "Gauteng", + "street": "101 Ghwarri Road" + }, + { + "id": "c437ef44-0417-4548-876f-7e003b2f3b9c", + "name": "Legends Brewhouse and Eatery (#1)", + "brewery_type": "brewpub", + "address_1": "2840 Shawano Ave", + "address_2": null, + "address_3": null, + "city": "Green Bay", + "state_province": "Wisconsin", + "postal_code": "54313-6725", + "country": "United States", + "longitude": -88.036448, + "latitude": 44.521795, + "phone": "9206621111", + "website_url": "http://www.legendseatery.com", + "state": "Wisconsin", + "street": "2840 Shawano Ave" + }, + { + "id": "834dad12-1f54-4555-935b-6a54a72e028f", + "name": "Legends Brewhouse and Eatery (#2)", + "brewery_type": "brewpub", + "address_1": "875 Heritage Rd", + "address_2": null, + "address_3": null, + "city": "de Pere", + "state_province": "Wisconsin", + "postal_code": "54115-3148", + "country": "United States", + "longitude": -88.06410764, + "latitude": 44.42819213, + "phone": "9203368036", + "website_url": "http://www.legendseatery.com", + "state": "Wisconsin", + "street": "875 Heritage Rd" + }, + { + "id": "e77053eb-cb52-4028-be06-1b7ad0c4d5d0", + "name": "Legends Craft Brewery", + "brewery_type": "micro", + "address_1": "1301 S Lewis St", + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92805-6431", + "country": "United States", + "longitude": -117.8980621, + "latitude": 33.81628085, + "phone": "8883270202", + "website_url": "http://www.legendsbeer.com", + "state": "California", + "street": "1301 S Lewis St" + }, + { + "id": "7d13578b-bcef-44e2-8894-e4ea8c6b4421", + "name": "Legion Brewing Company", + "brewery_type": "brewpub", + "address_1": "1906 Commonwealth Ave", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28205-5020", + "country": "United States", + "longitude": -80.81322316, + "latitude": 35.21870073, + "phone": "8444675683", + "website_url": "http://www.legionbrewing.com", + "state": "North Carolina", + "street": "1906 Commonwealth Ave" + }, + { + "id": "02259841-ba83-4903-bf26-e206b396ba2f", + "name": "Legnicki Browar Książęcy", + "brewery_type": "brewpub", + "address_1": "Dworcowa 9", + "address_2": null, + "address_3": null, + "city": "Legnica", + "state_province": "dolnośląskie", + "postal_code": "59-220", + "country": "Poland", + "longitude": 16.1681601, + "latitude": 51.2122419, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Dworcowa 9" + }, + { + "id": "77783d5a-bd52-4428-9425-7446f126ca5b", + "name": "Lehmans Orchard Brewery and Farmhouse", + "brewery_type": "brewpub", + "address_1": "204 N Red Bud Trl", + "address_2": null, + "address_3": null, + "city": "Buchanan", + "state_province": "Michigan", + "postal_code": "49107-1366", + "country": "United States", + "longitude": -86.35834031, + "latitude": 41.82910596, + "phone": "2693624063", + "website_url": "http://www.lehmansfarmhouse.com", + "state": "Michigan", + "street": "204 N Red Bud Trl" + }, + { + "id": "069b495e-6e2a-4c09-808f-fe3b3e20fe23", + "name": "Leinenkugel's 10th Street Brewery", + "brewery_type": "large", + "address_1": "1515 N 10th St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53205-2157", + "country": "United States", + "longitude": -87.92455083, + "latitude": 43.05050335, + "phone": "4149313900", + "website_url": "http://www.leinie.com", + "state": "Wisconsin", + "street": "1515 N 10th St" + }, + { + "id": "56988fcf-e019-46ad-9071-8839751cf3e0", + "name": "Lemons Mill Brewery", + "brewery_type": "micro", + "address_1": "166 Marimon Ave", + "address_2": null, + "address_3": null, + "city": "Harrodsburg", + "state_province": "Kentucky", + "postal_code": "40330-1311", + "country": "United States", + "longitude": -84.83862624, + "latitude": 37.7608082, + "phone": "8592650872", + "website_url": "http://www.lemonsmillbrewery.com", + "state": "Kentucky", + "street": "166 Marimon Ave" + }, + { + "id": "753644a2-cb4c-4909-b77b-28a4763ae05c", + "name": "Lena Brewing Company", + "brewery_type": "micro", + "address_1": "9416 W Wagner Rd", + "address_2": null, + "address_3": null, + "city": "Lena", + "state_province": "Illinois", + "postal_code": "61048-9664", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Illinois", + "street": "9416 W Wagner Rd" + }, + { + "id": "ad5cdcdf-a787-4b90-a721-d350c532c57c", + "name": "Lengthwise Brewing Co", + "brewery_type": "brewpub", + "address_1": "7700 District Blvd", + "address_2": null, + "address_3": null, + "city": "Bakersfield", + "state_province": "California", + "postal_code": "93313-4861", + "country": "United States", + "longitude": -119.0885472, + "latitude": 35.31323456, + "phone": "6618362537", + "website_url": "http://www.lengthwise.com", + "state": "California", + "street": "7700 District Blvd" + }, + { + "id": "01353cfd-2215-40a9-b41a-20a2e139e870", + "name": "Lennox Brewery", + "brewery_type": "micro", + "address_1": "25 Lime Road", + "address_2": "Broadmeadow Industrial Estate", + "address_3": null, + "city": "Dumbarton", + "state_province": "West Dunbartonshire", + "postal_code": "G82 2RP", + "country": "Scotland", + "longitude": -4.5708885, + "latitude": 55.9478947, + "phone": "1389298642", + "website_url": "https://www.lennoxbrewery.com/", + "state": "West Dunbartonshire", + "street": "25 Lime Road" + }, + { + "id": "29b2bf8e-d0bf-4111-baf6-9d008cac8831", + "name": "Lenny Boy Brewing Co", + "brewery_type": "micro", + "address_1": "3000 S Tryon St", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28217-1342", + "country": "United States", + "longitude": -80.87362412, + "latitude": 35.20146285, + "phone": "9805851728", + "website_url": "http://www.discoverlennyboy.com", + "state": "North Carolina", + "street": "3000 S Tryon St" + }, + { + "id": "e8496c18-2615-4e81-a29f-ea64ea88269c", + "name": "Les Cheneaux Distillers", + "brewery_type": "brewpub", + "address_1": "172 S Meridian St", + "address_2": null, + "address_3": null, + "city": "Cedarville", + "state_province": "Michigan", + "postal_code": "49719", + "country": "United States", + "longitude": -84.36301089, + "latitude": 45.99742724, + "phone": "9064841213", + "website_url": "http://www.lescheneauxdistillers.com", + "state": "Michigan", + "street": "172 S Meridian St" + }, + { + "id": "3e578a77-9a52-44ae-ba8a-fd77bfa30ab3", + "name": "Levante Brewing Company", + "brewery_type": "micro", + "address_1": "208 Carter Dr Ste 2", + "address_2": null, + "address_3": null, + "city": "West Chester", + "state_province": "Pennsylvania", + "postal_code": "19382-4500", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4849998761", + "website_url": "http://levantebrewing.com", + "state": "Pennsylvania", + "street": "208 Carter Dr Ste 2" + }, + { + "id": "9fc7686f-dbb3-4dea-81fe-74e95738150f", + "name": "Level Beer", + "brewery_type": "micro", + "address_1": "5211 NE 148th Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97230-3434", + "country": "United States", + "longitude": -122.5110275, + "latitude": 45.560506, + "phone": "5037141222", + "website_url": "http://www.levelbeer.com", + "state": "Oregon", + "street": "5211 NE 148th Ave" + }, + { + "id": "447ee073-dfab-4ef3-aacd-e6d0e9553972", + "name": "Level Crossing Brewing Company", + "brewery_type": "brewpub", + "address_1": "2496 S West Temple", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84115-3050", + "country": "United States", + "longitude": -111.954182, + "latitude": 40.732607, + "phone": "3852705752", + "website_url": "https://levelcrossingbrewing.com", + "state": "Utah", + "street": "2496 S West Temple" + }, + { + "id": "aea59bd4-e1de-4f88-a7f3-f3285d4d57ac", + "name": "Levi Garrison & Sons Brewing Company", + "brewery_type": "micro", + "address_1": "105 W Bird St", + "address_2": null, + "address_3": null, + "city": "Hamilton", + "state_province": "Missouri", + "postal_code": "64644-1029", + "country": "United States", + "longitude": -94.00051, + "latitude": 39.744246, + "phone": "8166689421", + "website_url": "http://www.lgsbrewingco.com", + "state": "Missouri", + "street": "105 W Bird St" + }, + { + "id": "0c64f81d-9404-443f-83d4-8aa79babb415", + "name": "Levitate", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mount Victory", + "state_province": "Ohio", + "postal_code": "43340-8908", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3133849757", + "website_url": null, + "state": "Ohio", + "street": null + }, + { + "id": "8fb9e997-a02c-4def-82cd-293821f252d9", + "name": "Levity Brewing Co", + "brewery_type": "brewpub", + "address_1": "1380 Wayne Ave Ste A", + "address_2": null, + "address_3": null, + "city": "Indiana", + "state_province": "Pennsylvania", + "postal_code": "15701-3544", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": "1380 Wayne Ave Ste A" + }, + { + "id": "847374a2-b1d9-4313-bfc5-bf09a1a603c3", + "name": "Lewis & Clark Brewing Co", + "brewery_type": "micro", + "address_1": "1517 Dodge Ave", + "address_2": null, + "address_3": null, + "city": "Helena", + "state_province": "Montana", + "postal_code": "59601-2970", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4064425960", + "website_url": "http://www.lewisandclarkbrewing.com", + "state": "Montana", + "street": "1517 Dodge Ave" + }, + { + "id": "c3a1c1a9-40ef-48d9-b003-01e68ec6e471", + "name": "Lewistown Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lewistown", + "state_province": "Montana", + "postal_code": "59457-8659", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4063500170", + "website_url": null, + "state": "Montana", + "street": null + }, + { + "id": "f8b70c73-33d2-42c7-b16e-0e8cc4c45399", + "name": "Lexington Avenue Brewery - The LAB", + "brewery_type": "brewpub", + "address_1": "39 N Lexington Ave", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28801-2827", + "country": "United States", + "longitude": -82.5532489, + "latitude": 35.5961485, + "phone": "8282520212", + "website_url": "http://www.lexavebrew.com", + "state": "North Carolina", + "street": "39 N Lexington Ave" + }, + { + "id": "3d3c8ed5-4f99-4b44-a466-68346e35bc94", + "name": "Lexington Brewing Co", + "brewery_type": "brewpub", + "address_1": "5475 Main St", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "Michigan", + "postal_code": "48450-", + "country": "United States", + "longitude": -82.530867, + "latitude": 43.2678755, + "phone": "8103595012", + "website_url": "http://www.lexingtonbrewery.com", + "state": "Michigan", + "street": "5475 Main St" + }, + { + "id": "4af0aeca-09f1-423a-9492-cd0b0851255b", + "name": "Liability Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "South Carolina", + "postal_code": "29609-5559", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.liabilitybrewing.co", + "state": "South Carolina", + "street": null + }, + { + "id": "561cd005-2fdd-4998-8501-bded8f7df8a9", + "name": "Liars Bench Beer Company", + "brewery_type": "brewpub", + "address_1": "459 Islington St Ste 4", + "address_2": null, + "address_3": null, + "city": "Portsmouth", + "state_province": "New Hampshire", + "postal_code": "03801-4291", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6032949156", + "website_url": "http://liarsbenchbeer.com", + "state": "New Hampshire", + "street": "459 Islington St Ste 4" + }, + { + "id": "9e1ff7aa-1d0d-47e1-8243-9fcbe139d1c3", + "name": "Liberal Cup Public House and Brewery", + "brewery_type": "brewpub", + "address_1": "115 Water St", + "address_2": null, + "address_3": null, + "city": "Hallowell", + "state_province": "Maine", + "postal_code": "04347-1357", + "country": "United States", + "longitude": -69.79013068, + "latitude": 44.28681996, + "phone": "2076232739", + "website_url": "http://www.theliberalcup.com", + "state": "Maine", + "street": "115 Water St" + }, + { + "id": "c667c7f5-aa04-43a7-8263-51ae4ad53960", + "name": "Liberation Brewing", + "brewery_type": "micro", + "address_1": "3630 Atlantic Ave", + "address_2": null, + "address_3": null, + "city": "Long Beach", + "state_province": "California", + "postal_code": "90807", + "country": "United States", + "longitude": -118.1859647, + "latitude": 33.8781951, + "phone": "5623490133", + "website_url": "http://www.liberationbrewing.com", + "state": "California", + "street": "3630 Atlantic Ave" + }, + { + "id": "80470606-8ec0-42ec-85f3-95bfca79363c", + "name": "Libertine Brewing Company", + "brewery_type": "brewpub", + "address_1": "1234 Broad St", + "address_2": null, + "address_3": null, + "city": "San Luis Obispo", + "state_province": "California", + "postal_code": "93401-3908", + "country": "United States", + "longitude": -120.6631926, + "latitude": 35.2777052, + "phone": "8057720700", + "website_url": "http://www.libertinebrewing.com", + "state": "California", + "street": "1234 Broad St" + }, + { + "id": "89cd3953-5fbb-4fd3-b129-9914968d7e81", + "name": "Liberty Brewery & Grill", + "brewery_type": "brewpub", + "address_1": "914 Mall Loop Rd", + "address_2": null, + "address_3": null, + "city": "High Point", + "state_province": "North Carolina", + "postal_code": "27262-7654", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3368824677", + "website_url": "http://www.hp.libertybreweryandgrill.com", + "state": "North Carolina", + "street": "914 Mall Loop Rd" + }, + { + "id": "89d0d9f9-2826-4571-9a97-d4d4f32c2b5d", + "name": "Liberty Craft Brewing", + "brewery_type": "brewpub", + "address_1": "7 Coon Mountain Ln", + "address_2": null, + "address_3": null, + "city": "Liberty", + "state_province": "Maine", + "postal_code": "04949-3654", + "country": "United States", + "longitude": -69.33139756, + "latitude": 44.36199964, + "phone": "2073227663", + "website_url": "http://www.libertycraftbrewing.com", + "state": "Maine", + "street": "7 Coon Mountain Ln" + }, + { + "id": "11ae6507-b5c7-47bd-80fa-02b057880ce2", + "name": "Liberty Steakhouse and Brewery", + "brewery_type": "brewpub", + "address_1": "1321 Celebrity Cir", + "address_2": null, + "address_3": null, + "city": "Myrtle Beach", + "state_province": "South Carolina", + "postal_code": "29577-7445", + "country": "United States", + "longitude": -78.87943206, + "latitude": 33.71931324, + "phone": "8436264677", + "website_url": "http://www.libertybreweryandgrill.com/home", + "state": "South Carolina", + "street": "1321 Celebrity Cir" + }, + { + "id": "979248e5-f4cb-4077-8611-ea5b1c2a9b93", + "name": "Liberty Street Brewing Co", + "brewery_type": "micro", + "address_1": "149 W Liberty St Ste 1", + "address_2": null, + "address_3": null, + "city": "Plymouth", + "state_province": "Michigan", + "postal_code": "48170-8001", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2487054171", + "website_url": "http://www.libertystreetbeer.com", + "state": "Michigan", + "street": "149 W Liberty St Ste 1" + }, + { + "id": "06d4945e-56dd-41bf-af98-e3bf2ba4784e", + "name": "Liberty Street Brewing Production Facility", + "brewery_type": "micro", + "address_1": "11721 Levan Rd", + "address_2": null, + "address_3": null, + "city": "Livonia", + "state_province": "Michigan", + "postal_code": "48150-1401", + "country": "United States", + "longitude": -83.40169843, + "latitude": 42.36866123, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "11721 Levan Rd" + }, + { + "id": "562fa562-87ba-4a7a-8fe1-b53b4de1e24e", + "name": "Library Restaurant, Bar and Brewpub", + "brewery_type": "brewpub", + "address_1": "62 Isle Royale St", + "address_2": null, + "address_3": null, + "city": "Houghton", + "state_province": "Michigan", + "postal_code": "49931-1827", + "country": "United States", + "longitude": -88.56701063, + "latitude": 47.12215913, + "phone": "9064875882", + "website_url": "http://www.librarybrewpub.com", + "state": "Michigan", + "street": "62 Isle Royale St" + }, + { + "id": "b3c0e2b4-df8b-4332-9d45-b3df42c1de40", + "name": "Library Sports Grille and Brewery", + "brewery_type": "brewpub", + "address_1": "201 E Custer St", + "address_2": null, + "address_3": null, + "city": "Laramie", + "state_province": "Wyoming", + "postal_code": "82070-3633", + "country": "United States", + "longitude": -105.5947118, + "latitude": 41.3093843, + "phone": "3077420500", + "website_url": "https://thelibrarybrewery.com", + "state": "Wyoming", + "street": "201 E Custer St" + }, + { + "id": "e8332f46-b446-4e25-a12e-d014adb38289", + "name": "LIC Beer Project", + "brewery_type": "micro", + "address_1": "3928 23rd St", + "address_2": null, + "address_3": null, + "city": "Long Island City", + "state_province": "New York", + "postal_code": "11101-4817", + "country": "United States", + "longitude": -73.942849, + "latitude": 40.75063, + "phone": "9178326840", + "website_url": "http://licbeerproject.com", + "state": "New York", + "street": "3928 23rd St" + }, + { + "id": "8249e32d-981e-4f87-9dbd-bbf9dc6964a1", + "name": "Lickinghole Creek Craft Brewery", + "brewery_type": "micro", + "address_1": "4100 Knolls Point Dr", + "address_2": null, + "address_3": null, + "city": "Goochland", + "state_province": "Virginia", + "postal_code": "23063-2858", + "country": "United States", + "longitude": -78.0036966, + "latitude": 37.7404672, + "phone": "8043148717", + "website_url": "http://www.lickingholecreek.com", + "state": "Virginia", + "street": "4100 Knolls Point Dr" + }, + { + "id": "75fcfbec-9b00-42d0-b102-d835345073e5", + "name": "Lidl US LLC", + "brewery_type": "contract", + "address_1": "3500 S Clark St", + "address_2": null, + "address_3": null, + "city": "Arlington", + "state_province": "Virginia", + "postal_code": "22202-4045", + "country": "United States", + "longitude": -77.051863, + "latitude": 38.842856, + "phone": null, + "website_url": null, + "state": "Virginia", + "street": "3500 S Clark St" + }, + { + "id": "1aee8966-9383-49c6-a38f-aaa4f1fd3a6c", + "name": "Lieferbrau Brewery LLC", + "brewery_type": "micro", + "address_1": "118 East Market Street", + "address_2": null, + "address_3": null, + "city": "Red Bud", + "state_province": "Illinois", + "postal_code": "62278", + "country": "United States", + "longitude": -89.99352327, + "latitude": 38.21165627, + "phone": "6185348477", + "website_url": null, + "state": "Illinois", + "street": "118 East Market Street" + }, + { + "id": "f1962bab-fd35-4329-9d64-7128cc394302", + "name": "Life Brewpub", + "brewery_type": "brewpub", + "address_1": "2628 Richmond Rd", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "Kentucky", + "postal_code": "40509-1501", + "country": "United States", + "longitude": -84.43443, + "latitude": 37.991255, + "phone": "8592665433", + "website_url": "http://www.LifeBrewpub.com", + "state": "Kentucky", + "street": "2628 Richmond Rd" + }, + { + "id": "63051dfb-b101-4b2a-9393-b70d089f1381", + "name": "Lift Bridge Brewery", + "brewery_type": "micro", + "address_1": "1900 Tower Dr W", + "address_2": null, + "address_3": null, + "city": "Stillwater", + "state_province": "Minnesota", + "postal_code": "55082-7515", + "country": "United States", + "longitude": -92.8317848, + "latitude": 45.0391054, + "phone": "8884302337", + "website_url": "http://www.liftbridgebrewery.com", + "state": "Minnesota", + "street": "1900 Tower Dr W" + }, + { + "id": "0771ecda-e417-45d9-8494-82c254aa3f7d", + "name": "Light the Lamp Brewery", + "brewery_type": "micro", + "address_1": "10 N Lake St Ste 107", + "address_2": null, + "address_3": null, + "city": "Grayslake", + "state_province": "Illinois", + "postal_code": "60030-3636", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8477528489", + "website_url": "http://www.lightthelampbrewery.com", + "state": "Illinois", + "street": "10 N Lake St Ste 107" + }, + { + "id": "c555434b-91dd-402f-b594-dae761da73fa", + "name": "Like Minds Brewing Co.", + "brewery_type": "micro", + "address_1": "823 E Hamilton St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53202-1555", + "country": "United States", + "longitude": -87.90143961, + "latitude": 43.0542106, + "phone": "4142398587", + "website_url": "http://www.likemindsbrewingco.com", + "state": "Wisconsin", + "street": "823 E Hamilton St" + }, + { + "id": "afa2d413-6c55-4c5b-abe0-31e305492138", + "name": "Lil Beaver Brewery", + "brewery_type": "micro", + "address_1": "16 Currency Dr Unit B", + "address_2": null, + "address_3": null, + "city": "Bloomington", + "state_province": "Illinois", + "postal_code": "61704-9632", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3098082590", + "website_url": "http://www.lilbeaverbrewery.com", + "state": "Illinois", + "street": "16 Currency Dr Unit B" + }, + { + "id": "a8e9cd3f-220f-4cf7-954c-6fc64705570b", + "name": "Lil Paws Winery", + "brewery_type": "micro", + "address_1": "17574-A Mahoning Ave", + "address_2": null, + "address_3": null, + "city": "Lake Milton", + "state_province": "Ohio", + "postal_code": "44429-9583", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3309709463", + "website_url": "http://www.lilpawswinery.com", + "state": "Ohio", + "street": "17574-A Mahoning Ave" + }, + { + "id": "35f5fb77-453a-4038-8124-cbe972f77f81", + "name": "Lil' Charlie's Restaurant & Brewery", + "brewery_type": "contract", + "address_1": "504 E Pearl St", + "address_2": null, + "address_3": null, + "city": "Batesville", + "state_province": "Indiana", + "postal_code": "47006-1585", + "country": "United States", + "longitude": -85.21614518, + "latitude": 39.29564197, + "phone": "8129346392", + "website_url": "http://www.lilcharlies.com", + "state": "Indiana", + "street": "504 E Pearl St" + }, + { + "id": "482a39c9-6188-4bc8-94e7-818dfda73120", + "name": "Lilly Pad Hopyard Brewery", + "brewery_type": "brewpub", + "address_1": "920 Ridge Rd", + "address_2": null, + "address_3": null, + "city": "Lancing", + "state_province": "Tennessee", + "postal_code": "37770-1830", + "country": "United States", + "longitude": -84.690323, + "latitude": 36.129889, + "phone": "8656170984", + "website_url": "http://lillypadhopyardbrewery.com", + "state": "Tennessee", + "street": "920 Ridge Rd" + }, + { + "id": "926a2f12-ac52-4a18-811b-54bd09293d3d", + "name": "Lilypatrick Craft Brewery", + "brewery_type": "micro", + "address_1": "Cnr of R44 and Klein Helderberg Road", + "address_2": null, + "address_3": null, + "city": "Somerset West", + "state_province": "Western Cape", + "postal_code": "7130", + "country": "South Africa", + "longitude": 18.8525, + "latitude": -34.0402, + "phone": "+27 79 501 1935", + "website_url": "https://lilypatrick.co.za/", + "state": "Western Cape", + "street": "Cnr of R44 and Klein Helderberg Road" + }, + { + "id": "346bdeda-331c-44b7-b7f5-d8b22eda1dd2", + "name": "Lilys Seafood Restaurant and Brewery", + "brewery_type": "brewpub", + "address_1": "410 S Washington Ave", + "address_2": null, + "address_3": null, + "city": "Royal Oak", + "state_province": "Michigan", + "postal_code": "48067-3824", + "country": "United States", + "longitude": -83.14668688, + "latitude": 42.487039, + "phone": "2485915459", + "website_url": null, + "state": "Michigan", + "street": "410 S Washington Ave" + }, + { + "id": "bad0e931-ed7c-4c5f-937b-6e53a705d16d", + "name": "Limestone Beer Co", + "brewery_type": "brewpub", + "address_1": "707 N Waco Ave Ste 105", + "address_2": null, + "address_3": null, + "city": "Wichita", + "state_province": "Kansas", + "postal_code": "67203-3944", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3167296200", + "website_url": "http://www.limestonebeerco.com", + "state": "Kansas", + "street": "707 N Waco Ave Ste 105" + }, + { + "id": "e9d3ac3a-772d-4550-bfc2-fe7db5ef7a8d", + "name": "Limestone Brewers", + "brewery_type": "micro", + "address_1": "518 Main St", + "address_2": null, + "address_3": null, + "city": "Osage", + "state_province": "Iowa", + "postal_code": "50461", + "country": "United States", + "longitude": -92.813673, + "latitude": 43.2839156, + "phone": "6418323100", + "website_url": "http://www.limestonebrewers.com", + "state": "Iowa", + "street": "518 Main St" + }, + { + "id": "a1488112-9955-4caa-ba96-70c984ffbeb3", + "name": "Limestone Creek Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Manlius", + "state_province": "New York", + "postal_code": "13104", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "392b01d7-c957-4c47-ae57-24e179a809b7", + "name": "Limitless Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lenexa", + "state_province": "Kansas", + "postal_code": "66215-1260", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.limitlessbrewing.com", + "state": "Kansas", + "street": null + }, + { + "id": "f467f19b-7b0e-4c26-8fce-ccd561324c0e", + "name": "Lincoln and South Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Hilton Head Island", + "state_province": "South Carolina", + "postal_code": "29928", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8434222847", + "website_url": "http://www.lincolnandsouth.com", + "state": "South Carolina", + "street": null + }, + { + "id": "25d09c9b-2aad-4f30-94ca-8d84ffddd93b", + "name": "Lincoln Avenue Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15202", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4124274078", + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "fdc0442a-c79a-4a94-b84d-f9794f1f67d9", + "name": "Lincoln Beer Company", + "brewery_type": "micro", + "address_1": "3083 N Lima St", + "address_2": null, + "address_3": null, + "city": "Burbank", + "state_province": "California", + "postal_code": "91504-2013", + "country": "United States", + "longitude": -118.3466206, + "latitude": 34.20605273, + "phone": "8186874206", + "website_url": "http://www.lincolnbeercompany.com", + "state": "California", + "street": "3083 N Lima St" + }, + { + "id": "a789a199-43c9-4863-91c0-02c51550397d", + "name": "Lincoln Hill Farm", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Canandaigua", + "state_province": "New York", + "postal_code": "14424-8826", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5857529466", + "website_url": "http://www.fingerlakingood.farm", + "state": "New York", + "street": null + }, + { + "id": "5b818cb4-0d49-49b0-8ae3-ec76db9825db", + "name": "Lincoln's Beard Brewing Co.", + "brewery_type": "micro", + "address_1": "7360 SW 41st St", + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "Florida", + "postal_code": "33155-4504", + "country": "United States", + "longitude": -80.3143531, + "latitude": 25.732096, + "phone": "3059127390", + "website_url": "http://lincolnsbeardbrewing.com/", + "state": "Florida", + "street": "7360 SW 41st St" + }, + { + "id": "cc7202c8-310e-4f38-962f-4eeff8179b56", + "name": "Lindgren Craft Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Duncannon", + "state_province": "Pennsylvania", + "postal_code": "17020", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7175147884", + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "b253fcd3-e60c-4d50-8370-3321ebeed059", + "name": "Line Creek Brewing", + "brewery_type": "micro", + "address_1": "150 Huddleston Rd Ste 300", + "address_2": null, + "address_3": null, + "city": "Peachtree City", + "state_province": "Georgia", + "postal_code": "30269", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.linecreekbrewing.com", + "state": "Georgia", + "street": "150 Huddleston Rd Ste 300" + }, + { + "id": "ab06cfba-c43a-48c7-ae62-70efe3163e74", + "name": "Lineage Brewing", + "brewery_type": "brewpub", + "address_1": "2971 N High St", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43202", + "country": "United States", + "longitude": -83.01413155, + "latitude": 40.0225652, + "phone": "6144613622", + "website_url": "http://www.lineagebrew.com", + "state": "Ohio", + "street": "2971 N High St" + }, + { + "id": "481d3558-d8d9-4ccf-8963-9de8f588060a", + "name": "Lineman Brewing", + "brewery_type": "micro", + "address_1": "Unit 16/17", + "address_2": "Block 613 Greenogue Industrial Estate", + "address_3": null, + "city": "Rathcoole", + "state_province": "Dublin", + "postal_code": "D24 H567", + "country": "Ireland", + "longitude": -6.4653408, + "latitude": 53.2988667, + "phone": "+353 01 401 6486", + "website_url": "https://lineman.ie/", + "state": "Dublin", + "street": "Unit 16/17" + }, + { + "id": "0623e420-0d84-46f5-a662-9937ed33799b", + "name": "LineSider Brewing", + "brewery_type": "micro", + "address_1": "1485 S County Trl", + "address_2": null, + "address_3": null, + "city": "East Greenwich", + "state_province": "Rhode Island", + "postal_code": "02818", + "country": "United States", + "longitude": -71.4977115, + "latitude": 41.6562569, + "phone": "4013987700", + "website_url": "https://linesiderbrewing.com", + "state": "Rhode Island", + "street": "1485 S County Trl" + }, + { + "id": "5620f950-f9dc-4c70-84fc-046e4353a1bb", + "name": "Lineup Brewing LLC", + "brewery_type": "micro", + "address_1": "33 35th St Unit 6A", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11232-2210", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7204222053", + "website_url": "http://www.lineupbrewing.com", + "state": "New York", + "street": "33 35th St Unit 6A" + }, + { + "id": "e58c2377-08e3-44e0-828c-1fb5ac0535c0", + "name": "Links Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15212", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4123239774", + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "882855c2-3294-494e-be49-0c48f8263cca", + "name": "Lion Brewery Co", + "brewery_type": "brewpub", + "address_1": "36 Club St", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "069469", + "country": "Singapore", + "longitude": 103.8434419, + "latitude": 1.2826554, + "phone": "93665815", + "website_url": "https://lionbreweryco.com/visit-our-brewpub/", + "state": "Singapore", + "street": "36 Club St" + }, + { + "id": "085c4b9a-9c7c-433e-ad8e-1160d002f847", + "name": "Lion Brewery Inc, The", + "brewery_type": "regional", + "address_1": "700 N Pennsylvania Ave", + "address_2": null, + "address_3": null, + "city": "Wilkes Barre", + "state_province": "Pennsylvania", + "postal_code": "18705-2451", + "country": "United States", + "longitude": -75.859363, + "latitude": 41.254896, + "phone": "5708238801", + "website_url": "http://www.lionbrewery.com", + "state": "Pennsylvania", + "street": "700 N Pennsylvania Ave" + }, + { + "id": "71db85db-6fd8-4313-9e2b-eb32f84b31b4", + "name": "Lion Bridge Brewing Company", + "brewery_type": "brewpub", + "address_1": "59 16th Ave SW", + "address_2": null, + "address_3": null, + "city": "Cedar Rapids", + "state_province": "Iowa", + "postal_code": "52404-5948", + "country": "United States", + "longitude": -91.66095281, + "latitude": 41.96478948, + "phone": "3192004460", + "website_url": "http://www.lionbridgebrewing.com", + "state": "Iowa", + "street": "59 16th Ave SW" + }, + { + "id": "0cd4decb-08fe-4b3d-b9dd-88d226d41c35", + "name": "Lion's Tail Brewing", + "brewery_type": "brewpub", + "address_1": "116 S Commercial St", + "address_2": null, + "address_3": null, + "city": "Neenah", + "state_province": "Wisconsin", + "postal_code": "54956-3020", + "country": "United States", + "longitude": -88.461836, + "latitude": 44.18631303, + "phone": "9202156443", + "website_url": "http://www.lionstailbrewing.com", + "state": "Wisconsin", + "street": "116 S Commercial St" + }, + { + "id": "e8957cf9-fe86-4bfa-8b81-e081e8badbfd", + "name": "Lions River Craft Brewery", + "brewery_type": "micro", + "address_1": "Thokans Farm R103", + "address_2": null, + "address_3": null, + "city": "Lidgetton", + "state_province": "KwaZulu-Natal", + "postal_code": "3270", + "country": "South Africa", + "longitude": 30.0768, + "latitude": -29.4795, + "phone": "+27 83 626 5747", + "website_url": "https://www.lionsriverbrewery.co.za/", + "state": "KwaZulu-Natal", + "street": "Thokans Farm R103" + }, + { + "id": "3fe6b30e-8b1b-4ca4-9d8a-9bba8640f0f2", + "name": "Lionstone Brewing", + "brewery_type": "brewpub", + "address_1": "1225 S Oakwood Ave", + "address_2": null, + "address_3": null, + "city": "Geneseo", + "state_province": "Illinois", + "postal_code": "61254-1990", + "country": "United States", + "longitude": -90.15752718, + "latitude": 41.43550343, + "phone": "3092696220", + "website_url": "http://www.lionstonebrewing.com", + "state": "Illinois", + "street": "1225 S Oakwood Ave" + }, + { + "id": "d336c30e-a177-4953-8c13-057728e1ed00", + "name": "Liquid Hero Brewery", + "brewery_type": "micro", + "address_1": "50 E North St", + "address_2": null, + "address_3": null, + "city": "York", + "state_province": "Pennsylvania", + "postal_code": "17401-2421", + "country": "United States", + "longitude": -76.74375254, + "latitude": 39.95854203, + "phone": "7178149250", + "website_url": "http://www.liquidhero.com", + "state": "Pennsylvania", + "street": "50 E North St" + }, + { + "id": "7908d63d-e957-4092-939f-32f9e8079113", + "name": "Liquid Mechanics Brewing Company", + "brewery_type": "micro", + "address_1": "297 N US Highway 287", + "address_2": null, + "address_3": null, + "city": "Lafayette", + "state_province": "Colorado", + "postal_code": "80026-8932", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7205507813", + "website_url": "http://www.liquidmechanicsbrewing.com", + "state": "Colorado", + "street": "297 N US Highway 287" + }, + { + "id": "db21126a-a56a-411d-a815-40fff4f2b54c", + "name": "Liquid Riot Bottling Co.", + "brewery_type": "brewpub", + "address_1": "4 Canal Plz Ste 1", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04101-4594", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2072218889", + "website_url": "http://www.novareresbiercafe.com", + "state": "Maine", + "street": "4 Canal Plz Ste 1" + }, + { + "id": "44b04181-569a-47e6-85f5-f65666f8bef4", + "name": "Liquid Shoes Brewing", + "brewery_type": "micro", + "address_1": "26 E Market St", + "address_2": null, + "address_3": null, + "city": "Corning", + "state_province": "New York", + "postal_code": "14830", + "country": "United States", + "longitude": -77.05301289, + "latitude": 42.14306479, + "phone": "6074639726", + "website_url": "http://www.liquidshoesbrewing.com", + "state": "New York", + "street": "26 E Market St" + }, + { + "id": "39bf60db-5e50-452e-984c-15fe45c440ab", + "name": "Liquid State Brewing Company", + "brewery_type": "micro", + "address_1": "620 West Green Street", + "address_2": null, + "address_3": null, + "city": "Ithaca", + "state_province": "New York", + "postal_code": "14850", + "country": "United States", + "longitude": -76.5077547, + "latitude": 42.43844312, + "phone": null, + "website_url": "http://www.liquidstatebrewing.com", + "state": "New York", + "street": "620 West Green Street" + }, + { + "id": "05e0037f-657b-4daa-b8cc-1e38a57714c9", + "name": "Liquid Therapy Brewery & Grill", + "brewery_type": "brewpub", + "address_1": "14 Court St", + "address_2": null, + "address_3": null, + "city": "Nashua", + "state_province": "New Hampshire", + "postal_code": "03060", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6037029391", + "website_url": "https://liquidtherapynh.com/", + "state": "New Hampshire", + "street": "14 Court St" + }, + { + "id": "c567a823-0817-45f3-a8f2-32b46d10364f", + "name": "Lister's Brewery Limited", + "brewery_type": "micro", + "address_1": "Michelgrove Lane", + "address_2": null, + "address_3": null, + "city": "Worthing", + "state_province": "West Sussex", + "postal_code": "BN13 3XW", + "country": "England", + "longitude": -0.478855, + "latitude": 50.872653, + "phone": "1903885950", + "website_url": "http://www.listersbrewery.com/", + "state": "West Sussex", + "street": "Michelgrove Lane" + }, + { + "id": "bd1649e5-21f8-4e5d-9ab4-e276abb822f6", + "name": "Listermann Brewing Company", + "brewery_type": "micro", + "address_1": "1621 Dana Ave", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45207-1007", + "country": "United States", + "longitude": -84.4721318, + "latitude": 39.1463506, + "phone": "5137311130", + "website_url": "http://Listermannbrewing.com", + "state": "Ohio", + "street": "1621 Dana Ave" + }, + { + "id": "e7b3d1f4-c290-4c1c-b430-16e3b9876122", + "name": "Liter House", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46220", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3176940580", + "website_url": null, + "state": "Indiana", + "street": null + }, + { + "id": "7483a72d-fbd6-4b7c-91c7-4e4f8cab78f4", + "name": "Lithermans Limited Brewery", + "brewery_type": "micro", + "address_1": "126 Hall St Ste B", + "address_2": null, + "address_3": null, + "city": "Concord", + "state_province": "New Hampshire", + "postal_code": "03301-3447", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6038189102", + "website_url": "http://www.lithermans.beer", + "state": "New Hampshire", + "street": "126 Hall St Ste B" + }, + { + "id": "65ce6fa5-b2eb-43db-adb6-48d6a6a21992", + "name": "Lithology Brewing", + "brewery_type": "proprietor", + "address_1": "211 Main St Ste A", + "address_2": null, + "address_3": null, + "city": "Farmingdale", + "state_province": "New York", + "postal_code": "11735-2675", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6316783613", + "website_url": "http://Lithologybrewing.com", + "state": "New York", + "street": "211 Main St Ste A" + }, + { + "id": "8de6b4e6-4616-4f07-aeec-c53830db03ca", + "name": "Little Apple Brewing Co", + "brewery_type": "micro", + "address_1": "1110 Westloop Pl", + "address_2": null, + "address_3": null, + "city": "Manhattan", + "state_province": "Kansas", + "postal_code": "66502-2838", + "country": "United States", + "longitude": -96.6083689, + "latitude": 39.1915231, + "phone": "7855395500", + "website_url": "http://www.littleapplebrewery.com", + "state": "Kansas", + "street": "1110 Westloop Pl" + }, + { + "id": "b8756226-5b2f-419b-bae2-a04549d3b78d", + "name": "Little Bang Brewing Co.", + "brewery_type": "micro", + "address_1": "25 Henry Street", + "address_2": null, + "address_3": null, + "city": "Stepney", + "state_province": "SA", + "postal_code": "5069", + "country": "Australia", + "longitude": 138.6255729, + "latitude": -34.9148094, + "phone": "+61 8 8362 7761", + "website_url": "https://littlebang.com.au/", + "state": "SA", + "street": "25 Henry Street" + }, + { + "id": "0bce65d5-d04c-4b2d-9f2a-6440a8a644aa", + "name": "Little Bang Brewing Company", + "brewery_type": "micro", + "address_1": "25 Henry Street", + "address_2": null, + "address_3": null, + "city": "Stepney", + "state_province": "SA", + "postal_code": "5069", + "country": "Australia", + "longitude": 138.6255729, + "latitude": -34.9148094, + "phone": "+61 8 8362 7761", + "website_url": "https://littlebang.com.au/", + "state": "SA", + "street": "25 Henry Street" + }, + { + "id": "dc7254f5-aa81-475a-abdf-9d2065ad76b0", + "name": "Little Beast Brewing", + "brewery_type": "micro", + "address_1": "3800 SW Cedar Hills Blvd Ste 300E", + "address_2": null, + "address_3": null, + "city": "Beaverton", + "state_province": "Oregon", + "postal_code": "97005-2037", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5033295107", + "website_url": "http://www.littlebeastbrewing.com/", + "state": "Oregon", + "street": "3800 SW Cedar Hills Blvd Ste 300E" + }, + { + "id": "82d36728-935e-4ed7-897a-af821be16d7d", + "name": "Little Blessings Brewing", + "brewery_type": "micro", + "address_1": "38 Victoria Street", + "address_2": null, + "address_3": null, + "city": "Laura", + "state_province": "SA", + "postal_code": "5480", + "country": "Australia", + "longitude": 138.3011384, + "latitude": -33.1801514, + "phone": "+61 493 799 232", + "website_url": "http://www.littleblessingsbrewing.com.au/", + "state": "SA", + "street": "38 Victoria Street" + }, + { + "id": "37e278fc-e3ef-4635-8e29-a4fab979ba18", + "name": "Little Brewing Company", + "brewery_type": "micro", + "address_1": "58 Uralla Road", + "address_2": "1", + "address_3": null, + "city": "Port Macquarie", + "state_province": "NSW", + "postal_code": "2444", + "country": "Australia", + "longitude": 152.882823, + "latitude": -31.456141, + "phone": "+61 2 6581 3949", + "website_url": "http://www.thelittlebrewingcompany.com.au/", + "state": "NSW", + "street": "58 Uralla Road" + }, + { + "id": "cd5ef38d-235e-4318-931a-defea9b4296a", + "name": "Little Brother Brewing", + "brewery_type": "micro", + "address_1": "348 S Elm St", + "address_2": null, + "address_3": null, + "city": "Greensboro", + "state_province": "North Carolina", + "postal_code": "27401-2606", + "country": "United States", + "longitude": -79.7907703, + "latitude": 36.0686165, + "phone": "7049990577", + "website_url": "http://Www.littlebrotherbrew.com", + "state": "North Carolina", + "street": "348 S Elm St" + }, + { + "id": "e4293558-1bdb-40ec-9954-b252397283bf", + "name": "Little City Brewing Co.", + "brewery_type": "micro", + "address_1": "400 W North St Ste 120", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27603-1570", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9195027155", + "website_url": "http://Www.thelocalicon.com/little-city", + "state": "North Carolina", + "street": "400 W North St Ste 120" + }, + { + "id": "8189a769-0c2d-4796-a6bf-8460f3e4a5e2", + "name": "Little Creatures Brewery", + "brewery_type": "large", + "address_1": "40 Mews Road", + "address_2": null, + "address_3": null, + "city": "Fremantle", + "state_province": "WA", + "postal_code": "6160", + "country": "Australia", + "longitude": 115.7447222, + "latitude": -32.0591667, + "phone": "+61 8 6215 1000", + "website_url": "https://littlecreatures.com.au/locations/fremantle", + "state": "WA", + "street": "40 Mews Road" + }, + { + "id": "0f0ea92d-3acc-4f59-bb72-2e6cb404bc6a", + "name": "Little Dog Brewing Co.", + "brewery_type": "micro", + "address_1": "141 Steiner Ave", + "address_2": null, + "address_3": null, + "city": "Neptune City", + "state_province": "New Jersey", + "postal_code": "07753-6500", + "country": "United States", + "longitude": -74.02307257, + "latitude": 40.20003682, + "phone": "7323613555", + "website_url": "http://Www.littledogbrewing.com", + "state": "New Jersey", + "street": "141 Steiner Ave" + }, + { + "id": "ace6c26f-6fff-4688-9e28-14e977c38d78", + "name": "Little Fish Brewing Company", + "brewery_type": "micro", + "address_1": "8675 Armitage Rd", + "address_2": null, + "address_3": null, + "city": "Athens", + "state_province": "Ohio", + "postal_code": "45701-8900", + "country": "United States", + "longitude": -82.12957738, + "latitude": 39.33333227, + "phone": "7402046187", + "website_url": "http://www.littlefishbrewing.com", + "state": "Ohio", + "street": "8675 Armitage Rd" + }, + { + "id": "7cb2e78f-4ddc-4557-bc84-bda74063c090", + "name": "Little Giant Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Bradenton", + "state_province": "Florida", + "postal_code": "34208-1139", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9419626650", + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "5547b67d-f160-444a-963a-d62e5b513e78", + "name": "Little Green Men Brewing Co.", + "brewery_type": "micro", + "address_1": "80 Emu Bay Road", + "address_2": null, + "address_3": null, + "city": "Deloraine", + "state_province": "TAS", + "postal_code": "7304", + "country": "Australia", + "longitude": 146.6527919, + "latitude": -41.5243153, + "phone": "+61 3 6362 2016", + "website_url": "http://littlegreenmenbrewing.com/", + "state": "TAS", + "street": "80 Emu Bay Road" + }, + { + "id": "187f11ae-b687-4c5a-afb4-0eefa9f04edb", + "name": "Little Harpeth Brewing Co", + "brewery_type": "micro", + "address_1": "30 Oldham St", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37213-1107", + "country": "United States", + "longitude": -86.77697471, + "latitude": 36.174546, + "phone": "3073711476", + "website_url": "http://www.littleharpethbrewing.com", + "state": "Tennessee", + "street": "30 Oldham St" + }, + { + "id": "249d0a17-9cc1-4d49-be20-89d4e33763da", + "name": "Little House Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Chester", + "state_province": "Connecticut", + "postal_code": "06412-1342", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6128105315", + "website_url": "http://www.littlehousebrewing.com", + "state": "Connecticut", + "street": null + }, + { + "id": "1d101475-9df6-49ee-8590-e9b82f12bd41", + "name": "Little Machine", + "brewery_type": "micro", + "address_1": "2924 W 20th Ave", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80211-4622", + "country": "United States", + "longitude": -105.0243557, + "latitude": 39.7474051, + "phone": "3032847893", + "website_url": "http://www.littlemachinebeer.com", + "state": "Colorado", + "street": "2924 W 20th Ave" + }, + { + "id": "e7693960-bc75-4c83-bf5f-fb4e03a47a11", + "name": "Little Miami Brewing Company", + "brewery_type": "brewpub", + "address_1": "208 Mill St", + "address_2": null, + "address_3": null, + "city": "Milford", + "state_province": "Ohio", + "postal_code": "45150-1072", + "country": "United States", + "longitude": -84.29623162, + "latitude": 39.17161035, + "phone": "5137131121", + "website_url": "http://www.littlemiamibrewing.com", + "state": "Ohio", + "street": "208 Mill St" + }, + { + "id": "0917c834-47a2-4156-9f17-9eeeb16e7f7d", + "name": "Little Miss Brewing", + "brewery_type": "micro", + "address_1": "7949 Stromesa Ct Ste Y", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92126-6338", + "country": "United States", + "longitude": -117.148488, + "latitude": 32.89183, + "phone": "6198802752", + "website_url": "http://www.littlemissbrewing.com", + "state": "California", + "street": "7949 Stromesa Ct Ste Y" + }, + { + "id": "92fbdabe-13d5-4cc6-bc08-54a0e536260c", + "name": "Little Pete Brewing", + "brewery_type": "micro", + "address_1": "543 Step Road", + "address_2": null, + "address_3": null, + "city": "Langhorne Creek", + "state_province": "SA", + "postal_code": "5255", + "country": "Australia", + "longitude": 139.0324059, + "latitude": -35.3327593, + "phone": "+61 438 262 966", + "website_url": "http://www.littlepetebrewing.com.au/", + "state": "SA", + "street": "543 Step Road" + }, + { + "id": "53178b0b-00c3-463b-9423-25fe3cb223b1", + "name": "Little Red Barn Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Winsted", + "state_province": "Connecticut", + "postal_code": "06098-1410", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8603873536", + "website_url": "http://LRBbrewers.com", + "state": "Connecticut", + "street": null + }, + { + "id": "cabf373a-6fa7-4450-ad02-6d7dfe964491", + "name": "Little Rippa Brewing Co.", + "brewery_type": "micro", + "address_1": "107 Ruwoldt Road", + "address_2": null, + "address_3": null, + "city": "Yahl", + "state_province": "SA", + "postal_code": "5291", + "country": "Australia", + "longitude": 140.830226, + "latitude": -37.8548477, + "phone": null, + "website_url": "https://littlerippabrewingco.com.au/", + "state": "SA", + "street": "107 Ruwoldt Road" + }, + { + "id": "a93a2381-92e3-4806-85d5-aa1d308c22be", + "name": "Little Rivers Brewing Co.", + "brewery_type": "micro", + "address_1": "22 Victoria Street", + "address_2": null, + "address_3": null, + "city": "Scottsdale", + "state_province": "TAS", + "postal_code": "7260", + "country": "Australia", + "longitude": 147.514059, + "latitude": -41.160138, + "phone": "+61 3 6352 4886", + "website_url": "http://littlerivers.com.au/", + "state": "TAS", + "street": "22 Victoria Street" + }, + { + "id": "ca9c8da9-79bf-4f73-96be-ef5922abcd7c", + "name": "Little Spokane Brewing Company", + "brewery_type": "closed", + "address_1": "154 S Madison St Ste 101", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99201-4542", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.littlespokanebrewingco.com", + "state": "Washington", + "street": "154 S Madison St Ste 101" + }, + { + "id": "2688cb2b-a937-42d7-a49f-3e1894a66021", + "name": "Little Thistle Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "Minnesota", + "postal_code": "55901", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5073584647", + "website_url": "http://www.littlethistlebeer.com", + "state": "Minnesota", + "street": null + }, + { + "id": "b9a78a53-e345-4ff1-8b48-0ecfc8be956f", + "name": "Little Toad Creek Brewery & Distillery", + "brewery_type": "brewpub", + "address_1": "200 N Bullard St", + "address_2": null, + "address_3": null, + "city": "Silver City", + "state_province": "New Mexico", + "postal_code": "88061", + "country": "United States", + "longitude": -108.2764, + "latitude": 32.769863, + "phone": "5755369649", + "website_url": "http://www.littletoadcreek.com", + "state": "New Mexico", + "street": "200 N Bullard St" + }, + { + "id": "d790ba65-3bbe-453f-adaf-f5e2e2e21cc6", + "name": "Little Vixen Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Las Vegas", + "state_province": "Nevada", + "postal_code": "89138-6120", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7759975936", + "website_url": null, + "state": "Nevada", + "street": null + }, + { + "id": "88c88a7e-8760-4d5f-9884-778aeba32e76", + "name": "Littleton Brewing Company", + "brewery_type": "planning", + "address_1": "1201 W Littleton Blvd", + "address_2": null, + "address_3": null, + "city": "Littleton", + "state_province": "Colorado", + "postal_code": "80120", + "country": "United States", + "longitude": -105.0021299, + "latitude": 39.6135479, + "phone": null, + "website_url": "https://www.littletonbrewco.com/", + "state": "Colorado", + "street": "1201 W Littleton Blvd" + }, + { + "id": "de0ba3c4-611e-49b4-b136-a6c074b36c4c", + "name": "Live Oak Brewing Co", + "brewery_type": "regional", + "address_1": "1615 Crozier Ln", + "address_2": null, + "address_3": null, + "city": "del Valle", + "state_province": "Texas", + "postal_code": "78617-2129", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5123852299", + "website_url": "http://www.liveoakbrewing.com", + "state": "Texas", + "street": "1615 Crozier Ln" + }, + { + "id": "686d530a-0bbf-4f7a-aa57-ab41feb8520c", + "name": "Living the Dream Brewing Co.", + "brewery_type": "micro", + "address_1": "9150 Commerce Center Cir Ste 300", + "address_2": null, + "address_3": null, + "city": "Highlands Ranch", + "state_province": "Colorado", + "postal_code": "80129-1563", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3032849585", + "website_url": "http://www.livingthedreambrewing.com", + "state": "Colorado", + "street": "9150 Commerce Center Cir Ste 300" + }, + { + "id": "92cb06ac-91b1-4376-8e24-5ba606c08af3", + "name": "Living the Dream Sterling Taproom", + "brewery_type": "micro", + "address_1": "8155 Piney River Ave", + "address_2": null, + "address_3": null, + "city": "Littleton", + "state_province": "Colorado", + "postal_code": "80125", + "country": "United States", + "longitude": -105.037188, + "latitude": 39.5067366, + "phone": "3032849585", + "website_url": "http://www.livingthedreambrewing.com", + "state": "Colorado", + "street": "8155 Piney River Ave" + }, + { + "id": "b8aa5099-ab15-4299-b15d-0397e8147164", + "name": "Livingood's Restaurant & Brewery", + "brewery_type": "brewpub", + "address_1": "697 Bear Swamp Rd", + "address_2": null, + "address_3": null, + "city": "Peru", + "state_province": "New York", + "postal_code": "12972-", + "country": "United States", + "longitude": -73.518542, + "latitude": 44.576563, + "phone": "5184206331", + "website_url": "http://www.livingoodsresturant.com", + "state": "New York", + "street": "697 Bear Swamp Rd" + }, + { + "id": "4d8d14f0-e079-44a2-b571-86d129ead825", + "name": "Lizard Tail Brewing", + "brewery_type": "brewpub", + "address_1": "9800 Montgomery Blvd NE Ste 7", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87111-3560", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5057171301", + "website_url": "http://www.lizardtailbrewing.com", + "state": "New Mexico", + "street": "9800 Montgomery Blvd NE Ste 7" + }, + { + "id": "b9118910-fab1-4786-a02b-1887d5068c27", + "name": "LMS Brewing", + "brewery_type": "micro", + "address_1": "67 Castlemaine Street", + "address_2": null, + "address_3": null, + "city": "Milton", + "state_province": "QLD", + "postal_code": "4064", + "country": "Australia", + "longitude": 153.0080454, + "latitude": -27.4653064, + "phone": "+61 7 4357 8666", + "website_url": "https://lmsbrewing.com.au/", + "state": "QLD", + "street": "67 Castlemaine Street" + }, + { + "id": "9af7465c-dcff-4144-a1fe-205ab8da7772", + "name": "Lo Rez Brewing", + "brewery_type": "micro", + "address_1": "2101 S Carpenter St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60608-4529", + "country": "United States", + "longitude": -87.6524429, + "latitude": 41.8533096, + "phone": "3128043283", + "website_url": "http://lorezbrewing.com", + "state": "Illinois", + "street": "2101 S Carpenter St" + }, + { + "id": "fa774256-4e34-471c-adab-29336df80a68", + "name": "Lo-Fi Brewing", + "brewery_type": "micro", + "address_1": "2038 Meeting St Rd", + "address_2": null, + "address_3": null, + "city": "North Charleston", + "state_province": "South Carolina", + "postal_code": "29405-9357", + "country": "United States", + "longitude": -79.9540931, + "latitude": 32.8336083, + "phone": "8285822175", + "website_url": "http://www.lofibrewing.com", + "state": "South Carolina", + "street": "2038 Meeting St Rd" + }, + { + "id": "8c47911e-39d3-45ec-bc56-70ad9ca6197f", + "name": "Loaded Question Brewing Co", + "brewery_type": "micro", + "address_1": "909 Islington St Ste 12", + "address_2": null, + "address_3": null, + "city": "Portsmouth", + "state_province": "New Hampshire", + "postal_code": "03801", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.loadedquestionbrewing.com", + "state": "New Hampshire", + "street": "909 Islington St Ste 12" + }, + { + "id": "6c103fb0-7517-4c59-a70b-dc6bb0889ad1", + "name": "Lobethal Bierhaus", + "brewery_type": "micro", + "address_1": "3A Main Street", + "address_2": null, + "address_3": null, + "city": "Lobethal", + "state_province": "SA", + "postal_code": "5241", + "country": "Australia", + "longitude": 138.8734721, + "latitude": -34.9072717, + "phone": "+61 8 8389 5570", + "website_url": "http://www.bierhaus.com.au/", + "state": "SA", + "street": "3A Main Street" + }, + { + "id": "ab279a70-7f69-45aa-8b0f-859eba8d16f3", + "name": "Local 315 Brewing Company", + "brewery_type": "micro", + "address_1": "3160 Warners Rd", + "address_2": null, + "address_3": null, + "city": "Warners", + "state_province": "New York", + "postal_code": "13164-", + "country": "United States", + "longitude": -76.329676, + "latitude": 43.085441, + "phone": "315468", + "website_url": "http://www.local315brewing.com", + "state": "New York", + "street": "3160 Warners Rd" + }, + { + "id": "646b77a4-f86e-4aa0-a2ef-be3b151808f1", + "name": "Local Brewing Co", + "brewery_type": "micro", + "address_1": "69 Bluxome St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94107-1605", + "country": "United States", + "longitude": -122.3973825, + "latitude": 37.776173, + "phone": null, + "website_url": "http://www.localbrewingco.com", + "state": "California", + "street": "69 Bluxome St" + }, + { + "id": "93db856b-5d88-4262-ae41-5d4c4b9fc799", + "name": "Local Craft Beer, Tehachapi", + "brewery_type": "micro", + "address_1": "365 Enterprise Way Ste G", + "address_2": null, + "address_3": null, + "city": "Tehachapi", + "state_province": "California", + "postal_code": "93561-1369", + "country": "United States", + "longitude": -118.4549723, + "latitude": 35.13678901, + "phone": "6618222337", + "website_url": "http://www.honeywagonbrewing.com", + "state": "California", + "street": "365 Enterprise Way Ste G" + }, + { + "id": "e5a8a40f-7285-4ab4-83d5-d0e4ceb39b3f", + "name": "Local Group Brewing Company, LLC.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77008-6844", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "451c482b-18e0-4dd2-bfbc-8b94d25902aa", + "name": "Local Option", + "brewery_type": "contract", + "address_1": "1102 W Webster Ave Ste 1", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60614-7089", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7733482008", + "website_url": "http://www.localoptionbier.com", + "state": "Illinois", + "street": "1102 W Webster Ave Ste 1" + }, + { + "id": "cab5fb39-d342-46c6-a2c5-961381be305e", + "name": "Local Relic", + "brewery_type": "brewpub", + "address_1": "320 S Weber St", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80903-2125", + "country": "United States", + "longitude": -104.8203866, + "latitude": 38.82871975, + "phone": "7192700077", + "website_url": "http://www.localrelic.com", + "state": "Colorado", + "street": "320 S Weber St" + }, + { + "id": "b9f745cb-a332-4e64-ad81-a678c2548042", + "name": "Locavore Beer Works", + "brewery_type": "micro", + "address_1": "5950 S Platte Canyon Rd Ste D13", + "address_2": null, + "address_3": null, + "city": "Littleton", + "state_province": "Colorado", + "postal_code": "80123-7539", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7204764419", + "website_url": "http://www.locavorebeerworks.com", + "state": "Colorado", + "street": "5950 S Platte Canyon Rd Ste D13" + }, + { + "id": "e3d70cc5-6dc6-4a31-b71f-1d3b39976967", + "name": "Loch Brewery & Distillery", + "brewery_type": "micro", + "address_1": "44 Victoria Road", + "address_2": "42", + "address_3": null, + "city": "Loch", + "state_province": "VIC", + "postal_code": "3945", + "country": "Australia", + "longitude": 145.707453, + "latitude": -38.369101, + "phone": "+61 428 953 933", + "website_url": "http://www.lochbrewery.com.au/", + "state": "VIC", + "street": "44 Victoria Road" + }, + { + "id": "04e9e7ce-5f20-4861-acbe-ac4be5628b49", + "name": "Loch Lomond Brewery", + "brewery_type": "micro", + "address_1": "Block 2 Unit 11", + "address_2": "Vale of Leven Industrial Estate", + "address_3": null, + "city": "Dumbarton", + "state_province": "West Dunbartonshire", + "postal_code": "G82 3PD", + "country": "Scotland", + "longitude": -4.576255, + "latitude": 55.969774, + "phone": "1389755698", + "website_url": "https://www.lochlomondbrewery.com/", + "state": "West Dunbartonshire", + "street": "Block 2 Unit 11" + }, + { + "id": "80c95ce3-5826-4673-b5b0-2d6a9b87aeb6", + "name": "Lochiel Brewing", + "brewery_type": "micro", + "address_1": "7143 E Southern Ave Ste 131", + "address_2": null, + "address_3": null, + "city": "Mesa", + "state_province": "Arizona", + "postal_code": "85209-2657", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4806660915", + "website_url": "http://lochielbrewing.com", + "state": "Arizona", + "street": "7143 E Southern Ave Ste 131" + }, + { + "id": "b744848c-8e41-40f1-9ecb-e46ff290466c", + "name": "Lock 15 Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Akron", + "state_province": "Ohio", + "postal_code": "44304-1035", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.lock15brewing.com", + "state": "Ohio", + "street": null + }, + { + "id": "fb6f6bff-1e40-42b5-9a86-0de2e080be56", + "name": "Lock 27 Brewing", + "brewery_type": "brewpub", + "address_1": "1035 S Main St", + "address_2": null, + "address_3": null, + "city": "Centerville", + "state_province": "Ohio", + "postal_code": "45458-3840", + "country": "United States", + "longitude": -84.1626371, + "latitude": 39.6089321, + "phone": "9374332739", + "website_url": "http://www.lock27brewing.com", + "state": "Ohio", + "street": "1035 S Main St" + }, + { + "id": "575dd400-8f94-4441-a09c-dbde302d6cd7", + "name": "Lock 27 Brewing", + "brewery_type": "brewpub", + "address_1": "329 E 1st St", + "address_2": null, + "address_3": null, + "city": "Dayton", + "state_province": "Ohio", + "postal_code": "45402-1705", + "country": "United States", + "longitude": -84.18693529, + "latitude": 39.76332003, + "phone": "9374332739", + "website_url": "http://www.lock27brewing.com", + "state": "Ohio", + "street": "329 E 1st St" + }, + { + "id": "cc9bbfcb-303c-4f67-872f-63838aea0754", + "name": "Lock 32 Brewing Company", + "brewery_type": "micro", + "address_1": "10 Schoen Pl", + "address_2": null, + "address_3": null, + "city": "Pittsford", + "state_province": "New York", + "postal_code": "14534-2026", + "country": "United States", + "longitude": -77.514256, + "latitude": 43.09306, + "phone": "5855067738", + "website_url": "http://www.lock32brew.com", + "state": "New York", + "street": "10 Schoen Pl" + }, + { + "id": "21d30e6a-77bb-4d03-b13a-8a01323c2e26", + "name": "Lock City Brewing", + "brewery_type": "micro", + "address_1": "54 Research Dr", + "address_2": null, + "address_3": null, + "city": "Stamford", + "state_province": "Connecticut", + "postal_code": "06906-1428", + "country": "United States", + "longitude": -73.51955794, + "latitude": 41.07705652, + "phone": "2033136454", + "website_url": "http://www.lockcitybrewing.com", + "state": "Connecticut", + "street": "54 Research Dr" + }, + { + "id": "02a141f3-ba6a-4ce4-95ce-0ca90daa2734", + "name": "Lockport Brewery", + "brewery_type": "brewpub", + "address_1": "10891 OH-212", + "address_2": null, + "address_3": null, + "city": "Bolivar", + "state_province": "Ohio", + "postal_code": "44612-8664", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3308746037", + "website_url": "http://www.lockportbeer.com", + "state": "Ohio", + "street": "10891 OH-212" + }, + { + "id": "36a3f792-14f7-427e-9668-ed2f05cfab99", + "name": "Lockside Brewery / 1668 Winery", + "brewery_type": "brewpub", + "address_1": "100 W Portage Ave", + "address_2": null, + "address_3": null, + "city": "Sault Sainte Marie", + "state_province": "Michigan", + "postal_code": "49783-1920", + "country": "United States", + "longitude": -84.34705, + "latitude": 46.500695, + "phone": "9062595035", + "website_url": "http://1668winery.com/thebeers/", + "state": "Michigan", + "street": "100 W Portage Ave" + }, + { + "id": "6f65c0a8-ef15-4ad4-8498-ecd13f22fbe5", + "name": "Loco Patron Mexican Brewery", + "brewery_type": "brewpub", + "address_1": "14950 N Northsight Blvd", + "address_2": null, + "address_3": null, + "city": "Scottsdale", + "state_province": "Arizona", + "postal_code": "85260", + "country": "United States", + "longitude": -111.8977707, + "latitude": 33.6216475, + "phone": "4806997271", + "website_url": "http://www.locopatron.com", + "state": "Arizona", + "street": "14950 N Northsight Blvd" + }, + { + "id": "192c156f-0dd5-4960-a962-47f2bdd051f9", + "name": "Locust Cider & Brewing Co", + "brewery_type": "micro", + "address_1": "19151 144th Ave NE Unit B/C", + "address_2": null, + "address_3": null, + "city": "Woodinville", + "state_province": "Washington", + "postal_code": "98072-4374", + "country": "United States", + "longitude": -122.1484843, + "latitude": 47.7661918, + "phone": "4258922075", + "website_url": "https://www.locustcider.com", + "state": "Washington", + "street": "19151 144th Ave NE Unit B/C" + }, + { + "id": "dc51c4f8-e09f-42af-8f4a-a8b10d3d49fc", + "name": "Locust Lane Craft Brewery", + "brewery_type": "micro", + "address_1": "50 Three Tun Rd Ste 4", + "address_2": null, + "address_3": null, + "city": "Malvern", + "state_province": "Pennsylvania", + "postal_code": "19355-3988", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4843244141", + "website_url": "http://www.locustlanecraftbrewery.com", + "state": "Pennsylvania", + "street": "50 Three Tun Rd Ste 4" + }, + { + "id": "24cf41e1-f209-475e-bee2-08d99ed6174d", + "name": "Lodi Beer Company", + "brewery_type": "brewpub", + "address_1": "105 S School St", + "address_2": null, + "address_3": null, + "city": "Lodi", + "state_province": "California", + "postal_code": "95240-3509", + "country": "United States", + "longitude": -121.2738676, + "latitude": 38.13282339, + "phone": "2093682964", + "website_url": "http://www.lodibeercompany.com", + "state": "California", + "street": "105 S School St" + }, + { + "id": "e1cb5bc9-1582-4718-bf98-4fa43b9de958", + "name": "Loe's Brewing Company", + "brewery_type": "brewpub", + "address_1": "1048 Harper Ave NW", + "address_2": null, + "address_3": null, + "city": "Lenoir", + "state_province": "North Carolina", + "postal_code": "28645-5085", + "country": "United States", + "longitude": -81.54235348, + "latitude": 35.91276115, + "phone": "8287543652", + "website_url": "http://www.loesbrewing.com", + "state": "North Carolina", + "street": "1048 Harper Ave NW" + }, + { + "id": "96d6194f-8f23-4563-8b4f-90283fd97c7d", + "name": "Logan Brewing Company", + "brewery_type": "micro", + "address_1": "510 SW 151st St", + "address_2": null, + "address_3": null, + "city": "Burien", + "state_province": "Washington", + "postal_code": "98166", + "country": "United States", + "longitude": -122.3410603, + "latitude": 47.46818562, + "phone": "2064866569", + "website_url": "https://www.logan.beer", + "state": "Washington", + "street": "510 SW 151st St" + }, + { + "id": "e69bc9bf-ee02-406b-9e70-bae68db2e914", + "name": "Logboat Brewing Co", + "brewery_type": "micro", + "address_1": "504 Fay St", + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "Missouri", + "postal_code": "65201-4782", + "country": "United States", + "longitude": -92.32265015, + "latitude": 38.95708639, + "phone": "5733976786", + "website_url": "http://www.logboatbrewing.com", + "state": "Missouri", + "street": "504 Fay St" + }, + { + "id": "cbc134e4-e2c4-45cf-add4-89435412bce8", + "name": "Loggers Brewing Company", + "brewery_type": "micro", + "address_1": "1215 S River Rd", + "address_2": null, + "address_3": null, + "city": "Saginaw", + "state_province": "Michigan", + "postal_code": "48609-5208", + "country": "United States", + "longitude": -84.05193542, + "latitude": 43.40518225, + "phone": "9894013085", + "website_url": "http://www.loggersbrewingcompany.com", + "state": "Michigan", + "street": "1215 S River Rd" + }, + { + "id": "6b9b74b4-828f-488b-b860-06aa988d03e7", + "name": "LogOff Brewing LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Carmichael", + "state_province": "California", + "postal_code": "95608-5615", + "country": "United States", + "longitude": -121.3222422, + "latitude": 38.62709845, + "phone": "9165416677", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "88a28bd3-c4c4-4372-abce-ff5f97bd3dff", + "name": "Logsdon Farmhouse Ales", + "brewery_type": "micro", + "address_1": "4785 Booth Hill Rd", + "address_2": null, + "address_3": null, + "city": "Hood River", + "state_province": "Oregon", + "postal_code": "97031-7411", + "country": "United States", + "longitude": -121.5375837, + "latitude": 45.58763985, + "phone": "5414909161", + "website_url": "http://www.farmhousebeer.com", + "state": "Oregon", + "street": "4785 Booth Hill Rd" + }, + { + "id": "fa801e81-96ea-4e55-be40-4ca8844bb56c", + "name": "Lolo Peak Brewing Company", + "brewery_type": "micro", + "address_1": "6201 Brewery Way", + "address_2": null, + "address_3": null, + "city": "Lolo", + "state_province": "Montana", + "postal_code": "59847-9375", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4064936231", + "website_url": "http://www.lolopeakbrewery.com", + "state": "Montana", + "street": "6201 Brewery Way" + }, + { + "id": "9c60421f-0d9f-4d57-91b4-5f1cdd0e452e", + "name": "Loma Brewing Co", + "brewery_type": "brewpub", + "address_1": "130 N Santa Cruz Ave Ste G", + "address_2": null, + "address_3": null, + "city": "Los Gatos", + "state_province": "California", + "postal_code": "95030-5949", + "country": "United States", + "longitude": -121.9823167, + "latitude": 37.22530385, + "phone": "4085609626", + "website_url": "http://www.lomabrew.com", + "state": "California", + "street": "130 N Santa Cruz Ave Ste G" + }, + { + "id": "74f90455-1067-4c5c-b216-1c69bafb21f9", + "name": "Lompoc Brewing, LLC/ The 5th Quadrant", + "brewery_type": "closed", + "address_1": "3901 N Williams Ave Ste B", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97227-1465", + "country": "United States", + "longitude": -122.6675027, + "latitude": 45.55345273, + "phone": "5032883996", + "website_url": "http://www.newoldlompoc.com/5thquadranthome.html", + "state": "Oregon", + "street": "3901 N Williams Ave Ste B" + }, + { + "id": "32554b04-ef98-48cb-bb86-b28a5b23bc20", + "name": "Lone Eagle Brewing", + "brewery_type": "brewpub", + "address_1": "44 Stangl Rd", + "address_2": null, + "address_3": null, + "city": "Flemington", + "state_province": "New Jersey", + "postal_code": "08822-1581", + "country": "United States", + "longitude": -74.86266573, + "latitude": 40.50537407, + "phone": "9082372255", + "website_url": "http://loneeaglebrewing.com", + "state": "New Jersey", + "street": "44 Stangl Rd" + }, + { + "id": "c1c302ab-3ee9-4ebf-983f-ff27fed3cb32", + "name": "Lone Gum Farmhouse", + "brewery_type": "micro", + "address_1": "Devon Street", + "address_2": null, + "address_3": null, + "city": "Lonsdale", + "state_province": "SA", + "postal_code": "5160", + "country": "Australia", + "longitude": 138.5005547, + "latitude": -35.1162351, + "phone": "+61 452 209 784", + "website_url": "http://lonegumfarmhouse.com/", + "state": "SA", + "street": "Devon Street" + }, + { + "id": "9bca1253-e17c-4567-b7c7-793a962733f6", + "name": "Lone Peak Brewery", + "brewery_type": "brewpub", + "address_1": "48 Market Pl", + "address_2": null, + "address_3": null, + "city": "Big Sky", + "state_province": "Montana", + "postal_code": "59716", + "country": "United States", + "longitude": -111.2912854, + "latitude": 45.2671806, + "phone": "4069953939", + "website_url": "http://www.lonepeakbrewery.com", + "state": "Montana", + "street": "48 Market Pl" + }, + { + "id": "5aea39a2-d404-4548-81ab-c4d6645f6699", + "name": "Lone Pine Brewing Company", + "brewery_type": "micro", + "address_1": "219 Anderson St #4", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04101-1400", + "country": "United States", + "longitude": -70.25577318, + "latitude": 43.66965322, + "phone": "2075364952", + "website_url": "http://www.lonepinebrewery.com", + "state": "Maine", + "street": "219 Anderson St #4" + }, + { + "id": "298eeb62-0f2c-4315-8552-d95c451f1a6b", + "name": "Lone Pint Brewery", + "brewery_type": "micro", + "address_1": "507 Commerce St", + "address_2": null, + "address_3": null, + "city": "Magnolia", + "state_province": "Texas", + "postal_code": "77355-8520", + "country": "United States", + "longitude": -95.751352, + "latitude": 30.2089852, + "phone": "2817315466", + "website_url": "http://www.lonepint.com", + "state": "Texas", + "street": "507 Commerce St" + }, + { + "id": "5ab63209-8eb6-40a2-a788-8d4fdfa3108f", + "name": "Lone Tree Brewing Co", + "brewery_type": "micro", + "address_1": "8222 Park Meadows Dr", + "address_2": null, + "address_3": null, + "city": "Lone Tree", + "state_province": "Colorado", + "postal_code": "80124-2746", + "country": "United States", + "longitude": -104.8942075, + "latitude": 39.56298697, + "phone": "3037925822", + "website_url": "http://www.lonetreebrewingco.com", + "state": "Colorado", + "street": "8222 Park Meadows Dr" + }, + { + "id": "c3e38c9b-c564-42af-8cf7-181cd36b30de", + "name": "Lone Tree Brewing Co - Parker", + "brewery_type": "micro", + "address_1": "18425 Pony Express Dr #125", + "address_2": null, + "address_3": null, + "city": "Parker", + "state_province": "Colorado", + "postal_code": "80134", + "country": "United States", + "longitude": -104.7751138, + "latitude": 39.5224181, + "phone": "7204200462", + "website_url": "http://www.lonetreebrewingco.com", + "state": "Colorado", + "street": "18425 Pony Express Dr #125" + }, + { + "id": "dfec0210-90f3-4ada-af1e-b4543f19423b", + "name": "Lonerider Brewing Co", + "brewery_type": "regional", + "address_1": "8816 Gulf Ct Ste 100", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27617-4628", + "country": "United States", + "longitude": -78.76254395, + "latitude": 35.90357415, + "phone": "9194428004", + "website_url": "http://www.loneriderbeer.com", + "state": "North Carolina", + "street": "8816 Gulf Ct Ste 100" + }, + { + "id": "ebcfd143-2150-4fa3-8b91-354be586e531", + "name": "Lonesome Pine Brewing Co.", + "brewery_type": "micro", + "address_1": "12262 US Highway 19", + "address_2": null, + "address_3": null, + "city": "Lebanon", + "state_province": "Virginia", + "postal_code": "24266", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2762743697", + "website_url": "http://www.lonesomepinebrewing.com", + "state": "Virginia", + "street": "12262 US Highway 19" + }, + { + "id": "01f78943-0aa0-4158-b1a4-52160c97a87f", + "name": "Lonesome Valley Brewing", + "brewery_type": "brewpub", + "address_1": "3040 N Windsong Dr Ste 101", + "address_2": null, + "address_3": null, + "city": "Prescott Valley", + "state_province": "Arizona", + "postal_code": "86314-2250", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9285153541", + "website_url": "http://www.lonesomevalleybrewing.com", + "state": "Arizona", + "street": "3040 N Windsong Dr Ste 101" + }, + { + "id": "53869ea0-bee5-4c51-b08c-1866b5cc99e0", + "name": "Long Beach Beer Lab", + "brewery_type": "micro", + "address_1": "518 W Willow St", + "address_2": null, + "address_3": null, + "city": "Long Beach", + "state_province": "California", + "postal_code": "90806-2831", + "country": "United States", + "longitude": -118.2156232, + "latitude": 33.8044209, + "phone": "5623413659", + "website_url": "http://www.lbbeer.com", + "state": "California", + "street": "518 W Willow St" + }, + { + "id": "83184b61-ebc9-46b8-903d-6516e9a63046", + "name": "Long Branch Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Long Branch", + "state_province": "New Jersey", + "postal_code": "07740", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7325013025", + "website_url": null, + "state": "New Jersey", + "street": null + }, + { + "id": "a817db45-c5c8-4b51-981d-e68a2795114f", + "name": "Long Brewing LLC", + "brewery_type": "micro", + "address_1": "29380 NE Owls Ln", + "address_2": null, + "address_3": null, + "city": "Newberg", + "state_province": "Oregon", + "postal_code": "97132-7217", + "country": "United States", + "longitude": -122.9354492, + "latitude": 45.3262403, + "phone": "5033498341", + "website_url": "http://www.longbrewing.com", + "state": "Oregon", + "street": "29380 NE Owls Ln" + }, + { + "id": "2562ab61-f1f6-4fb2-bb84-896ea3eb3fbe", + "name": "Long Ireland Brewing Co", + "brewery_type": "micro", + "address_1": "817 Pulaski St", + "address_2": null, + "address_3": null, + "city": "Riverhead", + "state_province": "New York", + "postal_code": "11901-3039", + "country": "United States", + "longitude": -72.67411924, + "latitude": 40.9199771, + "phone": "6314034303", + "website_url": null, + "state": "New York", + "street": "817 Pulaski St" + }, + { + "id": "47e1f46b-e172-4f32-882b-c7bdf619fffb", + "name": "Long Live Beerworks", + "brewery_type": "micro", + "address_1": "40R Sprague St", + "address_2": null, + "address_3": null, + "city": "Providence", + "state_province": "Rhode Island", + "postal_code": "02907-2578", + "country": "United States", + "longitude": -71.4260511, + "latitude": 41.8093019, + "phone": null, + "website_url": "http://www.longlivebeerworks.com", + "state": "Rhode Island", + "street": "40R Sprague St" + }, + { + "id": "b7f2343d-7a88-4085-b2a2-9f66f7806d1b", + "name": "Long Lot Farm Brewery", + "brewery_type": "micro", + "address_1": "153 Johnson Rd", + "address_2": null, + "address_3": null, + "city": "Chester", + "state_province": "New York", + "postal_code": "10918", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8453372940", + "website_url": "http://www.longlotfarmbrewery.com", + "state": "New York", + "street": "153 Johnson Rd" + }, + { + "id": "fd13429b-1eee-45ae-818a-bd54b099f845", + "name": "Long Table Brewing", + "brewery_type": "micro", + "address_1": "2895 Fairfax St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80207-2748", + "country": "United States", + "longitude": -104.928343, + "latitude": 39.75818024, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "2895 Fairfax St" + }, + { + "id": "95fc1431-cef6-4551-b221-cc6fa0fedba4", + "name": "Long Trail Brewing Co", + "brewery_type": "regional", + "address_1": "5520 US Route 4 Jct. Route 4 & 100A", + "address_2": null, + "address_3": null, + "city": "Bridgewater Corners", + "state_province": "Vermont", + "postal_code": "05035", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8026725011", + "website_url": "http://www.longtrail.com", + "state": "Vermont", + "street": "5520 US Route 4 Jct. Route 4 & 100A" + }, + { + "id": "d49a21ea-2506-4bed-b997-531ebe34cb48", + "name": "Long Valley Pub and Brewery", + "brewery_type": "brewpub", + "address_1": "1 Fairmount Rd", + "address_2": null, + "address_3": null, + "city": "Long Valley", + "state_province": "New Jersey", + "postal_code": "07853", + "country": "United States", + "longitude": -74.780486, + "latitude": 40.783908, + "phone": "9088761122", + "website_url": null, + "state": "New Jersey", + "street": "1 Fairmount Rd" + }, + { + "id": "d3b2774a-1d25-40a3-ba24-1bcecab3681e", + "name": "Long Way Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Radford", + "state_province": "Virginia", + "postal_code": "24141-1403", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Virginia", + "street": null + }, + { + "id": "fea6b287-57d9-4f14-8eb7-0b7b0813b2b2", + "name": "Long Wooden Spoon Brewing", + "brewery_type": "micro", + "address_1": "4098 Business Park Dr", + "address_2": null, + "address_3": null, + "city": "Amarillo", + "state_province": "Texas", + "postal_code": "79110-4233", + "country": "United States", + "longitude": -101.8832826, + "latitude": 35.14284054, + "phone": "8065530397", + "website_url": "http://www.lwsbrewing.com", + "state": "Texas", + "street": "4098 Business Park Dr" + }, + { + "id": "20a3789b-132b-46ab-9333-76e40f489dd9", + "name": "Longship Brewery", + "brewery_type": "closed", + "address_1": "10320 Camino Santa Fe Ste C", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92121-3103", + "country": "United States", + "longitude": -117.1714305, + "latitude": 32.90417278, + "phone": "8582467875", + "website_url": "http://www.LongshipBrewery.com", + "state": "California", + "street": "10320 Camino Santa Fe Ste C" + }, + { + "id": "3375a6e0-d081-4996-aa54-f8416ed7b76b", + "name": "Longtab Brewing Company LLC", + "brewery_type": "micro", + "address_1": "4700 Timco W Suite 105", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78238-1920", + "country": "United States", + "longitude": -98.5972829, + "latitude": 29.4783203, + "phone": "2106024561", + "website_url": "http://www.longtabbrewing.com", + "state": "Texas", + "street": "4700 Timco W Suite 105" + }, + { + "id": "f58ed632-1a57-4ffc-b2b1-d6a2374bc3a9", + "name": "Look Long Brewing Company", + "brewery_type": "micro", + "address_1": "6550 N Interstate Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97217-4836", + "country": "United States", + "longitude": -122.6818062, + "latitude": 45.57066185, + "phone": "5032860343", + "website_url": "http://www.looklongbrewingcompany.com", + "state": "Oregon", + "street": "6550 N Interstate Ave" + }, + { + "id": "ae2c76cc-3dd1-4e80-8b90-ebaa1bedec19", + "name": "Looking Glass Brewing Company", + "brewery_type": "brewpub", + "address_1": "115 N Bridge St", + "address_2": null, + "address_3": null, + "city": "Dewitt", + "state_province": "Michigan", + "postal_code": "48820-8901", + "country": "United States", + "longitude": -84.56922371, + "latitude": 42.84243629, + "phone": "5175827287", + "website_url": "http://www.facebook.com/DeWittBreweryProject/", + "state": "Michigan", + "street": "115 N Bridge St" + }, + { + "id": "8d9a114b-9303-4544-9d96-7b8f218138f3", + "name": "Lookingglass Brewery", + "brewery_type": "micro", + "address_1": "192 SE Main St", + "address_2": null, + "address_3": null, + "city": "Winston", + "state_province": "Oregon", + "postal_code": "97496", + "country": "United States", + "longitude": -123.4131843, + "latitude": 43.12022681, + "phone": "5413788565", + "website_url": "http://www.lookingglassbrewery.com", + "state": "Oregon", + "street": "192 SE Main St" + }, + { + "id": "8171a9b9-6476-4cb2-867c-1b25547c6360", + "name": "Lookout Brewing Company", + "brewery_type": "micro", + "address_1": "103 S Ridgeway Ave", + "address_2": null, + "address_3": null, + "city": "Black Mountain", + "state_province": "North Carolina", + "postal_code": "28711-3550", + "country": "United States", + "longitude": -82.31794593, + "latitude": 35.619217, + "phone": "8283575169", + "website_url": "http://www.lookoutbrewing.com", + "state": "North Carolina", + "street": "103 S Ridgeway Ave" + }, + { + "id": "e7c13236-3cde-47c5-83e1-1698ce94e45e", + "name": "Lookout Farm Brewing And Cider Co", + "brewery_type": "micro", + "address_1": "89 Pleasant St", + "address_2": null, + "address_3": null, + "city": "Natick", + "state_province": "Massachusetts", + "postal_code": "01760-5669", + "country": "United States", + "longitude": -71.37096888, + "latitude": 42.32235516, + "phone": "5086511539", + "website_url": "http://www.lookoutfarmbrewing.com", + "state": "Massachusetts", + "street": "89 Pleasant St" + }, + { + "id": "e6d58efd-749d-49f2-8430-71c834546227", + "name": "Loomis Basin Brewing Co", + "brewery_type": "micro", + "address_1": "3277 Swetzer Rd", + "address_2": null, + "address_3": null, + "city": "Loomis", + "state_province": "California", + "postal_code": "95650-7607", + "country": "United States", + "longitude": -121.1916448, + "latitude": 38.83182018, + "phone": "9162592739", + "website_url": "http://www.loomisbasinbrewing.com", + "state": "California", + "street": "3277 Swetzer Rd" + }, + { + "id": "c652d2e4-4b4f-4e71-8aa7-806b68fa63ea", + "name": "Loony's Brew", + "brewery_type": "brewpub", + "address_1": "3481 Main St", + "address_2": null, + "address_3": null, + "city": "Ranier", + "state_province": "Minnesota", + "postal_code": "56668", + "country": "United States", + "longitude": -93.3474314, + "latitude": 48.6152185, + "phone": "2185401001", + "website_url": "http://www.loonysbrew.com", + "state": "Minnesota", + "street": "3481 Main St" + }, + { + "id": "974f363a-db6a-47c7-bc83-da51bd13ddd3", + "name": "Loop Brewing Co", + "brewery_type": "brewpub", + "address_1": "404 W A St", + "address_2": null, + "address_3": null, + "city": "Mc Cook", + "state_province": "Nebraska", + "postal_code": "69001-3516", + "country": "United States", + "longitude": -100.6305293, + "latitude": 40.1976921, + "phone": "3083455198", + "website_url": "http://www.loopbrewingcompany.com", + "state": "Nebraska", + "street": "404 W A St" + }, + { + "id": "4a3f72fc-5a78-4d32-a149-ed9f4dd9d9ea", + "name": "Loophole Brewing", + "brewery_type": "micro", + "address_1": "Limestone Coast Road", + "address_2": null, + "address_3": null, + "city": "Wangolina", + "state_province": "SA", + "postal_code": "5275", + "country": "Australia", + "longitude": 139.7581393, + "latitude": -36.9698048, + "phone": "+61 8 8768 5053", + "website_url": "http://www.loopholebrewing.com.au/", + "state": "SA", + "street": "Limestone Coast Road" + }, + { + "id": "90b0b966-bd3e-4c8d-b0b2-4d4c6c4355ca", + "name": "Loose Ends Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37938-2162", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9372860803", + "website_url": null, + "state": "Tennessee", + "street": null + }, + { + "id": "7c56b27e-c6d8-4f39-844d-c663d31ab159", + "name": "Loose Rail Brewing", + "brewery_type": "micro", + "address_1": "37 W Waterloo St", + "address_2": null, + "address_3": null, + "city": "Canal Winchester", + "state_province": "Ohio", + "postal_code": "43110-1140", + "country": "United States", + "longitude": -82.8069082, + "latitude": 39.84329, + "phone": "6143216634", + "website_url": "http://www.looserailbrewing.com", + "state": "Ohio", + "street": "37 W Waterloo St" + }, + { + "id": "a2001859-1c36-41d8-b849-c9c0878d11a8", + "name": "Loose Screw Beer Co.", + "brewery_type": "micro", + "address_1": "1511 W McMillan Rd", + "address_2": null, + "address_3": null, + "city": "Meridian", + "state_province": "Idaho", + "postal_code": "83646-5172", + "country": "United States", + "longitude": -116.4125959, + "latitude": 43.6479858, + "phone": "2086173078", + "website_url": "https://www.loosescrew.beer", + "state": "Idaho", + "street": "1511 W McMillan Rd" + }, + { + "id": "9d809d42-f8f8-4521-a9ee-12771ea4f2b3", + "name": "Loose Shoe Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "198 Ambriar Plz", + "address_2": null, + "address_3": null, + "city": "Amherst", + "state_province": "Virginia", + "postal_code": "24521-", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "434946", + "website_url": "http://www.looseshoebrewing.com", + "state": "Virginia", + "street": "198 Ambriar Plz" + }, + { + "id": "09f3571c-2b2a-4ce0-9ab4-a65ff80ad968", + "name": "Loowit Brewing", + "brewery_type": "micro", + "address_1": "507 Columbia St", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98660-3194", + "country": "United States", + "longitude": -122.6734331, + "latitude": 45.6251071, + "phone": "3605662323", + "website_url": "http://www.loowitbrewing.com", + "state": "Washington", + "street": "507 Columbia St" + }, + { + "id": "0c3816c3-3b00-49af-bff5-67dac5faa3b1", + "name": "Lopez Island Brewing Co", + "brewery_type": "closed", + "address_1": "4817 Center Rd", + "address_2": null, + "address_3": null, + "city": "Lopez Island", + "state_province": "Washington", + "postal_code": "98261-8653", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3604682646", + "website_url": "http://www.lopezislandbrewingco.rocks", + "state": "Washington", + "street": "4817 Center Rd" + }, + { + "id": "8f160bf6-649a-4365-8703-372aed64eca3", + "name": "Lord Hobo Brewing Co", + "brewery_type": "regional", + "address_1": "5 Draper St", + "address_2": null, + "address_3": null, + "city": "Woburn", + "state_province": "Massachusetts", + "postal_code": "01801-4521", + "country": "United States", + "longitude": -71.12892319, + "latitude": 42.47603755, + "phone": "7812810809", + "website_url": "http://lordhobobrewing.com", + "state": "Massachusetts", + "street": "5 Draper St" + }, + { + "id": "2d2ffd47-8224-40e7-8a9d-454b7b2cdca7", + "name": "Lord Howe Island Brewing Co", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lord Howe Island", + "state_province": "NSW", + "postal_code": "2898", + "country": "Australia", + "longitude": 159.0670065, + "latitude": -31.5249677, + "phone": "+61 2 6563 2161", + "website_url": "https://www.lhislandbrewery.com.au/", + "state": "NSW", + "street": null + }, + { + "id": "f026c03d-a77b-4af5-8b86-37ac7c7a6f65", + "name": "Lorelei Brewing Co", + "brewery_type": "micro", + "address_1": "520 N A. S Dr", + "address_2": null, + "address_3": null, + "city": "Corpus Christi", + "state_province": "Texas", + "postal_code": "78418-3254", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3614458684", + "website_url": "http://www.loreleibrewing.beer", + "state": "Texas", + "street": "520 N A. S Dr" + }, + { + "id": "c757354b-e5a2-403f-9e90-b8f8fc5ab229", + "name": "Los Angeles Ale Works", + "brewery_type": "micro", + "address_1": "12918 Cerise Ave", + "address_2": null, + "address_3": null, + "city": "Hawthorne", + "state_province": "California", + "postal_code": "90250-5521", + "country": "United States", + "longitude": -118.3322768, + "latitude": 33.9149155, + "phone": "4244564191", + "website_url": "http://www.laaleworks.com", + "state": "California", + "street": "12918 Cerise Ave" + }, + { + "id": "8024ef15-27bc-41ca-be9c-c975983505f6", + "name": "Lost 40 brewing", + "brewery_type": "micro", + "address_1": "510 McLean St", + "address_2": null, + "address_3": null, + "city": "Little Rock", + "state_province": "Arkansas", + "postal_code": "72202-2660", + "country": "United States", + "longitude": -92.25901, + "latitude": 34.74268558, + "phone": "5015545557", + "website_url": null, + "state": "Arkansas", + "street": "510 McLean St" + }, + { + "id": "335b076e-87bd-4f82-8b7c-9643f56fbf2e", + "name": "Lost and Found", + "brewery_type": "micro", + "address_1": "399 Hay Street", + "address_2": null, + "address_3": null, + "city": "Subiaco", + "state_province": "WA", + "postal_code": "6008", + "country": "Australia", + "longitude": 115.8259042, + "latitude": -31.9473159, + "phone": null, + "website_url": "http://foundbeer.au/", + "state": "WA", + "street": "399 Hay Street" + }, + { + "id": "3a2613dd-86a8-4457-b400-a23f5c10b314", + "name": "Lost Cabin Beer Co.", + "brewery_type": "micro", + "address_1": "1401 W Omaha St Ste 3", + "address_2": null, + "address_3": null, + "city": "Rapid City", + "state_province": "South Dakota", + "postal_code": "57701-3163", + "country": "United States", + "longitude": -103.2422229, + "latitude": 44.08401961, + "phone": "6057185678", + "website_url": "http://www.lostcabin.beer", + "state": "South Dakota", + "street": "1401 W Omaha St Ste 3" + }, + { + "id": "b4a0f525-fac9-48ce-a7c3-86e84327fca6", + "name": "Lost Canoe Brewing Co", + "brewery_type": "closed", + "address_1": "1208 10th St", + "address_2": null, + "address_3": null, + "city": "Snohomish", + "state_province": "Washington", + "postal_code": "98290-2099", + "country": "United States", + "longitude": -122.096622, + "latitude": 47.9241142, + "phone": "3605683984", + "website_url": "http://www.facebook.com/lostcanoebrew", + "state": "Washington", + "street": "1208 10th St" + }, + { + "id": "e9b37d23-bbe6-4de9-90bf-1ac534f034f5", + "name": "Lost Coast Brew House", + "brewery_type": "brewpub", + "address_1": "1600 Sunset Dr", + "address_2": null, + "address_3": null, + "city": "Eureka", + "state_province": "California", + "postal_code": "95503-2401", + "country": "United States", + "longitude": -124.1892492, + "latitude": 40.76719226, + "phone": "7074454484", + "website_url": "http://www.lostcoast.com", + "state": "California", + "street": "1600 Sunset Dr" + }, + { + "id": "f811f1bc-0d7c-4a83-bb70-e4b44eacdc8e", + "name": "Lost Coast Brewery and Cafe - Table Bluff Brewing, Inc.", + "brewery_type": "regional", + "address_1": "617 4th St", + "address_2": null, + "address_3": null, + "city": "Eureka", + "state_province": "California", + "postal_code": "95501-1013", + "country": "United States", + "longitude": -124.1648141, + "latitude": 40.80302047, + "phone": "7074454480", + "website_url": "http://www.lostcoast.com", + "state": "California", + "street": "617 4th St" + }, + { + "id": "c4ca2446-26fe-453c-a7c2-9aa6a63f8ace", + "name": "Lost Colony Brewery and Cafe", + "brewery_type": "brewpub", + "address_1": "208 Queen Elizabeth Ave", + "address_2": null, + "address_3": null, + "city": "Manteo", + "state_province": "North Carolina", + "postal_code": "27954-", + "country": "United States", + "longitude": -75.66954474, + "latitude": 35.90949405, + "phone": "2524736666", + "website_url": "http://www.lostcolonybrewery.com", + "state": "North Carolina", + "street": "208 Queen Elizabeth Ave" + }, + { + "id": "117409f8-4d91-404d-a9b7-0c96e4119250", + "name": "Lost Cowboy Brewing Company", + "brewery_type": "brewpub", + "address_1": "546 Amherst St", + "address_2": null, + "address_3": null, + "city": "Nashua", + "state_province": "New Hampshire", + "postal_code": "03063", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6036006800", + "website_url": "https://www.lostcowboybrewing.com/", + "state": "New Hampshire", + "street": "546 Amherst St" + }, + { + "id": "348fb7b9-8901-4bf3-a9da-09ca2904ed24", + "name": "Lost Duck Brewing Co.", + "brewery_type": "brewpub", + "address_1": "723 Avenue H # 725", + "address_2": null, + "address_3": null, + "city": "Fort Madison", + "state_province": "Iowa", + "postal_code": "52627-2935", + "country": "United States", + "longitude": -91.31026009, + "latitude": 40.63007017, + "phone": "3193728255", + "website_url": "http://www.duckbrewing.com", + "state": "Iowa", + "street": "723 Avenue H # 725" + }, + { + "id": "a901b6b3-3648-4c04-b727-1c6c7f08dd0b", + "name": "Lost Elm Artisanal Ales", + "brewery_type": "closed", + "address_1": "25 West St Unit 4", + "address_2": null, + "address_3": null, + "city": "Stafford Springs", + "state_province": "Connecticut", + "postal_code": "06076-1325", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.lostelmbeer.com", + "state": "Connecticut", + "street": "25 West St Unit 4" + }, + { + "id": "ea5ebe24-30ce-4eac-882a-cdf8d064251d", + "name": "Lost Forty Brewing", + "brewery_type": "micro", + "address_1": "501 Byrd St", + "address_2": null, + "address_3": null, + "city": "Little Rock", + "state_province": "Arkansas", + "postal_code": "72202", + "country": "United States", + "longitude": -92.260019, + "latitude": 34.742845, + "phone": "5013197275", + "website_url": "http://www.lost40brewing.com/", + "state": "Arkansas", + "street": "501 Byrd St" + }, + { + "id": "5c96e81b-09a3-467b-9257-cd6faacc6aae", + "name": "Lost Friend Brewing Company", + "brewery_type": "micro", + "address_1": "2458 Montebello Square Dr", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80918-1974", + "country": "United States", + "longitude": -104.7823626, + "latitude": 38.9082661, + "phone": null, + "website_url": "http://www.lostfriendbrewing.com", + "state": "Colorado", + "street": "2458 Montebello Square Dr" + }, + { + "id": "68e53fe7-b140-4e33-94fe-11adb6996e75", + "name": "Lost Grove Brewing", + "brewery_type": "micro", + "address_1": "1026 S La Pointe St", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83706-2827", + "country": "United States", + "longitude": -116.2128426, + "latitude": 43.608212, + "phone": "2082862258", + "website_url": "http://www.lostgrovebrewing.com", + "state": "Idaho", + "street": "1026 S La Pointe St" + }, + { + "id": "d9e48256-6286-472e-bb9c-5cb1d8ecc202", + "name": "Lost Highway Brewing", + "brewery_type": "micro", + "address_1": "12741 E Caley Ave Ste 140", + "address_2": null, + "address_3": null, + "city": "Centennial", + "state_province": "Colorado", + "postal_code": "80111-6407", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.losthighwaybrewing.com", + "state": "Colorado", + "street": "12741 E Caley Ave Ste 140" + }, + { + "id": "667d2685-1595-4d34-b636-d3768a7b6d7d", + "name": "Lost Hiker Brewing Company", + "brewery_type": "micro", + "address_1": "26394 E Hwy 70 Unit 6", + "address_2": null, + "address_3": null, + "city": "Ruidoso Downs", + "state_province": "New Mexico", + "postal_code": "88346", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5128257521", + "website_url": "http://www.losthikerbrewing.com", + "state": "New Mexico", + "street": "26394 E Hwy 70 Unit 6" + }, + { + "id": "05c41a35-c10b-4275-8eba-ac12ab5c313a", + "name": "Lost Kingdom Brewery / Firehouse Distillery", + "brewery_type": "micro", + "address_1": "7160 Main St", + "address_2": null, + "address_3": null, + "city": "Ovid", + "state_province": "New York", + "postal_code": "14521-9401", + "country": "United States", + "longitude": -76.82281329, + "latitude": 42.67724221, + "phone": "6074034020", + "website_url": "http://www.firehousedistillery.net", + "state": "New York", + "street": "7160 Main St" + }, + { + "id": "e26dc654-64c9-4d6e-a139-95a7b009d0ee", + "name": "Lost Nation Brewing", + "brewery_type": "brewpub", + "address_1": "87 Old Creamery Rd", + "address_2": null, + "address_3": null, + "city": "Morrisville", + "state_province": "Vermont", + "postal_code": "05661-6152", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.lostnationbrewing.com", + "state": "Vermont", + "street": "87 Old Creamery Rd" + }, + { + "id": "5ac03775-cef9-4390-a57d-656f47852617", + "name": "Lost Palms Brewing Co", + "brewery_type": "micro", + "address_1": "11 Oak Avenue", + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "QLD", + "postal_code": "4220", + "country": "Australia", + "longitude": 153.4370406, + "latitude": -28.0640487, + "phone": "+61 428 044 637", + "website_url": "https://lostpalms.com.au/", + "state": "QLD", + "street": "11 Oak Avenue" + }, + { + "id": "8dffaa96-db92-45c9-a0d7-3cd2b8686f42", + "name": "Lost Province Brewing Company, LLC", + "brewery_type": "brewpub", + "address_1": "130 N. Depot Street PO Box 614", + "address_2": null, + "address_3": null, + "city": "Boone", + "state_province": "North Carolina", + "postal_code": "28607-3603", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8282653506", + "website_url": "http://www.lostprovince.com", + "state": "North Carolina", + "street": "130 N. Depot Street PO Box 614" + }, + { + "id": "0725fd86-c6e4-49b2-9aab-df4a02c2e593", + "name": "Lost Rhino Brewing Co", + "brewery_type": "micro", + "address_1": "21730 Red Rum Dr Ste 142", + "address_2": null, + "address_3": null, + "city": "Ashburn", + "state_province": "Virginia", + "postal_code": "20147-5870", + "country": "United States", + "longitude": -77.47673436, + "latitude": 39.01564409, + "phone": "5712912083", + "website_url": "http://www.lostrhino.com", + "state": "Virginia", + "street": "21730 Red Rum Dr Ste 142" + }, + { + "id": "a89dffd1-be0c-42d0-802f-c8d942e5df50", + "name": "Lost Shirt Brewing Company", + "brewery_type": "micro", + "address_1": "7025 Industrial Rd Unit B", + "address_2": null, + "address_3": null, + "city": "West Melbourne", + "state_province": "Florida", + "postal_code": "32904-1616", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "13214994323", + "website_url": "http://lostshirtbrewingco@gmail.com", + "state": "Florida", + "street": "7025 Industrial Rd Unit B" + }, + { + "id": "692a06a1-3923-4b48-9bd8-cdb9c87ef848", + "name": "Lost Signal Brewing Company", + "brewery_type": "brewpub", + "address_1": "610 W College St", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Missouri", + "postal_code": "65806-1240", + "country": "United States", + "longitude": -93.2974611, + "latitude": 37.2085049, + "phone": "9723104162", + "website_url": "http://www.lostsignalbrewing.com", + "state": "Missouri", + "street": "610 W College St" + }, + { + "id": "a8527951-694e-41c9-9220-1be979f834f7", + "name": "Lost Tavern Brewing", + "brewery_type": "micro", + "address_1": "782 Main St", + "address_2": null, + "address_3": null, + "city": "Hellertown", + "state_province": "Pennsylvania", + "postal_code": "18055-1540", + "country": "United States", + "longitude": -75.3411606, + "latitude": 40.5809687, + "phone": "4848513980", + "website_url": "http://www.losttavernbrewing.com", + "state": "Pennsylvania", + "street": "782 Main St" + }, + { + "id": "db5a667c-b8b3-4477-a482-43fa0dd3086b", + "name": "Lost Valley Brewing Co", + "brewery_type": "micro", + "address_1": "200 Lost Valley Rd", + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "Maine", + "postal_code": "04210", + "country": "United States", + "longitude": -70.280399, + "latitude": 44.130958, + "phone": null, + "website_url": null, + "state": "Maine", + "street": "200 Lost Valley Rd" + }, + { + "id": "1d44b1c0-1095-4636-bcd2-447a57ee658d", + "name": "Lost Viking Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Harwinton", + "state_province": "Connecticut", + "postal_code": "06013", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2035256196", + "website_url": "http://www.lostvikingbrew.com", + "state": "Connecticut", + "street": null + }, + { + "id": "927bb4c7-b2b1-4165-b455-73e897699c59", + "name": "Lost Watering Hole", + "brewery_type": "micro", + "address_1": "10 The Crescent", + "address_2": "8", + "address_3": null, + "city": "Lancefield", + "state_province": "VIC", + "postal_code": "3435", + "country": "Australia", + "longitude": 144.7360441, + "latitude": -37.2765051, + "phone": "+61 3 4410 1054", + "website_url": "https://lostwateringhole.com/", + "state": "VIC", + "street": "10 The Crescent" + }, + { + "id": "4a83d1c5-b544-4472-a5ad-46a1cf9255ed", + "name": "Lost Way Brewery", + "brewery_type": "micro", + "address_1": "614 3rd Ave", + "address_2": null, + "address_3": null, + "city": "Holdrege", + "state_province": "Nebraska", + "postal_code": "68949-2701", + "country": "United States", + "longitude": -99.37228235, + "latitude": 40.4368517, + "phone": "3089950503", + "website_url": "http://www.lostwaybrewery.com", + "state": "Nebraska", + "street": "614 3rd Ave" + }, + { + "id": "3ee1382d-61b5-4474-9bb0-65fe9182e327", + "name": "Lost Winds Brewing Co", + "brewery_type": "micro", + "address_1": "924 Calle Negocio Ste C", + "address_2": null, + "address_3": null, + "city": "San Clemente", + "state_province": "California", + "postal_code": "92673-6208", + "country": "United States", + "longitude": -117.6070025, + "latitude": 33.45199517, + "phone": "9492444288", + "website_url": "http://www.lostwindsbrewing.com", + "state": "California", + "street": "924 Calle Negocio Ste C" + }, + { + "id": "8c740e50-5722-447f-b240-3b1815fb4154", + "name": "Lot 50 Brewing", + "brewery_type": "micro", + "address_1": "112 E Court St", + "address_2": null, + "address_3": null, + "city": "Paris", + "state_province": "Illinois", + "postal_code": "61944-2210", + "country": "United States", + "longitude": -87.70732557, + "latitude": 39.61104231, + "phone": "2172511493", + "website_url": "http://www.lot50brewing.com", + "state": "Illinois", + "street": "112 E Court St" + }, + { + "id": "330d1efa-586a-43dd-ad93-613326719806", + "name": "Lot 713 Craft Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Riverside", + "state_province": "California", + "postal_code": "92506-3208", + "country": "United States", + "longitude": -117.3961623, + "latitude": 33.9533546, + "phone": null, + "website_url": "http://www.lot713.com", + "state": "California", + "street": null + }, + { + "id": "54a64949-a029-4330-89ea-bf17eb7561bb", + "name": "Loud Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Duncannon", + "state_province": "Pennsylvania", + "postal_code": "17020-1201", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7173190021", + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "a0627410-7fb1-436c-a020-fc853779ca68", + "name": "Loud Shirt Brewing Co", + "brewery_type": "micro", + "address_1": "Roedean Road", + "address_2": null, + "address_3": null, + "city": "Brighton", + "state_province": "East Sussex", + "postal_code": "BN2 5RU", + "country": "England", + "longitude": -0.106288, + "latitude": 50.817144, + "phone": "1273087077", + "website_url": "https://loudshirtbeer.co.uk/", + "state": "East Sussex", + "street": "Roedean Road" + }, + { + "id": "91d01857-2545-4926-982b-7e67fdd539fe", + "name": "Loudoun Brewing Co", + "brewery_type": "micro", + "address_1": "310 E Market St", + "address_2": null, + "address_3": null, + "city": "Leesburg", + "state_province": "Virginia", + "postal_code": "20176-4101", + "country": "United States", + "longitude": -77.532576, + "latitude": 39.09743, + "phone": "5712236097", + "website_url": "http://www.loudounbrewing.com", + "state": "Virginia", + "street": "310 E Market St" + }, + { + "id": "8b909c6f-b067-45df-b156-d5072b63db57", + "name": "Lough Gill Brewery", + "brewery_type": "micro", + "address_1": "Cleveragh Business Park", + "address_2": "The Back Ave", + "address_3": null, + "city": "Cleveragh", + "state_province": "Sligo", + "postal_code": "F91 H6CV", + "country": "Ireland", + "longitude": -8.4572863, + "latitude": 54.2667763, + "phone": "353872108159", + "website_url": "https://loughgillbrewery.com/", + "state": "Sligo", + "street": "Cleveragh Business Park" + }, + { + "id": "6f8be6c1-a236-4fce-931a-7011b0815372", + "name": "Louisa Brewing, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Louisa", + "state_province": "Virginia", + "postal_code": "23093-5715", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5409674873", + "website_url": "http://www.louisabrewing.com", + "state": "Virginia", + "street": null + }, + { + "id": "c9ace846-b6fe-46b2-beca-46f8e081548a", + "name": "Love City Brewing Company", + "brewery_type": "micro", + "address_1": "1016 Buttonwood St", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19123-3703", + "country": "United States", + "longitude": -75.15509414, + "latitude": 39.96067782, + "phone": null, + "website_url": "http://www.lovecitybrewing.com", + "state": "Pennsylvania", + "street": "1016 Buttonwood St" + }, + { + "id": "fd54eb56-9f19-4fa2-8003-966b896fc3fc", + "name": "Love Shack Brewing Co.", + "brewery_type": "micro", + "address_1": "26 Hargraves Street", + "address_2": null, + "address_3": null, + "city": "Castlemaine", + "state_province": "VIC", + "postal_code": "3450", + "country": "Australia", + "longitude": 144.2195468, + "latitude": -37.066549, + "phone": "+61 3 5470 5774", + "website_url": "https://loveshackbrewingco.beer/", + "state": "VIC", + "street": "26 Hargraves Street" + }, + { + "id": "25b04c9e-5e96-4132-a2ff-c56bdfe06b75", + "name": "LoveCraft Brewing Co", + "brewery_type": "micro", + "address_1": "275 5th St Ste 101", + "address_2": null, + "address_3": null, + "city": "Bremerton", + "state_province": "Washington", + "postal_code": "98337-1907", + "country": "United States", + "longitude": -122.6257694, + "latitude": 47.5664595, + "phone": "2067174707", + "website_url": "https://www.lovecraftbrewery.com", + "state": "Washington", + "street": "275 5th St Ste 101" + }, + { + "id": "94eb3df4-0a08-49cc-82af-4364006f756f", + "name": "Lovelady Brewing Company", + "brewery_type": "micro", + "address_1": "20 S Water St", + "address_2": null, + "address_3": null, + "city": "Henderson", + "state_province": "Nevada", + "postal_code": "89015-7223", + "country": "United States", + "longitude": -114.9878974, + "latitude": 36.03805558, + "phone": "7028578469", + "website_url": "http://www.loveladybrewing.com", + "state": "Nevada", + "street": "20 S Water St" + }, + { + "id": "6922c3e4-d702-4872-8fe9-30385a052359", + "name": "Loveland Aleworks", + "brewery_type": "micro", + "address_1": "118 W 4th St", + "address_2": null, + "address_3": null, + "city": "Loveland", + "state_province": "Colorado", + "postal_code": "80537-5523", + "country": "United States", + "longitude": -105.0769672, + "latitude": 40.39541012, + "phone": "9704057465", + "website_url": "http://www.lovelandaleworks.com", + "state": "Colorado", + "street": "118 W 4th St" + }, + { + "id": "cb9f3f48-0a0f-49a3-87df-c858feb01eec", + "name": "Low Tide Brewing", + "brewery_type": "micro", + "address_1": "2863 Maybank Hwy", + "address_2": null, + "address_3": null, + "city": "Johns Island", + "state_province": "South Carolina", + "postal_code": "29455-4808", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8435017570", + "website_url": "http://www.lowtidebrewing.com", + "state": "South Carolina", + "street": "2863 Maybank Hwy" + }, + { + "id": "2e6b60c6-46af-4e64-b541-58d36700a92c", + "name": "Lowdown Brewery + Kitchen", + "brewery_type": "brewpub", + "address_1": "800 N Lincoln St Unit 2", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80203-2710", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7205248065", + "website_url": "http://www.lowdownbrewery.com", + "state": "Colorado", + "street": "800 N Lincoln St Unit 2" + }, + { + "id": "55bc3336-5482-47b0-ae38-f25cf2fa79ec", + "name": "Lowell Beer Works", + "brewery_type": "brewpub", + "address_1": "203 Cabot St", + "address_2": null, + "address_3": null, + "city": "Lowell", + "state_province": "Massachusetts", + "postal_code": "01854-", + "country": "United States", + "longitude": -71.31643612, + "latitude": 42.6505753, + "phone": "9789372337", + "website_url": null, + "state": "Massachusetts", + "street": "203 Cabot St" + }, + { + "id": "4565a652-7e93-45d2-957b-738bb0b5a63b", + "name": "Lower East Side", + "brewery_type": "bar", + "address_1": "19 East Coast Road", + "address_2": null, + "address_3": "#01-02", + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "428746", + "country": "Singapore", + "longitude": 1.3045852951217, + "latitude": 103.9024387, + "phone": "+65 6348 1302", + "website_url": null, + "state": "Singapore", + "street": "19 East Coast Road" + }, + { + "id": "dca49fa4-340f-489b-84da-c3c4b8389ff2", + "name": "Lower Forge Brewery", + "brewery_type": "micro", + "address_1": "14 S Main St", + "address_2": null, + "address_3": null, + "city": "Medford", + "state_province": "New Jersey", + "postal_code": "08055-2414", + "country": "United States", + "longitude": -74.82362556, + "latitude": 39.89909629, + "phone": "6099759532", + "website_url": "http://www.lowerforge.com", + "state": "New Jersey", + "street": "14 S Main St" + }, + { + "id": "7f10f5fb-8cc6-430a-9c8a-50d7817db217", + "name": "Lowercase Brewing", + "brewery_type": "brewpub", + "address_1": "6235 Airport Way S", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98108-4377", + "country": "United States", + "longitude": -122.3146374, + "latitude": 47.5483294, + "phone": "2062584987", + "website_url": "http://www.lowercasebrewing.com", + "state": "Washington", + "street": "6235 Airport Way S" + }, + { + "id": "06b3aef6-951b-4db7-a602-785f90feb728", + "name": "Loxtonia Cider", + "brewery_type": "cidery", + "address_1": "Loxtonia Farm", + "address_2": "Ezelsfontein Road", + "address_3": null, + "city": "Ceres", + "state_province": "Western Cape", + "postal_code": "6835", + "country": "South Africa", + "longitude": 19.2845, + "latitude": -33.2431, + "phone": "+27 23 004 0930", + "website_url": "https://www.loxtonia.co.za/", + "state": "Western Cape", + "street": "Loxtonia Farm" + }, + { + "id": "099e4b04-ec6c-4b4f-8691-b1d202bd90c4", + "name": "LTD Brewery", + "brewery_type": "micro", + "address_1": "725 Mainstreet", + "address_2": null, + "address_3": null, + "city": "Hopkins", + "state_province": "Minnesota", + "postal_code": "55343-7624", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9529382415", + "website_url": "http://www.ltdbrewing.com", + "state": "Minnesota", + "street": "725 Mainstreet" + }, + { + "id": "4d1d38b6-5514-45bc-a020-74efd0c1bf8f", + "name": "LTS Brewing Company", + "brewery_type": "micro", + "address_1": "2001 32nd Ave NW", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "Minnesota", + "postal_code": "55901-8321", + "country": "United States", + "longitude": -92.5104808, + "latitude": 44.0447412, + "phone": "5072268280", + "website_url": "http://www.ltsbrewing.com", + "state": "Minnesota", + "street": "2001 32nd Ave NW" + }, + { + "id": "aefd86d4-eb51-4aae-bacb-bf1f69025b41", + "name": "Lubec Brewing Co", + "brewery_type": "brewpub", + "address_1": "41 Water St", + "address_2": null, + "address_3": null, + "city": "Lubec", + "state_province": "Maine", + "postal_code": "04652-", + "country": "United States", + "longitude": -66.98348086, + "latitude": 44.86083118, + "phone": "2077334555", + "website_url": null, + "state": "Maine", + "street": "41 Water St" + }, + { + "id": "ac190eeb-bbab-4b65-8243-9f103c14bacf", + "name": "Lucette Brewing Co", + "brewery_type": "micro", + "address_1": "910 Hudson Rd", + "address_2": null, + "address_3": null, + "city": "Menomonie", + "state_province": "Wisconsin", + "postal_code": "54751-1748", + "country": "United States", + "longitude": -91.940075, + "latitude": 44.875861, + "phone": "7152316836", + "website_url": "http://www.lucettebrewing.com", + "state": "Wisconsin", + "street": "910 Hudson Rd" + }, + { + "id": "3b475ad8-9095-4318-b121-92031871aff0", + "name": "Lucky Bay Brewing", + "brewery_type": "micro", + "address_1": "63 Bandy Creek Road", + "address_2": null, + "address_3": null, + "city": "Esperance", + "state_province": "WA", + "postal_code": "6450", + "country": "Australia", + "longitude": 121.9396362, + "latitude": -33.8211593, + "phone": "+61 429 777 714", + "website_url": "https://www.luckybaybrewing.com.au/", + "state": "WA", + "street": "63 Bandy Creek Road" + }, + { + "id": "3790c27b-c47f-4f4a-843a-6e056eb8a83d", + "name": "Lucky Bucket Brewing Co", + "brewery_type": "micro", + "address_1": "11941 Centennial Rd Ste 1", + "address_2": null, + "address_3": null, + "city": "La Vista", + "state_province": "Nebraska", + "postal_code": "68128-5623", + "country": "United States", + "longitude": -96.099373, + "latitude": 41.169693, + "phone": "4027638868", + "website_url": "https://www.cutspike.com", + "state": "Nebraska", + "street": "11941 Centennial Rd Ste 1" + }, + { + "id": "97782b4a-4cfc-4168-8f18-48ed9c10abf5", + "name": "Lucky City Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Reidsville", + "state_province": "North Carolina", + "postal_code": "27320-3810", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3364716758", + "website_url": "http://www.luckycitybrewing.com", + "state": "North Carolina", + "street": null + }, + { + "id": "73d6562a-6747-47fb-bc80-57dbc43603fb", + "name": "Lucky Devil Brewing", + "brewery_type": "contract", + "address_1": "Frank H Ogawa Pl", + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94612", + "country": "United States", + "longitude": -122.2713141, + "latitude": 37.80450396, + "phone": "5109692865", + "website_url": "http://www.luckydevilbrewery.com", + "state": "California", + "street": "Frank H Ogawa Pl" + }, + { + "id": "44c13b00-8a87-4aaa-9db8-a272329ef87e", + "name": "Lucky Envelope Brewing", + "brewery_type": "micro", + "address_1": "907 NW 50th St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98107-3635", + "country": "United States", + "longitude": -122.3691135, + "latitude": 47.6648583, + "phone": "2062890425", + "website_url": "http://www.luckyenvelopebrewing.com", + "state": "Washington", + "street": "907 NW 50th St" + }, + { + "id": "14562b70-98a6-4fe4-bbac-b71fdd5c1be3", + "name": "Lucky Girl Brewing Co Crossroads", + "brewery_type": "brewpub", + "address_1": "34016 M 43", + "address_2": null, + "address_3": null, + "city": "Paw Paw", + "state_province": "Michigan", + "postal_code": "49079-8464", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2696280054", + "website_url": "http://luckygirlcrossroads.com", + "state": "Michigan", + "street": "34016 M 43" + }, + { + "id": "e36dccc0-cc0f-4b80-845f-baedb1372426", + "name": "Lucky Hare Brewing Company, Inc.", + "brewery_type": "micro", + "address_1": "6085 Beckhorn Road", + "address_2": null, + "address_3": null, + "city": "Hector", + "state_province": "New York", + "postal_code": "14841", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6075462036", + "website_url": "http://www.luckyharebrewing.com", + "state": "New York", + "street": "6085 Beckhorn Road" + }, + { + "id": "7ba87c15-8af2-4dbc-b64f-fd28df2cfe02", + "name": "Lucky Labrador Beer Hall", + "brewery_type": "brewpub", + "address_1": "1945 NW Quimby St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97209-1712", + "country": "United States", + "longitude": -122.6917362, + "latitude": 45.53370375, + "phone": "5035174352", + "website_url": "http://www.luckylab.com", + "state": "Oregon", + "street": "1945 NW Quimby St" + }, + { + "id": "27cea017-91b4-4d46-951e-9eaa029a9322", + "name": "Lucky Labrador Brewpub", + "brewery_type": "micro", + "address_1": "915 SE Hawthorne Blvd", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97214-3545", + "country": "United States", + "longitude": -122.6564149, + "latitude": 45.51247125, + "phone": "5032363555", + "website_url": "http://www.luckylab.com", + "state": "Oregon", + "street": "915 SE Hawthorne Blvd" + }, + { + "id": "19263853-9099-41a4-80ff-0c7e9905e9ee", + "name": "Lucky Luke Brewing Company", + "brewery_type": "micro", + "address_1": "610 W Avenue O Ste 104", + "address_2": null, + "address_3": null, + "city": "Palmdale", + "state_province": "California", + "postal_code": "93551-3610", + "country": "United States", + "longitude": -118.1411039, + "latitude": 34.61623136, + "phone": "6612705588", + "website_url": "http://www.luckylukebrewing.com", + "state": "California", + "street": "610 W Avenue O Ste 104" + }, + { + "id": "674e3037-058b-4066-9de4-00b22fcad906", + "name": "Lucky Monk Burger, Pizza & Beer Co", + "brewery_type": "brewpub", + "address_1": "105 Hollywood Blvd", + "address_2": null, + "address_3": null, + "city": "South Barrington", + "state_province": "Illinois", + "postal_code": "60010-7121", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8478980500", + "website_url": "http://www.theluckymonk.com", + "state": "Illinois", + "street": "105 Hollywood Blvd" + }, + { + "id": "bb74ff2e-a0b7-457c-9b9e-7a7343cf91bc", + "name": "Lucky Owl Brewing", + "brewery_type": "micro", + "address_1": "8660 Tamarack Trl", + "address_2": null, + "address_3": null, + "city": "Chagrin Falls", + "state_province": "Ohio", + "postal_code": "44023-1876", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4408363440", + "website_url": "http://www.luckyowlbrewing.com", + "state": "Ohio", + "street": "8660 Tamarack Trl" + }, + { + "id": "c0e603fa-36fa-48e5-80fa-1008ba0af69e", + "name": "Lucky Pigeon Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Gorham", + "state_province": "Maine", + "postal_code": "04038-2371", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Maine", + "street": null + }, + { + "id": "5add03e6-9a49-4e98-89bd-8bf41dafb72e", + "name": "Lucky Star Brewery", + "brewery_type": "brewpub", + "address_1": "219 S 2nd St", + "address_2": null, + "address_3": null, + "city": "Miamisburg", + "state_province": "Ohio", + "postal_code": "45342-2924", + "country": "United States", + "longitude": -84.28782443, + "latitude": 39.63943573, + "phone": "9378662739", + "website_url": "http://www.luckystarbrewery.com", + "state": "Ohio", + "street": "219 S 2nd St" + }, + { + "id": "a76253b7-d902-408b-af47-3cdf10a3e5c0", + "name": "Lucky Town Brewing Co", + "brewery_type": "micro", + "address_1": "1710 N Mill St", + "address_2": null, + "address_3": null, + "city": "Jackson", + "state_province": "Mississippi", + "postal_code": "39202-1536", + "country": "United States", + "longitude": -90.18857808, + "latitude": 32.31965604, + "phone": "6017900142", + "website_url": "http://www.luckytownbrewing.com", + "state": "Mississippi", + "street": "1710 N Mill St" + }, + { + "id": "e1d96308-ade4-439a-b4e0-a90552b8b701", + "name": "Lucky's 1313 Brewpub", + "brewery_type": "brewpub", + "address_1": "1313 Regent St", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Wisconsin", + "postal_code": "53715-1254", + "country": "United States", + "longitude": -89.40765838, + "latitude": 43.06766144, + "phone": "6082508989", + "website_url": "http://www.luckys1313.com", + "state": "Wisconsin", + "street": "1313 Regent St" + }, + { + "id": "1d395c71-54a6-4af8-a0a3-21f5946f49ee", + "name": "Ludington Bay Brewing Co", + "brewery_type": "brewpub", + "address_1": "515 S James St", + "address_2": null, + "address_3": null, + "city": "Ludington", + "state_province": "Michigan", + "postal_code": "49431-2325", + "country": "United States", + "longitude": -86.44763415, + "latitude": 43.95070214, + "phone": "2312396690", + "website_url": "http://ludingtonbaybrewing.com", + "state": "Michigan", + "street": "515 S James St" + }, + { + "id": "e13e9d88-359f-4e3d-b981-4753940c5455", + "name": "Ludlam Island Brewery", + "brewery_type": "micro", + "address_1": "9 Stoney Ct Unit 3", + "address_2": null, + "address_3": null, + "city": "Ocean View", + "state_province": "New Jersey", + "postal_code": "08230-1041", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6092636969", + "website_url": "http://ludlamisland.com", + "state": "New Jersey", + "street": "9 Stoney Ct Unit 3" + }, + { + "id": "51652e93-207c-47c3-8c98-dd4f1c81fd39", + "name": "Lumber Barons Brewery", + "brewery_type": "brewpub", + "address_1": "804 E Midland St", + "address_2": null, + "address_3": null, + "city": "Bay City", + "state_province": "Michigan", + "postal_code": "48706-4953", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9898910100", + "website_url": "http://www.lumberbaronsbrewery.com", + "state": "Michigan", + "street": "804 E Midland St" + }, + { + "id": "4e0b0d7e-31e4-42a8-abff-30757dc8e330", + "name": "Lumber House Brewing Company", + "brewery_type": "micro", + "address_1": "30741 3rd AVE Suite 133", + "address_2": null, + "address_3": null, + "city": "Black Diamond", + "state_province": "Washington", + "postal_code": "98010", + "country": "United States", + "longitude": -122.010144, + "latitude": 47.327123, + "phone": "4254320121", + "website_url": "https://lumberhousebrew.com", + "state": "Washington", + "street": "30741 3rd AVE Suite 133" + }, + { + "id": "79ba2199-ced7-4dc5-a374-cbc05cd8fb39", + "name": "Lumberbeard Brewing", + "brewery_type": "micro", + "address_1": "25 E 3rd Ave", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99202", + "country": "United States", + "longitude": -117.4101242, + "latitude": 47.65416824, + "phone": "5093815142", + "website_url": "https://lumberbeardbrewing.com", + "state": "Washington", + "street": "25 E 3rd Ave" + }, + { + "id": "97fb454b-8b8b-42e7-a89e-9355de3b76f2", + "name": "Lumberyard Brewing Co Taproom and Grille", + "brewery_type": "micro", + "address_1": "5 S San Francisco St", + "address_2": null, + "address_3": null, + "city": "Flagstaff", + "state_province": "Arizona", + "postal_code": "86001-5736", + "country": "United States", + "longitude": -111.648578, + "latitude": 35.1964377, + "phone": "9287792739", + "website_url": "http://www.lumberyardbrewingcompany.com", + "state": "Arizona", + "street": "5 S San Francisco St" + }, + { + "id": "58d2915a-9712-4619-a54b-0dec8d6e64e3", + "name": "Luminous Brewhouse", + "brewery_type": "micro", + "address_1": "504 Broadway St", + "address_2": null, + "address_3": null, + "city": "Sheridan", + "state_province": "Wyoming", + "postal_code": "82801-3619", + "country": "United States", + "longitude": -106.953486, + "latitude": 44.80297173, + "phone": null, + "website_url": "http://www.luminousbrewhouse.com", + "state": "Wyoming", + "street": "504 Broadway St" + }, + { + "id": "90d7563e-7ff5-4fb4-aab3-19275c21bd9d", + "name": "Lumpy Ridge Brewing Co", + "brewery_type": "micro", + "address_1": "531 S St Vrain Ave", + "address_2": null, + "address_3": null, + "city": "Estes Park", + "state_province": "Colorado", + "postal_code": "80517-7416", + "country": "United States", + "longitude": -105.503658, + "latitude": 40.367158, + "phone": "9702351752", + "website_url": "http://www.lumpyridgebrewing.com", + "state": "Colorado", + "street": "531 S St Vrain Ave" + }, + { + "id": "71b04b23-ecaf-47fd-a76b-de4afa732ac9", + "name": "Lunacy Brewing Company", + "brewery_type": "micro", + "address_1": "1500 Kings Hwy", + "address_2": null, + "address_3": null, + "city": "Haddon Heights", + "state_province": "New Jersey", + "postal_code": "08035", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8566170681", + "website_url": "http://www.lunacybrewingcompany.com", + "state": "New Jersey", + "street": "1500 Kings Hwy" + }, + { + "id": "3e9d4c32-f050-4f00-946c-f7f6771bb214", + "name": "Lunar Brew", + "brewery_type": "micro", + "address_1": "15 Wallflower Street", + "address_2": "Paarden Eiland", + "address_3": null, + "city": "Cape Town", + "state_province": "Western Cape", + "postal_code": "7405", + "country": "South Africa", + "longitude": 18.4719, + "latitude": -33.9056, + "phone": "+27 79 571 5262", + "website_url": "https://lunarbrew.co.za/", + "state": "Western Cape", + "street": "15 Wallflower Street" + }, + { + "id": "c883e57f-28d0-4793-bfc4-ef1d02e194e4", + "name": "Lunar Brewing Co", + "brewery_type": "proprietor", + "address_1": "54 E Saint Charles Rd", + "address_2": null, + "address_3": null, + "city": "Villa Park", + "state_province": "Illinois", + "postal_code": "60181-2434", + "country": "United States", + "longitude": -87.97720306, + "latitude": 41.88987006, + "phone": "6305302077", + "website_url": "http://www.mypsace.com/LunaRbrewingco", + "state": "Illinois", + "street": "54 E Saint Charles Rd" + }, + { + "id": "2c1834c4-5ec7-42c2-85e6-43dad91a0a4e", + "name": "Lunkenheimer Craft Brewing Co. LLC", + "brewery_type": "micro", + "address_1": "PO Box 539 8920 N Seneca St,", + "address_2": null, + "address_3": null, + "city": "Weedsport", + "state_province": "New York", + "postal_code": "13166-0539", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3158347027", + "website_url": "http://www.lunkenheimercraftbrewing.com", + "state": "New York", + "street": "PO Box 539 8920 N Seneca St," + }, + { + "id": "917424e7-ecc3-4a22-8174-abfe86581f66", + "name": "LuPine Brewing Co", + "brewery_type": "micro", + "address_1": "248 River St N", + "address_2": null, + "address_3": null, + "city": "Delano", + "state_province": "Minnesota", + "postal_code": "55328-8264", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7633331033", + "website_url": "http://www.lupinebrewing.com", + "state": "Minnesota", + "street": "248 River St N" + }, + { + "id": "09f9fd85-fa02-451a-8efc-c4233290bbce", + "name": "Lupulin Brewing", + "brewery_type": "micro", + "address_1": "570 Humboldt Dr Ste 107", + "address_2": null, + "address_3": null, + "city": "Big Lake", + "state_province": "Minnesota", + "postal_code": "55309-4868", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7632639549", + "website_url": "http://www.lupulinbrewing.com", + "state": "Minnesota", + "street": "570 Humboldt Dr Ste 107" + }, + { + "id": "c06f078b-daf8-447d-b192-336fc1971b52", + "name": "Lupulin Brewing - Sioux Falls", + "brewery_type": "brewpub", + "address_1": "2425 S. Shirley Ave, Suite 112", + "address_2": null, + "address_3": null, + "city": "Sioux Falls", + "state_province": "South Dakota", + "postal_code": "57106-4332", + "country": "United States", + "longitude": -96.7772127, + "latitude": 43.52471978, + "phone": "6052755544", + "website_url": "http://www.lupulinbrewing.com", + "state": "South Dakota", + "street": "2425 S. Shirley Ave, Suite 112" + }, + { + "id": "33228a1a-cbb2-4251-8d61-adae85bf78c4", + "name": "Lydian Stone Brewery", + "brewery_type": "micro", + "address_1": "685 York Haven Rd", + "address_2": null, + "address_3": null, + "city": "York Haven", + "state_province": "Pennsylvania", + "postal_code": "17370-9006", + "country": "United States", + "longitude": -76.7157289, + "latitude": 40.0944263, + "phone": "7173846055", + "website_url": "http://www.lydianstonebrewing.com", + "state": "Pennsylvania", + "street": "685 York Haven Rd" + }, + { + "id": "44349854-3a4e-41f1-be35-70dd6bbc9107", + "name": "Lynchpin Beer Company / The Laundry", + "brewery_type": "brewpub", + "address_1": "115 W Shiawassee Ave", + "address_2": null, + "address_3": null, + "city": "Fenton", + "state_province": "Michigan", + "postal_code": "48430-2005", + "country": "United States", + "longitude": -83.70642814, + "latitude": 42.792852, + "phone": "8106298852", + "website_url": "http://www.lunchandbeyond.com", + "state": "Michigan", + "street": "115 W Shiawassee Ave" + }, + { + "id": "a39e5f76-1435-4f84-bb48-d9fe56df3055", + "name": "LynLake Brewery", + "brewery_type": "micro", + "address_1": "2934 Lyndale Ave S", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55408-2110", + "country": "United States", + "longitude": -93.2884965, + "latitude": 44.9489135, + "phone": "6122249682", + "website_url": "http://www.lynlakebrewery.com", + "state": "Minnesota", + "street": "2934 Lyndale Ave S" + }, + { + "id": "bb0715b7-bf7b-460d-aae4-d5a2ada52773", + "name": "Lynnwood Brewing Concern", + "brewery_type": "brewpub", + "address_1": "4821 Grove Barton Rd", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27613-1900", + "country": "United States", + "longitude": -78.71623989, + "latitude": 35.87060368, + "phone": "9197850043", + "website_url": "http://www.lynnwoodbrewing.beer", + "state": "North Carolina", + "street": "4821 Grove Barton Rd" + }, + { + "id": "73d0933d-61ce-4b09-be56-2ca9f5bcc482", + "name": "Lynnwood Brewing Concern", + "brewery_type": "micro", + "address_1": "1053 E Whitaker Mill Rd Ste 101", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27604-5305", + "country": "United States", + "longitude": -78.62430807, + "latitude": 35.80788061, + "phone": "5207779456", + "website_url": null, + "state": "North Carolina", + "street": "1053 E Whitaker Mill Rd Ste 101" + }, + { + "id": "59736f54-303c-49d8-9daf-8080d3cff2ae", + "name": "Lyons Den Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Wrentham", + "state_province": "Massachusetts", + "postal_code": "02093", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Massachusetts", + "street": null + }, + { + "id": "f1e6162d-bdbc-41d8-af4a-a0c940ba9bed", + "name": "Lyonsmith Brewing Company", + "brewery_type": "micro", + "address_1": "138 Water St", + "address_2": null, + "address_3": null, + "city": "Penn Yan", + "state_province": "New York", + "postal_code": "14527-1651", + "country": "United States", + "longitude": -77.05463635, + "latitude": 42.65899476, + "phone": "3155365603", + "website_url": "http://www.lyonsmithbrewing.com", + "state": "New York", + "street": "138 Water St" + }, + { + "id": "06f29dde-6f82-4e2e-923a-6ddcaa8c61b0", + "name": "M.I.A. Beer Co", + "brewery_type": "micro", + "address_1": "10400 NW 33rd St Ste 150", + "address_2": null, + "address_3": null, + "city": "Doral", + "state_province": "Florida", + "postal_code": "33172-5902", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3055675550", + "website_url": "http://www.mia.beer", + "state": "Florida", + "street": "10400 NW 33rd St Ste 150" + }, + { + "id": "d8f0b1a8-9976-49b8-8e3d-d38b17496c9c", + "name": "M.Special Brewing Company", + "brewery_type": "micro", + "address_1": "6860 Cortona Dr Ste C", + "address_2": null, + "address_3": null, + "city": "Goleta", + "state_province": "California", + "postal_code": "93117-5507", + "country": "United States", + "longitude": -119.8684287, + "latitude": 34.43298751, + "phone": null, + "website_url": "http://www.mspecialbrewco.com", + "state": "California", + "street": "6860 Cortona Dr Ste C" + }, + { + "id": "68cb3ab3-3136-419e-aff6-06d965cfb280", + "name": "M.Special Brewing Company", + "brewery_type": "micro", + "address_1": "634 State St", + "address_2": null, + "address_3": null, + "city": "Santa Barbara", + "state_province": "California", + "postal_code": "93101", + "country": "United States", + "longitude": -119.6977816, + "latitude": 34.41874978, + "phone": "8053080050", + "website_url": "http://www.mspecialbrewco.com", + "state": "California", + "street": "634 State St" + }, + { + "id": "6fea98ab-5ca3-4876-a1da-d0004045a00d", + "name": "Mac and Jacks Brewery Inc", + "brewery_type": "regional", + "address_1": "17825 NE 65th St Ste B110", + "address_2": null, + "address_3": null, + "city": "Redmond", + "state_province": "Washington", + "postal_code": "98052-4995", + "country": "United States", + "longitude": -122.1026326, + "latitude": 47.66431006, + "phone": "4255589697", + "website_url": "https://www.macandjacks.com", + "state": "Washington", + "street": "17825 NE 65th St Ste B110" + }, + { + "id": "896294c5-9776-47e7-a680-b29857920186", + "name": "Macalister Brewing Co.", + "brewery_type": "micro", + "address_1": "6 Danbulan Street", + "address_2": null, + "address_3": null, + "city": "Smithfield", + "state_province": "QLD", + "postal_code": "4878", + "country": "Australia", + "longitude": 145.6956205, + "latitude": -16.8394703, + "phone": "+61 408 086 814", + "website_url": "http://www.macalisterbrewingcompany.com.au/", + "state": "QLD", + "street": "6 Danbulan Street" + }, + { + "id": "2ef707fa-134a-4660-8523-64c0ab830e55", + "name": "Macatawa Ale Company", + "brewery_type": "micro", + "address_1": "102 S River Ave", + "address_2": null, + "address_3": null, + "city": "Holland", + "state_province": "Michigan", + "postal_code": "49423-2851", + "country": "United States", + "longitude": -86.10911659, + "latitude": 42.79223968, + "phone": "6168487677", + "website_url": "http://www.macatawaalecompany.com", + "state": "Michigan", + "street": "102 S River Ave" + }, + { + "id": "87f669f2-1318-4fdf-8018-3e590996759d", + "name": "Machias River Brewing Company", + "brewery_type": "micro", + "address_1": "86 Main St", + "address_2": null, + "address_3": null, + "city": "Machias", + "state_province": "Maine", + "postal_code": "04654-1150", + "country": "United States", + "longitude": -67.45804551, + "latitude": 44.71446257, + "phone": "2072596001", + "website_url": null, + "state": "Maine", + "street": "86 Main St" + }, + { + "id": "8840fe69-ce15-4d46-ab1f-01f78e0f6375", + "name": "Machine House Brewery", + "brewery_type": "micro", + "address_1": "5840 Airport Way S Ste 121", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98108-2751", + "country": "United States", + "longitude": -122.3171301, + "latitude": 47.5502618, + "phone": "2064026025", + "website_url": "https://www.machinehousebrewery.com", + "state": "Washington", + "street": "5840 Airport Way S Ste 121" + }, + { + "id": "7a9b2fa2-8e51-4a5c-98c0-a09d99303f39", + "name": "MachineHead Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Clovis", + "state_province": "California", + "postal_code": "93612", + "country": "United States", + "longitude": -119.7029194, + "latitude": 36.8252277, + "phone": null, + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "e6bfe52d-1f1e-4c1e-a57e-8f12f481a52c", + "name": "Mackenzie Brewing Company", + "brewery_type": "micro", + "address_1": "932 Meramec Station Rd", + "address_2": null, + "address_3": null, + "city": "Valley Park", + "state_province": "Missouri", + "postal_code": "63088", + "country": "United States", + "longitude": -90.497364, + "latitude": 38.537146, + "phone": "6362264148", + "website_url": "http://www.mknzbrewing.com", + "state": "Missouri", + "street": "932 Meramec Station Rd" + }, + { + "id": "9ef4af01-189b-4196-a1cf-96ed6696840e", + "name": "Mackinaw Brewing Co", + "brewery_type": "brewpub", + "address_1": "161 E Front St", + "address_2": null, + "address_3": null, + "city": "Traverse City", + "state_province": "Michigan", + "postal_code": "49684-5779", + "country": "United States", + "longitude": -85.62124459, + "latitude": 44.76426455, + "phone": "2319331100", + "website_url": "http://www.mackinawbrewing.com", + "state": "Michigan", + "street": "161 E Front St" + }, + { + "id": "42cbe82e-95a3-4fd4-8d2c-1c3b277fa533", + "name": "Mackinaw Trail Brewing Company / Mackinaw Trail Winery and Brewery", + "brewery_type": "micro", + "address_1": "103 W Lakeshore Dr", + "address_2": null, + "address_3": null, + "city": "Manistique", + "state_province": "Michigan", + "postal_code": "49854-1579", + "country": "United States", + "longitude": -86.2503664, + "latitude": 45.9535761, + "phone": "9063412303", + "website_url": "http://www.mackinawtrailwinery.com", + "state": "Michigan", + "street": "103 W Lakeshore Dr" + }, + { + "id": "b261b101-bcad-4384-98a9-8da00ddb71f0", + "name": "MacLeod Ale Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "14741 Calvert St", + "address_2": null, + "address_3": null, + "city": "Van Nuys", + "state_province": "California", + "postal_code": "91411-2706", + "country": "United States", + "longitude": -118.4540488, + "latitude": 34.1817376, + "phone": "8186311963", + "website_url": "http://www.macleodale.com", + "state": "California", + "street": "14741 Calvert St" + }, + { + "id": "1b52a67f-8d6f-428e-835e-4c08ec1df483", + "name": "Macon Beer Company", + "brewery_type": "proprietor", + "address_1": "345 Oglethorpe St", + "address_2": null, + "address_3": null, + "city": "Macon", + "state_province": "Georgia", + "postal_code": "31201-3274", + "country": "United States", + "longitude": -83.630297, + "latitude": 32.828235, + "phone": "4782167117", + "website_url": "http://www.maconbeer.com", + "state": "Georgia", + "street": "345 Oglethorpe St" + }, + { + "id": "864416b2-b7bd-464e-bed0-d836fad787f0", + "name": "Mad Anthony Brewing Co", + "brewery_type": "micro", + "address_1": "2002 Broadway", + "address_2": null, + "address_3": null, + "city": "Fort Wayne", + "state_province": "Indiana", + "postal_code": "46802-3710", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2604262537", + "website_url": "http://www.madbrew.com", + "state": "Indiana", + "street": "2002 Broadway" + }, + { + "id": "244e7c7d-7e0b-4c20-bc3d-8707c7c42f34", + "name": "Mad Beach Brewing", + "brewery_type": "micro", + "address_1": "12945 Village Blvd", + "address_2": null, + "address_3": null, + "city": "Madeira Beach", + "state_province": "Florida", + "postal_code": "33708-2656", + "country": "United States", + "longitude": -82.7835534, + "latitude": 27.7865945, + "phone": "7273620008", + "website_url": "http://www.madbeachbrewing.com", + "state": "Florida", + "street": "12945 Village Blvd" + }, + { + "id": "9b7ca1bf-2632-4cd5-ae78-e72d9ce082a5", + "name": "Mad Bomber Brewing Company", + "brewery_type": "micro", + "address_1": "9265 N Government Way", + "address_2": null, + "address_3": null, + "city": "Hayden", + "state_province": "Idaho", + "postal_code": "83835-8278", + "country": "United States", + "longitude": -116.7867267, + "latitude": 47.75597167, + "phone": "2087627343", + "website_url": "http://www.madbomberbrewing.com", + "state": "Idaho", + "street": "9265 N Government Way" + }, + { + "id": "2db77c0b-76d8-45df-a47a-283d53b171b8", + "name": "Mad Chef Craft Brewing", + "brewery_type": "brewpub", + "address_1": "2023 Miller Rd", + "address_2": null, + "address_3": null, + "city": "East Petersburg", + "state_province": "Pennsylvania", + "postal_code": "17520-1624", + "country": "United States", + "longitude": -76.3496026, + "latitude": 40.09366985, + "phone": "7172836469", + "website_url": "http://www.madchefcraftbrewing.com", + "state": "Pennsylvania", + "street": "2023 Miller Rd" + }, + { + "id": "15f89eab-85d7-40df-97bb-dab2bb810c07", + "name": "Mad County Brewing", + "brewery_type": "brewpub", + "address_1": "45 N Main St", + "address_2": null, + "address_3": null, + "city": "Marshall", + "state_province": "North Carolina", + "postal_code": "28753-0040", + "country": "United States", + "longitude": -82.68585484, + "latitude": 35.79772897, + "phone": "8286498600", + "website_url": "http://www.madisoncountybrewing.com", + "state": "North Carolina", + "street": "45 N Main St" + }, + { + "id": "588e8cf3-e3e0-44ef-a94f-d3e9231c2237", + "name": "Mad Duck Craft Brewing Company", + "brewery_type": "brewpub", + "address_1": "3085 E Campus Pointe Dr", + "address_2": null, + "address_3": null, + "city": "Fresno", + "state_province": "California", + "postal_code": "93710-7526", + "country": "United States", + "longitude": -119.7346794, + "latitude": 36.81180929, + "phone": "5593253825", + "website_url": "http://www.madduckcraft.com", + "state": "California", + "street": "3085 E Campus Pointe Dr" + }, + { + "id": "cc1968cf-0ef8-4d1e-84da-1b320125d7ee", + "name": "Mad Fox Brewing Co", + "brewery_type": "brewpub", + "address_1": "444 W Broad St Ste I", + "address_2": null, + "address_3": null, + "city": "Falls Church", + "state_province": "Virginia", + "postal_code": "22046-3362", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7039426840", + "website_url": "http://www.madfoxbrewing.com", + "state": "Virginia", + "street": "444 W Broad St Ste I" + }, + { + "id": "fd4e8fed-a8a7-451f-ae27-e613538958e0", + "name": "Mad Fritz", + "brewery_type": "micro", + "address_1": "393 Lafata St", + "address_2": null, + "address_3": null, + "city": "Saint Helena", + "state_province": "California", + "postal_code": "94574-1405", + "country": "United States", + "longitude": -122.4584186, + "latitude": 38.49985781, + "phone": "7079685058", + "website_url": "http://www.madfritz.com", + "state": "California", + "street": "393 Lafata St" + }, + { + "id": "1cf66049-700f-4e6d-9f68-31ed6ab7f6bb", + "name": "Mad Giant Beer", + "brewery_type": "brewpub", + "address_1": "1 Fox Street", + "address_2": "Ferreiras Dorp", + "address_3": null, + "city": "Johannesburg", + "state_province": "Gauteng", + "postal_code": "2048", + "country": "South Africa", + "longitude": 28.0381, + "latitude": -26.2081, + "phone": "+27 10 020 8035", + "website_url": "https://www.madgiant.co.za/", + "state": "Gauteng", + "street": "1 Fox Street" + }, + { + "id": "c48b1465-3ed7-498e-a209-d5427033e44a", + "name": "Mad Jack Brewing Co / Van Dyck Restaurant & Lounge", + "brewery_type": "brewpub", + "address_1": "237 Union St", + "address_2": null, + "address_3": null, + "city": "Schenectady", + "state_province": "New York", + "postal_code": "12305-1405", + "country": "United States", + "longitude": -73.94466273, + "latitude": 42.81647276, + "phone": "5183487999", + "website_url": "http://www.madjackbrewing.com", + "state": "New York", + "street": "237 Union St" + }, + { + "id": "fb83d0e7-4260-425b-97b6-6e86d38aee4c", + "name": "Mad Jack's Mountain Brewery", + "brewery_type": "micro", + "address_1": "23 Main St", + "address_2": null, + "address_3": null, + "city": "Bailey", + "state_province": "Colorado", + "postal_code": "80421", + "country": "United States", + "longitude": -105.4774352, + "latitude": 39.40651269, + "phone": "3038162337", + "website_url": "http://www.madjacksmountainbrewery.com", + "state": "Colorado", + "street": "23 Main St" + }, + { + "id": "3caf21fd-86fc-4eb8-b5c3-8f447f47500b", + "name": "Mad Knight Brewing Company", + "brewery_type": "micro", + "address_1": "4015 Tennessee Ave", + "address_2": null, + "address_3": null, + "city": "Chattanooga", + "state_province": "Tennessee", + "postal_code": "37409-1322", + "country": "United States", + "longitude": -85.32785692, + "latitude": 35.00864326, + "phone": "4238256504", + "website_url": "http://www.madknightbrewing.com", + "state": "Tennessee", + "street": "4015 Tennessee Ave" + }, + { + "id": "9d006d77-28d5-41d3-9781-748bcec556a2", + "name": "Mad Malts Brewery & Tap Room", + "brewery_type": "micro", + "address_1": "109 Maple Ave NW", + "address_2": null, + "address_3": null, + "city": "Huntsville", + "state_province": "Alabama", + "postal_code": "35801-4634", + "country": "United States", + "longitude": -86.585242, + "latitude": 34.746475, + "phone": "2564243543", + "website_url": "http://www.madmaltsbrewing.com", + "state": "Alabama", + "street": "109 Maple Ave NW" + }, + { + "id": "ca45ba20-0c37-46ec-8767-c02efb7951e5", + "name": "Mad Mole Brewing LLC", + "brewery_type": "micro", + "address_1": "6309 Boathouse Rd Ste C", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "North Carolina", + "postal_code": "28403-3576", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9108598115", + "website_url": "http://www.madmolebrewing.com", + "state": "North Carolina", + "street": "6309 Boathouse Rd Ste C" + }, + { + "id": "b76e67fb-fe15-41c3-8a43-531bfb7a4d20", + "name": "Mad Mouse Brewery", + "brewery_type": "contract", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60607-5017", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.moxeerestaurant.com", + "state": "Illinois", + "street": null + }, + { + "id": "44656423-b14c-4378-aac9-da0f59576737", + "name": "Mad Pecker Brewing", + "brewery_type": "brewpub", + "address_1": "6025 Tezel Rd Ste 122", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78250-4180", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2105623059", + "website_url": "http://www.madpeckerbrewing.com", + "state": "Texas", + "street": "6025 Tezel Rd Ste 122" + }, + { + "id": "4c4398d4-5560-4248-ab68-eae17056697c", + "name": "Mad Princes Brewing", + "brewery_type": "micro", + "address_1": "2537 Bogarts Tavern Rd", + "address_2": null, + "address_3": null, + "city": "Buckingham", + "state_province": "Pennsylvania", + "postal_code": "18902", + "country": "United States", + "longitude": -75.0613301, + "latitude": 40.32438895, + "phone": "2676146104", + "website_url": null, + "state": "Pennsylvania", + "street": "2537 Bogarts Tavern Rd" + }, + { + "id": "ce9573b0-30e9-464c-9371-0af1d9b6485a", + "name": "Mad River Brewing Co", + "brewery_type": "micro", + "address_1": "101 Taylor Way", + "address_2": null, + "address_3": null, + "city": "Blue Lake", + "state_province": "California", + "postal_code": "95525", + "country": "United States", + "longitude": -123.992063, + "latitude": 40.878682, + "phone": "7076684151", + "website_url": "http://www.madriverbrewing.com", + "state": "California", + "street": "101 Taylor Way" + }, + { + "id": "b355c492-9798-4ba6-bb3d-17b3baf27b8b", + "name": "Mad Science Brewing Company", + "brewery_type": "micro", + "address_1": "1619 Buckeystown Pike", + "address_2": null, + "address_3": null, + "city": "Adamstown", + "state_province": "Maryland", + "postal_code": "21710", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2404098723", + "website_url": "http://www.madsciencebrewing.com", + "state": "Maryland", + "street": "1619 Buckeystown Pike" + }, + { + "id": "6ce79fd9-1b5c-4543-94ff-cfc8d9863149", + "name": "Mad Swede Brewing", + "brewery_type": "micro", + "address_1": "2772 S Cole Rd Ste 140", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83709-8028", + "country": "United States", + "longitude": -116.273944, + "latitude": 43.57693444, + "phone": "2089226883", + "website_url": "http://www.madswedebrewing.com", + "state": "Idaho", + "street": "2772 S Cole Rd Ste 140" + }, + { + "id": "7308bfec-4104-467a-8aa7-59f11fec31e3", + "name": "Mad-K Brewery", + "brewery_type": "micro", + "address_1": "298 Mountain Top Rd", + "address_2": null, + "address_3": null, + "city": "Howard", + "state_province": "Pennsylvania", + "postal_code": "16841-2627", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5702951842", + "website_url": "http://www.mad-kbrews.com", + "state": "Pennsylvania", + "street": "298 Mountain Top Rd" + }, + { + "id": "f4db9b09-2c1c-4dc8-b2b6-5a4d6903477a", + "name": "Madcap Brew Co.", + "brewery_type": "micro", + "address_1": "1422 Mogadore Rd", + "address_2": null, + "address_3": null, + "city": "Kent", + "state_province": "Ohio", + "postal_code": "44240-7536", + "country": "United States", + "longitude": -81.372012, + "latitude": 41.139183, + "phone": "3305489654", + "website_url": null, + "state": "Ohio", + "street": "1422 Mogadore Rd" + }, + { + "id": "02aa77e2-94f3-49e4-9a47-e8d2d5e85c17", + "name": "Madcow Brewing Co.", + "brewery_type": "micro", + "address_1": "206 SE 166th Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97233-4202", + "country": "United States", + "longitude": -122.4924064, + "latitude": 45.5034238, + "phone": null, + "website_url": "http://www.madcowbrewing.com", + "state": "Oregon", + "street": "206 SE 166th Ave" + }, + { + "id": "012a9f88-a14a-42eb-b455-1f5671fe8373", + "name": "Madewest Brewing Company", + "brewery_type": "micro", + "address_1": "1744 Donlon St", + "address_2": null, + "address_3": null, + "city": "Ventura", + "state_province": "California", + "postal_code": "93003-5673", + "country": "United States", + "longitude": -119.2354401, + "latitude": 34.26181601, + "phone": "8059475002", + "website_url": "http://www.madewest.com", + "state": "California", + "street": "1744 Donlon St" + }, + { + "id": "998ea6f7-1be2-4fb0-8b48-31a983acec3c", + "name": "Madhouse Brewing Co", + "brewery_type": "micro", + "address_1": "501 Scott Ave", + "address_2": null, + "address_3": null, + "city": "Des Moines", + "state_province": "Iowa", + "postal_code": "50309-5047", + "country": "United States", + "longitude": -93.60766907, + "latitude": 41.58113315, + "phone": "9165017014", + "website_url": "http://www.madhousebeer.com", + "state": "Iowa", + "street": "501 Scott Ave" + }, + { + "id": "9cfdc1bb-b22c-4e9d-a569-c277a7e44b53", + "name": "Madison Brewing Co, Pub and Restaurant", + "brewery_type": "brewpub", + "address_1": "428 Main St", + "address_2": null, + "address_3": null, + "city": "Bennington", + "state_province": "Vermont", + "postal_code": "05201-2109", + "country": "United States", + "longitude": -73.1963588, + "latitude": 42.8783819, + "phone": "8024427397", + "website_url": "http://www.madisonbrewingco.com", + "state": "Vermont", + "street": "428 Main St" + }, + { + "id": "1f430591-da36-4af3-9f64-d2f8cdae64b7", + "name": "Madison River Brewing Co", + "brewery_type": "micro", + "address_1": "20900 Frontage Rd Ste B", + "address_2": null, + "address_3": null, + "city": "Belgrade", + "state_province": "Montana", + "postal_code": "59714-8558", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4063880322", + "website_url": "http://www.madisonriverbrewing.com", + "state": "Montana", + "street": "20900 Frontage Rd Ste B" + }, + { + "id": "506ec038-3940-4578-ad4c-eaea3b2d5730", + "name": "Madocke Beer Brewing Co.", + "brewery_type": "micro", + "address_1": "286 Southport Nerang Road", + "address_2": null, + "address_3": null, + "city": "Ashmore", + "state_province": "QLD", + "postal_code": "4214", + "country": "Australia", + "longitude": 153.3889736, + "latitude": -27.9770981, + "phone": "+61 494 371 885", + "website_url": "http://www.madocke.com.au/", + "state": "QLD", + "street": "286 Southport Nerang Road" + }, + { + "id": "337b4c62-2460-4ae7-b271-d022058469cc", + "name": "MadTree Brewing", + "brewery_type": "regional", + "address_1": "3301 Madison Rd", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45209-1132", + "country": "United States", + "longitude": -84.4239715, + "latitude": 39.1563725, + "phone": "5138368733", + "website_url": "http://www.madtreebrewing.com", + "state": "Ohio", + "street": "3301 Madison Rd" + }, + { + "id": "b54b16e1-ac3b-4bff-a11f-f7ae9ddc27e0", + "name": "MadTree Brewing 2.0", + "brewery_type": "regional", + "address_1": "5164 Kennedy Ave", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45213", + "country": "United States", + "longitude": -84.4137736, + "latitude": 39.1885752, + "phone": "5138368733", + "website_url": "http://www.madtreebrewing.com", + "state": "Ohio", + "street": "5164 Kennedy Ave" + }, + { + "id": "6bbea081-baec-4db3-9647-5a8aeee3e72c", + "name": "Maelstrom Brewing Company", + "brewery_type": "micro", + "address_1": "11014 120th Ave NE", + "address_2": null, + "address_3": null, + "city": "Kirkland", + "state_province": "Washington", + "postal_code": "98033-5022", + "country": "United States", + "longitude": -122.180943, + "latitude": 47.6991435, + "phone": "2068416071", + "website_url": "http://www.maelstrombrewing.com", + "state": "Washington", + "street": "11014 120th Ave NE" + }, + { + "id": "37663286-3934-49e7-976d-d17fe6a8f885", + "name": "Maggie Island Brewery", + "brewery_type": "micro", + "address_1": "9 Esplanade", + "address_2": null, + "address_3": null, + "city": "Picnic Bay", + "state_province": "QLD", + "postal_code": "4819", + "country": "Australia", + "longitude": 146.8391653, + "latitude": -19.1785549, + "phone": null, + "website_url": "http://www.maggieislandbrewery.com.au/", + "state": "QLD", + "street": "9 Esplanade" + }, + { + "id": "7f5b3890-2faf-428f-8855-cd1d3c458b4e", + "name": "Magic City Brewing Company", + "brewery_type": "micro", + "address_1": "161 2nd St NW", + "address_2": null, + "address_3": null, + "city": "Barberton", + "state_province": "Ohio", + "postal_code": "44203", + "country": "United States", + "longitude": -81.60738829, + "latitude": 41.01444672, + "phone": "3307039806", + "website_url": "http://Www.magiccitybrewingcompany.com", + "state": "Ohio", + "street": "161 2nd St NW" + }, + { + "id": "f781db23-6391-4db3-a70e-885517e9a6d8", + "name": "Magic Hat Brewing Co/ North American Breweries", + "brewery_type": "regional", + "address_1": "5 Bartlett Bay Rd", + "address_2": null, + "address_3": null, + "city": "South Burlington", + "state_province": "Vermont", + "postal_code": "05403-7727", + "country": "United States", + "longitude": -73.21616773, + "latitude": 44.42808692, + "phone": "8026582739", + "website_url": null, + "state": "Vermont", + "street": "5 Bartlett Bay Rd" + }, + { + "id": "a2fb1f14-334a-4195-b2a5-9c816c5196af", + "name": "Magic Valley Brewing", + "brewery_type": "brewpub", + "address_1": "208 Broadway Ave N", + "address_2": null, + "address_3": null, + "city": "Buhl", + "state_province": "Idaho", + "postal_code": "83316-1625", + "country": "United States", + "longitude": -114.7610528, + "latitude": 42.60009514, + "phone": "2085952679", + "website_url": "https://magicvalleybrewing.com", + "state": "Idaho", + "street": "208 Broadway Ave N" + }, + { + "id": "74cf30d7-f450-444c-a50e-fa6a8aa43c49", + "name": "Magnify Brewing Company", + "brewery_type": "micro", + "address_1": "1275 Bloomfield Ave Ste 7 Unit 40C", + "address_2": null, + "address_3": null, + "city": "Fairfield", + "state_province": "New Jersey", + "postal_code": "07004-2736", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9732876099", + "website_url": "http://www.magnifybrewing.com", + "state": "New Jersey", + "street": "1275 Bloomfield Ave Ste 7 Unit 40C" + }, + { + "id": "7e32b8ba-f0d6-4e22-9b07-0e6cfe279235", + "name": "Magnolia Brewing Company", + "brewery_type": "brewpub", + "address_1": "1398 Haight St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94117-2909", + "country": "United States", + "longitude": -122.4452044, + "latitude": 37.7703537, + "phone": null, + "website_url": null, + "state": "California", + "street": "1398 Haight St" + }, + { + "id": "a42086a7-b358-498a-ad7e-44948cc75ed0", + "name": "Magnolia Dogpatch", + "brewery_type": "micro", + "address_1": "2505 3rd St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94107-3112", + "country": "United States", + "longitude": -122.3880818, + "latitude": 37.7577437, + "phone": "4158647468", + "website_url": "http://www.magnoliasmokestack.com", + "state": "California", + "street": "2505 3rd St" + }, + { + "id": "959be3f8-4cc7-4342-b430-9111b5a3d036", + "name": "Magnuson Cafe and Brewery", + "brewery_type": "brewpub", + "address_1": "7801 62nd Ave NE", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98115", + "country": "United States", + "longitude": -122.2647516, + "latitude": 47.68882925, + "phone": "2065250669", + "website_url": "https://magnusonbrewery.com", + "state": "Washington", + "street": "7801 62nd Ave NE" + }, + { + "id": "5d702444-3683-463e-abfe-1f587d63a7bc", + "name": "Mahogany Ridge Brewery & Grill", + "brewery_type": "brewpub", + "address_1": "435 Lincoln Ave", + "address_2": null, + "address_3": null, + "city": "Steamboat Springs", + "state_province": "Colorado", + "postal_code": "80477-5084", + "country": "United States", + "longitude": -106.8306883, + "latitude": 40.48389236, + "phone": "9708793773", + "website_url": null, + "state": "Colorado", + "street": "435 Lincoln Ave" + }, + { + "id": "bad259d6-ce30-4252-8b30-30e2a74934fb", + "name": "Maiden City Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "123 E Pike St", + "address_2": null, + "address_3": null, + "city": "Cynthiana", + "state_province": "Kentucky", + "postal_code": "41031-1527", + "country": "United States", + "longitude": -84.288072, + "latitude": 38.388396, + "phone": "8599545151", + "website_url": "http://www.maidencitybrewing.com", + "state": "Kentucky", + "street": "123 E Pike St" + }, + { + "id": "b7825867-5c07-4e12-a1f2-dbf533deb48b", + "name": "Maidens Brewery", + "brewery_type": "brewpub", + "address_1": "209 North Wabash Avenue of Flags", + "address_2": null, + "address_3": null, + "city": "Evansville", + "state_province": "Indiana", + "postal_code": "47712", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8124312836", + "website_url": "http://www.maidensbrewery.com", + "state": "Indiana", + "street": "209 North Wabash Avenue of Flags" + }, + { + "id": "19800ec6-9709-45e5-a934-cd0b322a0649", + "name": "Main & Six Brewing Company", + "brewery_type": "micro", + "address_1": "1636 N Main St", + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Florida", + "postal_code": "32206-4402", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9046730144", + "website_url": null, + "state": "Florida", + "street": "1636 N Main St" + }, + { + "id": "70ff7200-901e-4279-afa4-41f0ae57fdd2", + "name": "Main And Mill Brewing Company", + "brewery_type": "brewpub", + "address_1": "240 E Main St", + "address_2": null, + "address_3": null, + "city": "Festus", + "state_province": "Missouri", + "postal_code": "63028-1907", + "country": "United States", + "longitude": -90.39265217, + "latitude": 38.21974885, + "phone": "6365433031", + "website_url": "http://www.mainandmill.com", + "state": "Missouri", + "street": "240 E Main St" + }, + { + "id": "9ac5be0c-c048-4566-b831-7fb7e8d76b0f", + "name": "Main Channel Brewing Company", + "brewery_type": "micro", + "address_1": "2090 Gunter Ave", + "address_2": null, + "address_3": null, + "city": "Guntersville", + "state_province": "Alabama", + "postal_code": "35976-2113", + "country": "United States", + "longitude": -86.31216035, + "latitude": 34.33873684, + "phone": "2569605070", + "website_url": "http://www.mainchannelbeer.com", + "state": "Alabama", + "street": "2090 Gunter Ave" + }, + { + "id": "80d50e64-d6ac-4056-a170-42144fa4f9cd", + "name": "Main Line Brewery", + "brewery_type": "micro", + "address_1": "1603 Ownby Ln", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23220", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8043879670", + "website_url": "https://mainlinerva.com/", + "state": "Virginia", + "street": "1603 Ownby Ln" + }, + { + "id": "bc35bec8-bdb0-405a-be1f-6c19a3d805a6", + "name": "Main Sail Brewery / Atwood Yacht Club", + "brewery_type": "micro", + "address_1": "2637 Lodge Rd SW", + "address_2": null, + "address_3": null, + "city": "Sherrodsville", + "state_province": "Ohio", + "postal_code": "44675-9719", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3307352135", + "website_url": "http://www.atwoodyachtclub.com", + "state": "Ohio", + "street": "2637 Lodge Rd SW" + }, + { + "id": "c979cb39-7e7f-4bdf-89ef-f45bebd906d7", + "name": "Main St Brewery", + "brewery_type": "brewpub", + "address_1": "830 Main St Frnt", + "address_2": null, + "address_3": null, + "city": "Pleasanton", + "state_province": "California", + "postal_code": "94566-6652", + "country": "United States", + "longitude": -121.8738245, + "latitude": 37.66475013, + "phone": "9254628218", + "website_url": "http://www.mainstbrewery.com", + "state": "California", + "street": "830 Main St Frnt" + }, + { + "id": "02dcafad-191a-47ed-82d6-d1a7a4ee8ccc", + "name": "Main Street Brewery", + "brewery_type": "brewpub", + "address_1": "493 N Main St", + "address_2": null, + "address_3": null, + "city": "Corona", + "state_province": "California", + "postal_code": "92880-2042", + "country": "United States", + "longitude": -117.5636924, + "latitude": 33.8925168, + "phone": "9513711471", + "website_url": "http://www.mainstreetbrewery.com", + "state": "California", + "street": "493 N Main St" + }, + { + "id": "269ae6fe-0f4b-4b1e-bac1-1eedc1332929", + "name": "Main Street Brewery/Four Corners", + "brewery_type": "brewpub", + "address_1": "21 E Main St", + "address_2": null, + "address_3": null, + "city": "Cortez", + "state_province": "Colorado", + "postal_code": "81321-3240", + "country": "United States", + "longitude": -108.5846644, + "latitude": 37.3484244, + "phone": "9705649112", + "website_url": null, + "state": "Colorado", + "street": "21 E Main St" + }, + { + "id": "d8ebbd1e-ee4b-4230-89df-9d40c208e013", + "name": "Main Street Brewing Inc/Turonis Pizza", + "brewery_type": "brewpub", + "address_1": "408 N Main St", + "address_2": null, + "address_3": null, + "city": "Evansville", + "state_province": "Indiana", + "postal_code": "47711-5418", + "country": "United States", + "longitude": -87.56399527, + "latitude": 37.98122094, + "phone": "8124249871", + "website_url": null, + "state": "Indiana", + "street": "408 N Main St" + }, + { + "id": "85e606f3-cfcc-44de-b8e5-9c29c873c532", + "name": "Maine Beer Co", + "brewery_type": "micro", + "address_1": "525 US Route 1", + "address_2": null, + "address_3": null, + "city": "Freeport", + "state_province": "Maine", + "postal_code": "04032-7009", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2072215711", + "website_url": "http://www.mainebeercompany.com", + "state": "Maine", + "street": "525 US Route 1" + }, + { + "id": "532b6171-7a1e-4caa-9e28-75cc148ce369", + "name": "Mainely Brews Restaurant and Brewhouse", + "brewery_type": "contract", + "address_1": "1 Post Office Sq Ste 302", + "address_2": null, + "address_3": null, + "city": "Waterville", + "state_province": "Maine", + "postal_code": "04901-6651", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2078732457", + "website_url": "http://www.mainelybrews.com", + "state": "Maine", + "street": "1 Post Office Sq Ste 302" + }, + { + "id": "e1442c77-6e83-4488-8664-539ae9bfcc68", + "name": "Mainstream Brewing Company", + "brewery_type": "micro", + "address_1": "24 Gwigwi Mrwebi Street", + "address_2": "Newtown", + "address_3": null, + "city": "Johannesburg", + "state_province": "Gauteng", + "postal_code": "2001", + "country": "South Africa", + "longitude": 28.03, + "latitude": -26.2023, + "phone": null, + "website_url": "https://www.mainstreambeer.co.za/", + "state": "Gauteng", + "street": "24 Gwigwi Mrwebi Street" + }, + { + "id": "4dcaeb97-edb6-4930-bf22-b27d434900f2", + "name": "Mainstreet Brewing Company", + "brewery_type": "micro", + "address_1": "4204 W Main St", + "address_2": null, + "address_3": null, + "city": "Belleville", + "state_province": "Illinois", + "postal_code": "62226", + "country": "United States", + "longitude": -90.02053343, + "latitude": 38.53796122, + "phone": "6184167261", + "website_url": "http://www.mainstreetbrewingco.com", + "state": "Illinois", + "street": "4204 W Main St" + }, + { + "id": "b35ddbfe-490e-4eaf-aeca-fb041e06c7aa", + "name": "Maize Valley Craft Brewery", + "brewery_type": "brewpub", + "address_1": "6193 Edison St NE", + "address_2": null, + "address_3": null, + "city": "Hartville", + "state_province": "Ohio", + "postal_code": "44632-9326", + "country": "United States", + "longitude": -81.27813638, + "latitude": 40.95340888, + "phone": "3308778344", + "website_url": "http://www.maizevalley.com", + "state": "Ohio", + "street": "6193 Edison St NE" + }, + { + "id": "686b5441-1a16-4bef-abc2-889de7800102", + "name": "Makai Brewing Company", + "brewery_type": "micro", + "address_1": "5850 Ocean Hwy W", + "address_2": null, + "address_3": null, + "city": "Ocean Isle Beach", + "state_province": "North Carolina", + "postal_code": "28469-3510", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9105792739", + "website_url": "http://www.MakaiBrewingCompany.com", + "state": "North Carolina", + "street": "5850 Ocean Hwy W" + }, + { + "id": "6fc645e2-6f39-4934-b011-4640a7bd616d", + "name": "Maker’s Brew", + "brewery_type": "micro", + "address_1": "70-72 Wale Street", + "address_2": "Cape Town City Centre", + "address_3": null, + "city": "Cape Town", + "state_province": "Western Cape", + "postal_code": "8001", + "country": "South Africa", + "longitude": 18.4162, + "latitude": -33.9221, + "phone": "+27 21 422 2912", + "website_url": "https://makerslanding.co.za/", + "state": "Western Cape", + "street": "70-72 Wale Street" + }, + { + "id": "f01c6462-20da-4cb6-ac2b-40996eb27016", + "name": "Makers Craft Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Norfolk", + "state_province": "Virginia", + "postal_code": "23504-1905", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7576249024", + "website_url": "http://www.makers.beer", + "state": "Virginia", + "street": null + }, + { + "id": "dce22bec-12d1-4aa6-a355-5780190abffe", + "name": "Malai Fort Worth", + "brewery_type": "brewpub", + "address_1": "5289 Monahans Ave", + "address_2": null, + "address_3": null, + "city": "Fort Worth", + "state_province": "Texas", + "postal_code": "76109", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6827073959", + "website_url": null, + "state": "Texas", + "street": "5289 Monahans Ave" + }, + { + "id": "90b5b8ad-037c-4372-96f4-5566dec973a2", + "name": "Mallory Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77018", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "https://www.facebook.com/profile.php?id=100063450295613", + "state": "Texas", + "street": null + }, + { + "id": "6e1689d8-3fde-4cfc-b8ca-2054c8fa20b5", + "name": "Malt House", + "brewery_type": "brewpub", + "address_1": "685 East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "459054", + "country": "Singapore", + "longitude": 1.3120254191508, + "latitude": 103.9216266, + "phone": "+65 6636 4436", + "website_url": "https://www.malthouse.sg/", + "state": "Singapore", + "street": "685 East Coast Road" + }, + { + "id": "7cb788b7-4aee-4b17-9b6d-bccffea5fe89", + "name": "Malt Shovel Brewery", + "brewery_type": "large", + "address_1": "7-21 Bellerine Street", + "address_2": null, + "address_3": null, + "city": "Geelong", + "state_province": "VIC", + "postal_code": "3220", + "country": "Australia", + "longitude": 144.3661784, + "latitude": -38.1483781, + "phone": "+61 3 5222 8756", + "website_url": "https://maltshoveltaphouse.com.au/our-venues/geelong/", + "state": "VIC", + "street": "7-21 Bellerine Street" + }, + { + "id": "67b9f26e-f7f1-4744-b44c-f04c776d5063", + "name": "Maltese Brewing Company", + "brewery_type": "micro", + "address_1": "11047 Pierson Dr Ste B", + "address_2": null, + "address_3": null, + "city": "Fredericksburg", + "state_province": "Virginia", + "postal_code": "22408-2062", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5406424512", + "website_url": "http://www.maltesebrewing.com", + "state": "Virginia", + "street": "11047 Pierson Dr Ste B" + }, + { + "id": "a3315344-8aa8-4d35-8760-d745854bf100", + "name": "Maltnhops Brewhaus", + "brewery_type": "micro", + "address_1": "26 Balook Drive", + "address_2": "9-Oct", + "address_3": null, + "city": "Beresfield", + "state_province": "NSW", + "postal_code": "2322", + "country": "Australia", + "longitude": 151.634767, + "latitude": -32.8064749, + "phone": "+61 444 537 490", + "website_url": "https://www.maltnhops.com.au/", + "state": "NSW", + "street": "26 Balook Drive" + }, + { + "id": "b6e3b8af-2f93-4520-8daa-5c0c9dc4e3c1", + "name": "Mammoth Brewing Company", + "brewery_type": "micro", + "address_1": "18 Lake Mary Rd", + "address_2": null, + "address_3": null, + "city": "Mammoth Lakes", + "state_province": "California", + "postal_code": "93546", + "country": "United States", + "longitude": -118.9835694, + "latitude": 37.64888165, + "phone": "7609347141", + "website_url": "http://www.mammothbrewingco.com", + "state": "California", + "street": "18 Lake Mary Rd" + }, + { + "id": "ecd253a8-292a-4233-908f-4141491d0d32", + "name": "Man Skirt Brewing", + "brewery_type": "micro", + "address_1": "144 Main St", + "address_2": null, + "address_3": null, + "city": "Hackettstown", + "state_province": "New Jersey", + "postal_code": "07840-1930", + "country": "United States", + "longitude": -74.8299453, + "latitude": 40.85378205, + "phone": "9089890286", + "website_url": "http://www.manskirtbrewing.com", + "state": "New Jersey", + "street": "144 Main St" + }, + { + "id": "a9c4d58a-f01d-4bec-9ebf-4ad61e8a6bcd", + "name": "ManaFirkin", + "brewery_type": "micro", + "address_1": "450 East Bay Ave Ste 2", + "address_2": null, + "address_3": null, + "city": "Manahawkin", + "state_province": "New Jersey", + "postal_code": "08050", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6097564798", + "website_url": null, + "state": "New Jersey", + "street": "450 East Bay Ave Ste 2" + }, + { + "id": "38040138-55a0-4f87-9601-0a5744186600", + "name": "Manayunk Brewing Co & Restaurant", + "brewery_type": "brewpub", + "address_1": "4120 Main St", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19127-1618", + "country": "United States", + "longitude": -75.2189308, + "latitude": 40.0223235, + "phone": "2154828220", + "website_url": "http://www.manayunkbrewery.com", + "state": "Pennsylvania", + "street": "4120 Main St" + }, + { + "id": "274b3acf-4f2c-40f0-8ac7-29506f2e8f5c", + "name": "Mancos Brewing Company", + "brewery_type": "brewpub", + "address_1": "484 E. Frontage Rd", + "address_2": null, + "address_3": null, + "city": "Mancos", + "state_province": "Colorado", + "postal_code": "81328-9079", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9705339761", + "website_url": "http://www.mancosbrewingcompany.com", + "state": "Colorado", + "street": "484 E. Frontage Rd" + }, + { + "id": "7d87f747-3b19-4648-9f34-6c0f2ff07b34", + "name": "Mandatory Fun Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Marietta", + "state_province": "Georgia", + "postal_code": "30064", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9517955337", + "website_url": "http://www.vikingalchemist.com", + "state": "Georgia", + "street": null + }, + { + "id": "29f8aa88-0252-488b-9c6d-3bdfafbbf455", + "name": "Manfish Brewing", + "brewery_type": "micro", + "address_1": "19611 276th Ave SE", + "address_2": null, + "address_3": null, + "city": "Issaquah", + "state_province": "Washington", + "postal_code": "98027-8292", + "country": "United States", + "longitude": -121.9732919, + "latitude": 47.42561663, + "phone": "4255847264", + "website_url": "http://www.manfishbrewing.com", + "state": "Washington", + "street": "19611 276th Ave SE" + }, + { + "id": "1bd5d598-c751-4438-bc01-7a7adf6cdb92", + "name": "Manifest Beer Company", + "brewery_type": "micro", + "address_1": "740 Willamette St", + "address_2": null, + "address_3": null, + "city": "Eugene", + "state_province": "Oregon", + "postal_code": "97401-2934", + "country": "United States", + "longitude": -123.0928507, + "latitude": 44.05174833, + "phone": "5412067232", + "website_url": "http://www.manifestbeer.com", + "state": "Oregon", + "street": "740 Willamette St" + }, + { + "id": "b8af95f3-2057-40d5-ac94-c388f2f639e6", + "name": "Manitou Brewing Company", + "brewery_type": "brewpub", + "address_1": "725 Manitou Ave", + "address_2": null, + "address_3": null, + "city": "Manitou Springs", + "state_province": "Colorado", + "postal_code": "80829-1809", + "country": "United States", + "longitude": -104.9157413, + "latitude": 38.8569869, + "phone": "7192827709", + "website_url": "http://www.manitou-brewing.com", + "state": "Colorado", + "street": "725 Manitou Ave" + }, + { + "id": "03f6dd60-d50e-4053-94db-1e83d087333f", + "name": "Mankato Brewery", + "brewery_type": "micro", + "address_1": "1119 Center St", + "address_2": null, + "address_3": null, + "city": "North Mankato", + "state_province": "Minnesota", + "postal_code": "56003-2108", + "country": "United States", + "longitude": -94.013784, + "latitude": 44.18144279, + "phone": "5073862337", + "website_url": "http://www.mankatobrewery.com", + "state": "Minnesota", + "street": "1119 Center St" + }, + { + "id": "7167267a-7a89-448d-8586-9caad8d72bdb", + "name": "Manor Hill Brewing", + "brewery_type": "micro", + "address_1": "4411 Manor Ln", + "address_2": null, + "address_3": null, + "city": "Ellicott City", + "state_province": "Maryland", + "postal_code": "21042-6111", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4109977771", + "website_url": "http://www.manorhillbrewing.com", + "state": "Maryland", + "street": "4411 Manor Ln" + }, + { + "id": "2b21af13-3882-4ded-9acd-340b81cb5a70", + "name": "ManRock Brewing", + "brewery_type": "brewpub", + "address_1": "1750 El Camino Real Ste A", + "address_2": null, + "address_3": null, + "city": "Grover Beach", + "state_province": "California", + "postal_code": "93433-1416", + "country": "United States", + "longitude": -120.6082797, + "latitude": 35.12963742, + "phone": "7022172826", + "website_url": "http://www.manrockbrewing.com", + "state": "California", + "street": "1750 El Camino Real Ste A" + }, + { + "id": "129dfd95-492b-443d-af67-dd03bef8a157", + "name": "Mantorville Brewing Co LLC", + "brewery_type": "contract", + "address_1": "101 5th St E", + "address_2": null, + "address_3": null, + "city": "Mantorville", + "state_province": "Minnesota", + "postal_code": "55955-8087", + "country": "United States", + "longitude": -92.753035, + "latitude": 44.067031, + "phone": "6513870708", + "website_url": "http://www.mantorvillebeer.com", + "state": "Minnesota", + "street": "101 5th St E" + }, + { + "id": "8f13ef71-9339-4aec-9bc7-b9e8e2d5d806", + "name": "Mantra Artisan Ales", + "brewery_type": "micro", + "address_1": "216 Noah Dr Ste 140", + "address_2": null, + "address_3": null, + "city": "Franklin", + "state_province": "Tennessee", + "postal_code": "37064-4024", + "country": "United States", + "longitude": -86.866949, + "latitude": 35.893554, + "phone": "6156288776", + "website_url": "http://www.mantrabrewing.com", + "state": "Tennessee", + "street": "216 Noah Dr Ste 140" + }, + { + "id": "a0637ba4-fc85-4dd3-b1f2-e23e5ad5c862", + "name": "Manufaktura Piwowarska Złota Woda", + "brewery_type": "micro", + "address_1": "Sudecka", + "address_2": null, + "address_3": null, + "city": "Łomnica", + "state_province": "dolnośląskie", + "postal_code": "58-340", + "country": "Poland", + "longitude": 16.3447144, + "latitude": 50.6793293, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Sudecka" + }, + { + "id": "fc9e541f-a40c-4e2c-bc42-561194e654d7", + "name": "MAP Brewing Company", + "brewery_type": "brewpub", + "address_1": "510 Manley Rd", + "address_2": null, + "address_3": null, + "city": "Bozeman", + "state_province": "Montana", + "postal_code": "59715-8784", + "country": "United States", + "longitude": -111.0400807, + "latitude": 45.7033199, + "phone": "4065874070", + "website_url": "http://www.mapbrewing.com", + "state": "Montana", + "street": "510 Manley Rd" + }, + { + "id": "d140a6a7-8618-4302-b7ca-d55880904a84", + "name": "Maple Branch Craft Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fort Worth", + "state_province": "Texas", + "postal_code": "76133-1226", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3149108854", + "website_url": "https://www.maplebranchbrew.com/", + "state": "Texas", + "street": null + }, + { + "id": "c806e91b-2179-46f1-ab2c-390291ed7cba", + "name": "Maple Island Brewing", + "brewery_type": "micro", + "address_1": "225 Main St N", + "address_2": null, + "address_3": null, + "city": "Stillwater", + "state_province": "Minnesota", + "postal_code": "55082-5021", + "country": "United States", + "longitude": -92.80653912, + "latitude": 45.0577993, + "phone": "6514300044", + "website_url": "http://www.mapleislandbrewing.com", + "state": "Minnesota", + "street": "225 Main St N" + }, + { + "id": "2b99e526-9f10-4e4d-bbfc-5890c7e4e69c", + "name": "Maple Lawn Brewery", + "brewery_type": "micro", + "address_1": "110 Mulberry Ave", + "address_2": null, + "address_3": null, + "city": "Pomeroy", + "state_province": "Ohio", + "postal_code": "45769-1004", + "country": "United States", + "longitude": -82.034268, + "latitude": 39.027513, + "phone": "7406915018", + "website_url": "http://www.maplelawnbrew.com", + "state": "Ohio", + "street": "110 Mulberry Ave" + }, + { + "id": "a1a02e31-20d5-47dc-8a57-607f4b6d77e4", + "name": "Maplewood Brewing Company", + "brewery_type": "micro", + "address_1": "2717 N Maplewood Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60647-1930", + "country": "United States", + "longitude": -87.69106414, + "latitude": 41.93075205, + "phone": "7732701061", + "website_url": "http://www.maplewoodbrew.com", + "state": "Illinois", + "street": "2717 N Maplewood Ave" + }, + { + "id": "45a4d916-2bc4-4e46-8d7a-d7e994f0d3fb", + "name": "Marble Brewery - Mav Lab", + "brewery_type": "micro", + "address_1": "9904 Montgomery Blvd NE", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87111-3554", + "country": "United States", + "longitude": -106.5308452, + "latitude": 35.13056812, + "phone": "5053234030", + "website_url": null, + "state": "New Mexico", + "street": "9904 Montgomery Blvd NE" + }, + { + "id": "90ecf47b-00b7-4b34-8ce3-2a704d6eddd6", + "name": "Marble Brewery - Production", + "brewery_type": "regional", + "address_1": "111 Marble Ave NW", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87102-2315", + "country": "United States", + "longitude": -106.6467287, + "latitude": 35.0928224, + "phone": "5052432739", + "website_url": "http://www.marblebrewery.com", + "state": "New Mexico", + "street": "111 Marble Ave NW" + }, + { + "id": "2f2409c0-09db-4b7b-b68d-4eb5076226bc", + "name": "Marblehead Brewing Company", + "brewery_type": "micro", + "address_1": "124 Pleasant St", + "address_2": null, + "address_3": null, + "city": "Marblehead", + "state_province": "Massachusetts", + "postal_code": "01945", + "country": "United States", + "longitude": -70.8573661, + "latitude": 42.50125386, + "phone": "7817970211", + "website_url": "http://www.marbleheadbrewing.co", + "state": "Massachusetts", + "street": "124 Pleasant St" + }, + { + "id": "09c1d107-87d3-491f-9968-7591abf6010a", + "name": "MARCA BREWING", + "brewery_type": "micro", + "address_1": "3−7−28 Kita-Horie 1F", + "address_2": null, + "address_3": null, + "city": "Osaka", + "state_province": "Osaka", + "postal_code": "550-0014", + "country": "Japan", + "longitude": 135.4886683, + "latitude": 34.67439921, + "phone": "81667109487", + "website_url": "https://beermarca.com/", + "state": "Osaka", + "street": "3−7−28 Kita-Horie 1F" + }, + { + "id": "8acae3ab-9840-4619-9f8b-873d262ff38e", + "name": "March First Brewing", + "brewery_type": "brewpub", + "address_1": "7885 E Kemper Rd", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45249-1622", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5135620759", + "website_url": "http://www.marchfirstbrewing.com", + "state": "Ohio", + "street": "7885 E Kemper Rd" + }, + { + "id": "efb2d5d8-8c2c-4e53-adec-156c22f79eed", + "name": "March Hare Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Parker", + "state_province": "Colorado", + "postal_code": "80134-3627", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3039606020", + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "c440f494-5670-4510-9624-d1707fa1e2b7", + "name": "Mare Island Brewing Co.", + "brewery_type": "brewpub", + "address_1": "289 Mare Island Way", + "address_2": null, + "address_3": null, + "city": "Vallejo", + "state_province": "California", + "postal_code": "94590-5801", + "country": "United States", + "longitude": -122.2631011, + "latitude": 38.0998706, + "phone": "7075563000", + "website_url": "http://www.mareislandbrewingco.com", + "state": "California", + "street": "289 Mare Island Way" + }, + { + "id": "10097114-a562-461e-ba17-951bda50a57c", + "name": "Margaret River Beer Co.", + "brewery_type": "micro", + "address_1": "35 Bussell Highway", + "address_2": null, + "address_3": null, + "city": "Margaret River", + "state_province": "WA", + "postal_code": "6285", + "country": "Australia", + "longitude": 115.0747748, + "latitude": -33.9428791, + "phone": "+61 8 9757 2614", + "website_url": "http://margaretriverbeer.co/", + "state": "WA", + "street": "35 Bussell Highway" + }, + { + "id": "6ec5c9d0-34df-4a2e-b041-ff956ce3d98a", + "name": "Marietta Brewing Co", + "brewery_type": "brewpub", + "address_1": "167 Front St", + "address_2": null, + "address_3": null, + "city": "Marietta", + "state_province": "Ohio", + "postal_code": "45750-3125", + "country": "United States", + "longitude": -81.45339993, + "latitude": 39.41184635, + "phone": "7403732739", + "website_url": "http://www.mariettabrewingcompany.com", + "state": "Ohio", + "street": "167 Front St" + }, + { + "id": "36d25eb4-d6b7-4783-bce1-568b5839f402", + "name": "Marin Brewing Co", + "brewery_type": "brewpub", + "address_1": "1809 Larkspur Landing Cir", + "address_2": null, + "address_3": null, + "city": "Larkspur", + "state_province": "California", + "postal_code": "94939-1801", + "country": "United States", + "longitude": -122.5068874, + "latitude": 37.9458177, + "phone": "4154614677", + "website_url": "http://www.marinbrewing.com", + "state": "California", + "street": "1809 Larkspur Landing Cir" + }, + { + "id": "f2e26a12-0265-4335-91fe-c04f7035ee4b", + "name": "Maritime Pacific Brewing Co", + "brewery_type": "micro", + "address_1": "1111 NW Ballard Way", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98107-4639", + "country": "United States", + "longitude": -122.371641, + "latitude": 47.66347198, + "phone": "2067826181", + "website_url": "http://www.maritimebrewery.com", + "state": "Washington", + "street": "1111 NW Ballard Way" + }, + { + "id": "e9673697-3229-45ee-bab1-6889e63ccffe", + "name": "Mark Twain Brewing Company", + "brewery_type": "brewpub", + "address_1": "422 N Main St", + "address_2": null, + "address_3": null, + "city": "Hannibal", + "state_province": "Missouri", + "postal_code": "63401-3324", + "country": "United States", + "longitude": -91.35744225, + "latitude": 39.71293685, + "phone": "5734061300", + "website_url": "http://www.marktwainbrewery.com", + "state": "Missouri", + "street": "422 N Main St" + }, + { + "id": "1cf8e00c-e42d-428a-8be5-d8fdfeccc21e", + "name": "Marker 48 Brewing LLC", + "brewery_type": "micro", + "address_1": "12147 Cortez Blvd", + "address_2": null, + "address_3": null, + "city": "Brooksville", + "state_province": "Florida", + "postal_code": "34613-5551", + "country": "United States", + "longitude": -82.4012824, + "latitude": 28.5396995, + "phone": "3526062509", + "website_url": "http://www.marker48.com", + "state": "Florida", + "street": "12147 Cortez Blvd" + }, + { + "id": "c87c9776-065c-4ce0-8042-9113c7995915", + "name": "Market Cross Pub & Brewery", + "brewery_type": "micro", + "address_1": "113 N Hanover St", + "address_2": null, + "address_3": null, + "city": "Carlisle", + "state_province": "Pennsylvania", + "postal_code": "17013-2422", + "country": "United States", + "longitude": -77.18872886, + "latitude": 40.20335743, + "phone": "7172581234", + "website_url": "http://www.marketcrosspub.com", + "state": "Pennsylvania", + "street": "113 N Hanover St" + }, + { + "id": "cbff0c83-0ea9-4114-bb4c-96d372c21365", + "name": "Market Garden Brewery", + "brewery_type": "micro", + "address_1": "1849 W 24th St", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44113", + "country": "United States", + "longitude": -81.70272815, + "latitude": 41.48573746, + "phone": "2166214000", + "website_url": null, + "state": "Ohio", + "street": "1849 W 24th St" + }, + { + "id": "2634ae09-4e13-4aa7-b0f1-dfcecf935a42", + "name": "Market Garden Brewery", + "brewery_type": "micro", + "address_1": "1947 W 25th St", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44113-3418", + "country": "United States", + "longitude": -81.7036495, + "latitude": 41.4848964, + "phone": "2166214000", + "website_url": "http://www.marketgardenbrewery.com", + "state": "Ohio", + "street": "1947 W 25th St" + }, + { + "id": "d14e2dee-999d-4983-a9cd-5d74d35af35b", + "name": "Market Street Brewing Co", + "brewery_type": "brewpub", + "address_1": "63 W Market St # 65", + "address_2": null, + "address_3": null, + "city": "Corning", + "state_province": "New York", + "postal_code": "14830-2526", + "country": "United States", + "longitude": -77.0571571, + "latitude": 42.143984, + "phone": "6079362337", + "website_url": "http://www.936-beer.com", + "state": "New York", + "street": "63 W Market St # 65" + }, + { + "id": "db1b4d4d-31e9-468d-8fae-2c033f6fcbe4", + "name": "Market Street Public House", + "brewery_type": "brewpub", + "address_1": "200 Market St", + "address_2": null, + "address_3": null, + "city": "Denton", + "state_province": "Maryland", + "postal_code": "21629-1037", + "country": "United States", + "longitude": -75.831804, + "latitude": 38.886037, + "phone": "4104794720", + "website_url": "http://www.marketstreet.pub", + "state": "Maryland", + "street": "200 Market St" + }, + { + "id": "e8c1c4c5-6835-418a-af97-d85a7e73335f", + "name": "Marley's Brewery", + "brewery_type": "brewpub", + "address_1": "1323 Columbia Blvd", + "address_2": null, + "address_3": null, + "city": "Bloomsburg", + "state_province": "Pennsylvania", + "postal_code": "17815-8860", + "country": "United States", + "longitude": -76.4477386, + "latitude": 41.0013964, + "phone": "5707849600", + "website_url": "http://www.marleysbrewery.com", + "state": "Pennsylvania", + "street": "1323 Columbia Blvd" + }, + { + "id": "05330622-853a-411b-8e86-a8c167bf58ae", + "name": "Marsh Island Brewing Company", + "brewery_type": "micro", + "address_1": "2 Main St", + "address_2": null, + "address_3": null, + "city": "Orono", + "state_province": "Maine", + "postal_code": "04473-4004", + "country": "United States", + "longitude": -68.671416, + "latitude": 44.884496, + "phone": "2078661277", + "website_url": "http://www.marshislandbrewing.com", + "state": "Maine", + "street": "2 Main St" + }, + { + "id": "3abc62ca-39c8-4fb3-a9bd-9bc343bf5ea2", + "name": "Marshall Brewing Co, LLC", + "brewery_type": "micro", + "address_1": "1742 E 6th St", + "address_2": null, + "address_3": null, + "city": "Tulsa", + "state_province": "Oklahoma", + "postal_code": "74104", + "country": "United States", + "longitude": -95.9650788, + "latitude": 36.1516146, + "phone": "9182928781", + "website_url": "http://www.marshallbrewing.com", + "state": "Oklahoma", + "street": "1742 E 6th St" + }, + { + "id": "f4fee96e-e540-44f0-9e7a-177758d1f2ec", + "name": "Marshall Wharf Brewing Co", + "brewery_type": "micro", + "address_1": "40 Marshall Wharf", + "address_2": null, + "address_3": null, + "city": "Belfast", + "state_province": "Maine", + "postal_code": "04915-6835", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2073381707", + "website_url": "http://www.marshallwharf.com", + "state": "Maine", + "street": "40 Marshall Wharf" + }, + { + "id": "40add606-afd1-430a-b274-2af693e0e5aa", + "name": "Martha's Exchange Restaurant and Brewery", + "brewery_type": "brewpub", + "address_1": "185 Main St", + "address_2": null, + "address_3": null, + "city": "Nashua", + "state_province": "New Hampshire", + "postal_code": "03060-2701", + "country": "United States", + "longitude": -71.46548181, + "latitude": 42.7604446, + "phone": "6038838781", + "website_url": "http://www.marthas-exchange.com", + "state": "New Hampshire", + "street": "185 Main St" + }, + { + "id": "1c357f75-dc18-43cf-bcc4-45e1089b6086", + "name": "Martin City Brewing Company", + "brewery_type": "micro", + "address_1": "500 E 135th St", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64145-1672", + "country": "United States", + "longitude": -94.590214, + "latitude": 38.882691, + "phone": "8162682222", + "website_url": "http://www.martincitybrewing.com", + "state": "Missouri", + "street": "500 E 135th St" + }, + { + "id": "e64276ac-2aa7-404a-a538-212734a0eb84", + "name": "Martin City Brewing Company Pizza and Taproom", + "brewery_type": "brewpub", + "address_1": "354 SW Blue Pkwy", + "address_2": null, + "address_3": null, + "city": "Lees Summit", + "state_province": "Missouri", + "postal_code": "64063", + "country": "United States", + "longitude": -94.388546, + "latitude": 38.916883, + "phone": "8164345100", + "website_url": "http://www.martincitybrewingcompany.com", + "state": "Missouri", + "street": "354 SW Blue Pkwy" + }, + { + "id": "90ea9a74-74a3-46b7-bada-c336227ef480", + "name": "Martin House Brewing Company", + "brewery_type": "micro", + "address_1": "220 S Sylvania Ave Ste 209", + "address_2": null, + "address_3": null, + "city": "Fort Worth", + "state_province": "Texas", + "postal_code": "76111-2232", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8172220177", + "website_url": "http://www.martinhousebrewing.com", + "state": "Texas", + "street": "220 S Sylvania Ave Ste 209" + }, + { + "id": "a74e31ee-d113-4a2b-9daf-5d1c6a06aefb", + "name": "Marz Community Brewing", + "brewery_type": "proprietor", + "address_1": "3630 S Iron St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60609", + "country": "United States", + "longitude": -87.6595253, + "latitude": 41.827819, + "phone": null, + "website_url": "http://www.marzbrewing.com", + "state": "Illinois", + "street": "3630 S Iron St" + }, + { + "id": "d73817c1-57a4-403a-89d4-00533aecf05d", + "name": "Marzoni's Brick Oven and Brewery", + "brewery_type": "brewpub", + "address_1": "165 Patch Way Rd", + "address_2": null, + "address_3": null, + "city": "Duncansville", + "state_province": "Pennsylvania", + "postal_code": "16635-8431", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8146951300", + "website_url": "http://www.marzonis.com", + "state": "Pennsylvania", + "street": "165 Patch Way Rd" + }, + { + "id": "7239ab18-8f23-4c56-9b53-27187bc0ab6b", + "name": "Masala Bar", + "brewery_type": "bar", + "address_1": "723 East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "459071", + "country": "Singapore", + "longitude": 1.3125188161613, + "latitude": 103.922957, + "phone": "+65 6282 4648", + "website_url": "https://www.masalaabar.com/", + "state": "Singapore", + "street": "723 East Coast Road" + }, + { + "id": "e5f2a11d-9da7-40ad-b4c1-7ec2da6c7083", + "name": "Mascher Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Aurora", + "state_province": "Colorado", + "postal_code": "80014-8226", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8329482020", + "website_url": "http://www.mascher.beer/", + "state": "Colorado", + "street": null + }, + { + "id": "57d8c1a8-2932-4735-88d1-eba02bd05e4e", + "name": "Mash Brewing Company", + "brewery_type": "closed", + "address_1": "122 N George St", + "address_2": null, + "address_3": null, + "city": "Charles Town", + "state_province": "West Virginia", + "postal_code": "25414-1502", + "country": "United States", + "longitude": -77.86015133, + "latitude": 39.28926882, + "phone": "6812521788", + "website_url": "http://www.mashbrewingcompany.com", + "state": "West Virginia", + "street": "122 N George St" + }, + { + "id": "607f2e45-a9c3-43bd-9c1b-7595ab938204", + "name": "Mash Brewing Company", + "brewery_type": "micro", + "address_1": "10250 West Swan Road", + "address_2": null, + "address_3": null, + "city": "Henley Brook", + "state_province": "WA", + "postal_code": "6055", + "country": "Australia", + "longitude": 116.0010891, + "latitude": -31.8087088, + "phone": "+61 8 9296 5588", + "website_url": "http://www.mashbrewing.com.au/", + "state": "WA", + "street": "10250 West Swan Road" + }, + { + "id": "43d60f58-3534-41f2-b65c-905f8dd67ca4", + "name": "Mash Cult Brewing", + "brewery_type": "micro", + "address_1": "6823 Burlington Pike", + "address_2": null, + "address_3": null, + "city": "Florence", + "state_province": "Kentucky", + "postal_code": "41042-1616", + "country": "United States", + "longitude": -84.6436665, + "latitude": 39.0008541, + "phone": "8593714466", + "website_url": null, + "state": "Kentucky", + "street": "6823 Burlington Pike" + }, + { + "id": "b41d9c2b-b22e-4744-acdc-6ab0c5ca383f", + "name": "Mash House Restaurant & Brewery", + "brewery_type": "brewpub", + "address_1": "4150 Sycamore Dairy Rd", + "address_2": null, + "address_3": null, + "city": "Fayetteville", + "state_province": "North Carolina", + "postal_code": "28303-3459", + "country": "United States", + "longitude": -78.95654831, + "latitude": 35.07468171, + "phone": "9108679223", + "website_url": "http://www.themashhouse.com", + "state": "North Carolina", + "street": "4150 Sycamore Dairy Rd" + }, + { + "id": "24ca52df-8487-4992-aaa9-f5e36a3f5297", + "name": "Mash Lab Brewing", + "brewery_type": "micro", + "address_1": "4395 Highland Meadows Pkwy", + "address_2": null, + "address_3": null, + "city": "Windsor", + "state_province": "Colorado", + "postal_code": "80550-8007", + "country": "United States", + "longitude": -104.9677936, + "latitude": 40.4386998, + "phone": "9702629225", + "website_url": "http://www.mashlabbrewing.com", + "state": "Colorado", + "street": "4395 Highland Meadows Pkwy" + }, + { + "id": "6eda5cd6-c8c7-4297-bd3f-b3e9aa2013a0", + "name": "Mash Monkeys Brewing Company", + "brewery_type": "micro", + "address_1": "920 U.S. Highway 1 Unit 1", + "address_2": null, + "address_3": null, + "city": "Sebastian", + "state_province": "Florida", + "postal_code": "32958", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7725716283", + "website_url": "http://Www.mashmonkeysbrewing.com", + "state": "Florida", + "street": "920 U.S. Highway 1 Unit 1" + }, + { + "id": "5e5efe9d-03bb-44f0-838e-b8e0cd2c99a2", + "name": "MashCraft Brewing", + "brewery_type": "micro", + "address_1": "1140 N State Road 135 Ste M", + "address_2": null, + "address_3": null, + "city": "Greenwood", + "state_province": "Indiana", + "postal_code": "46142-1016", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3172154578", + "website_url": "http://www.mashcraft.com", + "state": "Indiana", + "street": "1140 N State Road 135 Ste M" + }, + { + "id": "ea4ffed3-de2d-49e8-a7f4-ea25793d5d67", + "name": "Maskam Brewing Company", + "brewery_type": "micro", + "address_1": "11 Hoog Street", + "address_2": null, + "address_3": null, + "city": "Vredendal", + "state_province": "Western Cape", + "postal_code": "8160", + "country": "South Africa", + "longitude": 18.5021, + "latitude": -31.6705, + "phone": "+27 27 213 5410", + "website_url": "https://www.maskambrewing.co.za/", + "state": "Western Cape", + "street": "11 Hoog Street" + }, + { + "id": "c816f568-d053-473a-8820-fa7cf9b8fa7f", + "name": "Mason Ale Works", + "brewery_type": "micro", + "address_1": "2002 S Coast Hwy", + "address_2": null, + "address_3": null, + "city": "Oceanside", + "state_province": "California", + "postal_code": "92054-6535", + "country": "United States", + "longitude": -117.358767, + "latitude": 33.171842, + "phone": "8583958809", + "website_url": "http://www.masonaleworks.com", + "state": "California", + "street": "2002 S Coast Hwy" + }, + { + "id": "c73bb5c8-f1cc-4554-9b58-9878ce1c8554", + "name": "Mason City Brewing", + "brewery_type": "micro", + "address_1": "28 E State St", + "address_2": null, + "address_3": null, + "city": "Mason City", + "state_province": "Iowa", + "postal_code": "50401-3318", + "country": "United States", + "longitude": -93.20033373, + "latitude": 43.15160788, + "phone": "6414231080", + "website_url": "http://www.masoncitybrewing.com", + "state": "Iowa", + "street": "28 E State St" + }, + { + "id": "7ed9bc5e-2062-476c-810f-8c5a9833df9d", + "name": "Mason Jar Lager Co.", + "brewery_type": "micro", + "address_1": "341 Broad St # 151", + "address_2": null, + "address_3": null, + "city": "Fuquay Varina", + "state_province": "North Carolina", + "postal_code": "27526-1703", + "country": "United States", + "longitude": -78.8026696, + "latitude": 35.6015909, + "phone": "9195575303", + "website_url": "http://www.masonjarlagerco.com", + "state": "North Carolina", + "street": "341 Broad St # 151" + }, + { + "id": "4b1d8776-79c5-40c4-9baf-a6ba63f9ba2a", + "name": "Mason's Brewing Company", + "brewery_type": "micro", + "address_1": "15 Hardy St", + "address_2": null, + "address_3": null, + "city": "Brewer", + "state_province": "Maine", + "postal_code": "04412-2207", + "country": "United States", + "longitude": -68.76957092, + "latitude": 44.79146596, + "phone": "2079896300", + "website_url": "http://www.masonsbrewingcompany.com", + "state": "Maine", + "street": "15 Hardy St" + }, + { + "id": "d124427e-32a9-4946-a033-6fe93b09d6d8", + "name": "Mast Landing Brewing Company", + "brewery_type": "micro", + "address_1": "920 Main St", + "address_2": null, + "address_3": null, + "city": "Westbrook", + "state_province": "Maine", + "postal_code": "04092-2862", + "country": "United States", + "longitude": -70.36920486, + "latitude": 43.676947, + "phone": "2077126051", + "website_url": "http://www.mastlandingbrewing.com", + "state": "Maine", + "street": "920 Main St" + }, + { + "id": "c4ef8974-6ae8-43c3-9e51-01f8e0317622", + "name": "Masters BrewHouse", + "brewery_type": "brewpub", + "address_1": "831 S Main St Suite M", + "address_2": null, + "address_3": null, + "city": "Deer Park", + "state_province": "Washington", + "postal_code": "99006", + "country": "United States", + "longitude": -117.4756027, + "latitude": 47.94576147, + "phone": "5096353508", + "website_url": "https://deerparkcraftbeer.com", + "state": "Washington", + "street": "831 S Main St Suite M" + }, + { + "id": "cefd9035-5695-4a1e-97bb-8d449468797a", + "name": "Masthead Brewing Co", + "brewery_type": "brewpub", + "address_1": "1261 Superior Ave E", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44114-3204", + "country": "United States", + "longitude": -81.6853889, + "latitude": 41.5041432, + "phone": "4192604770", + "website_url": "http://www.mastheadbrewingco.com", + "state": "Ohio", + "street": "1261 Superior Ave E" + }, + { + "id": "8342cc4f-2867-423c-be9c-5384b7e8a3f7", + "name": "Mastiff Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Middle River", + "state_province": "Maryland", + "postal_code": "21220-2818", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3023127011", + "website_url": null, + "state": "Maryland", + "street": null + }, + { + "id": "95ace274-f4ca-4490-a5f3-0f5e68930f84", + "name": "Mastry's Brewing Co", + "brewery_type": "micro", + "address_1": "7701 Blind Pass Rd", + "address_2": null, + "address_3": null, + "city": "St Pete Beach", + "state_province": "Florida", + "postal_code": "33706-1726", + "country": "United States", + "longitude": -82.751357, + "latitude": 27.74434, + "phone": "7272028045", + "website_url": "http://www.mastrysbrewingco.com", + "state": "Florida", + "street": "7701 Blind Pass Rd" + }, + { + "id": "304126ea-a12e-4685-9e26-be36742f8d64", + "name": "Matanuska Brewing Company - Downtown Brewpub", + "brewery_type": "brewpub", + "address_1": "535 W 3rd Ave", + "address_2": null, + "address_3": null, + "city": "Anchorage", + "state_province": "Alaska", + "postal_code": "99501", + "country": "United States", + "longitude": -149.893012, + "latitude": 61.219744, + "phone": "9078656995", + "website_url": "https://matanuskabrewingcompany.com", + "state": "Alaska", + "street": "535 W 3rd Ave" + }, + { + "id": "3fba9614-8dae-420b-b024-4f0387278a64", + "name": "Matanuska Brewing Company - Eagle River", + "brewery_type": "brewpub", + "address_1": "11901 Old Glenn Hwy", + "address_2": null, + "address_3": null, + "city": "Eagle River", + "state_province": "Alaska", + "postal_code": "99577", + "country": "United States", + "longitude": -149.568403, + "latitude": 61.328403, + "phone": "9076963000", + "website_url": "https://matanuskabrewingcompany.com", + "state": "Alaska", + "street": "11901 Old Glenn Hwy" + }, + { + "id": "3515eba4-8e81-4e9a-924d-a9b03ffe0072", + "name": "Matanuska Brewing Company - Midtown Brewpub", + "brewery_type": "brewpub", + "address_1": "2830 C St", + "address_2": null, + "address_3": null, + "city": "Anchorage", + "state_province": "Alaska", + "postal_code": "99503", + "country": "United States", + "longitude": -149.888563, + "latitude": 61.195228, + "phone": "9076772531", + "website_url": "https://matanuskabrewingcompany.com", + "state": "Alaska", + "street": "2830 C St" + }, + { + "id": "d9913c2c-03cb-435b-b091-3576446e23b9", + "name": "Matchless Brewing", + "brewery_type": "micro", + "address_1": "8036 River Dr SE Ste 208", + "address_2": null, + "address_3": null, + "city": "Tumwater", + "state_province": "Washington", + "postal_code": "98501-6814", + "country": "United States", + "longitude": -122.884827, + "latitude": 46.97137083, + "phone": "5033173284", + "website_url": "http://www.matchlessbrewing.com", + "state": "Washington", + "street": "8036 River Dr SE Ste 208" + }, + { + "id": "452434ec-1c9b-4167-a29c-ccb99ea7df05", + "name": "Matchstick Brewing Company", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Coeur D Alene", + "state_province": "Idaho", + "postal_code": "83815", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.matchstickbrewing.com", + "state": "Idaho", + "street": null + }, + { + "id": "08bbf721-d074-4271-9878-b52d03e284df", + "name": "Matchwood Brewing Company", + "brewery_type": "brewpub", + "address_1": "513 Oak St", + "address_2": null, + "address_3": null, + "city": "Sandpoint", + "state_province": "Idaho", + "postal_code": "83864-3201", + "country": "United States", + "longitude": -116.554588, + "latitude": 48.277777, + "phone": "2087182739", + "website_url": "http://www.matchwoodbrewing.com", + "state": "Idaho", + "street": "513 Oak St" + }, + { + "id": "1dba5e88-52ec-4d47-a3aa-9d955b4374ea", + "name": "Mathews Brewing Company", + "brewery_type": "micro", + "address_1": "130 S H St", + "address_2": null, + "address_3": null, + "city": "Lake Worth", + "state_province": "Florida", + "postal_code": "33460-4431", + "country": "United States", + "longitude": -80.05819245, + "latitude": 26.6136144, + "phone": "5618123738", + "website_url": "http://www.mathewsbrewingcompany.com", + "state": "Florida", + "street": "130 S H St" + }, + { + "id": "1e58eb19-79ca-4820-86b4-e14c0ec2b7bb", + "name": "Matilda Bay", + "brewery_type": "micro", + "address_1": "336 Maroondah Highway", + "address_2": null, + "address_3": null, + "city": "Healesville", + "state_province": "VIC", + "postal_code": "3777", + "country": "Australia", + "longitude": 145.5229098, + "latitude": -37.6513807, + "phone": "+61 3 5957 3200", + "website_url": null, + "state": "VIC", + "street": "336 Maroondah Highway" + }, + { + "id": "343a98f9-2af7-4b2e-9f3b-03aadb366259", + "name": "Matilda Bay Brewing Company", + "brewery_type": "large", + "address_1": "50 Tope Street", + "address_2": null, + "address_3": null, + "city": "South Melbourne", + "state_province": "VIC", + "postal_code": "3205", + "country": "Australia", + "longitude": 144.9629367, + "latitude": -37.8305483, + "phone": "+61 3 8652 8325", + "website_url": "https://brewmanity.com.au/", + "state": "VIC", + "street": "50 Tope Street" + }, + { + "id": "0686cabe-b090-4b23-a821-2ae7c08c49c0", + "name": "Matties", + "brewery_type": "bar", + "address_1": "2535 Mountain City Hwy", + "address_2": null, + "address_3": null, + "city": "Elko", + "state_province": "Nevada", + "postal_code": "89801-4496", + "country": "United States", + "longitude": -115.793393, + "latitude": 40.836405, + "phone": "7757535100", + "website_url": "http://www.mattiesbar-n-grill.com/", + "state": "Nevada", + "street": "2535 Mountain City Hwy" + }, + { + "id": "a47e6f5c-22fb-4166-a10f-e5032764da84", + "name": "Maui Brewing Co - Kihei", + "brewery_type": "brewpub", + "address_1": "605 Lipoa Pkwy", + "address_2": null, + "address_3": null, + "city": "Kihei", + "state_province": "Hawaii", + "postal_code": "96753-6947", + "country": "United States", + "longitude": -156.4402411, + "latitude": 20.74961566, + "phone": "8082133002", + "website_url": "http://www.mauibrewingco.com", + "state": "Hawaii", + "street": "605 Lipoa Pkwy" + }, + { + "id": "1c2fd1ee-d81c-4408-a584-bbedc2a23c6e", + "name": "Maui Brewing Co - Lahaina", + "brewery_type": "brewpub", + "address_1": "4405 Honoapiilani Hwy Ste 217", + "address_2": null, + "address_3": null, + "city": "Lahaina", + "state_province": "Hawaii", + "postal_code": "96761-9272", + "country": "United States", + "longitude": -156.653963, + "latitude": 20.845329, + "phone": "8086693474", + "website_url": "http://www.mauibrewingco.com", + "state": "Hawaii", + "street": "4405 Honoapiilani Hwy Ste 217" + }, + { + "id": "4cfbbdc1-142e-4a66-8f3b-54bb830d2c20", + "name": "Maui Brewing Co - Waikiki", + "brewery_type": "brewpub", + "address_1": "2300 Kalakua Ave", + "address_2": null, + "address_3": null, + "city": "Honolulu", + "state_province": "Hawaii", + "postal_code": "96815", + "country": "United States", + "longitude": -157.826624, + "latitude": 21.278349, + "phone": "8088432739", + "website_url": "https://www.mauibrewingco.com", + "state": "Hawaii", + "street": "2300 Kalakua Ave" + }, + { + "id": "a1feb3da-eae6-4fa3-8972-73bb057798bc", + "name": "Maumee Bay Brewing Co", + "brewery_type": "brewpub", + "address_1": "27 Broadway St Ste A", + "address_2": null, + "address_3": null, + "city": "Toledo", + "state_province": "Ohio", + "postal_code": "43604-8701", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4192431302", + "website_url": "http://www.maumeebaybrewing.com", + "state": "Ohio", + "street": "27 Broadway St Ste A" + }, + { + "id": "10dcbe08-3216-43ef-bddc-1a5235bf68f1", + "name": "Maverick Ales & Lager", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60612", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4086051508", + "website_url": "http://www.maverickbrews.com", + "state": "Illinois", + "street": null + }, + { + "id": "e85f0bf7-91b9-4f63-9b69-4b78f516e8cb", + "name": "Max Lager's Wood Fired Grill & Brewery", + "brewery_type": "brewpub", + "address_1": "320 Peachtree St NE", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30308-3210", + "country": "United States", + "longitude": -84.38706074, + "latitude": 33.76333225, + "phone": "4045254400", + "website_url": "http://www.maxlagers.com", + "state": "Georgia", + "street": "320 Peachtree St NE" + }, + { + "id": "240ea2c7-bc2c-46ee-97e3-ed35ac6ed31e", + "name": "Max's Fanno Creek Brew Pub", + "brewery_type": "brewpub", + "address_1": "12562 SW Main St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97223-6195", + "country": "United States", + "longitude": -122.6771146, + "latitude": 45.5156226, + "phone": "5036249400", + "website_url": "http://www.maxsfannocreek.com", + "state": "Oregon", + "street": "12562 SW Main St" + }, + { + "id": "16a73b0d-7b12-4ba3-b43c-8d8e8e34489a", + "name": "Maxline Brewing", + "brewery_type": "micro", + "address_1": "2724 McClelland Dr Ste 190", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80525-2575", + "country": "United States", + "longitude": -105.0797489, + "latitude": 40.55059012, + "phone": "9702862855", + "website_url": "http://www.maxlinebrewing.com", + "state": "Colorado", + "street": "2724 McClelland Dr Ste 190" + }, + { + "id": "b970c0b3-ce7a-4058-921a-e82f4678dfa3", + "name": "Mayday Brewery", + "brewery_type": "micro", + "address_1": "521 Old Salem Rd Ste C", + "address_2": null, + "address_3": null, + "city": "Murfreesboro", + "state_province": "Tennessee", + "postal_code": "37129-5305", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6154799722", + "website_url": "http://www.maydaybrewery.com", + "state": "Tennessee", + "street": "521 Old Salem Rd Ste C" + }, + { + "id": "7d7f31a3-8e08-4cfc-b929-c545b41eaa05", + "name": "Mayflower Brewing Co", + "brewery_type": "micro", + "address_1": "12 Resnik Rd", + "address_2": null, + "address_3": null, + "city": "Plymouth", + "state_province": "Massachusetts", + "postal_code": "02360-7245", + "country": "United States", + "longitude": -70.71255496, + "latitude": 41.94926024, + "phone": "5087462674", + "website_url": "http://www.mayflowerbrewing.com", + "state": "Massachusetts", + "street": "12 Resnik Rd" + }, + { + "id": "13b89410-7391-4eee-9f99-38184e513ca5", + "name": "Mayhew Junction Brewing Company", + "brewery_type": "micro", + "address_1": "106 Eckford Dr", + "address_2": null, + "address_3": null, + "city": "Starkville", + "state_province": "Mississippi", + "postal_code": "39759-3710", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6625460510", + "website_url": "http://www.mayhewjunction.com", + "state": "Mississippi", + "street": "106 Eckford Dr" + }, + { + "id": "c3b2d49e-ba21-4142-9854-a0b49b739720", + "name": "Mazama Brewing Co", + "brewery_type": "micro", + "address_1": "33930 SE Eastgate Cir Unit A", + "address_2": null, + "address_3": null, + "city": "Corvallis", + "state_province": "Oregon", + "postal_code": "97333-2272", + "country": "United States", + "longitude": -123.226008, + "latitude": 44.56360936, + "phone": "15412301810", + "website_url": "http://www.mazamabrewing.com", + "state": "Oregon", + "street": "33930 SE Eastgate Cir Unit A" + }, + { + "id": "70972189-e029-4a8e-ba79-da86b66ba67e", + "name": "MBF Brewing Co", + "brewery_type": "closed", + "address_1": "530 W 7th St Apt 401", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90014-2507", + "country": "United States", + "longitude": -118.2564646, + "latitude": 34.04700723, + "phone": "8315217921", + "website_url": "http://www.MBFcompany.com", + "state": "California", + "street": "530 W 7th St Apt 401" + }, + { + "id": "c3e7b965-dfce-4765-9d5b-dd2d49b28e7a", + "name": "McArthur's Brew House", + "brewery_type": "micro", + "address_1": "2721 Front St", + "address_2": null, + "address_3": null, + "city": "Cuyahoga Falls", + "state_province": "Ohio", + "postal_code": "44221-1904", + "country": "United States", + "longitude": -81.47237058, + "latitude": 41.14618347, + "phone": "3308054600", + "website_url": "http://www.mcarthursbrewhouse.com", + "state": "Ohio", + "street": "2721 Front St" + }, + { + "id": "f46a3893-14c5-4830-ac6b-63510cc8429d", + "name": "McCall Brewing Co", + "brewery_type": "brewpub", + "address_1": "807 N 3rd St", + "address_2": null, + "address_3": null, + "city": "McCall", + "state_province": "Idaho", + "postal_code": "83638-3806", + "country": "United States", + "longitude": -116.097991, + "latitude": 44.904411, + "phone": "2086343309", + "website_url": "http://www.mccallbrew.com", + "state": "Idaho", + "street": "807 N 3rd St" + }, + { + "id": "8938798a-3cd6-4864-96a9-e6febf1b25be", + "name": "McClellan's Brewing Company", + "brewery_type": "brewpub", + "address_1": "1035 S Taft Hill Rd", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80521-4222", + "country": "United States", + "longitude": -105.1151806, + "latitude": 40.5737952, + "phone": "9705688473", + "website_url": "http://www.mcclellansbrewingcompany.com", + "state": "Colorado", + "street": "1035 S Taft Hill Rd" + }, + { + "id": "771010b0-2631-49c3-8821-034588bfbc7a", + "name": "McCoy's Public House", + "brewery_type": "closed", + "address_1": "4057 Pennsylvania Ave", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64111-3021", + "country": "United States", + "longitude": -94.5911729, + "latitude": 39.1002989, + "phone": "8169600866", + "website_url": "http://www.mccoyspublichouse.com", + "state": "Missouri", + "street": "4057 Pennsylvania Ave" + }, + { + "id": "c2b0f72c-c305-40b5-919e-19f7542f6609", + "name": "McFate Brewing Company", + "brewery_type": "brewpub", + "address_1": "1312 N Scottsdale Rd", + "address_2": null, + "address_3": null, + "city": "Scottsdale", + "state_province": "Arizona", + "postal_code": "85257-3488", + "country": "United States", + "longitude": -111.9254955, + "latitude": 33.658427, + "phone": "4806569100", + "website_url": "http://mcfatebrewing.com", + "state": "Arizona", + "street": "1312 N Scottsdale Rd" + }, + { + "id": "fb49a213-fa62-4889-acae-1146f3afc238", + "name": "McFate's Tap + Barrel", + "brewery_type": "brewpub", + "address_1": "7337 E Shea Blvd Ste 105", + "address_2": null, + "address_3": null, + "city": "Scottsdale", + "state_province": "Arizona", + "postal_code": "85260-6465", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4809941275", + "website_url": "http://www.fatebrewing.com", + "state": "Arizona", + "street": "7337 E Shea Blvd Ste 105" + }, + { + "id": "76768b9c-de50-4f63-a69a-2188a21fda51", + "name": "McFleshman's Public House", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Appleton", + "state_province": "Wisconsin", + "postal_code": "54911-5840", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4056270167", + "website_url": "http://www.mcfleshmans.com", + "state": "Wisconsin", + "street": null + }, + { + "id": "8df1dd63-af4f-4173-805a-3c1c22a4df2d", + "name": "McGuire's Irish Pub and Brewery - Destin", + "brewery_type": "brewpub", + "address_1": "33 Highway 98 E", + "address_2": null, + "address_3": null, + "city": "Destin", + "state_province": "Florida", + "postal_code": "32541-2309", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8506540567", + "website_url": "http://www.mcguiresirishpub.com", + "state": "Florida", + "street": "33 Highway 98 E" + }, + { + "id": "b29d754c-ba72-49ec-a6e7-d1cf054ebe17", + "name": "McGuire's Irish Pub and Brewery - Pensacola", + "brewery_type": "brewpub", + "address_1": "600 E Gregory St", + "address_2": null, + "address_3": null, + "city": "Pensacola", + "state_province": "Florida", + "postal_code": "32502-4153", + "country": "United States", + "longitude": -87.2024655, + "latitude": 30.4180618, + "phone": "8504336789", + "website_url": "http://www.mcguiresirishpub.com", + "state": "Florida", + "street": "600 E Gregory St" + }, + { + "id": "7edb5d33-d3af-4dc6-964f-6f90bd7e7908", + "name": "McHale's Brewhouse", + "brewery_type": "brewpub", + "address_1": "724 Ashland Ter", + "address_2": null, + "address_3": null, + "city": "Chattanooga", + "state_province": "Tennessee", + "postal_code": "37415-3536", + "country": "United States", + "longitude": -85.27573976, + "latitude": 35.11640583, + "phone": "4238772124", + "website_url": "http://www.mchalesbrewhouse.com", + "state": "Tennessee", + "street": "724 Ashland Ter" + }, + { + "id": "2b9e1914-2432-418d-972d-78ccdff2072b", + "name": "McHenry Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "McHenry", + "state_province": "Illinois", + "postal_code": "60050", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8154032212", + "website_url": null, + "state": "Illinois", + "street": null + }, + { + "id": "2556d5e3-25ee-4e46-b61d-6bcbb93f44b5", + "name": "McHenry Distillery", + "brewery_type": "micro", + "address_1": "229 Radnor Road", + "address_2": null, + "address_3": null, + "city": "Port Arthur", + "state_province": "TAS", + "postal_code": "7182", + "country": "Australia", + "longitude": 147.8047237, + "latitude": -43.1549612, + "phone": "+61 493 357 723", + "website_url": "http://www.mchenrydistillery.com.au/", + "state": "TAS", + "street": "229 Radnor Road" + }, + { + "id": "0e6bc707-ecba-4651-852f-45f698a1bceb", + "name": "McIntosh Orchards", + "brewery_type": "micro", + "address_1": "6431 107th Ave", + "address_2": null, + "address_3": null, + "city": "South Haven", + "state_province": "Michigan", + "postal_code": "49090-9369", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7078783734", + "website_url": "http://www.mcintoshorchards.com", + "state": "Michigan", + "street": "6431 107th Ave" + }, + { + "id": "d1ae1dec-b5f2-493d-bfc0-409d8d4f3101", + "name": "McIntyre Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Hermitage", + "state_province": "Tennessee", + "postal_code": "37076", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4065291183", + "website_url": "http://www.mcintyrebrew.com", + "state": "Tennessee", + "street": null + }, + { + "id": "45366282-0e7e-44ba-9aac-4cd9f4f82a8e", + "name": "McKenzie Brew House", + "brewery_type": "brewpub", + "address_1": "451 Wilmington Pike - W Chester Pike", + "address_2": null, + "address_3": null, + "city": "Glen Mills", + "state_province": "Pennsylvania", + "postal_code": "19342-1249", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6103619800", + "website_url": "http://www.mckenziebrewhouse.com", + "state": "Pennsylvania", + "street": "451 Wilmington Pike - W Chester Pike" + }, + { + "id": "20d49ccb-4a92-4c5d-90ff-ec3e363d8407", + "name": "McKenzie Brew House (#2)", + "brewery_type": "brewpub", + "address_1": "240 Lancaster Ave", + "address_2": null, + "address_3": null, + "city": "Malvern", + "state_province": "Pennsylvania", + "postal_code": "19355-1802", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6102962222", + "website_url": "http://www.mckenziebrewhouse.com", + "state": "Pennsylvania", + "street": "240 Lancaster Ave" + }, + { + "id": "aef95b1b-3201-4aa9-8b9e-9bf92bcca975", + "name": "McKenzie Brew House (#3)", + "brewery_type": "brewpub", + "address_1": "324 W Swedesford Rd", + "address_2": null, + "address_3": null, + "city": "Berwyn", + "state_province": "Pennsylvania", + "postal_code": "19312-1165", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6103619800", + "website_url": null, + "state": "Pennsylvania", + "street": "324 W Swedesford Rd" + }, + { + "id": "258023a7-eaa3-421d-b011-b6b341403388", + "name": "McKenzie Brewing Company", + "brewery_type": "brewpub", + "address_1": "199 E 5th Ave", + "address_2": null, + "address_3": null, + "city": "Eugene", + "state_province": "Oregon", + "postal_code": "97401-8715", + "country": "United States", + "longitude": -123.089843, + "latitude": 44.054404, + "phone": "5416862739", + "website_url": "http://www.steelheadbrewery.com", + "state": "Oregon", + "street": "199 E 5th Ave" + }, + { + "id": "1892d9b8-4037-4f23-87c5-6c4c8f093779", + "name": "McMenamins - Cedar Hills", + "brewery_type": "brewpub", + "address_1": "2885 SW Cedar Hills Blvd", + "address_2": null, + "address_3": null, + "city": "Beaverton", + "state_province": "Oregon", + "postal_code": "97005-1343", + "country": "United States", + "longitude": -122.8058983, + "latitude": 45.5013601, + "phone": "5036410151", + "website_url": null, + "state": "Oregon", + "street": "2885 SW Cedar Hills Blvd" + }, + { + "id": "1c4cb8bf-6529-4372-aa73-6bc063b90a65", + "name": "McMenamins Anderson School Brewery", + "brewery_type": "brewpub", + "address_1": "18607 Bothell Way NE", + "address_2": null, + "address_3": null, + "city": "Bothell", + "state_province": "Washington", + "postal_code": "98011-1928", + "country": "United States", + "longitude": -122.2080698, + "latitude": 47.76387772, + "phone": "4253980122", + "website_url": "http://www.mcmenamins.com/anderson-school", + "state": "Washington", + "street": "18607 Bothell Way NE" + }, + { + "id": "db962489-e1d3-4102-a8cd-85ad5cc9a02b", + "name": "McMenamins Breweries", + "brewery_type": "micro", + "address_1": "430 N Killingsworth St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97217-2441", + "country": "United States", + "longitude": -122.6708112, + "latitude": 45.5624447, + "phone": "5032230109", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "430 N Killingsworth St" + }, + { + "id": "a11222c9-a317-4cef-aaec-a1da131cb749", + "name": "McMenamins Concordia Brewery at Kennedy School", + "brewery_type": "brewpub", + "address_1": "5736 NE 33rd Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97211-7302", + "country": "United States", + "longitude": -122.6299694, + "latitude": 45.56447065, + "phone": "5032881937", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "5736 NE 33rd Ave" + }, + { + "id": "1467b102-9664-4df9-85e8-f2d0ae1e3508", + "name": "McMenamins Cornelius Pass Roadhouse", + "brewery_type": "brewpub", + "address_1": "4045 NE Cornelius Pass Rd", + "address_2": null, + "address_3": null, + "city": "Hillsboro", + "state_province": "Oregon", + "postal_code": "97124-9367", + "country": "United States", + "longitude": -122.9009845, + "latitude": 45.5490862, + "phone": "5036406174", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "4045 NE Cornelius Pass Rd" + }, + { + "id": "19d30f50-d7a9-4f8e-86dd-9ae9d3cbffa7", + "name": "McMenamins Crystal Ballroom Brewery", + "brewery_type": "brewpub", + "address_1": "1332 W Burnside St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97209-2612", + "country": "United States", + "longitude": -122.6850673, + "latitude": 45.5228146, + "phone": "5037785625", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "1332 W Burnside St" + }, + { + "id": "38d9665c-277c-46f5-9cd2-8dd2ebc5bdb2", + "name": "McMenamins East Vancouver Brewery", + "brewery_type": "brewpub", + "address_1": "1900B NE 162nd Ave Ste B107", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98684-3013", + "country": "United States", + "longitude": -122.5068563, + "latitude": 45.63739909, + "phone": "3606959033", + "website_url": "https://www.mcmenamins.com/east-vancouver", + "state": "Washington", + "street": "1900B NE 162nd Ave Ste B107" + }, + { + "id": "06d34341-3309-4023-978c-478285e8a391", + "name": "McMenamins Edgefield Brewery", + "brewery_type": "micro", + "address_1": "2126 SW Halsey St", + "address_2": null, + "address_3": null, + "city": "Troutdale", + "state_province": "Oregon", + "postal_code": "97060-1026", + "country": "United States", + "longitude": -122.4060641, + "latitude": 45.5368535, + "phone": "5036674352", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "2126 SW Halsey St" + }, + { + "id": "f588b69c-2537-4d6e-8560-9037a16b2af1", + "name": "McMenamins Elks Temple", + "brewery_type": "brewpub", + "address_1": "565 Broadway", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98402", + "country": "United States", + "longitude": -122.44092625962, + "latitude": 47.258188685191, + "phone": null, + "website_url": "https://www.mcmenamins.com/elks-temple", + "state": "Washington", + "street": "565 Broadway" + }, + { + "id": "faf099d7-5437-40ff-a51e-f277d58447a4", + "name": "McMenamins Fulton Pub and Brewery", + "brewery_type": "micro", + "address_1": "0618 SW Nebraska St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97239-3556", + "country": "United States", + "longitude": -122.6726223, + "latitude": 45.47711805, + "phone": "5032464363", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "0618 SW Nebraska St" + }, + { + "id": "5527e67d-4ff5-4843-b6cb-dd6695cf5b2c", + "name": "McMenamins High Street Brewery", + "brewery_type": "brewpub", + "address_1": "1243 High St", + "address_2": null, + "address_3": null, + "city": "Eugene", + "state_province": "Oregon", + "postal_code": "97401-3207", + "country": "United States", + "longitude": -123.0879134, + "latitude": 44.0461346, + "phone": "5413454913", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "1243 High St" + }, + { + "id": "1a4b9cf0-e54e-460c-bd7a-c91585d42adc", + "name": "McMenamins Highland Pub and Brewery", + "brewery_type": "brewpub", + "address_1": "4225 SE 182nd Ave", + "address_2": null, + "address_3": null, + "city": "Gresham", + "state_province": "Oregon", + "postal_code": "97030-5082", + "country": "United States", + "longitude": -122.475815, + "latitude": 45.4915603, + "phone": "5036653015", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "4225 SE 182nd Ave" + }, + { + "id": "82cf7577-0457-4889-b49b-3738c3d58dd1", + "name": "McMenamins Hillsdale Brewery and Public House", + "brewery_type": "micro", + "address_1": "1505 SW Sunset Blvd", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97239-2625", + "country": "United States", + "longitude": -122.6936922, + "latitude": 45.4792439, + "phone": "5032931753", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "1505 SW Sunset Blvd" + }, + { + "id": "7435ef24-5a83-4bd8-bc65-525088350803", + "name": "McMenamins John Barleycorns", + "brewery_type": "brewpub", + "address_1": "14610 SW Sequoia Pkwy", + "address_2": null, + "address_3": null, + "city": "Tigard", + "state_province": "Oregon", + "postal_code": "97224-7185", + "country": "United States", + "longitude": -122.7466466, + "latitude": 45.41452585, + "phone": "5036846253", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "14610 SW Sequoia Pkwy" + }, + { + "id": "cbe2a6f6-294a-440d-902f-f3c147378a99", + "name": "McMenamins Kalama Harbor Lodge", + "brewery_type": "brewpub", + "address_1": "215 N Hendrickson Dr", + "address_2": null, + "address_3": null, + "city": "Kalama", + "state_province": "Washington", + "postal_code": "98625", + "country": "United States", + "longitude": -122.8470478, + "latitude": 46.00555187, + "phone": "3606739210", + "website_url": "https://www.mcmenamins.com/kalama-harbor-lodge", + "state": "Washington", + "street": "215 N Hendrickson Dr" + }, + { + "id": "48dc01b2-c5a0-4c6b-80f9-25945a0eb2f6", + "name": "McMenamins Lighthouse Brewery", + "brewery_type": "brewpub", + "address_1": "4157 NW Highway 101 Ste 117", + "address_2": null, + "address_3": null, + "city": "Lincoln City", + "state_province": "Oregon", + "postal_code": "97367-5050", + "country": "United States", + "longitude": -124.0050694, + "latitude": 44.99673605, + "phone": "5419949628", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "4157 NW Highway 101 Ste 117" + }, + { + "id": "2b1cfbdf-23a1-4a0e-b370-11e6da46d64d", + "name": "McMenamins Mill Creek Brewery", + "brewery_type": "brewpub", + "address_1": "13300 Bothell Everett Hwy Ste 304", + "address_2": null, + "address_3": null, + "city": "Mill Creek", + "state_province": "Washington", + "postal_code": "98012-5312", + "country": "United States", + "longitude": -122.2123317, + "latitude": 47.87765468, + "phone": "4253169817", + "website_url": "https://www.mcmenamins.com/mill-creek", + "state": "Washington", + "street": "13300 Bothell Everett Hwy Ste 304" + }, + { + "id": "6098da96-d790-4675-aadb-8836048dab5e", + "name": "McMenamins Murray & Allen", + "brewery_type": "brewpub", + "address_1": "6179 SW Murray Blvd", + "address_2": null, + "address_3": null, + "city": "Beaverton", + "state_province": "Oregon", + "postal_code": "97008-4421", + "country": "United States", + "longitude": -122.8264537, + "latitude": 45.4750792, + "phone": "5035269618", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "6179 SW Murray Blvd" + }, + { + "id": "f162f822-f631-4c3a-8de9-bed207e8cc0a", + "name": "McMenamins Oak Hills Brewery", + "brewery_type": "micro", + "address_1": "14740 NW Cornell Rd Ste 80", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97229-5400", + "country": "United States", + "longitude": -122.7105079, + "latitude": 45.5330425, + "phone": "5036450117", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "14740 NW Cornell Rd Ste 80" + }, + { + "id": "4cdae732-9672-463f-b4ba-5c4f3cdcac6c", + "name": "McMenamins Old Church Brewery", + "brewery_type": "brewpub", + "address_1": "30340 SW Boones Ferry Rd", + "address_2": null, + "address_3": null, + "city": "Wilsonville", + "state_province": "Oregon", + "postal_code": "-97070", + "country": "United States", + "longitude": -122.7726765, + "latitude": 45.3007043, + "phone": "5034272505", + "website_url": "http://www.mcmenamins.com/Wilsonville", + "state": "Oregon", + "street": "30340 SW Boones Ferry Rd" + }, + { + "id": "61305a0a-ccbe-4c55-8eb8-54b49983d590", + "name": "McMenamins Old St. Francis School", + "brewery_type": "brewpub", + "address_1": "700 NW Bond St", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97703-2702", + "country": "United States", + "longitude": -121.314499, + "latitude": 44.0566885, + "phone": "5413825174", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "700 NW Bond St" + }, + { + "id": "597943b0-96e5-4f02-95e3-8c76c2b07b84", + "name": "McMenamins Olympic Club Brewery", + "brewery_type": "brewpub", + "address_1": "112 N Tower Ave", + "address_2": null, + "address_3": null, + "city": "Centralia", + "state_province": "Washington", + "postal_code": "98531-4220", + "country": "United States", + "longitude": -122.9539398, + "latitude": 46.7167828, + "phone": "3607365164", + "website_url": "https://www.mcmenamins.com/olympic-club", + "state": "Washington", + "street": "112 N Tower Ave" + }, + { + "id": "a8acab3f-b025-47e5-b2ce-b77c3c38afcf", + "name": "McMenamins on Monroe", + "brewery_type": "brewpub", + "address_1": "2001 NW Monroe Ave Ste 106", + "address_2": null, + "address_3": null, + "city": "Corvallis", + "state_province": "Oregon", + "postal_code": "97330-5567", + "country": "United States", + "longitude": -123.275563, + "latitude": 44.56825637, + "phone": "5417580880", + "website_url": null, + "state": "Oregon", + "street": "2001 NW Monroe Ave Ste 106" + }, + { + "id": "d34b6cea-2b33-458e-88f9-1eea39c07f1f", + "name": "McMenamins On the Columbia Brewery", + "brewery_type": "brewpub", + "address_1": "1801 SE Columbia River Dr", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98661-8030", + "country": "United States", + "longitude": -122.6529665, + "latitude": 45.61508455, + "phone": "3606691521", + "website_url": "https://www.mcmenamins.com/mcmenamins-on-the-columbia", + "state": "Washington", + "street": "1801 SE Columbia River Dr" + }, + { + "id": "e10e2e70-8086-4b8b-956e-953449c58bf9", + "name": "McMenamins Queen Anne Brewery", + "brewery_type": "brewpub", + "address_1": "200 Roy St Ste 105", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98109-4110", + "country": "United States", + "longitude": -122.3520571, + "latitude": 47.6255427, + "phone": "2062854722", + "website_url": "https://www.mcmenamins.com/queen-anne", + "state": "Washington", + "street": "200 Roy St Ste 105" + }, + { + "id": "86687c9b-6107-4e9b-947d-9c6c392e67fa", + "name": "McMenamins Roseburg Station Brewery", + "brewery_type": "micro", + "address_1": "700 SE Sheridan St", + "address_2": null, + "address_3": null, + "city": "Roseburg", + "state_province": "Oregon", + "postal_code": "97470-3470", + "country": "United States", + "longitude": -123.349051, + "latitude": 43.208554, + "phone": "5416721934", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "700 SE Sheridan St" + }, + { + "id": "e527ae5b-352c-40a0-809f-96fae6b66718", + "name": "McMenamins Six Arms Brewery", + "brewery_type": "brewpub", + "address_1": "300 E Pike St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98122", + "country": "United States", + "longitude": -122.327845, + "latitude": 47.61462221, + "phone": "2062231698", + "website_url": "https://www.mcmenamins.com/six-arms", + "state": "Washington", + "street": "300 E Pike St" + }, + { + "id": "73d1b31a-e57d-4ed6-b5c3-b53a5988bc5b", + "name": "McMenamins Spar Cafe Brewery", + "brewery_type": "brewpub", + "address_1": "114 4th Ave E", + "address_2": null, + "address_3": null, + "city": "Olympia", + "state_province": "Washington", + "postal_code": "98501-1103", + "country": "United States", + "longitude": -122.9013768, + "latitude": 47.04499974, + "phone": "3603576444", + "website_url": "https://www.mcmenamins.com/spar-cafe", + "state": "Washington", + "street": "114 4th Ave E" + }, + { + "id": "41da837d-8b75-42a1-8719-a2f833a2cd69", + "name": "McMenamins Thompson Brewery", + "brewery_type": "micro", + "address_1": "3575 Liberty Rd S", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "Oregon", + "postal_code": "97302-5621", + "country": "United States", + "longitude": -123.051309, + "latitude": 44.904043, + "phone": "5033712945", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "3575 Liberty Rd S" + }, + { + "id": "2c606589-3e2d-41dd-bd10-65ce9488dd7d", + "name": "McMenamins West Linn Brewery", + "brewery_type": "micro", + "address_1": "2090 8th Ave", + "address_2": null, + "address_3": null, + "city": "West Linn", + "state_province": "Oregon", + "postal_code": "97068-4612", + "country": "United States", + "longitude": -122.6520654, + "latitude": 45.34604029, + "phone": "5036562935", + "website_url": "http://www.mcmenamins.com", + "state": "Oregon", + "street": "2090 8th Ave" + }, + { + "id": "4d1ba278-c182-4c2c-8185-a0d133342486", + "name": "McNeills Brewery", + "brewery_type": "brewpub", + "address_1": "90 Elliot St", + "address_2": null, + "address_3": null, + "city": "Brattleboro", + "state_province": "Vermont", + "postal_code": "05301-3269", + "country": "United States", + "longitude": -72.55933779, + "latitude": 42.8518861, + "phone": "8022542553", + "website_url": null, + "state": "Vermont", + "street": "90 Elliot St" + }, + { + "id": "6896acbe-391c-4267-bcd0-4e1e9765ad39", + "name": "McOva Craft Beer Works, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Castle Rock", + "state_province": "Colorado", + "postal_code": "80104", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3035215027", + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "66ba9cf3-e15c-41c6-8f52-a38637a570a1", + "name": "MDs Sports Tavern and Grill", + "brewery_type": "brewpub", + "address_1": "3040 N State Rd", + "address_2": null, + "address_3": null, + "city": "Davison", + "state_province": "Michigan", + "postal_code": "48423-1146", + "country": "United States", + "longitude": -83.5173133, + "latitude": 43.05021425, + "phone": "8106536408", + "website_url": "http://www.mdsportstavern.com", + "state": "Michigan", + "street": "3040 N State Rd" + }, + { + "id": "3842a6be-3f32-4cd1-99c0-48fcaef62602", + "name": "Meadowlark Brewing", + "brewery_type": "brewpub", + "address_1": "117 S Central Ave", + "address_2": null, + "address_3": null, + "city": "Sidney", + "state_province": "Montana", + "postal_code": "59270-4123", + "country": "United States", + "longitude": -104.1602945, + "latitude": 47.7105211, + "phone": null, + "website_url": "http://www.meadowlarkbrewing.com", + "state": "Montana", + "street": "117 S Central Ave" + }, + { + "id": "fd44ed6d-eb54-4d4c-bcb1-5fae973395b3", + "name": "Mean Max Brew Works", + "brewery_type": "micro", + "address_1": "193 Glen St # 2", + "address_2": null, + "address_3": null, + "city": "Glens Falls", + "state_province": "New York", + "postal_code": "12801-3539", + "country": "United States", + "longitude": -73.64451861, + "latitude": 43.31016635, + "phone": "5187932337", + "website_url": "http://www.meanmaxbrew.com", + "state": "New York", + "street": "193 Glen St # 2" + }, + { + "id": "8f0626fd-2bfe-4f6f-a8eb-42dbe0a3984b", + "name": "Mean Sardine", + "brewery_type": "micro", + "address_1": "58 Surf Building", + "address_2": "Av. São Sebastião 36b", + "address_3": null, + "city": "Ericeira", + "state_province": "Lisboa", + "postal_code": "2655-483", + "country": "Portugal", + "longitude": -9.4176471597208, + "latitude": 38.981265001634, + "phone": null, + "website_url": "https://meansardine.pt", + "state": "Lisboa", + "street": "58 Surf Building" + }, + { + "id": "5694c81b-ce73-4efd-82fa-e685d3a13434", + "name": "Mecan River Brewing Company", + "brewery_type": "brewpub", + "address_1": "113 East Main Street", + "address_2": "P.O.Box 352", + "address_3": null, + "city": "Coloma", + "state_province": "Wisconsin", + "postal_code": "54930", + "country": "United States", + "longitude": -89.5238403, + "latitude": 44.0343194, + "phone": "7152813506", + "website_url": "https://mecanriverbrewing.com/", + "state": "Wisconsin", + "street": "113 East Main Street" + }, + { + "id": "04ca6748-c9f5-4f3f-976f-ea9453c1b073", + "name": "Mechanistic Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Clarion", + "state_province": "Pennsylvania", + "postal_code": "16214-2018", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "95682129-a52a-40f1-a9d9-16dbf53c7380", + "name": "Meddlesome Brewing Company", + "brewery_type": "micro", + "address_1": "7750 Trinity Rd Ste 114", + "address_2": null, + "address_3": null, + "city": "Cordova", + "state_province": "Tennessee", + "postal_code": "38018-2736", + "country": "United States", + "longitude": -89.802564, + "latitude": 35.14057, + "phone": "6185218036", + "website_url": "http://www.meddlesomebrewing.com", + "state": "Tennessee", + "street": "7750 Trinity Rd Ste 114" + }, + { + "id": "0a21307c-a2d0-48eb-b9c9-a88032b3b49c", + "name": "Medusa Brewing Company", + "brewery_type": "micro", + "address_1": "111 Main St", + "address_2": null, + "address_3": null, + "city": "Hudson", + "state_province": "Massachusetts", + "postal_code": "01749-2210", + "country": "United States", + "longitude": -71.566681, + "latitude": 42.3909986, + "phone": "5083950122", + "website_url": "http://www.medusabrewing.com", + "state": "Massachusetts", + "street": "111 Main St" + }, + { + "id": "7560c905-1ba6-4706-a1d7-3d731962ed4b", + "name": "Mel's Micro", + "brewery_type": "brewpub", + "address_1": "21733 US Hwy 14", + "address_2": null, + "address_3": null, + "city": "Richland Center", + "state_province": "Wisconsin", + "postal_code": "53581", + "country": "United States", + "longitude": -90.3868474, + "latitude": 43.3294383, + "phone": null, + "website_url": "http://www.melsmicro.com", + "state": "Wisconsin", + "street": "21733 US Hwy 14" + }, + { + "id": "531a2d9a-c743-43ad-b663-948083a07511", + "name": "Melms Brewing Co", + "brewery_type": "proprietor", + "address_1": "418 Merton Ave", + "address_2": null, + "address_3": null, + "city": "Hartland", + "state_province": "Wisconsin", + "postal_code": "53029-1524", + "country": "United States", + "longitude": -88.33311459, + "latitude": 43.11075028, + "phone": "2629932566", + "website_url": "http://www.melmsbrewery.com", + "state": "Wisconsin", + "street": "418 Merton Ave" + }, + { + "id": "6c38c54f-6e64-44f9-b2e6-3d435c540b29", + "name": "Mels Place", + "brewery_type": "bar", + "address_1": "2A Kuo Chuan Ave", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "426897", + "country": "Singapore", + "longitude": 1.3077475195213, + "latitude": 103.9079025, + "phone": "+65 6440 3573", + "website_url": "https://melsplace.com.sg/", + "state": "Singapore", + "street": "2A Kuo Chuan Ave" + }, + { + "id": "458bd9fd-c86a-49ec-b0c3-bf0a3370e85b", + "name": "Melvin Brewing", + "brewery_type": "regional", + "address_1": "624 County Road 101", + "address_2": null, + "address_3": null, + "city": "Alpine", + "state_province": "Wyoming", + "postal_code": "83128-0314", + "country": "United States", + "longitude": -111.03831502351, + "latitude": 43.165320030658, + "phone": "3076540426", + "website_url": "http://www.melvinbrewing.com", + "state": "Wyoming", + "street": "624 County Road 101" + }, + { + "id": "6fdaf0f7-d914-4314-b744-eae724453c6e", + "name": "Melvin Brewing", + "brewery_type": "regional", + "address_1": "110 Hilltop Village Center Dr", + "address_2": null, + "address_3": null, + "city": "Eureka", + "state_province": "Missouri", + "postal_code": "63025", + "country": "United States", + "longitude": -90.649695, + "latitude": 38.52826, + "phone": "6365499231", + "website_url": "http://www.melvinbrewing.com", + "state": "Missouri", + "street": "110 Hilltop Village Center Dr" + }, + { + "id": "03ed67c1-0784-4817-971f-581a95060e7c", + "name": "Melvin Brewing Bellingham", + "brewery_type": "closed", + "address_1": "2416 Meridian St", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98225-2405", + "country": "United States", + "longitude": -122.485982, + "latitude": 48.7621709, + "phone": "3603063285", + "website_url": null, + "state": "Washington", + "street": "2416 Meridian St" + }, + { + "id": "6f582cf6-b505-4ae4-9e2a-b5b7f1e72d71", + "name": "Melvin Brewing Co", + "brewery_type": "closed", + "address_1": "75 E Pearl Ave", + "address_2": null, + "address_3": null, + "city": "Jackson", + "state_province": "Wyoming", + "postal_code": "83001-8658", + "country": "United States", + "longitude": -110.7618578, + "latitude": 43.47859778, + "phone": "3077330005", + "website_url": null, + "state": "Wyoming", + "street": "75 E Pearl Ave" + }, + { + "id": "201479a3-680e-4f64-b6f4-ac8c81a4cc58", + "name": "Memphis Filling Station", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Memphis", + "state_province": "Tennessee", + "postal_code": "38112-4938", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9014978109", + "website_url": "http://www.memphisfillingstation.com", + "state": "Tennessee", + "street": null + }, + { + "id": "718cf6aa-a2a3-4264-bbae-7a0067d87853", + "name": "Memphis Made Brewing Company", + "brewery_type": "micro", + "address_1": "768 S Cooper St", + "address_2": null, + "address_3": null, + "city": "Memphis", + "state_province": "Tennessee", + "postal_code": "38104-5406", + "country": "United States", + "longitude": -89.990701, + "latitude": 35.124723, + "phone": "9012075343", + "website_url": "http://www.memphismadebrewing.com", + "state": "Tennessee", + "street": "768 S Cooper St" + }, + { + "id": "9221185e-c3ed-44ea-8131-d7077e7d3b0f", + "name": "Menace Brewing", + "brewery_type": "micro", + "address_1": "2529 Meridian St", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98225-2406", + "country": "United States", + "longitude": -122.4862211, + "latitude": 48.76355086, + "phone": "3605954059", + "website_url": "https://www.menacebrewing.com", + "state": "Washington", + "street": "2529 Meridian St" + }, + { + "id": "c7488d6b-4ebe-4799-9b2f-931180e510c5", + "name": "Merino Brewery", + "brewery_type": "micro", + "address_1": "2 Forge Place", + "address_2": null, + "address_3": null, + "city": "Narellan", + "state_province": "NSW", + "postal_code": "2567", + "country": "Australia", + "longitude": 150.7265874, + "latitude": -34.037039, + "phone": "+61 407 668 040", + "website_url": "http://www.merinobrewery.com.au/", + "state": "NSW", + "street": "2 Forge Place" + }, + { + "id": "72c36c03-55db-4310-8b6f-66ed9942c29e", + "name": "Merrimack Ales", + "brewery_type": "micro", + "address_1": "92 Bolt St", + "address_2": null, + "address_3": null, + "city": "Lowell", + "state_province": "Massachusetts", + "postal_code": "01852-5316", + "country": "United States", + "longitude": -71.300252, + "latitude": 42.625366, + "phone": "9787017225", + "website_url": "http://www.merrimackales.com", + "state": "Massachusetts", + "street": "92 Bolt St" + }, + { + "id": "0568b76d-4876-4cb9-a919-cfbf8a2e566c", + "name": "Mescan Brewery", + "brewery_type": "micro", + "address_1": "Cartoor", + "address_2": null, + "address_3": null, + "city": "Kilsallagh", + "state_province": "Mayo", + "postal_code": "F28 FW70", + "country": "Ireland", + "longitude": 9.73047, + "latitude": 53.7471934, + "phone": "353868320320", + "website_url": "https://www.mescanbrewery.com/", + "state": "Mayo", + "street": "Cartoor" + }, + { + "id": "a674f295-8d93-4266-b2bf-e4cfcb4adc6a", + "name": "Mesquite River Brewing", + "brewery_type": "micro", + "address_1": "13610 N Scottsdale Rd, Suite 18", + "address_2": null, + "address_3": null, + "city": "Scottsdale", + "state_province": "Arizona", + "postal_code": "85254-4037", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4806567696", + "website_url": "http://www.mesquiteriverbrewing.com", + "state": "Arizona", + "street": "13610 N Scottsdale Rd, Suite 18" + }, + { + "id": "606eeca9-1d11-4af6-a95f-a526d5f17be4", + "name": "Metal Monkey Brewing LLC", + "brewery_type": "micro", + "address_1": "515 Anderson Dr Ste 900", + "address_2": null, + "address_3": null, + "city": "Romeoville", + "state_province": "Illinois", + "postal_code": "60446-1494", + "country": "United States", + "longitude": -88.07788064, + "latitude": 41.6450575, + "phone": "8155243139", + "website_url": "http://www.metalmonkeybrewing.com", + "state": "Illinois", + "street": "515 Anderson Dr Ste 900" + }, + { + "id": "58d4385e-b363-4d10-b5dd-a0cc7aeb965e", + "name": "Metalman Brewing Company", + "brewery_type": "micro", + "address_1": "Unit 14", + "address_2": "Tycor Business Centre", + "address_3": "Tycor", + "city": "Waterford", + "state_province": "Waterford", + "postal_code": "X91 HP89", + "country": "Ireland", + "longitude": -7.1302473, + "latitude": 52.2562844, + "phone": "35351348448", + "website_url": "http://www.metalmanbrewing.com/", + "state": "Waterford", + "street": "Unit 14" + }, + { + "id": "42431b40-da93-44f6-923c-98a25a89e376", + "name": "Metazoa Brewing Co.", + "brewery_type": "micro", + "address_1": "140 S College Ave", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46202-4004", + "country": "United States", + "longitude": -86.14585025, + "latitude": 39.76455049, + "phone": "3175082274", + "website_url": "http://www.metazoa.beer", + "state": "Indiana", + "street": "140 S College Ave" + }, + { + "id": "f1cf8825-e95c-4613-9a22-5700681d3f41", + "name": "Method Brewing", + "brewery_type": "micro", + "address_1": "18 Maitland Road", + "address_2": null, + "address_3": null, + "city": "Islington", + "state_province": "NSW", + "postal_code": "2296", + "country": "Australia", + "longitude": 151.7509955, + "latitude": -32.919424, + "phone": "+61 493 529 259", + "website_url": "http://www.methodbrewing.com.au/", + "state": "NSW", + "street": "18 Maitland Road" + }, + { + "id": "16563e2d-05ad-43d9-a393-a7db75c1d29d", + "name": "Metier Brewing Company", + "brewery_type": "micro", + "address_1": "14125 NE 189th St", + "address_2": null, + "address_3": null, + "city": "Woodinville", + "state_province": "Washington", + "postal_code": "98072-6831", + "country": "United States", + "longitude": -122.1515611, + "latitude": 47.76422098, + "phone": "4254158466", + "website_url": "http://www.metierbrewing.com", + "state": "Washington", + "street": "14125 NE 189th St" + }, + { + "id": "80cea19e-4e59-4e82-94a3-5b3cb0cd29b3", + "name": "Metropolitan Brewing", + "brewery_type": "micro", + "address_1": "3057 N Rockwell St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60618-7917", + "country": "United States", + "longitude": -87.6912391, + "latitude": 41.9376382, + "phone": "7734746489", + "website_url": "http://www.metrobrewing.com", + "state": "Illinois", + "street": "3057 N Rockwell St" + }, + { + "id": "d30adc33-3715-41b2-950c-63c2e906629f", + "name": "Mexitaly Brick Oven Brewhouse", + "brewery_type": "brewpub", + "address_1": "2440 E Market St", + "address_2": null, + "address_3": null, + "city": "York", + "state_province": "Pennsylvania", + "postal_code": "17402-2409", + "country": "United States", + "longitude": -76.6781639, + "latitude": 39.9735865, + "phone": "7176008226", + "website_url": "http://www.mexitaly.com", + "state": "Pennsylvania", + "street": "2440 E Market St" + }, + { + "id": "9b407952-8478-4c53-aced-81a006a1dddb", + "name": "MI Brewery / Kayla Rae Cellars", + "brewery_type": "micro", + "address_1": "31 Courtland St", + "address_2": null, + "address_3": null, + "city": "Rockford", + "state_province": "Michigan", + "postal_code": "49341-1080", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6169517001", + "website_url": "http://www.kaylaraecellars.com", + "state": "Michigan", + "street": "31 Courtland St" + }, + { + "id": "61bd6b89-b37b-4793-a3a5-b2de69f0aeea", + "name": "Mia and Pias Pizzeria/Brewhouse", + "brewery_type": "brewpub", + "address_1": "3545 Summers Ln", + "address_2": null, + "address_3": null, + "city": "Klamath Falls", + "state_province": "Oregon", + "postal_code": "97603-7411", + "country": "United States", + "longitude": -121.7375719, + "latitude": 42.19324978, + "phone": "5418844880", + "website_url": null, + "state": "Oregon", + "street": "3545 Summers Ln" + }, + { + "id": "66578541-da2c-44e8-905d-13658b49e726", + "name": "Miami Brewing Co", + "brewery_type": "brewpub", + "address_1": "30205 SW 217th Ave", + "address_2": null, + "address_3": null, + "city": "Homestead", + "state_province": "Florida", + "postal_code": "33030-7601", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3052421224", + "website_url": "http://www.miamibrewing.org", + "state": "Florida", + "street": "30205 SW 217th Ave" + }, + { + "id": "e1c5d42f-a9b3-4a2e-afe1-d1fa24ff9825", + "name": "Miami Creek Brewing Company", + "brewery_type": "closed", + "address_1": "14226 NW County Road 14001", + "address_2": null, + "address_3": null, + "city": "Drexel", + "state_province": "Missouri", + "postal_code": "64742-9733", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8168920297", + "website_url": "http://www.miamicreek.com", + "state": "Missouri", + "street": "14226 NW County Road 14001" + }, + { + "id": "b1b569f5-9c84-468e-bf1a-89f1867fa64c", + "name": "Mica Town Brewing", + "brewery_type": "micro", + "address_1": "25 Brown Dr", + "address_2": null, + "address_3": null, + "city": "Marion", + "state_province": "North Carolina", + "postal_code": "28752-4294", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8285598300", + "website_url": "http://www.micatownbrewing.com", + "state": "North Carolina", + "street": "25 Brown Dr" + }, + { + "id": "b43a8593-0e7e-42dd-b3f1-0c1ec9da44bf", + "name": "Michigan Brewing Works", + "brewery_type": "brewpub", + "address_1": "3435 Dietz Rd", + "address_2": null, + "address_3": null, + "city": "Williamston", + "state_province": "Michigan", + "postal_code": "48895-9506", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5176557777", + "website_url": null, + "state": "Michigan", + "street": "3435 Dietz Rd" + }, + { + "id": "c35a6630-0112-4f4f-b853-696bad041990", + "name": "MickDuff's Brewing Co", + "brewery_type": "micro", + "address_1": "312 N First Ave", + "address_2": null, + "address_3": null, + "city": "Sandpoint", + "state_province": "Idaho", + "postal_code": "83864-1404", + "country": "United States", + "longitude": -116.54764, + "latitude": 48.27597, + "phone": "2082554351", + "website_url": "http://www.mickduffs.com", + "state": "Idaho", + "street": "312 N First Ave" + }, + { + "id": "7cb839b2-bd03-4672-a7b4-1d1946e32b8a", + "name": "Mickey Finns Brewery", + "brewery_type": "brewpub", + "address_1": "345 N Milwaukee Ave", + "address_2": null, + "address_3": null, + "city": "Libertyville", + "state_province": "Illinois", + "postal_code": "60048-2237", + "country": "United States", + "longitude": -87.9542955, + "latitude": 42.2863321, + "phone": "8473626688", + "website_url": "http://www.mickeyfinnsbrewery.com", + "state": "Illinois", + "street": "345 N Milwaukee Ave" + }, + { + "id": "904ae847-cf63-468e-bba7-59c4f95df604", + "name": "Middle Ages Brewing Co Ltd", + "brewery_type": "micro", + "address_1": "120 Wilkinson St Ste 3", + "address_2": null, + "address_3": null, + "city": "Syracuse", + "state_province": "New York", + "postal_code": "13204-2490", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3154764250", + "website_url": "http://www.middleagesbrewing.com", + "state": "New York", + "street": "120 Wilkinson St Ste 3" + }, + { + "id": "b7b96ece-e357-4fcf-b195-954b618ca4b6", + "name": "Middle Brow Beer Company", + "brewery_type": "micro", + "address_1": "2840 W Armitage Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60647", + "country": "United States", + "longitude": -87.6988905, + "latitude": 41.9177811, + "phone": "7088465511", + "website_url": "http://www.middlebrowbeer.com", + "state": "Illinois", + "street": "2840 W Armitage Ave" + }, + { + "id": "53b5289a-b220-4c1a-8fe4-4d509fe6577d", + "name": "Middle James Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Pineville", + "state_province": "North Carolina", + "postal_code": "28134", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "North Carolina", + "street": null + }, + { + "id": "47067a16-91aa-401c-920d-080104960ed1", + "name": "Middleton Brewing (MBTX)", + "brewery_type": "micro", + "address_1": "101 Oakwood Loop", + "address_2": null, + "address_3": null, + "city": "San Marcos", + "state_province": "Texas", + "postal_code": "78666-1762", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5128473435", + "website_url": "http://www.mbtx.com", + "state": "Texas", + "street": "101 Oakwood Loop" + }, + { + "id": "cf57e209-8ef4-4a27-8ef6-d538050e38a1", + "name": "Middleton Brewing Co", + "brewery_type": "brewpub", + "address_1": "607 SE Everett Mall Way Ste 27A", + "address_2": null, + "address_3": null, + "city": "Everett", + "state_province": "Washington", + "postal_code": "98208-3264", + "country": "United States", + "longitude": -122.224702, + "latitude": 47.911397, + "phone": "4252809178", + "website_url": "https://www.facebook.com/MiddletonBrews", + "state": "Washington", + "street": "607 SE Everett Mall Way Ste 27A" + }, + { + "id": "146870a5-aad1-4b3a-9b25-c4af2a711f1a", + "name": "Midland Brewing Co", + "brewery_type": "brewpub", + "address_1": "5011 N Saginaw Road", + "address_2": null, + "address_3": null, + "city": "Midland", + "state_province": "Michigan", + "postal_code": "48642", + "country": "United States", + "longitude": -84.2910925, + "latitude": 43.6408678, + "phone": "9892597210", + "website_url": "http://www.midlandbrewing.com", + "state": "Michigan", + "street": "5011 N Saginaw Road" + }, + { + "id": "b535a17f-5e36-4126-853d-0c13d4fac2ca", + "name": "Midnight Brewery", + "brewery_type": "micro", + "address_1": "2410 Granite Ridge Rd Ste B", + "address_2": null, + "address_3": null, + "city": "Rockville", + "state_province": "Virginia", + "postal_code": "23146-2234", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8043569379", + "website_url": "http://www.midnight-brewery.com", + "state": "Virginia", + "street": "2410 Granite Ridge Rd Ste B" + }, + { + "id": "9666ffc8-a890-450e-b3b0-16b5db29a5cc", + "name": "Midnight Jack Brewing Company", + "brewery_type": "closed", + "address_1": "3801 Oceanic Dr Ste 101", + "address_2": null, + "address_3": null, + "city": "Oceanside", + "state_province": "California", + "postal_code": "92056-5850", + "country": "United States", + "longitude": -117.304737, + "latitude": 33.204836, + "phone": "7606379679", + "website_url": "http://www.midnightjackbrewing.com", + "state": "California", + "street": "3801 Oceanic Dr Ste 101" + }, + { + "id": "2a0a04dd-84ff-4372-90b1-bcbc30de80d7", + "name": "Midnight Oil Brewing", + "brewery_type": "micro", + "address_1": "674 Pencader Dr", + "address_2": null, + "address_3": null, + "city": "Newark", + "state_province": "Delaware", + "postal_code": "19702", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3022867641", + "website_url": null, + "state": "Delaware", + "street": "674 Pencader Dr" + }, + { + "id": "8e2237f6-6759-40b6-828f-e6975f5d0ae2", + "name": "Midnight Oil Brewing Company", + "brewery_type": "micro", + "address_1": "674 Pencader Dr", + "address_2": null, + "address_3": null, + "city": "Newark", + "state_province": "Delaware", + "postal_code": "19702-3348", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3022867641", + "website_url": "http://www.midnightoilbrewing.com", + "state": "Delaware", + "street": "674 Pencader Dr" + }, + { + "id": "7972a61a-494f-430d-8d26-cc72c3ad56e3", + "name": "Midnight Pig Beer", + "brewery_type": "brewpub", + "address_1": "12337 S Route 59 Unit 155", + "address_2": null, + "address_3": null, + "city": "Plainfield", + "state_province": "Illinois", + "postal_code": "60585-4614", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8154363900", + "website_url": "http://www.nevinsdraftco.com", + "state": "Illinois", + "street": "12337 S Route 59 Unit 155" + }, + { + "id": "1f6bc6e7-aa85-49d5-b281-ecd1cf7cc8df", + "name": "Midnight Sun Brewing Co", + "brewery_type": "micro", + "address_1": "8111 Dimond Hook Dr", + "address_2": null, + "address_3": null, + "city": "Anchorage", + "state_province": "Alaska", + "postal_code": "99507-3144", + "country": "United States", + "longitude": -149.8445465, + "latitude": 61.1471249, + "phone": "9073441179", + "website_url": "http://www.midnightsunbrewing.com", + "state": "Alaska", + "street": "8111 Dimond Hook Dr" + }, + { + "id": "fec0e3af-f2bd-4b39-ab32-3c30fc0b1e6e", + "name": "Midnite Mine Brewpub", + "brewery_type": "micro", + "address_1": "308 Wendell Ave", + "address_2": null, + "address_3": null, + "city": "Fairbanks", + "state_province": "Alaska", + "postal_code": "99701-4838", + "country": "United States", + "longitude": -147.714159, + "latitude": 64.845689, + "phone": "9074565348", + "website_url": null, + "state": "Alaska", + "street": "308 Wendell Ave" + }, + { + "id": "18bd0fc9-899e-4da7-a920-bfd640ba9081", + "name": "Midriver Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Cold Spring", + "state_province": "New York", + "postal_code": "10516", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9146611790", + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "4958cab7-db40-4cc5-a30c-f3f6db5c47e8", + "name": "Midtown Brewing Co", + "brewery_type": "micro", + "address_1": "402 S Washington Sq", + "address_2": null, + "address_3": null, + "city": "Lansing", + "state_province": "Michigan", + "postal_code": "48933-2172", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5179771349", + "website_url": "http://www.midtownbrewingco.com", + "state": "Michigan", + "street": "402 S Washington Sq" + }, + { + "id": "86f16af9-997d-47ee-adc8-fad50f57473d", + "name": "Midwest Hop Producers LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Plattsmouth", + "state_province": "Nebraska", + "postal_code": "68048-7233", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4022960633", + "website_url": "http://www.midwesthopproducers.com", + "state": "Nebraska", + "street": null + }, + { + "id": "0fab9619-58f0-42d5-87bb-78cf88a2d2e2", + "name": "Mighty Miss Brewing Co.", + "brewery_type": "micro", + "address_1": "525 S Washington Ave Ste B", + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "Mississippi", + "postal_code": "38701-", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6623796477", + "website_url": "http://www.mightymissbeer.com", + "state": "Mississippi", + "street": "525 S Washington Ave Ste B" + }, + { + "id": "2ec76a90-b0eb-41c1-88b9-865fdb61db18", + "name": "Mighty Mo Brew Co", + "brewery_type": "brewpub", + "address_1": "412 Central Ave", + "address_2": null, + "address_3": null, + "city": "Great Falls", + "state_province": "Montana", + "postal_code": "59401-3116", + "country": "United States", + "longitude": -111.3004488, + "latitude": 47.50518307, + "phone": "4069520342", + "website_url": "http://www.mightymobrewing.com", + "state": "Montana", + "street": "412 Central Ave" + }, + { + "id": "65621b87-399c-4756-915a-4a0b8f2fb89b", + "name": "Mighty Squirrel", + "brewery_type": "regional", + "address_1": "1 David Ortiz Dr", + "address_2": null, + "address_3": null, + "city": "Boston", + "state_province": "Massachusetts", + "postal_code": "02215", + "country": "United States", + "longitude": -71.101228347381, + "latitude": 42.347239312681, + "phone": "8575575700", + "website_url": "http://www.mightysquirrel.com", + "state": "Massachusetts", + "street": "1 David Ortiz Dr" + }, + { + "id": "f856d961-d228-4dce-aa16-57eef43e6298", + "name": "Mighty Squirrel Brewing Co.", + "brewery_type": "regional", + "address_1": "411 Waverley Oaks Rd", + "address_2": null, + "address_3": null, + "city": "Waltham", + "state_province": "Massachusetts", + "postal_code": "02452", + "country": "United States", + "longitude": -71.201097572517, + "latitude": 42.387657733538, + "phone": "7818399242", + "website_url": "http://www.mightysquirrel.com", + "state": "Massachusetts", + "street": "411 Waverley Oaks Rd" + }, + { + "id": "bd9dc3d5-c3c8-4629-83f3-94e9bf3a87e2", + "name": "Migration Brewing Co", + "brewery_type": "brewpub", + "address_1": "2828 NE Glisan St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97232", + "country": "United States", + "longitude": -122.63635, + "latitude": 45.52624, + "phone": "5032065221", + "website_url": "http://www.migrationbrewing.com", + "state": "Oregon", + "street": "2828 NE Glisan St" + }, + { + "id": "12a897d9-1f87-4f57-b610-7fc1328fbaa8", + "name": "Migration Brewing Co", + "brewery_type": "micro", + "address_1": "1818 NE Wilkes Rd", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97230", + "country": "United States", + "longitude": -122.4772531, + "latitude": 45.5393653, + "phone": "9712743770", + "website_url": null, + "state": "Oregon", + "street": "1818 NE Wilkes Rd" + }, + { + "id": "d2faf757-7ac9-4864-af86-f34beff36f11", + "name": "Mike Hess Brewing", + "brewery_type": "micro", + "address_1": "3812 Grim Ave", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92104-3602", + "country": "United States", + "longitude": -117.12854, + "latitude": 32.747711, + "phone": "6192557136", + "website_url": null, + "state": "California", + "street": "3812 Grim Ave" + }, + { + "id": "084aeeb4-c3dd-4f83-9d43-732e9bac41d2", + "name": "Mike Hess Brewing - Miramar", + "brewery_type": "micro", + "address_1": "7955 Silverton Ave Ste 1201", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92126-6357", + "country": "United States", + "longitude": -117.1518284, + "latitude": 32.89080081, + "phone": "6198876453", + "website_url": "http://www.hessbrewing.com", + "state": "California", + "street": "7955 Silverton Ave Ste 1201" + }, + { + "id": "7b023a28-3a41-4c3c-ae2a-e75d588872b6", + "name": "Mikerphone Brewing", + "brewery_type": "micro", + "address_1": "121 Garlisch Dr", + "address_2": null, + "address_3": null, + "city": "Elk Grove Village", + "state_province": "Illinois", + "postal_code": "60007-1322", + "country": "United States", + "longitude": -87.96704535, + "latitude": 42.02909208, + "phone": "8472648904", + "website_url": "http://www.mikerphonebrewing.com", + "state": "Illinois", + "street": "121 Garlisch Dr" + }, + { + "id": "e5d8969a-c6b8-4931-901b-0ba2222bcd63", + "name": "Mikkeller Berlin", + "brewery_type": "bar", + "address_1": "Torstraße 102", + "address_2": null, + "address_3": null, + "city": "Berlin", + "state_province": "Berlin", + "postal_code": "10119", + "country": "Germany", + "longitude": 52.5285769, + "latitude": 13.3942421, + "phone": null, + "website_url": "https://mikkeller.com/locations/mikkeller-berlin", + "state": "Berlin", + "street": "Torstraße 102" + }, + { + "id": "aba13c17-b1c4-476f-8b66-eabe4d67008d", + "name": "Mikkeller Brewing NYC", + "brewery_type": "brewpub", + "address_1": "12001 Roosevelt Ave", + "address_2": null, + "address_3": null, + "city": "Flushing", + "state_province": "New York", + "postal_code": "11368-1653", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9175720357", + "website_url": "http://mikkellernyc.com", + "state": "New York", + "street": "12001 Roosevelt Ave" + }, + { + "id": "385a2831-a7d5-4d07-bcff-d9d3312c571c", + "name": "Mikkeller Brewing San Diego", + "brewery_type": "micro", + "address_1": "9366 Cabot Dr", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92126-4311", + "country": "United States", + "longitude": -117.144171, + "latitude": 32.89146307, + "phone": null, + "website_url": null, + "state": "California", + "street": "9366 Cabot Dr" + }, + { + "id": "7770266c-6747-4a70-b4e6-fa82d252f4f2", + "name": "Mile Post 111 Brewing", + "brewery_type": "brewpub", + "address_1": "407 Aplets Way", + "address_2": null, + "address_3": null, + "city": "Cashmere", + "state_province": "Washington", + "postal_code": "98815", + "country": "United States", + "longitude": -120.4700494, + "latitude": 47.5236059, + "phone": "5098880222", + "website_url": "http://www.milepost111brewingcompany.com", + "state": "Washington", + "street": "407 Aplets Way" + }, + { + "id": "4a6d47c5-6fd8-4e40-b1df-a831077878ab", + "name": "Mile Wide Beer Co.", + "brewery_type": "micro", + "address_1": "636 Barret Ave", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40204-1142", + "country": "United States", + "longitude": -85.7330744, + "latitude": 38.2465656, + "phone": "5024098139", + "website_url": "http://www.milewidebeer.com", + "state": "Kentucky", + "street": "636 Barret Ave" + }, + { + "id": "7c8d69e8-5b1c-4de1-b8ce-e4368bc2a4e2", + "name": "Miles Craft Ales @ Miles Wine Cellars", + "brewery_type": "contract", + "address_1": "168 Randall Rd", + "address_2": null, + "address_3": null, + "city": "Himrod", + "state_province": "New York", + "postal_code": "14842-9715", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6072437742", + "website_url": "http://www.mileswinecellars.com", + "state": "New York", + "street": "168 Randall Rd" + }, + { + "id": "5b48ea3f-2db4-4ecf-b864-de3579651928", + "name": "Milford Point Brewing Company", + "brewery_type": "micro", + "address_1": "230 Woodmont Rd Ste 29B", + "address_2": null, + "address_3": null, + "city": "Milford", + "state_province": "Connecticut", + "postal_code": "06460", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2037019077", + "website_url": null, + "state": "Connecticut", + "street": "230 Woodmont Rd Ste 29B" + }, + { + "id": "d5e5313e-a58c-4076-a44a-07c37cb61d94", + "name": "Milkhouse Brewery at Stillpoint Farm", + "brewery_type": "micro", + "address_1": "8253 Dollyhyde Rd", + "address_2": null, + "address_3": null, + "city": "Mount Airy", + "state_province": "Maryland", + "postal_code": "21771-9404", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2404011517", + "website_url": "http://www.milkhousebrewery.com", + "state": "Maryland", + "street": "8253 Dollyhyde Rd" + }, + { + "id": "ec4a41db-5ab0-47b2-b6a8-3fbcad469400", + "name": "Mill City Brew Werks", + "brewery_type": "closed", + "address_1": "339 NE Cedar St", + "address_2": null, + "address_3": null, + "city": "Camas", + "state_province": "Washington", + "postal_code": "98607-2142", + "country": "United States", + "longitude": -122.404172, + "latitude": 45.585626, + "phone": "3602104761", + "website_url": "http://www.mcbwbeer.com", + "state": "Washington", + "street": "339 NE Cedar St" + }, + { + "id": "6630c59f-a5f1-4d38-8a77-1a4436c232b1", + "name": "Mill Creek Brewing Co.", + "brewery_type": "micro", + "address_1": "2008B Johnson Industrial Blvd", + "address_2": null, + "address_3": null, + "city": "Nolensville", + "state_province": "Tennessee", + "postal_code": "37135-9773", + "country": "United States", + "longitude": -86.67009573, + "latitude": 35.9575301, + "phone": "6157763377", + "website_url": "http://www.millcreekbrewingco.com", + "state": "Tennessee", + "street": "2008B Johnson Industrial Blvd" + }, + { + "id": "91ed8c2e-960f-4c44-af5b-05e3d550f382", + "name": "Mill Creek Brewpub", + "brewery_type": "closed", + "address_1": "11 S Palouse St", + "address_2": null, + "address_3": null, + "city": "Walla Walla", + "state_province": "Washington", + "postal_code": "99362-1925", + "country": "United States", + "longitude": -118.3349272, + "latitude": 46.06927939, + "phone": "5095222440", + "website_url": "http://www.millcreek-brewpub.com", + "state": "Washington", + "street": "11 S Palouse St" + }, + { + "id": "8dc2e866-7df1-4d3c-b255-7a3848f88d46", + "name": "Mill House Brewing Company", + "brewery_type": "brewpub", + "address_1": "289 Mill St", + "address_2": null, + "address_3": null, + "city": "Poughkeepsie", + "state_province": "New York", + "postal_code": "12601-3111", + "country": "United States", + "longitude": -73.926472, + "latitude": 41.705077, + "phone": "8452345573", + "website_url": "http://www.millhousebrewing.com", + "state": "New York", + "street": "289 Mill St" + }, + { + "id": "f7aab246-6d54-4a53-99de-d4a2a306f60e", + "name": "Mill House Brewing Company - Production", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Poughkeepsie", + "state_province": "New York", + "postal_code": "12601", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8452345573", + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "a04edd75-2b83-4aa5-9dc1-d89bf61f2e38", + "name": "Mill River Brewing BBQ & Smokehouse", + "brewery_type": "brewpub", + "address_1": "10 Beauregard Dr", + "address_2": null, + "address_3": null, + "city": "Saint Albans City", + "state_province": "Vermont", + "postal_code": "05478", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8025824182", + "website_url": "http://www.millriverbrewing.com", + "state": "Vermont", + "street": "10 Beauregard Dr" + }, + { + "id": "48e6d408-34ed-41ed-8bfb-fcd23598a36c", + "name": "Mill Valley Beer Works", + "brewery_type": "brewpub", + "address_1": "173 Throckmorton Ave", + "address_2": null, + "address_3": null, + "city": "Mill Valley", + "state_province": "California", + "postal_code": "94941-1909", + "country": "United States", + "longitude": -122.5493619, + "latitude": 37.9053888, + "phone": null, + "website_url": "http://www.millvalleybeerworks.com", + "state": "California", + "street": "173 Throckmorton Ave" + }, + { + "id": "5bacfaa1-8019-431f-8e45-a7a999fa5871", + "name": "Mill Whistle Brewing", + "brewery_type": "micro", + "address_1": "1354 Lennoxville Rd", + "address_2": null, + "address_3": null, + "city": "Beaufort", + "state_province": "North Carolina", + "postal_code": "28616", + "country": "United States", + "longitude": -76.65042934, + "latitude": 34.71738799, + "phone": null, + "website_url": null, + "state": "North Carolina", + "street": "1354 Lennoxville Rd" + }, + { + "id": "c240ef6b-1834-4be5-815d-7246abfcee05", + "name": "Millcreek Brewing Company", + "brewery_type": "brewpub", + "address_1": "4102 W Lake Rd", + "address_2": null, + "address_3": null, + "city": "Erie", + "state_province": "Pennsylvania", + "postal_code": "16505-1561", + "country": "United States", + "longitude": -80.3312655, + "latitude": 42.029976, + "phone": "8146162739", + "website_url": "http://www.millcreekbrew.com", + "state": "Pennsylvania", + "street": "4102 W Lake Rd" + }, + { + "id": "c6d5739a-7f19-404c-a561-009c384535d5", + "name": "Millennial Brewing Company", + "brewery_type": "micro", + "address_1": "1811 Royal Palm Ave", + "address_2": null, + "address_3": null, + "city": "Fort Myers", + "state_province": "Florida", + "postal_code": "33901-3023", + "country": "United States", + "longitude": -81.8643461, + "latitude": 26.6429182, + "phone": "2392712255", + "website_url": "http://www.millennialbrewing.com", + "state": "Florida", + "street": "1811 Royal Palm Ave" + }, + { + "id": "5418e274-79d7-436c-a772-df99b4fd26ce", + "name": "MillerCoors Brewing Co - Albany", + "brewery_type": "large", + "address_1": "405 Cordele Rd", + "address_2": null, + "address_3": null, + "city": "Albany", + "state_province": "Georgia", + "postal_code": "31705-2109", + "country": "United States", + "longitude": -84.08203126, + "latitude": 31.58549343, + "phone": null, + "website_url": null, + "state": "Georgia", + "street": "405 Cordele Rd" + }, + { + "id": "b79c9be7-524c-413c-ba52-575944037985", + "name": "MillerCoors Brewing Co - Fort Worth", + "brewery_type": "large", + "address_1": "7001 South Fwy", + "address_2": null, + "address_3": null, + "city": "Fort Worth", + "state_province": "Texas", + "postal_code": "76134-4001", + "country": "United States", + "longitude": -97.3194181, + "latitude": 32.6411318, + "phone": "8175513255", + "website_url": "http://www.millerbrewing.com", + "state": "Texas", + "street": "7001 South Fwy" + }, + { + "id": "e58e3205-d7d2-4a33-b4c4-c5bbdaca6d88", + "name": "MillerCoors Brewing Co - Golden", + "brewery_type": "large", + "address_1": "311 10th St", + "address_2": null, + "address_3": null, + "city": "Golden", + "state_province": "Colorado", + "postal_code": "80401-5811", + "country": "United States", + "longitude": -105.219592, + "latitude": 39.759495, + "phone": "3032776246", + "website_url": null, + "state": "Colorado", + "street": "311 10th St" + }, + { + "id": "bc3fa044-4efc-4fa3-aa78-de5bdc12a930", + "name": "MillerCoors Brewing Co - Irwindale", + "brewery_type": "large", + "address_1": "15801 1st St", + "address_2": null, + "address_3": null, + "city": "Irwindale", + "state_province": "California", + "postal_code": "91706-2069", + "country": "United States", + "longitude": -117.9396681, + "latitude": 34.12577411, + "phone": "6269696225", + "website_url": "http://www.millerbrewing.com", + "state": "California", + "street": "15801 1st St" + }, + { + "id": "083550ee-a87a-40d1-bba1-7aeab8ace401", + "name": "MillerCoors Brewing Co - Milwaukee", + "brewery_type": "large", + "address_1": "4251 W State St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53208-3137", + "country": "United States", + "longitude": -87.96633679, + "latitude": 43.04207981, + "phone": null, + "website_url": null, + "state": "Wisconsin", + "street": "4251 W State St" + }, + { + "id": "b667f592-f199-4e32-b401-0b296a447bde", + "name": "MillerCoors Brewing Co - Shenandoah Facility", + "brewery_type": "large", + "address_1": "5135 South East Side Hwy", + "address_2": null, + "address_3": null, + "city": "Elkton", + "state_province": "Virginia", + "postal_code": "22827-3469", + "country": "United States", + "longitude": -78.68239615, + "latitude": 38.35777975, + "phone": "5402898201", + "website_url": "http://www.coors.com", + "state": "Virginia", + "street": "5135 South East Side Hwy" + }, + { + "id": "11b078bc-1356-418c-b59e-544845f135b2", + "name": "MillerCoors Brewing Co - Trenton", + "brewery_type": "large", + "address_1": "2525 Wayne Madison Rd", + "address_2": null, + "address_3": null, + "city": "Trenton", + "state_province": "Ohio", + "postal_code": "45067-9760", + "country": "United States", + "longitude": -84.48297139, + "latitude": 39.45673615, + "phone": "5138964601", + "website_url": "http://www.millerbrewing.com", + "state": "Ohio", + "street": "2525 Wayne Madison Rd" + }, + { + "id": "215e7463-7bd6-446f-b20a-b7b9f55bbc09", + "name": "Millersburg Brewing", + "brewery_type": "brewpub", + "address_1": "60 E Jackson St", + "address_2": null, + "address_3": null, + "city": "Millersburg", + "state_province": "Ohio", + "postal_code": "44654-1257", + "country": "United States", + "longitude": -81.91677867, + "latitude": 40.55424322, + "phone": "3306744728", + "website_url": "http://www.millersburgbrewing.com", + "state": "Ohio", + "street": "60 E Jackson St" + }, + { + "id": "93fc5696-a0b1-4e3c-b813-f8712792092e", + "name": "Mills River Brewery", + "brewery_type": "brewpub", + "address_1": "330 Rockwood Rd Ste 103", + "address_2": null, + "address_3": null, + "city": "Arden", + "state_province": "North Carolina", + "postal_code": "28704-8216", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8285852396", + "website_url": "http://www.millsriverbrewery.net", + "state": "North Carolina", + "street": "330 Rockwood Rd Ste 103" + }, + { + "id": "b34ab21b-7046-4944-9867-bfb8f2fa2d40", + "name": "Millstone Pizza Company & Brewery - Cody", + "brewery_type": "brewpub", + "address_1": "1057 Sheridan Ave", + "address_2": null, + "address_3": null, + "city": "Cody", + "state_province": "Wyoming", + "postal_code": "82414-3529", + "country": "United States", + "longitude": -109.04939104879, + "latitude": 44.529863113172, + "phone": "3075864131", + "website_url": "https://www.millstonepizzacompany.com", + "state": "Wyoming", + "street": "1057 Sheridan Ave" + }, + { + "id": "bcf1034e-3ee7-4728-b8ea-082d07079881", + "name": "Millstone Pizza Company & Brewery - Powell", + "brewery_type": "brewpub", + "address_1": "113 S Bent St", + "address_2": null, + "address_3": null, + "city": "Powell", + "state_province": "Wyoming", + "postal_code": "82414-2713", + "country": "United States", + "longitude": -108.75705908665, + "latitude": 44.752909496789, + "phone": "3072717111", + "website_url": "https://www.millstonepizzacompany.com", + "state": "Wyoming", + "street": "113 S Bent St" + }, + { + "id": "ba4811a2-f65a-4295-b420-e7750a42fc1f", + "name": "Millstream Brewing Co", + "brewery_type": "brewpub", + "address_1": "835 48th Ave", + "address_2": null, + "address_3": null, + "city": "Amana", + "state_province": "Iowa", + "postal_code": "52203-8122", + "country": "United States", + "longitude": -91.86527265, + "latitude": 41.7949318, + "phone": "3196223672", + "website_url": "http://www.millstreambrewing.com", + "state": "Iowa", + "street": "835 48th Ave" + }, + { + "id": "76361282-e0b2-47bb-a34e-4141bfd84144", + "name": "Millwood Brewing Company", + "brewery_type": "micro", + "address_1": "9013 E Frederick Ave", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99212-2108", + "country": "United States", + "longitude": -117.283755, + "latitude": 47.68541108, + "phone": "5093689538", + "website_url": "http://www.millwoodbrewery.com", + "state": "Washington", + "street": "9013 E Frederick Ave" + }, + { + "id": "aa3d493d-936c-4798-beb1-ea4491de99ac", + "name": "Millyard Brewing", + "brewery_type": "closed", + "address_1": "25 E Otterson St", + "address_2": null, + "address_3": null, + "city": "Nashua", + "state_province": "New Hampshire", + "postal_code": "03060-3941", + "country": "United States", + "longitude": -71.45988189, + "latitude": 42.7544214, + "phone": "6035055079", + "website_url": "http://www.millyardbrewery.com", + "state": "New Hampshire", + "street": "25 E Otterson St" + }, + { + "id": "b9875d8a-6efc-49e5-ae7a-87146be3d872", + "name": "Milton's Brewing", + "brewery_type": "micro", + "address_1": "108 E Mermod St", + "address_2": null, + "address_3": null, + "city": "Carlsbad", + "state_province": "New Mexico", + "postal_code": "88220", + "country": "United States", + "longitude": -104.2256158, + "latitude": 32.42061065, + "phone": "5756891026", + "website_url": "http://www.miltonsbrewing.com", + "state": "New Mexico", + "street": "108 E Mermod St" + }, + { + "id": "71aff9bc-61b0-46b6-b7bc-b123c120f170", + "name": "Milwaukee Brewing Co - Production facility", + "brewery_type": "micro", + "address_1": "613 S 2nd St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53204-1616", + "country": "United States", + "longitude": -87.91303682, + "latitude": 43.02500965, + "phone": "4142262337", + "website_url": "http://www.ale-house.com", + "state": "Wisconsin", + "street": "613 S 2nd St" + }, + { + "id": "37e2d21b-cd0d-4e31-90e7-be86149ec9bf", + "name": "Milwaukee Brewing Company", + "brewery_type": "micro", + "address_1": "613 S 2nd St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53204-1616", + "country": "United States", + "longitude": -87.91303682, + "latitude": 43.02500965, + "phone": "4142262337", + "website_url": "http://www.mkebrewing.com", + "state": "Wisconsin", + "street": "613 S 2nd St" + }, + { + "id": "20aad2db-4ce7-42b7-9a72-c2d4c2b833da", + "name": "Milwaukee Premium Brewing Co", + "brewery_type": "contract", + "address_1": "6591 N Sidney Pl", + "address_2": null, + "address_3": null, + "city": "Glendale", + "state_province": "Wisconsin", + "postal_code": "53209-3215", + "country": "United States", + "longitude": -87.9486093, + "latitude": 43.13845743, + "phone": "4143625000", + "website_url": null, + "state": "Wisconsin", + "street": "6591 N Sidney Pl" + }, + { + "id": "8db4719d-962f-4e0c-a20d-943f062203e7", + "name": "Mindful Brewing Company", + "brewery_type": "brewpub", + "address_1": "3759 Library Rd", + "address_2": null, + "address_3": null, + "city": "Castle Shannon", + "state_province": "Pennsylvania", + "postal_code": "15234-2232", + "country": "United States", + "longitude": -80.02163298, + "latitude": 40.36441782, + "phone": "4126683857", + "website_url": "http://Www.mindfulbrewing.com", + "state": "Pennsylvania", + "street": "3759 Library Rd" + }, + { + "id": "cd685064-02d7-4276-b41c-363af29e81f2", + "name": "Mine Shaft Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Park City", + "state_province": "Utah", + "postal_code": "84098-6724", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.mineshaftbrewingpc.com", + "state": "Utah", + "street": null + }, + { + "id": "48bf3d71-82d6-4fec-a193-8782e5b3d5b9", + "name": "Miner Brewing Co", + "brewery_type": "brewpub", + "address_1": "23845 Highway 385", + "address_2": null, + "address_3": null, + "city": "Hill City", + "state_province": "South Dakota", + "postal_code": "57745-6517", + "country": "United States", + "longitude": -103.5224249, + "latitude": 43.94871384, + "phone": "6055742886", + "website_url": "http://www.minerbrewing.com", + "state": "South Dakota", + "street": "23845 Highway 385" + }, + { + "id": "37884fdf-65bc-480f-ba9a-3f556fa5081a", + "name": "Miner Brewing Co", + "brewery_type": "brewpub", + "address_1": "2101 W 41st St, Ste 25", + "address_2": null, + "address_3": null, + "city": "Sioux Falls", + "state_province": "South Dakota", + "postal_code": "57105-6195", + "country": "United States", + "longitude": -96.75352318, + "latitude": 43.51296253, + "phone": "6054967175", + "website_url": "http://minerbrewingsiouxfalls.com/", + "state": "South Dakota", + "street": "2101 W 41st St, Ste 25" + }, + { + "id": "aeae3b6e-3355-44f7-8e03-0d9a36a56d48", + "name": "Miner’s Gold", + "brewery_type": "micro", + "address_1": "5 West Street", + "address_2": null, + "address_3": null, + "city": "Beaconsfield", + "state_province": "TAS", + "postal_code": "7270", + "country": "Australia", + "longitude": 146.8142524, + "latitude": -41.2014188, + "phone": "+61 3 6311 1891", + "website_url": "http://minersgold.com.au/", + "state": "TAS", + "street": "5 West Street" + }, + { + "id": "3897f010-db31-4b2d-9373-4756987f5b5f", + "name": "Miners Alley Brewing Company", + "brewery_type": "brewpub", + "address_1": "2053 Montgomery St", + "address_2": null, + "address_3": null, + "city": "Oroville", + "state_province": "California", + "postal_code": "95965-4947", + "country": "United States", + "longitude": -121.5549792, + "latitude": 39.51414912, + "phone": "5306934388", + "website_url": "http://www.minersalleybrewingco.com", + "state": "California", + "street": "2053 Montgomery St" + }, + { + "id": "7e26b37a-fa1d-4acf-8095-ae9c540098f1", + "name": "Minglewood Brewery", + "brewery_type": "brewpub", + "address_1": "121 Broadway St", + "address_2": null, + "address_3": null, + "city": "Cape Girardeau", + "state_province": "Missouri", + "postal_code": "63701-7326", + "country": "United States", + "longitude": -89.51852096, + "latitude": 37.30583636, + "phone": "5738030524", + "website_url": "http://www.minglewoodbrewery.com", + "state": "Missouri", + "street": "121 Broadway St" + }, + { + "id": "b3731fa3-236f-46f9-bc36-d3556d32b4d1", + "name": "Minhas Craft Brewery", + "brewery_type": "regional", + "address_1": "1208 14th Ave", + "address_2": null, + "address_3": null, + "city": "Monroe", + "state_province": "Wisconsin", + "postal_code": "53566-2055", + "country": "United States", + "longitude": -89.641509, + "latitude": 42.59863051, + "phone": "6083289120", + "website_url": "http://www.minhasbrewery.com", + "state": "Wisconsin", + "street": "1208 14th Ave" + }, + { + "id": "087974c8-a0fb-4f21-9905-06ef4bb902e4", + "name": "Minibrowar Spiż", + "brewery_type": "brewpub", + "address_1": "Rynek-Ratusz 9", + "address_2": null, + "address_3": null, + "city": "Wrocław", + "state_province": "dolnośląskie", + "postal_code": "50-106", + "country": "Poland", + "longitude": 17.0312678, + "latitude": 51.1100309, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Rynek-Ratusz 9" + }, + { + "id": "6df8ee9c-596f-47ad-a4dc-2dc59ac57c66", + "name": "Ministry of Beer", + "brewery_type": "micro", + "address_1": "1 Lyndoch Valley Road", + "address_2": null, + "address_3": null, + "city": "Lyndoch", + "state_province": "SA", + "postal_code": "5351", + "country": "Australia", + "longitude": 138.8912853, + "latitude": -34.6015664, + "phone": "+61 402 572 229", + "website_url": "http://www.ministryofbeer.com.au/", + "state": "SA", + "street": "1 Lyndoch Valley Road" + }, + { + "id": "655b93f8-9108-460a-a33d-5b418b62f42c", + "name": "Minneapolis Town Hall Brewery", + "brewery_type": "brewpub", + "address_1": "1430 Washington Ave S", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55454-1038", + "country": "United States", + "longitude": -93.247714, + "latitude": 44.9733314, + "phone": "6123398696", + "website_url": "http://www.townhallbrewery.com", + "state": "Minnesota", + "street": "1430 Washington Ave S" + }, + { + "id": "c5b7e295-6109-4e4a-9eb9-7ae493fb4967", + "name": "Minocqua Brewing Co", + "brewery_type": "brewpub", + "address_1": "238 Lake Shore Dr", + "address_2": null, + "address_3": null, + "city": "Minocqua", + "state_province": "Wisconsin", + "postal_code": "54548-0081", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7153562600", + "website_url": "http://minocquabrewingcompany.com", + "state": "Wisconsin", + "street": "238 Lake Shore Dr" + }, + { + "id": "699c24ab-d73d-49b1-824e-8be49e919c19", + "name": "MINOH BEER WAREHOUSE", + "brewery_type": "brewpub", + "address_1": "3-14-18 Makiochi", + "address_2": null, + "address_3": null, + "city": "Minoh", + "state_province": "Osaka", + "postal_code": "562-0004", + "country": "Japan", + "longitude": 135.4730884, + "latitude": 34.82355132, + "phone": "81727257234", + "website_url": "https://www.minoh-beer.jp/warehouse/", + "state": "Osaka", + "street": "3-14-18 Makiochi" + }, + { + "id": "61941d44-a720-4174-a694-d6a438895f75", + "name": "Mirage Beer Co", + "brewery_type": "proprietor", + "address_1": "943 NW 50th St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98107", + "country": "United States", + "longitude": -122.3703933, + "latitude": 47.66496474, + "phone": null, + "website_url": "http://miragebeer.com", + "state": "Washington", + "street": "943 NW 50th St" + }, + { + "id": "ab6b4d55-6c25-46a6-a080-9b6376fe26c4", + "name": "Mirror Twin Brewing", + "brewery_type": "brewpub", + "address_1": "725 National Ave", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "Kentucky", + "postal_code": "40502-1431", + "country": "United States", + "longitude": -84.4784656, + "latitude": 38.04042235, + "phone": "8594478146", + "website_url": "http://www.mirrortwinbrewing.com", + "state": "Kentucky", + "street": "725 National Ave" + }, + { + "id": "4552be6f-35d3-4cd5-b4ba-fde9785eb275", + "name": "Misconduct Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Carmel", + "state_province": "Indiana", + "postal_code": "46033-9414", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Indiana", + "street": null + }, + { + "id": "76cad617-f133-45d8-a927-3d83d3bd7d2e", + "name": "Miscreation Brewing Company", + "brewery_type": "brewpub", + "address_1": "6 Center Sq", + "address_2": null, + "address_3": null, + "city": "Hanover", + "state_province": "Pennsylvania", + "postal_code": "17331-3001", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7176983666", + "website_url": "http://www.miscreationbrewing.com", + "state": "Pennsylvania", + "street": "6 Center Sq" + }, + { + "id": "0f66c4e9-7284-4ffa-ad98-7d20ad393412", + "name": "Mishap! Brewing Company", + "brewery_type": "closed", + "address_1": "48 S Main St", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "Wyoming", + "postal_code": "82834-1823", + "country": "United States", + "longitude": -106.6985012, + "latitude": 44.34570009, + "phone": "3076205688", + "website_url": "http://www.mishapbrewing.com", + "state": "Wyoming", + "street": "48 S Main St" + }, + { + "id": "85bd87d6-6db4-4bac-86d1-fc8f6d2d174c", + "name": "Mishigama Craft Brewing / Ypsi Alehouse", + "brewery_type": "brewpub", + "address_1": "124 Pearl St Ste 100", + "address_2": null, + "address_3": null, + "city": "Ypsilanti", + "state_province": "Michigan", + "postal_code": "48197-5374", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7344871555", + "website_url": "http://www.ypsialehouse.com", + "state": "Michigan", + "street": "124 Pearl St Ste 100" + }, + { + "id": "e3176cc4-ed3e-4aa6-862a-3327c70e981b", + "name": "Miskatonic Brewing Company", + "brewery_type": "micro", + "address_1": "1000 N Frontage Rd Ste C", + "address_2": null, + "address_3": null, + "city": "Darien", + "state_province": "Illinois", + "postal_code": "60561-6448", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6305419414", + "website_url": "http://www.miskatonicbrewing.com", + "state": "Illinois", + "street": "1000 N Frontage Rd Ste C" + }, + { + "id": "bae421ad-41a3-48f8-aef4-536f3accc455", + "name": "Mismatch Brewing Co", + "brewery_type": "micro", + "address_1": "317 Morphett Street", + "address_2": null, + "address_3": null, + "city": "Adelaide", + "state_province": "SA", + "postal_code": "5000", + "country": "Australia", + "longitude": 138.5938151, + "latitude": -34.931714, + "phone": "+61 8 7009 4216", + "website_url": "https://www.mismatchbrewingadl.com.au/", + "state": "SA", + "street": "317 Morphett Street" + }, + { + "id": "132199d7-65f1-4362-8baf-abaab4763334", + "name": "Mismatch Brewing Co.", + "brewery_type": "micro", + "address_1": "317 Morphett Street", + "address_2": null, + "address_3": null, + "city": "Adelaide", + "state_province": "SA", + "postal_code": "5000", + "country": "Australia", + "longitude": 138.5938151, + "latitude": -34.931714, + "phone": "+61 8 7009 4216", + "website_url": "https://www.mismatchbrewingadl.com.au/", + "state": "SA", + "street": "317 Morphett Street" + }, + { + "id": "8978b04f-52e6-4930-9960-0f78ae143c9c", + "name": "Mispillion River Brewing", + "brewery_type": "micro", + "address_1": "255 Mullet Run St", + "address_2": null, + "address_3": null, + "city": "Milford", + "state_province": "Delaware", + "postal_code": "19963", + "country": "United States", + "longitude": -75.45083871, + "latitude": 38.93078885, + "phone": "3024916623", + "website_url": "http://www.mispillionriverbrewing.com", + "state": "Delaware", + "street": "255 Mullet Run St" + }, + { + "id": "9b62df32-e3f8-4f7e-a346-f5530a533a57", + "name": "Missing Falls Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Akron", + "state_province": "Ohio", + "postal_code": "44311-1079", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3308086097", + "website_url": null, + "state": "Ohio", + "street": null + }, + { + "id": "4791280b-8d59-4ae5-9bd4-36911124cb09", + "name": "Missing Link Brewery Ltd", + "brewery_type": "taproom", + "address_1": "Selsfield Road", + "address_2": null, + "address_3": null, + "city": "East Grinstead", + "state_province": "West Sussex", + "postal_code": "RH16 4QS", + "country": "England", + "longitude": -0.070719, + "latitude": 51.079995, + "phone": "7515336785", + "website_url": "https://missinglinkbrewing.com/", + "state": "West Sussex", + "street": "Selsfield Road" + }, + { + "id": "6c437cbd-0130-4559-8596-a631830eeab7", + "name": "Missing Links Brewery", + "brewery_type": "brewpub", + "address_1": "891 Evans City Rd", + "address_2": null, + "address_3": null, + "city": "Renfrew", + "state_province": "Pennsylvania", + "postal_code": "16053-9209", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7249962948", + "website_url": "http://www.missinglinksbrewery.com", + "state": "Pennsylvania", + "street": "891 Evans City Rd" + }, + { + "id": "a5fb1cc5-cdcd-4b4e-ab3b-dd0ecc74d1cc", + "name": "Missing Mountain Brewing Company", + "brewery_type": "brewpub", + "address_1": "2811 Front St", + "address_2": null, + "address_3": null, + "city": "Cuyahoga Falls", + "state_province": "Ohio", + "postal_code": "44262", + "country": "United States", + "longitude": -81.46928097, + "latitude": 41.14838453, + "phone": null, + "website_url": "http://www.missingmountain.com", + "state": "Ohio", + "street": "2811 Front St" + }, + { + "id": "0e8aa3fe-40d6-4d55-8d2f-2a3348f14421", + "name": "Mission Brewery", + "brewery_type": "micro", + "address_1": "1441 L St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92101-8967", + "country": "United States", + "longitude": -117.0682152, + "latitude": 32.6220746, + "phone": "6195440555", + "website_url": "http://www.missionbrewery.com", + "state": "California", + "street": "1441 L St" + }, + { + "id": "ab98ee50-5473-4933-83e7-8cc6645fd0c5", + "name": "Missoula Brewing Company", + "brewery_type": "brewpub", + "address_1": "200 International Dr", + "address_2": null, + "address_3": null, + "city": "Missoula", + "state_province": "Montana", + "postal_code": "59808-1584", + "country": "United States", + "longitude": -114.0433078, + "latitude": 46.90454835, + "phone": "4065498193", + "website_url": "http://www.highlanderbeer.com", + "state": "Montana", + "street": "200 International Dr" + }, + { + "id": "a1274517-d0af-4c1b-8b7b-2ec4662d2681", + "name": "Missouri Beer Company", + "brewery_type": "micro", + "address_1": "22 W Industrial Dr", + "address_2": null, + "address_3": null, + "city": "O Fallon", + "state_province": "Missouri", + "postal_code": "63366-1926", + "country": "United States", + "longitude": -90.75261, + "latitude": 38.805938, + "phone": "6362946672", + "website_url": "http://www.mobeerco.com", + "state": "Missouri", + "street": "22 W Industrial Dr" + }, + { + "id": "bdb7f3a3-e8fb-46ca-a28c-9ff8b6ef345b", + "name": "Missouri Breaks Brewing", + "brewery_type": "micro", + "address_1": "326 Main St", + "address_2": null, + "address_3": null, + "city": "Wolf Point", + "state_province": "Montana", + "postal_code": "59201-0654", + "country": "United States", + "longitude": -105.6421748, + "latitude": 48.09013004, + "phone": "4066531467", + "website_url": "http://www.missouribreaksbrewing.com", + "state": "Montana", + "street": "326 Main St" + }, + { + "id": "e6c27506-2269-4b6e-bad9-6b9e2c16a1da", + "name": "Mistress Brewing Company", + "brewery_type": "micro", + "address_1": "1802 N Ankeny Blvd #108", + "address_2": null, + "address_3": null, + "city": "Ankeny", + "state_province": "Iowa", + "postal_code": "50023-1802", + "country": "United States", + "longitude": -93.60151181, + "latitude": 41.74780209, + "phone": "5157712133", + "website_url": "http://www.mistressbrewing.com", + "state": "Iowa", + "street": "1802 N Ankeny Blvd #108" + }, + { + "id": "2519c182-f15e-47cc-9d2a-4291dfa134bc", + "name": "Misty Mountain Brewery", + "brewery_type": "brewpub", + "address_1": "625 Chetco Ave Suite 120", + "address_2": null, + "address_3": null, + "city": "Brookings", + "state_province": "Oregon", + "postal_code": "97415-9519", + "country": "United States", + "longitude": -124.2824159, + "latitude": 42.05228881, + "phone": "5418132599", + "website_url": "https://mistymountainbrewing.com/", + "state": "Oregon", + "street": "625 Chetco Ave Suite 120" + }, + { + "id": "11fe95a9-6086-4e9f-bc72-a6a05468b97b", + "name": "Mitta Mitta Brewing Co.", + "brewery_type": "micro", + "address_1": "1639 Mitta North Road", + "address_2": null, + "address_3": null, + "city": "Mitta Mitta", + "state_province": "VIC", + "postal_code": "3701", + "country": "Australia", + "longitude": 147.3715972, + "latitude": -36.5192451, + "phone": "+61 499 600 914", + "website_url": "http://mittabrewing.com.au/", + "state": "VIC", + "street": "1639 Mitta North Road" + }, + { + "id": "01812623-d7f6-46db-80fa-b50dbea7db36", + "name": "Mitten Brewing Co - Northport", + "brewery_type": "brewpub", + "address_1": "112 W Nagonaba St", + "address_2": null, + "address_3": null, + "city": "Northport", + "state_province": "Michigan", + "postal_code": "49670-5018", + "country": "United States", + "longitude": -85.61801909, + "latitude": 45.129833, + "phone": "6163182448", + "website_url": null, + "state": "Michigan", + "street": "112 W Nagonaba St" + }, + { + "id": "f77c9b88-94ee-4033-a93c-4d32f09f155d", + "name": "Moab Brewery", + "brewery_type": "micro", + "address_1": "686 S Main St", + "address_2": null, + "address_3": null, + "city": "Moab", + "state_province": "Utah", + "postal_code": "84532-2901", + "country": "United States", + "longitude": -109.549606, + "latitude": 38.56263, + "phone": "4352596333", + "website_url": "http://www.themoabbrewery.com", + "state": "Utah", + "street": "686 S Main St" + }, + { + "id": "dfe6e726-9bba-4653-8dcc-c8ec944baa1c", + "name": "Moat Mountain Smoke House and Brewing Co", + "brewery_type": "brewpub", + "address_1": "3378 White Mountain Highway", + "address_2": null, + "address_3": null, + "city": "North Conway", + "state_province": "New Hampshire", + "postal_code": "03860-1518", + "country": "United States", + "longitude": -71.14358535, + "latitude": 44.06850015, + "phone": "6033566381", + "website_url": "http://www.moatmountain.com", + "state": "New Hampshire", + "street": "3378 White Mountain Highway" + }, + { + "id": "f2d6ec98-b9b1-448c-948a-93bd0e8a3528", + "name": "MobCraft Beer", + "brewery_type": "proprietor", + "address_1": "505 S 5th St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53204-1518", + "country": "United States", + "longitude": -87.91693739, + "latitude": 43.02618384, + "phone": "6083463003", + "website_url": "http://www.mobcraftbeer.com", + "state": "Wisconsin", + "street": "505 S 5th St" + }, + { + "id": "53a0bd5c-f9f3-4ee4-b4b0-0a41cf89376e", + "name": "Mobtown Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21224-4716", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4104198312", + "website_url": null, + "state": "Maryland", + "street": null + }, + { + "id": "93025041-59f2-44a9-8a2b-bec7c74c158b", + "name": "Moby Dick Brewing Co.", + "brewery_type": "brewpub", + "address_1": "16 S Water St", + "address_2": null, + "address_3": null, + "city": "New Bedford", + "state_province": "Massachusetts", + "postal_code": "02740-7235", + "country": "United States", + "longitude": -70.92251325, + "latitude": 41.63382101, + "phone": "7742026961", + "website_url": "http://www.mobydickbrewing.com", + "state": "Massachusetts", + "street": "16 S Water St" + }, + { + "id": "c516f2aa-753b-484a-abb9-91312929211d", + "name": "Mocama Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fernandina Beach", + "state_province": "Florida", + "postal_code": "32034", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7062022077", + "website_url": "http://www.mocama.com", + "state": "Florida", + "street": null + }, + { + "id": "5fd90c67-116f-4826-ae88-83b3a5ecd603", + "name": "Moccasin Bend Brewing Co", + "brewery_type": "micro", + "address_1": "3210 Broad St # B", + "address_2": null, + "address_3": null, + "city": "Chattanooga", + "state_province": "Tennessee", + "postal_code": "37408-3059", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4238216392", + "website_url": "http://www.bendbrewingbeer.com", + "state": "Tennessee", + "street": "3210 Broad St # B" + }, + { + "id": "dc6da585-1369-4b60-b00a-e39dffed1dd9", + "name": "Mockery Brewing", + "brewery_type": "micro", + "address_1": "3501 Delgany St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80216-3617", + "country": "United States", + "longitude": -104.9797349, + "latitude": 39.7712389, + "phone": "3039532058", + "website_url": "http://Mockerybrewing.com", + "state": "Colorado", + "street": "3501 Delgany St" + }, + { + "id": "73878a6f-9d44-49b4-a0b1-31ea0a115e20", + "name": "Moderation Brewing", + "brewery_type": "micro", + "address_1": "103 Maine St", + "address_2": null, + "address_3": null, + "city": "Brunswick", + "state_province": "Maine", + "postal_code": "04011-2012", + "country": "United States", + "longitude": -69.96566833, + "latitude": 43.91631921, + "phone": "12073479918", + "website_url": "http://www.moderationbrewery.com", + "state": "Maine", + "street": "103 Maine St" + }, + { + "id": "5895ab5b-ba99-44f5-b9f1-48e332e7f20e", + "name": "Modern Brewery", + "brewery_type": "micro", + "address_1": "5231 Manchester Ave # E", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63110-2092", + "country": "United States", + "longitude": -90.273784, + "latitude": 38.625149, + "phone": null, + "website_url": "http://www.mb314.com", + "state": "Missouri", + "street": "5231 Manchester Ave # E" + }, + { + "id": "ce39bb88-81c5-4d53-b95c-da6ffaa25c3c", + "name": "Modern Methods Brewing Company", + "brewery_type": "micro", + "address_1": "125 David Grohl Alley", + "address_2": null, + "address_3": null, + "city": "Warren", + "state_province": "Ohio", + "postal_code": "44481", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3303331594", + "website_url": "http://www.modernmethodsbrew.com", + "state": "Ohio", + "street": "125 David Grohl Alley" + }, + { + "id": "0203914c-a149-405a-8138-084ec3e5c1e4", + "name": "Modern Romance Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Durham", + "state_province": "North Carolina", + "postal_code": "27703-5133", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9192594469", + "website_url": "http://www.drinkmodern.com", + "state": "North Carolina", + "street": null + }, + { + "id": "6794eb82-4607-4730-bd12-4d164deb365f", + "name": "Modern Times - The Belmont Fermentorium", + "brewery_type": "brewpub", + "address_1": "630 SE Belmont St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97214-2372", + "country": "United States", + "longitude": -122.6590469, + "latitude": 45.516294, + "phone": null, + "website_url": null, + "state": "Oregon", + "street": "630 SE Belmont St" + }, + { + "id": "1f33d1c9-74e4-46bb-822e-aebfa1d180b9", + "name": "Modern Times - The Dankness Dojo", + "brewery_type": "brewpub", + "address_1": "3725 Greenwood St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92110-4441", + "country": "United States", + "longitude": -117.206153, + "latitude": 32.754233, + "phone": "6195469694", + "website_url": null, + "state": "California", + "street": "3725 Greenwood St" + }, + { + "id": "ab1d0e1c-87ce-4556-98af-8922c0d380ad", + "name": "Modern Times Barrel House", + "brewery_type": "micro", + "address_1": "3486 Kurtz St # 102", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92110-4429", + "country": "United States", + "longitude": -117.208725, + "latitude": 32.75539325, + "phone": null, + "website_url": null, + "state": "California", + "street": "3486 Kurtz St # 102" + }, + { + "id": "579aa3fb-9386-4a0e-b617-8b4d72cd5075", + "name": "Modern Times Beer", + "brewery_type": "regional", + "address_1": "3725 Greenwood St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92110-4441", + "country": "United States", + "longitude": -117.206153, + "latitude": 32.754233, + "phone": "6195469694", + "website_url": "http://www.moderntimesbeer.com", + "state": "California", + "street": "3725 Greenwood St" + }, + { + "id": "4c6c6707-77b4-4bb6-bad0-8abfd42ac48e", + "name": "Modern Times Beer", + "brewery_type": "micro", + "address_1": "50 Tope Street", + "address_2": null, + "address_3": null, + "city": "South Melbourne", + "state_province": "VIC", + "postal_code": "3205", + "country": "Australia", + "longitude": 144.9629367, + "latitude": -37.8305483, + "phone": "+61 3 8652 8325", + "website_url": "https://brewmanity.com.au/", + "state": "VIC", + "street": "50 Tope Street" + }, + { + "id": "b07ee09f-2060-4238-8d2e-b9dbba17da2f", + "name": "Modestman Brewing", + "brewery_type": "micro", + "address_1": "100 Main St", + "address_2": null, + "address_3": null, + "city": "Keene", + "state_province": "New Hampshire", + "postal_code": "03431-3736", + "country": "United States", + "longitude": -72.27818311, + "latitude": 42.93427008, + "phone": "6033527695", + "website_url": "http://modestmanbrewing.com/", + "state": "New Hampshire", + "street": "100 Main St" + }, + { + "id": "da2e1ebe-3db9-4d34-8db5-70e12becbd60", + "name": "Modicum Brewing", + "brewery_type": "micro", + "address_1": "3732 Spooner Ave Ste A", + "address_2": null, + "address_3": null, + "city": "Altoona", + "state_province": "Wisconsin", + "postal_code": "54720-1097", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7158958585", + "website_url": "http://www.modicumbrewing.com", + "state": "Wisconsin", + "street": "3732 Spooner Ave Ste A" + }, + { + "id": "f5d9e0de-18c9-4763-aef9-36d71d6b1bce", + "name": "Modist Brewing Company", + "brewery_type": "micro", + "address_1": "505 N 3rd St", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55401-1201", + "country": "United States", + "longitude": -93.2708126, + "latitude": 44.9816901, + "phone": "6124540258", + "website_url": "http://www.modistbrewing.com", + "state": "Minnesota", + "street": "505 N 3rd St" + }, + { + "id": "5c9636b3-6de7-4779-9a9f-6957df38b805", + "name": "Modus Operandi Brewing", + "brewery_type": "micro", + "address_1": "14 Harkeith Street", + "address_2": null, + "address_3": null, + "city": "Mona Vale", + "state_province": "NSW", + "postal_code": "2103", + "country": "Australia", + "longitude": 151.306215, + "latitude": -33.675873, + "phone": "+61 2 4011 5850", + "website_url": "http://www.mobrewing.com.au/", + "state": "NSW", + "street": "14 Harkeith Street" + }, + { + "id": "bbd537a3-ccad-4284-88a1-914527d8ed6e", + "name": "Moeller Brew Barn", + "brewery_type": "micro", + "address_1": "8016 Marion Dr", + "address_2": null, + "address_3": null, + "city": "Maria Stein", + "state_province": "Ohio", + "postal_code": "45860-8706", + "country": "United States", + "longitude": -84.49312675, + "latitude": 40.42144783, + "phone": "4199253005", + "website_url": "http://www.moellerbrewbarn.com", + "state": "Ohio", + "street": "8016 Marion Dr" + }, + { + "id": "916efcdf-12c7-4c76-9a22-1312ad526e34", + "name": "Moerlein Lager House", + "brewery_type": "brewpub", + "address_1": "115 Joe Nuxhall Way", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45202-4143", + "country": "United States", + "longitude": -84.50871677, + "latitude": 39.09630095, + "phone": "5134212337", + "website_url": "http://www.moerleinlagerhouse.com", + "state": "Ohio", + "street": "115 Joe Nuxhall Way" + }, + { + "id": "dacc9695-452f-4142-abc5-f1b94b0389af", + "name": "Moffat Beach Brewing Co.", + "brewery_type": "micro", + "address_1": "12 Seaview Terrace", + "address_2": "Shop 2", + "address_3": null, + "city": "Moffat Beach", + "state_province": "QLD", + "postal_code": "4551", + "country": "Australia", + "longitude": 153.1420225, + "latitude": -26.7901612, + "phone": "+61 7 5491 4023", + "website_url": "http://www.moffatbeachbrewingco.beer/", + "state": "QLD", + "street": "12 Seaview Terrace" + }, + { + "id": "0e095db5-8f35-4e7d-9f41-63579ace5c80", + "name": "Mogul Brewing", + "brewery_type": "micro", + "address_1": "20C Featherstone Drive", + "address_2": null, + "address_3": null, + "city": "Woolgoolga", + "state_province": "NSW", + "postal_code": "2456", + "country": "Australia", + "longitude": 153.1919784, + "latitude": -30.1241501, + "phone": "+61 404 158 364", + "website_url": "https://www.mogulbeer.com.au/", + "state": "NSW", + "street": "20C Featherstone Drive" + }, + { + "id": "87ed7ff9-556b-4b20-aa67-282b4db14fd6", + "name": "Mohegan Cafe and Brewery", + "brewery_type": "brewpub", + "address_1": "213 Water St", + "address_2": null, + "address_3": null, + "city": "Block Island", + "state_province": "Rhode Island", + "postal_code": "02807", + "country": "United States", + "longitude": -69.32038438, + "latitude": 43.7594709, + "phone": "4014665911", + "website_url": "https://monheganbrewing.com", + "state": "Rhode Island", + "street": "213 Water St" + }, + { + "id": "a1eaf419-9ea7-4962-bc8a-bd958d2474a0", + "name": "Moksa Brewing Co", + "brewery_type": "micro", + "address_1": "5860 Pacific St", + "address_2": null, + "address_3": null, + "city": "Rocklin", + "state_province": "California", + "postal_code": "95677-3738", + "country": "United States", + "longitude": -121.2418299, + "latitude": 38.78184183, + "phone": "9168241366", + "website_url": "http://www.moksabrewing.com", + "state": "California", + "street": "5860 Pacific St" + }, + { + "id": "72e9790d-9d53-4cfd-84a4-9e856ba4f8f2", + "name": "Moksha Beer", + "brewery_type": "contract", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "San Jose", + "state_province": "California", + "postal_code": "95154-0279", + "country": "United States", + "longitude": -121.8905833, + "latitude": 37.3361905, + "phone": "4157295796", + "website_url": "http://www.mokshabeer.com", + "state": "California", + "street": null + }, + { + "id": "40f60211-0a54-4c69-947e-5e88e928e5a4", + "name": "Mollusk Brewing", + "brewery_type": "brewpub", + "address_1": "803 Dexter Ave N", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98109-4320", + "country": "United States", + "longitude": -122.3425442, + "latitude": 47.6269357, + "phone": "2064031228", + "website_url": "http://www.molluskseattle.com", + "state": "Washington", + "street": "803 Dexter Ave N" + }, + { + "id": "93795384-e211-40b3-aa93-7be4d0c83965", + "name": "Molly Pitcher Brewing Co", + "brewery_type": "micro", + "address_1": "10 E South St", + "address_2": null, + "address_3": null, + "city": "Carlisle", + "state_province": "Pennsylvania", + "postal_code": "17013-3426", + "country": "United States", + "longitude": -77.1890465, + "latitude": 40.1982144, + "phone": "7176090969", + "website_url": "http://www.mollypitcher.com", + "state": "Pennsylvania", + "street": "10 E South St" + }, + { + "id": "a861f29e-917a-42f0-86c3-aa89464d63a6", + "name": "Molly Rose Brewing Co.", + "brewery_type": "micro", + "address_1": "285 Wellington Street", + "address_2": "279", + "address_3": null, + "city": "Collingwood", + "state_province": "VIC", + "postal_code": "3066", + "country": "Australia", + "longitude": 144.9875616, + "latitude": -37.7966551, + "phone": "+61 3 9113 6046", + "website_url": "http://www.mollyrosebrewing.com/", + "state": "VIC", + "street": "285 Wellington Street" + }, + { + "id": "0877aaf4-72b4-4efa-b354-19560ae7c9f2", + "name": "MoMac Brewing Company", + "brewery_type": "micro", + "address_1": "3228 Academy Ave", + "address_2": null, + "address_3": null, + "city": "Portsmouth", + "state_province": "Virginia", + "postal_code": "23703-3203", + "country": "United States", + "longitude": -76.39759141, + "latitude": 36.86257934, + "phone": "7573839572", + "website_url": "http://www.momacbrewing.com", + "state": "Virginia", + "street": "3228 Academy Ave" + }, + { + "id": "a2c6c2f2-7f07-4130-a7e3-19dd8e504134", + "name": "Momentum Brewhouse", + "brewery_type": "micro", + "address_1": "9786 Bonita Beach Rd SE Ste 1", + "address_2": null, + "address_3": null, + "city": "Bonita Springs", + "state_province": "Florida", + "postal_code": "34135-4666", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2399499945", + "website_url": "http://www.momentumbrewhouse.com", + "state": "Florida", + "street": "9786 Bonita Beach Rd SE Ste 1" + }, + { + "id": "11c1cf1f-22e3-429d-8cfb-ebb84b90b6f9", + "name": "Monadnock Brewing Company LLC", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Langdon", + "state_province": "New Hampshire", + "postal_code": "03602-8604", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6033136317", + "website_url": "http://www.monadnockbrewing.com", + "state": "New Hampshire", + "street": null + }, + { + "id": "bb5d13ac-8842-48f3-961a-f57413264a55", + "name": "Monday Night Brewing", + "brewery_type": "micro", + "address_1": "670 Trabert Ave NW", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30318-4230", + "country": "United States", + "longitude": -84.40989212, + "latitude": 33.79480405, + "phone": "4043527703", + "website_url": "http://www.mondaynightbrewing.com", + "state": "Georgia", + "street": "670 Trabert Ave NW" + }, + { + "id": "cddb19b7-b910-48b5-a64f-d3924eaec4e4", + "name": "Monday Night Brewing - Garage", + "brewery_type": "micro", + "address_1": "933 Lee St SW", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30310", + "country": "United States", + "longitude": -84.41617724, + "latitude": 33.72906429, + "phone": null, + "website_url": null, + "state": "Georgia", + "street": "933 Lee St SW" + }, + { + "id": "095924d8-a631-407e-97ac-1730ca064b30", + "name": "Mondo Brewing Company", + "brewery_type": "micro", + "address_1": "32 Chifley Drive", + "address_2": null, + "address_3": null, + "city": "Preston", + "state_province": "VIC", + "postal_code": "3072", + "country": "Australia", + "longitude": 145.0296148, + "latitude": -37.7524911, + "phone": "+61 3 9428 2307", + "website_url": "https://moondog.com.au/moon-dog-world", + "state": "VIC", + "street": "32 Chifley Drive" + }, + { + "id": "94e299ad-65d5-422a-a3ec-e26e2354765e", + "name": "Monhegan Brewing Co.", + "brewery_type": "micro", + "address_1": "1 Boody Lane", + "address_2": null, + "address_3": null, + "city": "Monhegan", + "state_province": "Maine", + "postal_code": "04852", + "country": "United States", + "longitude": -69.320989, + "latitude": 43.758828, + "phone": "2079753958", + "website_url": "http://www.monheganbrewing.com", + "state": "Maine", + "street": "1 Boody Lane" + }, + { + "id": "62009eb2-a83b-4535-8205-1b5a9ed86aef", + "name": "Moniker Brewery", + "brewery_type": "micro", + "address_1": "432 W Fountain St", + "address_2": null, + "address_3": null, + "city": "Providence", + "state_province": "Rhode Island", + "postal_code": "02903-3516", + "country": "United States", + "longitude": -71.4239298, + "latitude": 41.8183971, + "phone": "4016480150", + "website_url": "http://www.monikerbrewery.com", + "state": "Rhode Island", + "street": "432 W Fountain St" + }, + { + "id": "45f21aa8-4f34-49e1-80a2-be7c155ac474", + "name": "Monk's Ale House", + "brewery_type": "brewpub", + "address_1": "420 E 8th St", + "address_2": null, + "address_3": null, + "city": "Sioux Falls", + "state_province": "South Dakota", + "postal_code": "57103-7025", + "country": "United States", + "longitude": -96.7218594, + "latitude": 43.5488749, + "phone": "6053382328", + "website_url": "http://www.monkshouseofalerepute.com", + "state": "South Dakota", + "street": "420 E 8th St" + }, + { + "id": "9c9bcbad-da63-4d7d-9729-1f1e7793b65b", + "name": "Monk's Cellar", + "brewery_type": "brewpub", + "address_1": "240 Vernon St", + "address_2": null, + "address_3": null, + "city": "Roseville", + "state_province": "California", + "postal_code": "95678-2633", + "country": "United States", + "longitude": -121.2833983, + "latitude": 38.74958737, + "phone": "9167866665", + "website_url": "http://monkscellar.com", + "state": "California", + "street": "240 Vernon St" + }, + { + "id": "7b95f031-e380-4eef-96c1-6c9d2b4f6ae1", + "name": "Monka Brewing Co", + "brewery_type": "brewpub", + "address_1": "17211 15th Ave NE", + "address_2": null, + "address_3": null, + "city": "Shoreline", + "state_province": "Washington", + "postal_code": "98155", + "country": "United States", + "longitude": -122.3138346, + "latitude": 47.75506305, + "phone": null, + "website_url": "http://www.monkabeer.com", + "state": "Washington", + "street": "17211 15th Ave NE" + }, + { + "id": "bf0d31c6-6080-478a-9caf-164e6545931d", + "name": "Monkey Paw Brewing", + "brewery_type": "micro", + "address_1": "807 16th St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92101-6610", + "country": "United States", + "longitude": -117.149375, + "latitude": 32.71384441, + "phone": "6198672226", + "website_url": "http://www.monkeypawbrewing.com", + "state": "California", + "street": "807 16th St" + }, + { + "id": "5d486fcd-c217-4540-8cfb-4f3ed6a3c467", + "name": "Monkey Town Brewing Company", + "brewery_type": "brewpub", + "address_1": "287 1st Ave", + "address_2": null, + "address_3": null, + "city": "Dayton", + "state_province": "Tennessee", + "postal_code": "37321-1248", + "country": "United States", + "longitude": -85.01275238, + "latitude": 35.49313804, + "phone": "4237751800", + "website_url": "http://www.monkeytownbrewing.com", + "state": "Tennessee", + "street": "287 1st Ave" + }, + { + "id": "f663c1cc-0fca-4d22-9d98-5e36d10e9cb4", + "name": "Monkey Wrench Brewing Company LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Snellville", + "state_province": "Georgia", + "postal_code": "30078-6503", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6785212142", + "website_url": "http://www.monkeywrenchbrewing.com", + "state": "Georgia", + "street": null + }, + { + "id": "3f894bab-a549-4431-898b-7408fbdf766d", + "name": "Monkish Brewing Co", + "brewery_type": "micro", + "address_1": "20311 S Western Ave", + "address_2": null, + "address_3": null, + "city": "Torrance", + "state_province": "California", + "postal_code": "90501-1504", + "country": "United States", + "longitude": -118.3101863, + "latitude": 33.8465751, + "phone": "3102952157", + "website_url": "http://www.monkishbrewing.com", + "state": "California", + "street": "20311 S Western Ave" + }, + { + "id": "08c0b79e-eca7-4f93-9da7-7af413c7e184", + "name": "Monkless Belgian Ales", + "brewery_type": "micro", + "address_1": "20750 High Desert Ln Suite 107", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97701", + "country": "United States", + "longitude": -121.3179164, + "latitude": 44.0502063, + "phone": "5416105492", + "website_url": "http://www.monkless.com", + "state": "Oregon", + "street": "20750 High Desert Ln Suite 107" + }, + { + "id": "7db027c1-8845-4f46-ba38-fddfa4b2e4c2", + "name": "Monks Brew Club", + "brewery_type": "brewpub", + "address_1": "57 East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "428773", + "country": "Singapore", + "longitude": 1.3052288634216, + "latitude": 103.9034599, + "phone": "+65 8606 5690", + "website_url": "https://monksbrew.club/", + "state": "Singapore", + "street": "57 East Coast Road" + }, + { + "id": "01d5e4da-2af7-4046-aa73-5dc4a1d5249f", + "name": "Monnik Beer Company", + "brewery_type": "brewpub", + "address_1": "1036 E Burnett Ave", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40217-1206", + "country": "United States", + "longitude": -85.739379, + "latitude": 38.2225607, + "phone": "5027426564", + "website_url": null, + "state": "Kentucky", + "street": "1036 E Burnett Ave" + }, + { + "id": "adfe0535-71ce-4c68-859d-ffdf7a96883b", + "name": "Monocacy Brewing Co", + "brewery_type": "micro", + "address_1": "1781 N Market St", + "address_2": null, + "address_3": null, + "city": "Frederick", + "state_province": "Maryland", + "postal_code": "21701-4305", + "country": "United States", + "longitude": -77.3989904, + "latitude": 39.4403205, + "phone": "3016310671", + "website_url": null, + "state": "Maryland", + "street": "1781 N Market St" + }, + { + "id": "5279fe01-5f9f-41d2-b21d-e0c64d12f682", + "name": "Monolithic Brewing Company", + "brewery_type": "micro", + "address_1": "4915 N 120th St", + "address_2": null, + "address_3": null, + "city": "Omaha", + "state_province": "Nebraska", + "postal_code": "68164-2004", + "country": "United States", + "longitude": -96.105270415289, + "latitude": 41.349903236482, + "phone": "4025024477", + "website_url": "http://monolithicbrewing.com", + "state": "Nebraska", + "street": "4915 N 120th St" + }, + { + "id": "0218dd8a-e129-4fef-b2a8-9654d0f58621", + "name": "Montana Brewing Co", + "brewery_type": "brewpub", + "address_1": "113 N Broadway", + "address_2": null, + "address_3": null, + "city": "Billings", + "state_province": "Montana", + "postal_code": "59101-2043", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4062529200", + "website_url": "http://www.montanabrewingcompany.com", + "state": "Montana", + "street": "113 N Broadway" + }, + { + "id": "e5fbd122-91d8-46bf-8b3a-02b8cd4541ad", + "name": "Montauk Brewing Co", + "brewery_type": "micro", + "address_1": "62 S Erie Ave", + "address_2": null, + "address_3": null, + "city": "Montauk", + "state_province": "New York", + "postal_code": "11954-5370", + "country": "United States", + "longitude": -71.9440878, + "latitude": 41.0366959, + "phone": "6316688471", + "website_url": "http://www.montaukbrewingco.com", + "state": "New York", + "street": "62 S Erie Ave" + }, + { + "id": "25f4c3e0-6925-4d69-b79f-3318762466cc", + "name": "Montavilla Brew Works", + "brewery_type": "micro", + "address_1": "7805 SE Stark St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97215-2339", + "country": "United States", + "longitude": -122.5833557, + "latitude": 45.5193212, + "phone": "5039543440", + "website_url": "http://www.montavillabrew.com", + "state": "Oregon", + "street": "7805 SE Stark St" + }, + { + "id": "f92345b4-2f02-4cb6-b66f-66c1c460ac2a", + "name": "Montclair Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Montclair", + "state_province": "New Jersey", + "postal_code": "07042-4038", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9737807513", + "website_url": "http://www.montclairbrewery.com", + "state": "New Jersey", + "street": null + }, + { + "id": "716d2b8a-7d4c-413d-8ae3-ec76851eadd8", + "name": "Monterey Coast Brewing", + "brewery_type": "brewpub", + "address_1": "165 Main Street", + "address_2": null, + "address_3": null, + "city": "Salinas", + "state_province": "California", + "postal_code": "93901", + "country": "United States", + "longitude": -121.6551251, + "latitude": 36.67613608, + "phone": "8317582337", + "website_url": "http://www.montereycoastbrewing.com", + "state": "California", + "street": "165 Main Street" + }, + { + "id": "fb2cd2d3-8368-455c-97f4-81376d06e4fe", + "name": "Montgomery Brewing Company", + "brewery_type": "micro", + "address_1": "306 2nd St NW", + "address_2": null, + "address_3": null, + "city": "Montgomery", + "state_province": "Minnesota", + "postal_code": "56069-1011", + "country": "United States", + "longitude": -93.58265606, + "latitude": 44.44107361, + "phone": null, + "website_url": "http://www.montgomerybrewing.com", + "state": "Minnesota", + "street": "306 2nd St NW" + }, + { + "id": "eb91ff82-129b-4177-82f9-7646a4a1bb33", + "name": "Montross Brewery", + "brewery_type": "micro", + "address_1": "15381 Kings Hwy", + "address_2": null, + "address_3": null, + "city": "Montross", + "state_province": "Virginia", + "postal_code": "22520-2746", + "country": "United States", + "longitude": -76.83216539, + "latitude": 38.09269187, + "phone": "8044527394", + "website_url": "http://www.montrossbrewery.com", + "state": "Virginia", + "street": "15381 Kings Hwy" + }, + { + "id": "f5873cbb-e231-4a70-8ed5-0bfd9f2beca5", + "name": "Montucky Cold Snacks", + "brewery_type": "contract", + "address_1": "123 W Lewis St", + "address_2": null, + "address_3": null, + "city": "Livingston", + "state_province": "Montana", + "postal_code": "59047-3010", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4068718886", + "website_url": "http://www.montuckycoldsnacks.com", + "state": "Montana", + "street": "123 W Lewis St" + }, + { + "id": "db4954bd-528e-4369-8a82-f34f6779e9a9", + "name": "Monty Brewing Co.", + "brewery_type": "micro", + "address_1": "10481 New England Highway", + "address_2": null, + "address_3": null, + "city": "Highfields", + "state_province": "QLD", + "postal_code": "4352", + "country": "Australia", + "longitude": 151.9549632, + "latitude": -27.4637271, + "phone": "+61 7 4589 4685", + "website_url": "https://montybrewingco.com.au/?utm_source=google&utm_medium=organic&utm_campaign=gmb", + "state": "QLD", + "street": "10481 New England Highway" + }, + { + "id": "578c6794-5cf7-492d-93ea-650309b74025", + "name": "Monument City Brewing Co", + "brewery_type": "micro", + "address_1": "1 N Haven St Ste A", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21224-1614", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4105993008", + "website_url": "http://www.monumentcitybrewing.com", + "state": "Maryland", + "street": "1 N Haven St Ste A" + }, + { + "id": "8a895c3b-63fc-4838-981a-627e366fcf2e", + "name": "Monzula Farm Brewery / Vineyard 22", + "brewery_type": "micro", + "address_1": "83800 Monzula Rd", + "address_2": null, + "address_3": null, + "city": "Cadiz", + "state_province": "Ohio", + "postal_code": "43907", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7404917000", + "website_url": "http://www.vineyard22winery.com", + "state": "Ohio", + "street": "83800 Monzula Rd" + }, + { + "id": "ce4632c8-fc13-4412-b5d3-002501d3dd91", + "name": "Moo Brew", + "brewery_type": "micro", + "address_1": "32 Chifley Drive", + "address_2": null, + "address_3": null, + "city": "Preston", + "state_province": "VIC", + "postal_code": "3072", + "country": "Australia", + "longitude": 145.0296148, + "latitude": -37.7524911, + "phone": "+61 3 9428 2307", + "website_url": "https://moondog.com.au/moon-dog-world", + "state": "VIC", + "street": "32 Chifley Drive" + }, + { + "id": "3aa48d79-7a78-493f-ba41-ca790a5aa3b2", + "name": "Moo-Duck Brewery", + "brewery_type": "brewpub", + "address_1": "79 S Wilson Ave", + "address_2": null, + "address_3": null, + "city": "Elizabethtown", + "state_province": "Pennsylvania", + "postal_code": "17022-2166", + "country": "United States", + "longitude": -76.61161117, + "latitude": 40.1473526, + "phone": null, + "website_url": "http://www.mooduckbrewery.com", + "state": "Pennsylvania", + "street": "79 S Wilson Ave" + }, + { + "id": "f8b36211-efe3-4174-9de6-9b160719e6d6", + "name": "Moody Tongue Brewing Company", + "brewery_type": "micro", + "address_1": "2136 S Peoria St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60608-4526", + "country": "United States", + "longitude": -87.6483419, + "latitude": 41.8532798, + "phone": "3126005111", + "website_url": "http://www.moodytongue.com", + "state": "Illinois", + "street": "2136 S Peoria St" + }, + { + "id": "d36e2c31-cee2-4199-ad4a-8cdf13cb4e51", + "name": "Mooloolabar", + "brewery_type": "bar", + "address_1": "20 East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "428747", + "country": "Singapore", + "longitude": 1.3043386240433, + "latitude": 103.9025629, + "phone": "+65 8500 4488", + "website_url": null, + "state": "Singapore", + "street": "20 East Coast Road" + }, + { + "id": "45e0fb3d-250a-43b5-97c7-12bffc42e14e", + "name": "Moon Dog Craft Brewery", + "brewery_type": "micro", + "address_1": "17 Duke Street", + "address_2": null, + "address_3": null, + "city": "Abbotsford", + "state_province": "VIC", + "postal_code": "3067", + "country": "Australia", + "longitude": 145.0055272, + "latitude": -37.8099105, + "phone": "+61 3 9428 2307", + "website_url": "https://moondog.com.au/moon-dog-og", + "state": "VIC", + "street": "17 Duke Street" + }, + { + "id": "ab554af2-05cd-43cf-865a-2e5442ff8f2a", + "name": "Moon Hill Brewing Co., Inc.", + "brewery_type": "brewpub", + "address_1": "74 Parker St", + "address_2": null, + "address_3": null, + "city": "Gardner", + "state_province": "Massachusetts", + "postal_code": "01440-3809", + "country": "United States", + "longitude": -71.997003, + "latitude": 42.57590133, + "phone": "9786690122", + "website_url": "http://www.gardnerale.com", + "state": "Massachusetts", + "street": "74 Parker St" + }, + { + "id": "c534e94c-c5bf-4738-bd28-5c91120bbf51", + "name": "Moon River Brewing Co", + "brewery_type": "brewpub", + "address_1": "21 W Bay St", + "address_2": null, + "address_3": null, + "city": "Savannah", + "state_province": "Georgia", + "postal_code": "31401-1106", + "country": "United States", + "longitude": -81.09178578, + "latitude": 32.08098573, + "phone": "9124470943", + "website_url": "http://www.moonriverbrewing.com", + "state": "Georgia", + "street": "21 W Bay St" + }, + { + "id": "9bf8c8f9-ee9a-49b5-b80b-2a8cdb5ec407", + "name": "Moon Tower Sudworks", + "brewery_type": "brewpub", + "address_1": "3004 Canal St", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77003-1627", + "country": "United States", + "longitude": -95.3409715, + "latitude": 29.7543105, + "phone": "8322660105", + "website_url": "http://www.damngoodfoodcoldassbeer.com", + "state": "Texas", + "street": "3004 Canal St" + }, + { + "id": "7342cee2-55da-469a-9d5b-b7d5905dec81", + "name": "Moonlight Brewing Co", + "brewery_type": "large", + "address_1": "3350 Coffey Ln Ste A", + "address_2": null, + "address_3": null, + "city": "Santa Rosa", + "state_province": "California", + "postal_code": "95403-7412", + "country": "United States", + "longitude": -122.7445804, + "latitude": 38.47188347, + "phone": "7075282537", + "website_url": "http://www.moonlightbrewing.com", + "state": "California", + "street": "3350 Coffey Ln Ste A" + }, + { + "id": "e1408cf3-3932-4ca7-bbfa-4f5fda95ade3", + "name": "Moonlight Meadery/Hidden Moon Brewing", + "brewery_type": "closed", + "address_1": "23 Londonderry Rd Unit 17", + "address_2": null, + "address_3": null, + "city": "Londonderry", + "state_province": "New Hampshire", + "postal_code": "03053-3314", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6032162162", + "website_url": "http://www.moonlightmeadery.com", + "state": "New Hampshire", + "street": "23 Londonderry Rd Unit 17" + }, + { + "id": "869baabc-5532-4bc8-b85c-7d96b9e584eb", + "name": "Moonlight Pizza", + "brewery_type": "brewpub", + "address_1": "242 F St", + "address_2": null, + "address_3": null, + "city": "Salida", + "state_province": "Colorado", + "postal_code": "81201-2104", + "country": "United States", + "longitude": -105.9931616, + "latitude": 38.53502271, + "phone": "7195394277", + "website_url": "http://www.moonlightpizza.biz", + "state": "Colorado", + "street": "242 F St" + }, + { + "id": "4a3e3e24-96f3-4194-b154-2bf6107adae6", + "name": "Moonraker Brewing Co", + "brewery_type": "micro", + "address_1": "12970 Earhart Ave Ste 100", + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "California", + "postal_code": "95602-9022", + "country": "United States", + "longitude": -121.0817905, + "latitude": 38.95069985, + "phone": "5307456816", + "website_url": "http://www.moonrakerbrewing.com", + "state": "California", + "street": "12970 Earhart Ave Ste 100" + }, + { + "id": "2b4f0097-357d-4eda-9a01-057406f742b6", + "name": "Moonraker Brewing Company (Production Facility)", + "brewery_type": "micro", + "address_1": "2349 Rickenbacker Way", + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "California", + "postal_code": "95602", + "country": "United States", + "longitude": -121.0813686, + "latitude": 38.95249916, + "phone": "5307456816", + "website_url": null, + "state": "California", + "street": "2349 Rickenbacker Way" + }, + { + "id": "4d7c0a97-2e29-473d-9544-653346bb9ee5", + "name": "MoonRidge Brewpub", + "brewery_type": "brewpub", + "address_1": "501 Bridge St", + "address_2": null, + "address_3": null, + "city": "Cornell", + "state_province": "Wisconsin", + "postal_code": "54732-8392", + "country": "United States", + "longitude": -91.1589648, + "latitude": 45.1653752, + "phone": "7152391341", + "website_url": "http://www.facebook.com/MoonRidge-Brew-Pub-1501996800095070", + "state": "Wisconsin", + "street": "501 Bridge St" + }, + { + "id": "758ed4ad-6805-4b88-bc78-65ecc4b13c4a", + "name": "Moonshot Brewing", + "brewery_type": "micro", + "address_1": "8804 W Victoria Ave # 140", + "address_2": null, + "address_3": null, + "city": "Kennewick", + "state_province": "Washington", + "postal_code": "99336", + "country": "United States", + "longitude": -119.2412545, + "latitude": 46.22937016, + "phone": "5094911058", + "website_url": "https://moonshotbrewing.com", + "state": "Washington", + "street": "8804 W Victoria Ave # 140" + }, + { + "id": "b578ee40-d021-4d5a-bf5f-91154b9cef3d", + "name": "Moonshrimp Brewing", + "brewery_type": "micro", + "address_1": "8428 SW 22nd Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97219-2856", + "country": "United States", + "longitude": -122.7000809, + "latitude": 45.4637206, + "phone": "5039702234", + "website_url": "http://www.moonshrimpbrewing.com", + "state": "Oregon", + "street": "8428 SW 22nd Ave" + }, + { + "id": "327dd95c-0197-47ea-9bb2-5cf63318fcf7", + "name": "Moontown Brewing", + "brewery_type": "brewpub", + "address_1": "345 S Bowers St", + "address_2": null, + "address_3": null, + "city": "Whitestown", + "state_province": "Indiana", + "postal_code": "46075", + "country": "United States", + "longitude": -86.346903, + "latitude": 39.99409929, + "phone": "5742503114", + "website_url": "http://www.moontownbeer.com", + "state": "Indiana", + "street": "345 S Bowers St" + }, + { + "id": "c18eb90a-d3c3-4bab-a9f0-34a6e62022d6", + "name": "Moor Beer Co", + "brewery_type": "micro", + "address_1": "35 Merrigal Road", + "address_2": "Unit 18", + "address_3": null, + "city": "Port Macquarie", + "state_province": "NSW", + "postal_code": "2444", + "country": "Australia", + "longitude": 152.881802, + "latitude": -31.456447, + "phone": "+61 466 628 640", + "website_url": "http://moorebeer.com.au/", + "state": "NSW", + "street": "35 Merrigal Road" + }, + { + "id": "4fae98ab-ba03-4b64-98f9-c966ab8ff5a2", + "name": "Moorebeer Brewing Co.", + "brewery_type": "micro", + "address_1": "35 Merrigal Road", + "address_2": "Unit 18", + "address_3": null, + "city": "Port Macquarie", + "state_province": "NSW", + "postal_code": "2444", + "country": "Australia", + "longitude": 152.881802, + "latitude": -31.456447, + "phone": "+61 466 628 640", + "website_url": "http://moorebeer.com.au/", + "state": "NSW", + "street": "35 Merrigal Road" + }, + { + "id": "d64bd3bd-1e46-41ab-8c9d-f38de50db77f", + "name": "Moose Lake Brewing Company", + "brewery_type": "micro", + "address_1": "244 Lakeshore Drive", + "address_2": null, + "address_3": null, + "city": "Moose Lake", + "state_province": "Minnesota", + "postal_code": "55767", + "country": "United States", + "longitude": -92.76397874, + "latitude": 46.4499931, + "phone": "2184854585", + "website_url": "http://www.mooselakebrewing.com", + "state": "Minnesota", + "street": "244 Lakeshore Drive" + }, + { + "id": "d4a564d1-c07b-47a6-bdd5-9198a97aadc3", + "name": "More Brewing Co", + "brewery_type": "brewpub", + "address_1": "126 S Villa Ave", + "address_2": null, + "address_3": null, + "city": "Villa Park", + "state_province": "Illinois", + "postal_code": "60181-2653", + "country": "United States", + "longitude": -87.969272, + "latitude": 41.891984, + "phone": "7735517506", + "website_url": "http://Www.morebrewing.com", + "state": "Illinois", + "street": "126 S Villa Ave" + }, + { + "id": "ef5f2236-8173-4696-b128-1531f5f7a3c6", + "name": "Morgan Ridge Railwalk Brewery & Eatery", + "brewery_type": "brewpub", + "address_1": "421 N Lee St", + "address_2": null, + "address_3": null, + "city": "Salisbury", + "state_province": "North Carolina", + "postal_code": "28144-4424", + "country": "United States", + "longitude": -80.46510306, + "latitude": 35.66920051, + "phone": "7047548379", + "website_url": "http://www.morganridgerailwalk.com", + "state": "North Carolina", + "street": "421 N Lee St" + }, + { + "id": "e17e1ab6-dfb3-4975-aa30-498b915f69d6", + "name": "Morgan Ridge Vineyards & Brewhouse", + "brewery_type": "brewpub", + "address_1": "486 John Morgan Rd", + "address_2": null, + "address_3": null, + "city": "Gold Hill", + "state_province": "North Carolina", + "postal_code": "28071-9758", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7046390911", + "website_url": "http://www.morganridgevineyard.com", + "state": "North Carolina", + "street": "486 John Morgan Rd" + }, + { + "id": "c9ad889d-bf39-4366-886f-a140c0a52dd7", + "name": "Morgan Street Brewery", + "brewery_type": "proprietor", + "address_1": "721 N 2nd St", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63102-2518", + "country": "United States", + "longitude": -90.18465871, + "latitude": 38.63032719, + "phone": "3142319970", + "website_url": "http://www.morganstreetbrewery.com", + "state": "Missouri", + "street": "721 N 2nd St" + }, + { + "id": "679836c6-d52e-4f21-a393-1e8f47b185eb", + "name": "Morgan Territory Brewing", + "brewery_type": "micro", + "address_1": "1885 N Macarthur Dr", + "address_2": null, + "address_3": null, + "city": "Tracy", + "state_province": "California", + "postal_code": "95376-2820", + "country": "United States", + "longitude": -121.4145449, + "latitude": 37.7545317, + "phone": "2098348664", + "website_url": "http://www.morganterritorybrewing.com", + "state": "California", + "street": "1885 N Macarthur Dr" + }, + { + "id": "e64f154b-6644-49e1-89b4-f1c042ae34d5", + "name": "Morgantown Brewing Co", + "brewery_type": "brewpub", + "address_1": "1291 University Ave", + "address_2": null, + "address_3": null, + "city": "Morgantown", + "state_province": "West Virginia", + "postal_code": "26505-5450", + "country": "United States", + "longitude": -79.9579978, + "latitude": 39.6305115, + "phone": "3042926959", + "website_url": "http://www.morgantownbrewing.com", + "state": "West Virginia", + "street": "1291 University Ave" + }, + { + "id": "6b1fba4c-e5ae-4ffa-80d0-a4a2d0079ec8", + "name": "Moriches Field Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Center Moriches", + "state_province": "New York", + "postal_code": "11934-2600", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6314495310", + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "d9c01e62-eec1-4dde-9c50-df5707c2a375", + "name": "Mornington Peninsula Brewery", + "brewery_type": "micro", + "address_1": "72 Watt Road", + "address_2": null, + "address_3": null, + "city": "Mornington", + "state_province": "VIC", + "postal_code": "3931", + "country": "Australia", + "longitude": 145.056865, + "latitude": -38.232544, + "phone": "+61 477 378 294", + "website_url": "http://www.tarbarrel.com.au/", + "state": "VIC", + "street": "72 Watt Road" + }, + { + "id": "c151de64-d672-4204-ae4f-9d2a97e90eb3", + "name": "Mortals Key Brewing Company", + "brewery_type": "brewpub", + "address_1": "4224 E Lake Rd", + "address_2": null, + "address_3": null, + "city": "Jamestown", + "state_province": "Pennsylvania", + "postal_code": "16134-4524", + "country": "United States", + "longitude": -80.45979905, + "latitude": 41.51243185, + "phone": "7249321080", + "website_url": "http://www.mortalskey.com", + "state": "Pennsylvania", + "street": "4224 E Lake Rd" + }, + { + "id": "37c52935-6621-428b-b1ee-fc8856b6dc1c", + "name": "Mosaic Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lancaster", + "state_province": "Ohio", + "postal_code": "43130-4308", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6149402500", + "website_url": "http://www.double.edge.beer", + "state": "Ohio", + "street": null + }, + { + "id": "ce619d9e-3e13-4280-b215-8792edb06fa1", + "name": "Moscow Brewing Company", + "brewery_type": "micro", + "address_1": "630 N Almon St Ste 130", + "address_2": null, + "address_3": null, + "city": "Moscow", + "state_province": "Idaho", + "postal_code": "83843-9701", + "country": "United States", + "longitude": -117.003869, + "latitude": 46.740638, + "phone": "2085964058", + "website_url": "https://moscowbrewing.com/index.html", + "state": "Idaho", + "street": "630 N Almon St Ste 130" + }, + { + "id": "4de8a934-3643-4e95-9cbc-ff98e06e2d30", + "name": "Moss Mill Brewing", + "brewery_type": "micro", + "address_1": "109 Pike Cir Ste D", + "address_2": null, + "address_3": null, + "city": "Huntingdon Valley", + "state_province": "Pennsylvania", + "postal_code": "19006-1630", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2679822297", + "website_url": "http://www.mossmillbrewing.com", + "state": "Pennsylvania", + "street": "109 Pike Cir Ste D" + }, + { + "id": "c0437356-f02d-4d5d-9b2c-8e8c45aa29cf", + "name": "Mother Bunch Brewing, Inc.", + "brewery_type": "micro", + "address_1": "825 N 7th St", + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85006-3793", + "country": "United States", + "longitude": -112.0649987, + "latitude": 33.4572674, + "phone": "6023683580", + "website_url": "http://www.motherbunchbrew.com", + "state": "Arizona", + "street": "825 N 7th St" + }, + { + "id": "0cdddcb2-972d-4dc2-a268-d752d4638e6c", + "name": "Mother Earth Brew Co", + "brewery_type": "micro", + "address_1": "1428 Madison Ave", + "address_2": null, + "address_3": null, + "city": "Nampa", + "state_province": "Idaho", + "postal_code": "83687-3038", + "country": "United States", + "longitude": -116.56303, + "latitude": 43.597987, + "phone": "7602953074", + "website_url": "https://www.motherearthbrewco.com/nampa", + "state": "Idaho", + "street": "1428 Madison Ave" + }, + { + "id": "c228637b-e211-45fd-9736-b838197cb25e", + "name": "Mother Earth Brew Co LLC", + "brewery_type": "regional", + "address_1": "2055 Thibodo Rd Ste H", + "address_2": null, + "address_3": null, + "city": "Vista", + "state_province": "California", + "postal_code": "92081-7991", + "country": "United States", + "longitude": -117.2203174, + "latitude": 33.16794678, + "phone": "7605428868", + "website_url": "http://www.motherearthbrewco.com", + "state": "California", + "street": "2055 Thibodo Rd Ste H" + }, + { + "id": "add015c9-2bb1-4047-a365-8b9f3b263fc5", + "name": "Mother Earth Brewing", + "brewery_type": "regional", + "address_1": "311 N Herritage St", + "address_2": null, + "address_3": null, + "city": "Kinston", + "state_province": "North Carolina", + "postal_code": "28501-4823", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2522082437", + "website_url": "http://www.motherearthbrewing.com", + "state": "North Carolina", + "street": "311 N Herritage St" + }, + { + "id": "83d19a6e-a9d0-4278-8407-6bb3aa54ab17", + "name": "Mother Road Brewery and Taproom", + "brewery_type": "micro", + "address_1": "1300 East Butler Ave Ste 200", + "address_2": null, + "address_3": null, + "city": "Flagstaff", + "state_province": "Arizona", + "postal_code": "86001", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9287740492", + "website_url": "http://www.motherroadbeer.com/butler-brewery", + "state": "Arizona", + "street": "1300 East Butler Ave Ste 200" + }, + { + "id": "3c7df0a0-ad62-4b98-9d34-eddab912ce88", + "name": "Mother Road Brewing Co", + "brewery_type": "micro", + "address_1": "7 S Mikes Pike", + "address_2": null, + "address_3": null, + "city": "Flagstaff", + "state_province": "Arizona", + "postal_code": "86001-5589", + "country": "United States", + "longitude": -111.6524478, + "latitude": 35.196928, + "phone": "9287749139", + "website_url": "http://www.motherroadbeer.com", + "state": "Arizona", + "street": "7 S Mikes Pike" + }, + { + "id": "c0329997-60e4-453b-95c1-f5a1aa5841c5", + "name": "Mother Stewart's Brewing Co", + "brewery_type": "micro", + "address_1": "109 W North St", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Ohio", + "postal_code": "45504-2546", + "country": "United States", + "longitude": -83.81196566, + "latitude": 39.92716841, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": "109 W North St" + }, + { + "id": "b87139f1-33d1-4281-a5e0-07780edd6c18", + "name": "Mother Tucker Brewery", + "brewery_type": "micro", + "address_1": "2360 E 120th Ave", + "address_2": null, + "address_3": null, + "city": "Thornton", + "state_province": "Colorado", + "postal_code": "80233-1408", + "country": "United States", + "longitude": -104.9582581, + "latitude": 39.91402476, + "phone": "3035659459", + "website_url": "http://mothertuckerbrewery.com", + "state": "Colorado", + "street": "2360 E 120th Ave" + }, + { + "id": "69912ded-9a07-4f49-870a-85a78260bf4d", + "name": "Mother's Brewing Co", + "brewery_type": "micro", + "address_1": "215 S Grant Ave", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Missouri", + "postal_code": "65806-2001", + "country": "United States", + "longitude": -93.29928282, + "latitude": 37.20791735, + "phone": "4178620423", + "website_url": "http://www.mothersbrewing.com", + "state": "Missouri", + "street": "215 S Grant Ave" + }, + { + "id": "ce476ba7-dc6c-4fae-a6b1-1b4a2a48fa96", + "name": "Motobrewer", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94112-1330", + "country": "United States", + "longitude": -122.4192363, + "latitude": 37.7792808, + "phone": null, + "website_url": "http://www.motobrewer.com", + "state": "California", + "street": null + }, + { + "id": "82718ba8-c506-467b-88e2-5f5b714a4999", + "name": "Motor City Brewing Works", + "brewery_type": "brewpub", + "address_1": "470 W Canfield St", + "address_2": null, + "address_3": null, + "city": "Detroit", + "state_province": "Michigan", + "postal_code": "48201-1220", + "country": "United States", + "longitude": -83.06603733, + "latitude": 42.3518156, + "phone": "3138322700", + "website_url": "http://www.motorcitybeer.com", + "state": "Michigan", + "street": "470 W Canfield St" + }, + { + "id": "9a7bc77f-ac7d-4ed8-bb95-3f374523a01f", + "name": "Motor City Brewing Works Warehouse", + "brewery_type": "micro", + "address_1": "441 W Canfield St", + "address_2": null, + "address_3": null, + "city": "Detroit", + "state_province": "Michigan", + "postal_code": "48201-1231", + "country": "United States", + "longitude": -83.06474893, + "latitude": 42.35151997, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "441 W Canfield St" + }, + { + "id": "84a43e6a-7223-4304-b87f-9502498ab235", + "name": "Motor Row Brewing", + "brewery_type": "micro", + "address_1": "2337 S Michigan Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60616-2104", + "country": "United States", + "longitude": -87.6233063, + "latitude": 41.8499832, + "phone": null, + "website_url": "http://www.motorrowbrewing.com", + "state": "Illinois", + "street": "2337 S Michigan Ave" + }, + { + "id": "54fc97d9-c6f1-4e46-8b36-fcc628540b51", + "name": "Motorworks Brewing", + "brewery_type": "micro", + "address_1": "1014 9th St W", + "address_2": null, + "address_3": null, + "city": "Bradenton", + "state_province": "Florida", + "postal_code": "34205-7331", + "country": "United States", + "longitude": -82.57129, + "latitude": 27.49087629, + "phone": "9415676218", + "website_url": "http://www.motorworksbrewing.com", + "state": "Florida", + "street": "1014 9th St W" + }, + { + "id": "9dc2d761-e45b-463c-8eef-c2c340176f3b", + "name": "Mount Dora Brewing Co", + "brewery_type": "micro", + "address_1": "405 S Highland St", + "address_2": null, + "address_3": null, + "city": "Mount Dora", + "state_province": "Florida", + "postal_code": "32757-6101", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3527351111", + "website_url": "http://www.mountdorabrewing.com", + "state": "Florida", + "street": "405 S Highland St" + }, + { + "id": "6547c1e3-c0e6-43ec-9bc7-f6d254cb5d85", + "name": "Mount Gretna Craft Brewery", + "brewery_type": "micro", + "address_1": "2701 Horseshoe Pike", + "address_2": null, + "address_3": null, + "city": "Palmyra", + "state_province": "Pennsylvania", + "postal_code": "17078-8949", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7178383545", + "website_url": "http://www.gretnabrewery.com", + "state": "Pennsylvania", + "street": "2701 Horseshoe Pike" + }, + { + "id": "4949c8f1-8073-4644-9d1d-e97001f4f7a7", + "name": "Mount Hood Brewing Co", + "brewery_type": "brewpub", + "address_1": "87304 E Government Camp Loop", + "address_2": null, + "address_3": null, + "city": "Government Camp", + "state_province": "Oregon", + "postal_code": "97028", + "country": "United States", + "longitude": -121.7662065, + "latitude": 45.30311485, + "phone": "5032723272", + "website_url": "http://www.mthoodbrewing.com", + "state": "Oregon", + "street": "87304 E Government Camp Loop" + }, + { + "id": "19601a41-1e70-464f-b5c3-a53083e6d0bc", + "name": "Mount Pleasant Rd Brewers", + "brewery_type": "micro", + "address_1": "110 Mount Pleasant Road", + "address_2": null, + "address_3": null, + "city": "Belmont", + "state_province": "VIC", + "postal_code": "3216", + "country": "Australia", + "longitude": 144.3365317, + "latitude": -38.1697258, + "phone": null, + "website_url": "https://www.mtpleasantrdbrewers.com.au/", + "state": "VIC", + "street": "110 Mount Pleasant Road" + }, + { + "id": "5976e057-8502-4193-839c-8129210a9766", + "name": "Mount Shasta Brewing Co", + "brewery_type": "micro", + "address_1": "360 College Ave", + "address_2": null, + "address_3": null, + "city": "Weed", + "state_province": "California", + "postal_code": "96094-2706", + "country": "United States", + "longitude": -122.3866251, + "latitude": 41.41662138, + "phone": "5309382394", + "website_url": "http://www.weedales.com", + "state": "California", + "street": "360 College Ave" + }, + { + "id": "378d7eee-7a3b-41ea-a4b1-c27c35c28b07", + "name": "Mountain Base Brewery", + "brewery_type": "micro", + "address_1": "553 Mast Rd #111", + "address_2": null, + "address_3": null, + "city": "Goffstown", + "state_province": "New Hampshire", + "postal_code": "03045", + "country": "United States", + "longitude": -71.51532, + "latitude": 43.00128, + "phone": "6039357132", + "website_url": "https://www.mountainbasebrewery.com/", + "state": "New Hampshire", + "street": "553 Mast Rd #111" + }, + { + "id": "48e2ce3f-c70d-408a-820a-b91175e0245e", + "name": "Mountain Brewing Company", + "brewery_type": "micro", + "address_1": "Klipbokkop Mountain Reserve", + "address_2": null, + "address_3": null, + "city": "Worcester", + "state_province": "Western Cape", + "postal_code": "6850", + "country": "South Africa", + "longitude": 19.5583, + "latitude": -33.7259, + "phone": "+27 23 349 1908", + "website_url": "https://www.mountainbrewing.co/", + "state": "Western Cape", + "street": "Klipbokkop Mountain Reserve" + }, + { + "id": "b26705f7-3797-4dd9-8f7c-86a5fbadda58", + "name": "Mountain Cowboy Brewing Company", + "brewery_type": "brewpub", + "address_1": "318 5th St", + "address_2": null, + "address_3": null, + "city": "Frederick", + "state_province": "Colorado", + "postal_code": "80530", + "country": "United States", + "longitude": -104.9369796, + "latitude": 40.09855473, + "phone": "3039524433", + "website_url": "http://www.mountaincowboybrewing.com", + "state": "Colorado", + "street": "318 5th St" + }, + { + "id": "6725a487-f720-465c-9892-0187b8b2526a", + "name": "Mountain Culture Beer Co", + "brewery_type": "micro", + "address_1": "35 David Road", + "address_2": null, + "address_3": null, + "city": "Emu Plains", + "state_province": "NSW", + "postal_code": "2750", + "country": "Australia", + "longitude": 150.6598003, + "latitude": -33.745661, + "phone": null, + "website_url": "https://mountainculture.com.au/", + "state": "NSW", + "street": "35 David Road" + }, + { + "id": "f5957769-58b8-4cf2-8f2d-1fb1cf5ca8aa", + "name": "Mountain Culture Beer Co.", + "brewery_type": "micro", + "address_1": "35 David Road", + "address_2": null, + "address_3": null, + "city": "Emu Plains", + "state_province": "NSW", + "postal_code": "2750", + "country": "Australia", + "longitude": 150.6598003, + "latitude": -33.745661, + "phone": null, + "website_url": "https://mountainculture.com.au/", + "state": "NSW", + "street": "35 David Road" + }, + { + "id": "8b6d327f-e82c-43c9-b068-f80a1ae4cbb2", + "name": "Mountain Fork Brewery", + "brewery_type": "micro", + "address_1": "89 N Lukfata Trail Rd", + "address_2": null, + "address_3": null, + "city": "Broken Bow", + "state_province": "Oklahoma", + "postal_code": "74728-7025", + "country": "United States", + "longitude": -94.7770233, + "latitude": 34.1827774, + "phone": "5804943233", + "website_url": "http://www.mountainforkbrewery.com", + "state": "Oklahoma", + "street": "89 N Lukfata Trail Rd" + }, + { + "id": "ea0438fe-612f-44ce-9cdc-8de309c288ad", + "name": "Mountain Goat Beer", + "brewery_type": "large", + "address_1": "80 North Street", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "VIC", + "postal_code": "3121", + "country": "Australia", + "longitude": 145.0128053, + "latitude": -37.8167663, + "phone": "+61 3 9428 1180", + "website_url": "https://www.goatbeer.com.au/", + "state": "VIC", + "street": "80 North Street" + }, + { + "id": "8532bb33-d392-4448-baca-277d791ff259", + "name": "Mountain Hops Brewhouse", + "brewery_type": "micro", + "address_1": "612 N Beverly St", + "address_2": null, + "address_3": null, + "city": "Casper", + "state_province": "Wyoming", + "postal_code": "82609-1616", + "country": "United States", + "longitude": -106.29792831549, + "latitude": 42.856122803838, + "phone": "3073371052", + "website_url": "https://www.facebook.com/MountainHopsBrewhouse", + "state": "Wyoming", + "street": "612 N Beverly St" + }, + { + "id": "fc357e85-908c-49a9-a3e4-8a96cbb6bf39", + "name": "Mountain Lakes Brewing Company", + "brewery_type": "micro", + "address_1": "201 W Riverside Ave", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99201", + "country": "United States", + "longitude": -117.4133414, + "latitude": 47.65840592, + "phone": "5033481733", + "website_url": "https://mountainlakesbrewco.com", + "state": "Washington", + "street": "201 W Riverside Ave" + }, + { + "id": "a88bd839-f573-4ef2-97cc-f7e997e54781", + "name": "Mountain Layers Brewing Company", + "brewery_type": "micro", + "address_1": "90 Everett Street", + "address_2": null, + "address_3": null, + "city": "Bryson City", + "state_province": "North Carolina", + "postal_code": "28713", + "country": "United States", + "longitude": -83.446029, + "latitude": 35.428795, + "phone": "8285380115", + "website_url": "http://www.mtnlayersbeer.com", + "state": "North Carolina", + "street": "90 Everett Street" + }, + { + "id": "ef7b698c-0ce4-461d-b4e8-5d7bb8335c17", + "name": "Mountain Monk Brewers", + "brewery_type": "micro", + "address_1": "1 Lakeside Avenue", + "address_2": null, + "address_3": null, + "city": "Mount Beauty", + "state_province": "VIC", + "postal_code": "3699", + "country": "Australia", + "longitude": 147.1683015, + "latitude": -36.742213, + "phone": "+61 3 5754 4985", + "website_url": "https://www.mountainmonkbrewers.com.au/", + "state": "VIC", + "street": "1 Lakeside Avenue" + }, + { + "id": "e0da629e-cf70-4545-b029-e1658759b49f", + "name": "Mountain Rambler Brewery", + "brewery_type": "micro", + "address_1": "186 S Main St", + "address_2": null, + "address_3": null, + "city": "Bishop", + "state_province": "California", + "postal_code": "93514-3415", + "country": "United States", + "longitude": -118.3944494, + "latitude": 37.3606708, + "phone": "7602581348", + "website_url": "http://www.mountainramblerbrewery.com", + "state": "California", + "street": "186 S Main St" + }, + { + "id": "750a134b-a13a-44ed-a7d4-56d429d5e9aa", + "name": "Mountain State Brewing Co", + "brewery_type": "micro", + "address_1": "1 Nelson Blvd", + "address_2": null, + "address_3": null, + "city": "Thomas", + "state_province": "West Virginia", + "postal_code": "26292", + "country": "United States", + "longitude": -79.498521, + "latitude": 39.142037, + "phone": "3044634500", + "website_url": "http://www.mountainstatebrewing.com", + "state": "West Virginia", + "street": "1 Nelson Blvd" + }, + { + "id": "e5a383c9-cf8d-4115-b2ab-e59aa504624e", + "name": "Mountain Sun Pub and Brewery", + "brewery_type": "brewpub", + "address_1": "1535 Pearl St", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80302-5408", + "country": "United States", + "longitude": -105.2752277, + "latitude": 40.0190131, + "phone": "3035460886", + "website_url": "http://www.mountainsunpub.com", + "state": "Colorado", + "street": "1535 Pearl St" + }, + { + "id": "b38e3a59-9874-4d96-960b-631548ec3187", + "name": "Mountain Tap Brewery", + "brewery_type": "brewpub", + "address_1": "910 Yampa Street", + "address_2": null, + "address_3": null, + "city": "Steamboat Springs", + "state_province": "Colorado", + "postal_code": "80487", + "country": "United States", + "longitude": -106.8355071, + "latitude": 40.4853039, + "phone": "9708796646", + "website_url": "http://www.mountaintapbrewery.com", + "state": "Colorado", + "street": "910 Yampa Street" + }, + { + "id": "a3a41098-15ef-4968-9edd-d68257f14f08", + "name": "Mountain Toad Brewing", + "brewery_type": "micro", + "address_1": "900 Washington Ave", + "address_2": null, + "address_3": null, + "city": "Golden", + "state_province": "Colorado", + "postal_code": "80401-1047", + "country": "United States", + "longitude": -105.2242563, + "latitude": 39.75807905, + "phone": "7206383244", + "website_url": "http://mountaintoadbrewing.com", + "state": "Colorado", + "street": "900 Washington Ave" + }, + { + "id": "6e501b8a-a337-4bd2-bdb9-d22ab3e166a9", + "name": "Mountain Town Brewing Co", + "brewery_type": "micro", + "address_1": "614 W Pickard St", + "address_2": null, + "address_3": null, + "city": "Mt Pleasant", + "state_province": "Michigan", + "postal_code": "48858-1504", + "country": "United States", + "longitude": -84.78689552, + "latitude": 43.61180948, + "phone": "9894004666", + "website_url": "http://www.mountaintownbrew.com", + "state": "Michigan", + "street": "614 W Pickard St" + }, + { + "id": "335bffa7-c0f1-4593-929c-1f80ed7ab7c6", + "name": "Mountain Town Station Restaurant & Brew Pub", + "brewery_type": "brewpub", + "address_1": "506 W Broadway St", + "address_2": null, + "address_3": null, + "city": "Mt Pleasant", + "state_province": "Michigan", + "postal_code": "48858-2441", + "country": "United States", + "longitude": -84.7822205, + "latitude": 43.604568, + "phone": "9894004666", + "website_url": "http://www.mountaintownbrew.com", + "state": "Michigan", + "street": "506 W Broadway St" + }, + { + "id": "2ad0448b-96e8-4537-b990-9cbf5e4702db", + "name": "Mountain Valley Brewing", + "brewery_type": "micro", + "address_1": "4220 Mountain Valley Rd", + "address_2": null, + "address_3": null, + "city": "Axton", + "state_province": "Virginia", + "postal_code": "24054-2985", + "country": "United States", + "longitude": -79.70721, + "latitude": 36.715687, + "phone": "2768332171", + "website_url": null, + "state": "Virginia", + "street": "4220 Mountain Valley Rd" + }, + { + "id": "251596fe-58b7-4690-a823-f8c65be73228", + "name": "Mountain View Brewing", + "brewery_type": "micro", + "address_1": "6670 Trout Creek Ridge Rd", + "address_2": null, + "address_3": null, + "city": "Mt Hood", + "state_province": "Oregon", + "postal_code": "97041", + "country": "United States", + "longitude": -121.6229737, + "latitude": 45.53707415, + "phone": "5414410314", + "website_url": "https://www.mtviewbrewing.com/", + "state": "Oregon", + "street": "6670 Trout Creek Ridge Rd" + }, + { + "id": "988365c4-fe44-46d3-9c39-200dd18b1817", + "name": "Mountains Walking", + "brewery_type": "brewpub", + "address_1": "422 N Plum Ave", + "address_2": null, + "address_3": null, + "city": "Bozeman", + "state_province": "Montana", + "postal_code": "59718", + "country": "United States", + "longitude": -111.025561, + "latitude": 45.68418789, + "phone": "4062193480", + "website_url": "http://www.mountainswalking.com", + "state": "Montana", + "street": "422 N Plum Ave" + }, + { + "id": "f7302824-3eb3-428b-bb02-4109d635110e", + "name": "Moustache Brewing Co", + "brewery_type": "micro", + "address_1": "400 Hallett Ave Ste A", + "address_2": null, + "address_3": null, + "city": "Riverhead", + "state_province": "New York", + "postal_code": "11901-3076", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6315913250", + "website_url": "http://www.moustachebrewing.com", + "state": "New York", + "street": "400 Hallett Ave Ste A" + }, + { + "id": "168bd14c-df6e-4148-a502-674b1e1dac9a", + "name": "Moylan's Brewery & Restaurant", + "brewery_type": "brewpub", + "address_1": "15 Rowland Way", + "address_2": null, + "address_3": null, + "city": "Novato", + "state_province": "California", + "postal_code": "94945-5001", + "country": "United States", + "longitude": -122.5570548, + "latitude": 38.09448604, + "phone": "4158984677", + "website_url": "http://www.moylans.com", + "state": "California", + "street": "15 Rowland Way" + }, + { + "id": "9b6630e3-3499-4472-8406-a9c59037fb9f", + "name": "Mr Dunderbaks Biergarten and Brewery / Dunderbrau Brewing", + "brewery_type": "brewpub", + "address_1": "14929 Bruce B Downs Blvd", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33613-2860", + "country": "United States", + "longitude": -82.4138299, + "latitude": 28.08237293, + "phone": "8139774104", + "website_url": "http://www.dunderbaks.ieasysite.com", + "state": "Florida", + "street": "14929 Bruce B Downs Blvd" + }, + { + "id": "a8a19ee5-8333-4dae-89bb-935ba6c94620", + "name": "Mr.Banks Brewing Co", + "brewery_type": "micro", + "address_1": "12 Hi-Tech Place", + "address_2": null, + "address_3": null, + "city": "Seaford", + "state_province": "VIC", + "postal_code": "3198", + "country": "Australia", + "longitude": 145.1381702, + "latitude": -38.1160714, + "phone": "+61 3 9786 9905", + "website_url": "http://www.banksbrewing.com.au/", + "state": "VIC", + "street": "12 Hi-Tech Place" + }, + { + "id": "64563779-eb9d-4c45-860d-e67e922c2e2f", + "name": "Mraz Brewing Company", + "brewery_type": "micro", + "address_1": "2222 Francisco Dr Ste 510", + "address_2": null, + "address_3": null, + "city": "El Dorado Hills", + "state_province": "California", + "postal_code": "95762-3766", + "country": "United States", + "longitude": -121.0862427, + "latitude": 38.71041848, + "phone": "9169340744", + "website_url": "http://www.mrazbrewingcompany.com", + "state": "California", + "street": "2222 Francisco Dr Ste 510" + }, + { + "id": "65afa778-c70a-4caf-9947-1f15d4b4135f", + "name": "MT Head Brewing Co", + "brewery_type": "closed", + "address_1": "27307 159th Ave E", + "address_2": null, + "address_3": null, + "city": "Graham", + "state_province": "Washington", + "postal_code": "98338-5608", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2532088999", + "website_url": "http://www.mtheadbrewingco.com", + "state": "Washington", + "street": "27307 159th Ave E" + }, + { + "id": "85d7d8c6-51ec-402b-9099-f5bcca019965", + "name": "Mt Index Brewery", + "brewery_type": "closed", + "address_1": "49315 State Road 2 Ste B", + "address_2": null, + "address_3": null, + "city": "index", + "state_province": "Washington", + "postal_code": "98256", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3607936584", + "website_url": "https://www.facebook.com/mt.index.brewery.and.distillery", + "state": "Washington", + "street": "49315 State Road 2 Ste B" + }, + { + "id": "fb66a688-771b-42cd-bedb-1be0eb9db41a", + "name": "Mt Lowe Brewing Company", + "brewery_type": "micro", + "address_1": "150 E Saint Joseph St", + "address_2": null, + "address_3": null, + "city": "Arcadia", + "state_province": "California", + "postal_code": "91006-2851", + "country": "United States", + "longitude": -118.0268254, + "latitude": 34.14332231, + "phone": "6262447593", + "website_url": "http://www.mtlowebrewing.com", + "state": "California", + "street": "150 E Saint Joseph St" + }, + { + "id": "93581811-3b23-49a5-83db-8214c6d36a9f", + "name": "Mt Tabor Brewing Co", + "brewery_type": "micro", + "address_1": "124 SE 11th Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97214-1354", + "country": "United States", + "longitude": -122.654188, + "latitude": 45.52171275, + "phone": "3605678199", + "website_url": "http://www.mttaborbrewing.com", + "state": "Oregon", + "street": "124 SE 11th Ave" + }, + { + "id": "c59d0db5-f675-4808-97c4-ab1a38643c58", + "name": "Mt. Carmel Brewing Co", + "brewery_type": "micro", + "address_1": "4362 Mount Carmel Tobasco Rd", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45244-2338", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5132402739", + "website_url": null, + "state": "Ohio", + "street": "4362 Mount Carmel Tobasco Rd" + }, + { + "id": "7bbaf187-f244-43c9-9c28-d8ee0c904958", + "name": "Mt. Rushmore Brewing Company", + "brewery_type": "brewpub", + "address_1": "140 Mt Rushmore Rd", + "address_2": null, + "address_3": null, + "city": "Custer", + "state_province": "South Dakota", + "postal_code": "57730-1829", + "country": "United States", + "longitude": -103.605392, + "latitude": 43.764722, + "phone": null, + "website_url": "http://www.mtrushmorebrewing.com", + "state": "South Dakota", + "street": "140 Mt Rushmore Rd" + }, + { + "id": "52ee5ff2-5e93-447c-ac91-80670d1ed06f", + "name": "Mucky Duck Brewery", + "brewery_type": "brewpub", + "address_1": "4019 S Main St", + "address_2": null, + "address_3": null, + "city": "Akron", + "state_province": "Ohio", + "postal_code": "44319-3668", + "country": "United States", + "longitude": -81.5268804, + "latitude": 41.0629094, + "phone": "3306445444", + "website_url": null, + "state": "Ohio", + "street": "4019 S Main St" + }, + { + "id": "9283a53b-c0aa-4a08-8ec7-7dc35b9d818e", + "name": "Mud Hound Brewing Co / MacDowell Brew Kitchen", + "brewery_type": "brewpub", + "address_1": "202B Harrison St SE", + "address_2": null, + "address_3": null, + "city": "Leesburg", + "state_province": "Virginia", + "postal_code": "20175-3701", + "country": "United States", + "longitude": -77.56266978, + "latitude": 39.11221609, + "phone": "7037772739", + "website_url": "http://www.macdowellbrewkitchen.com", + "state": "Virginia", + "street": "202B Harrison St SE" + }, + { + "id": "7fd0b5f9-cf63-4db1-b797-fe50461dcbc5", + "name": "Mudbug Brewery", + "brewery_type": "micro", + "address_1": "1878 LA Hwy 3185", + "address_2": null, + "address_3": null, + "city": "Thibodaux", + "state_province": "Louisiana", + "postal_code": "70302-1077", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9854921610", + "website_url": "http://www.mudbugbrewery.com", + "state": "Louisiana", + "street": "1878 LA Hwy 3185" + }, + { + "id": "105393d3-d4cb-443d-8933-e2563f9faef3", + "name": "Muddy Creek Brewery", + "brewery_type": "micro", + "address_1": "2 E Galena St", + "address_2": null, + "address_3": null, + "city": "Butte", + "state_province": "Montana", + "postal_code": "59701-1704", + "country": "United States", + "longitude": -112.535291, + "latitude": 46.01201, + "phone": "4062993645", + "website_url": "http://muddycreekbrewery.com", + "state": "Montana", + "street": "2 E Galena St" + }, + { + "id": "f0f81f1b-47fc-4440-9b73-3b79392cca7c", + "name": "Mudgee Brewing Co.", + "brewery_type": "micro", + "address_1": "4 Church Street", + "address_2": null, + "address_3": null, + "city": "Mudgee", + "state_province": "NSW", + "postal_code": "2850", + "country": "Australia", + "longitude": 149.5885444, + "latitude": -32.5902833, + "phone": "+61 2 6372 6726", + "website_url": "https://www.mudgeebrewing.com.au/", + "state": "NSW", + "street": "4 Church Street" + }, + { + "id": "e38497fd-5545-43be-9100-518277458517", + "name": "Mudhen Brewing Company", + "brewery_type": "brewpub", + "address_1": "127 W Rio Grande Ave", + "address_2": null, + "address_3": null, + "city": "Wildwood", + "state_province": "New Jersey", + "postal_code": "08260", + "country": "United States", + "longitude": -74.82509314, + "latitude": 38.98453453, + "phone": "6095228383", + "website_url": null, + "state": "New Jersey", + "street": "127 W Rio Grande Ave" + }, + { + "id": "3e9c673b-0ccd-4204-a712-5536b40cd036", + "name": "Mudhook Brewing Co", + "brewery_type": "brewpub", + "address_1": "34 N Cherry Ln", + "address_2": null, + "address_3": null, + "city": "York", + "state_province": "Pennsylvania", + "postal_code": "17401-5306", + "country": "United States", + "longitude": -76.72935297, + "latitude": 39.96311069, + "phone": "7177473605", + "website_url": "http://www.mudhookbrewing.com", + "state": "Pennsylvania", + "street": "34 N Cherry Ln" + }, + { + "id": "b9694c75-826d-486d-82ca-b21db45e8008", + "name": "Mudshark Brewing Co", + "brewery_type": "micro", + "address_1": "210 Swanson Ave", + "address_2": null, + "address_3": null, + "city": "Lake Havasu City", + "state_province": "Arizona", + "postal_code": "86403-0966", + "country": "United States", + "longitude": -114.3424335, + "latitude": 34.46897363, + "phone": "9284532981", + "website_url": "http://www.mudsharkbrewingco.com", + "state": "Arizona", + "street": "210 Swanson Ave" + }, + { + "id": "52074314-7d5c-42fb-8737-3a91e2188bc3", + "name": "Muffy Malone Brewing", + "brewery_type": "micro", + "address_1": "150 Murphy Street", + "address_2": "148", + "address_3": null, + "city": "Richmond", + "state_province": "VIC", + "postal_code": "3121", + "country": "Australia", + "longitude": 145.0110031, + "latitude": -37.8182717, + "phone": "+61 422 520 477", + "website_url": "https://mountainculture.com.au/pages/melbourne-brewpub-restaurant", + "state": "VIC", + "street": "150 Murphy Street" + }, + { + "id": "a45b8540-39be-4c4a-a9a7-8fd88568c06d", + "name": "Mule & Elk Brewing Co", + "brewery_type": "micro", + "address_1": "418 East 1st St Ste 7", + "address_2": null, + "address_3": null, + "city": "Cle Elum", + "state_province": "Washington", + "postal_code": "98922", + "country": "United States", + "longitude": -120.932084, + "latitude": 47.19441, + "phone": "2063211911", + "website_url": "http://www.muleandelk.com", + "state": "Washington", + "street": "418 East 1st St Ste 7" + }, + { + "id": "ab31aeb1-b596-461a-85d2-d0bbdee0b890", + "name": "Mully's Brewery", + "brewery_type": "micro", + "address_1": "141 Schooner Ln Ste 15", + "address_2": null, + "address_3": null, + "city": "Prince Frederick", + "state_province": "Maryland", + "postal_code": "20678-3482", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4439689426", + "website_url": "http://www.mullysbrewery.com", + "state": "Maryland", + "street": "141 Schooner Ln Ste 15" + }, + { + "id": "3341c9bb-1676-4f4c-a884-156f8fd827bf", + "name": "Multiple Brewing Company", + "brewery_type": "micro", + "address_1": "82 W Washington St", + "address_2": null, + "address_3": null, + "city": "Nelsonville", + "state_province": "Ohio", + "postal_code": "45764-1135", + "country": "United States", + "longitude": -82.23343359, + "latitude": 39.46109582, + "phone": "6144957199", + "website_url": null, + "state": "Ohio", + "street": "82 W Washington St" + }, + { + "id": "9db35316-e5f4-485f-a071-addf0a05feb0", + "name": "Mumford Brewing Company", + "brewery_type": "micro", + "address_1": "416 Boyd St", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90013-1631", + "country": "United States", + "longitude": -118.2425998, + "latitude": 34.0464181, + "phone": "6263759353", + "website_url": "http://www.mumfordbrewing.com", + "state": "California", + "street": "416 Boyd St" + }, + { + "id": "f03af10b-8b0b-4acf-b3a2-494ccb06f346", + "name": "Municipal Brew Works", + "brewery_type": "micro", + "address_1": "20 High St", + "address_2": null, + "address_3": null, + "city": "Hamilton", + "state_province": "Ohio", + "postal_code": "45011-2709", + "country": "United States", + "longitude": -84.5638199, + "latitude": 39.4009136, + "phone": "5136422424", + "website_url": "http://municipalbrewworks.com", + "state": "Ohio", + "street": "20 High St" + }, + { + "id": "597c06aa-6c9f-4652-a0b0-7db11364374f", + "name": "Munkle Brewing Company", + "brewery_type": "micro", + "address_1": "1513 Meeting Street Rd", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "South Carolina", + "postal_code": "29405-9301", + "country": "United States", + "longitude": -79.95068928, + "latitude": 32.81853, + "phone": "8437893109", + "website_url": "http://MunkleBrewing.com", + "state": "South Carolina", + "street": "1513 Meeting Street Rd" + }, + { + "id": "8078ec7c-ac31-421e-b073-4bb9f784c0cb", + "name": "Munster Brewery", + "brewery_type": "micro", + "address_1": "Unit 2F", + "address_2": "Youghal Business Park", + "address_3": "Parkmountain", + "city": "Youghal", + "state_province": "Cork", + "postal_code": "P36 ET22", + "country": "Ireland", + "longitude": -7.8708284, + "latitude": 51.9535199, + "phone": "353879878171", + "website_url": "http://munsterbrewery.com/", + "state": "Cork", + "street": "Unit 2F" + }, + { + "id": "524ab865-1df1-4655-b19f-0eb427cfa0d6", + "name": "Murauer Brauerei", + "brewery_type": "large", + "address_1": "Raffaltpl. 19", + "address_2": null, + "address_3": null, + "city": "Murau", + "state_province": "Steiermark", + "postal_code": "8850", + "country": "Austria", + "longitude": 14.165060917015, + "latitude": 47.11101605761, + "phone": "+43353232660", + "website_url": "https://www.murauerbier.at", + "state": "Steiermark", + "street": "Raffaltpl. 19" + }, + { + "id": "96588a03-7341-4e7d-bda7-454a3c74a3f7", + "name": "Murphy's Brewery (Heineken)", + "brewery_type": "large", + "address_1": "Leitrim Street", + "address_2": null, + "address_3": null, + "city": "Cork", + "state_province": "Cork", + "postal_code": "T23 VF78", + "country": "Ireland", + "longitude": -8.4750739, + "latitude": 51.9037117, + "phone": "353214503371", + "website_url": "http://www.murphys.com/", + "state": "Cork", + "street": "Leitrim Street" + }, + { + "id": "7d397ad8-2cf4-4fc7-90e8-f0fe6d870cbe", + "name": "Murray Towns Brewing Co.", + "brewery_type": "micro", + "address_1": "64 Lincoln Causeway", + "address_2": null, + "address_3": null, + "city": "Gateway Island", + "state_province": "VIC", + "postal_code": "3691", + "country": "Australia", + "longitude": 146.9030905, + "latitude": -36.0952095, + "phone": null, + "website_url": "http://www.murraytowns.au/", + "state": "VIC", + "street": "64 Lincoln Causeway" + }, + { + "id": "5251a841-5051-44f2-869c-805b523a8716", + "name": "Murray’s Craft Brewing Co", + "brewery_type": "micro", + "address_1": "3443 Nelson Bay Road", + "address_2": null, + "address_3": null, + "city": "Bobs Farm", + "state_province": "NSW", + "postal_code": "2316", + "country": "Australia", + "longitude": 151.985364, + "latitude": -32.7799077, + "phone": "+61 1300 755 268", + "website_url": "http://www.landyourselfatbfarm.com/", + "state": "NSW", + "street": "3443 Nelson Bay Road" + }, + { + "id": "8af28f23-b686-4f3f-ad7e-7962ef086450", + "name": "Muskellunge Brewing Company", + "brewery_type": "micro", + "address_1": "425 5th St NW", + "address_2": null, + "address_3": null, + "city": "Canton", + "state_province": "Ohio", + "postal_code": "44702", + "country": "United States", + "longitude": -81.37672433, + "latitude": 40.80191841, + "phone": null, + "website_url": "http://www.muskybrewco.com", + "state": "Ohio", + "street": "425 5th St NW" + }, + { + "id": "090daff9-0723-4795-8feb-7dfa16ffb7b5", + "name": "Mustang Sally Brewing Co", + "brewery_type": "micro", + "address_1": "14140 Parke Long Ct # A-C", + "address_2": null, + "address_3": null, + "city": "Chantilly", + "state_province": "Virginia", + "postal_code": "20151-4009", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7033787450", + "website_url": "http://www.msbrewing.com", + "state": "Virginia", + "street": "14140 Parke Long Ct # A-C" + }, + { + "id": "aabad244-77d2-43d3-95ec-198df59058de", + "name": "MYBRU Craft Brewery", + "brewery_type": "micro", + "address_1": "Lot 212 Melbourne Street", + "address_2": null, + "address_3": null, + "city": "Moora", + "state_province": "WA", + "postal_code": "6510", + "country": "Australia", + "longitude": 116.0086615, + "latitude": -30.6305862, + "phone": "+61 447 511 219", + "website_url": null, + "state": "WA", + "street": "Lot 212 Melbourne Street" + }, + { + "id": "d86ed112-0baa-4205-8848-7a4387b1d1ae", + "name": "MyGrain Brewing Company", + "brewery_type": "brewpub", + "address_1": "50 E Jefferson St Ste 106", + "address_2": null, + "address_3": null, + "city": "Joliet", + "state_province": "Illinois", + "postal_code": "60432-4299", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8153453339", + "website_url": "http://www.mygrainbrewing.com", + "state": "Illinois", + "street": "50 E Jefferson St Ste 106" + }, + { + "id": "06b53f46-e8cd-4949-bbf5-6c67e312ab37", + "name": "Myrtle Creek Brewery", + "brewery_type": "micro", + "address_1": "820 Jerrybang Lane", + "address_2": null, + "address_3": null, + "city": "Monteagle", + "state_province": "NSW", + "postal_code": "2594", + "country": "Australia", + "longitude": 148.3116633, + "latitude": -34.1191145, + "phone": "+61 438 169 553", + "website_url": "http://www.bullacreekbrewing.com.au/", + "state": "NSW", + "street": "820 Jerrybang Lane" + }, + { + "id": "cd8b09a9-6ebf-43a8-bd96-8b889e8b753f", + "name": "Mystery Brewing Co", + "brewery_type": "brewpub", + "address_1": "437 Dimmocks Mill Rd Ste 41", + "address_2": null, + "address_3": null, + "city": "Hillsborough", + "state_province": "North Carolina", + "postal_code": "27278-2379", + "country": "United States", + "longitude": -79.1135558, + "latitude": 36.0695647, + "phone": "9196978379", + "website_url": "http://www.mysterybrewing.com", + "state": "North Carolina", + "street": "437 Dimmocks Mill Rd Ste 41" + }, + { + "id": "8de27ce6-0a50-4c0c-99a1-52f361e954a0", + "name": "Mystic Brewery", + "brewery_type": "micro", + "address_1": "174 Williams St", + "address_2": null, + "address_3": null, + "city": "Chelsea", + "state_province": "Massachusetts", + "postal_code": "02150-3804", + "country": "United States", + "longitude": -71.0445104, + "latitude": 42.3915659, + "phone": null, + "website_url": null, + "state": "Massachusetts", + "street": "174 Williams St" + }, + { + "id": "8ead3533-6041-4b94-a2d3-fb2cd6493f3e", + "name": "Myths and Legends Brewing Company", + "brewery_type": "micro", + "address_1": "1115 Zygmunt Cir", + "address_2": null, + "address_3": null, + "city": "Westmont", + "state_province": "Illinois", + "postal_code": "60559-2684", + "country": "United States", + "longitude": -87.9817647, + "latitude": 41.7763011, + "phone": "6304427864", + "website_url": "http://www.mythsandlegendsbeer.com", + "state": "Illinois", + "street": "1115 Zygmunt Cir" + }, + { + "id": "6941d5e5-667a-44ef-908e-ef167f9119eb", + "name": "Nacogdoches Brewing Company, Inc.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Nacogdoches", + "state_province": "Texas", + "postal_code": "75964-8327", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9365604532", + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "d3dd2767-728a-4313-9223-12882fcaa296", + "name": "Nail Brewing", + "brewery_type": "micro", + "address_1": "18 Translink Drive", + "address_2": null, + "address_3": null, + "city": "Keilor Park", + "state_province": "VIC", + "postal_code": "3042", + "country": "Australia", + "longitude": 144.848697, + "latitude": -37.7224426, + "phone": "+61 3 9336 7077", + "website_url": "https://www.thebeerfactory.net.au/?utm_source=Google&utm_medium=Organic&utm_campaign=GMB", + "state": "VIC", + "street": "18 Translink Drive" + }, + { + "id": "117409b7-7f6d-49cb-90de-f635ed1b9756", + "name": "Nailers Brewing Company", + "brewery_type": "brewpub", + "address_1": "6001 N US Highway 31", + "address_2": null, + "address_3": null, + "city": "Whiteland", + "state_province": "Indiana", + "postal_code": "46184", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3172813132", + "website_url": null, + "state": "Indiana", + "street": "6001 N US Highway 31" + }, + { + "id": "9a8aa674-ce4f-43a3-9120-b19396612cfb", + "name": "Naked Brewing Co", + "brewery_type": "micro", + "address_1": "51 Buck Rd", + "address_2": null, + "address_3": null, + "city": "Huntingdon Valley", + "state_province": "Pennsylvania", + "postal_code": "19006-1501", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2673559561", + "website_url": "http://www.nakedbrewingcompany.com", + "state": "Pennsylvania", + "street": "51 Buck Rd" + }, + { + "id": "94ef9e07-0ae2-4143-b85e-8ce28a0a22c4", + "name": "Naked City Brewing Co", + "brewery_type": "brewpub", + "address_1": "8564 Greenwood Ave N", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98103-3614", + "country": "United States", + "longitude": -122.3550832, + "latitude": 47.6918221, + "phone": "2068386299", + "website_url": "http://www.nakedcitybrewing.com", + "state": "Washington", + "street": "8564 Greenwood Ave N" + }, + { + "id": "23446263-7940-42b3-a488-271188b02d0c", + "name": "Naked Dove Brewing Company", + "brewery_type": "micro", + "address_1": "4048 State Route 5 and 20", + "address_2": null, + "address_3": null, + "city": "Canandaigua", + "state_province": "New York", + "postal_code": "14424-9591", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5853962537", + "website_url": "http://www.nakeddovebrewing.com", + "state": "New York", + "street": "4048 State Route 5 and 20" + }, + { + "id": "79624d32-8675-4d62-87e4-6a61d7d259b1", + "name": "Nale House Brewing Co", + "brewery_type": "micro", + "address_1": "32 N Main St", + "address_2": null, + "address_3": null, + "city": "Medford", + "state_province": "New Jersey", + "postal_code": "08055-2412", + "country": "United States", + "longitude": -74.82362121, + "latitude": 39.90072015, + "phone": "6097607246", + "website_url": "http://www.nalehousebrewing.com", + "state": "New Jersey", + "street": "32 N Main St" + }, + { + "id": "624ccbcf-ed20-42c3-8d17-2253046f82ca", + "name": "Nano 108 Brewing Co", + "brewery_type": "micro", + "address_1": "2402 Waynoka Rd", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80915-1612", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7195962337", + "website_url": "http://www.nano108brewing.com", + "state": "Colorado", + "street": "2402 Waynoka Rd" + }, + { + "id": "02738c45-4084-46f9-9dec-a0cbe7c9656b", + "name": "Nano Brew Cleveland", + "brewery_type": "brewpub", + "address_1": "1859 W 25th St", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44113", + "country": "United States", + "longitude": -81.7045531, + "latitude": 41.4860486, + "phone": "2168626631", + "website_url": "http://www.nanobrewcleveland.com", + "state": "Ohio", + "street": "1859 W 25th St" + }, + { + "id": "910d5a63-31aa-40ba-b720-91d1c21cdb52", + "name": "Nantahala Brewing Co", + "brewery_type": "micro", + "address_1": "61 Depot Street", + "address_2": null, + "address_3": null, + "city": "Bryson City", + "state_province": "North Carolina", + "postal_code": "28713-0483", + "country": "United States", + "longitude": -83.446278, + "latitude": 35.4311525, + "phone": "8287886185", + "website_url": "http://www.nantahalabrewing.com", + "state": "North Carolina", + "street": "61 Depot Street" + }, + { + "id": "b5546fd2-e680-4269-a348-0f174d618fb7", + "name": "Napa Palisades Beer Company", + "brewery_type": "proprietor", + "address_1": "1000 Main St", + "address_2": null, + "address_3": null, + "city": "Napa", + "state_province": "California", + "postal_code": "94559-2645", + "country": "United States", + "longitude": -122.285449, + "latitude": 38.299359, + "phone": "7072961552", + "website_url": "http://www.napapalisadesbeer.com", + "state": "California", + "street": "1000 Main St" + }, + { + "id": "f57b8d04-75ed-419a-bfbb-949790b88ea8", + "name": "Napa Smith Brewery", + "brewery_type": "micro", + "address_1": "101 Yolano Dr", + "address_2": null, + "address_3": null, + "city": "Vallejo", + "state_province": "California", + "postal_code": "94589-2250", + "country": "United States", + "longitude": -122.259292, + "latitude": 38.132142, + "phone": "7072552912", + "website_url": "http://www.napasmithbrewery.com", + "state": "California", + "street": "101 Yolano Dr" + }, + { + "id": "3a0d142a-68f3-4dac-8c32-31513fca14d0", + "name": "Napa Valley Brewing Co/ Calistoga Inn", + "brewery_type": "brewpub", + "address_1": "1250 Lincoln Ave", + "address_2": null, + "address_3": null, + "city": "Calistoga", + "state_province": "California", + "postal_code": "94515-1741", + "country": "United States", + "longitude": -122.5796312, + "latitude": 38.57693444, + "phone": "7079424101", + "website_url": "http://www.napabeer.com", + "state": "California", + "street": "1250 Lincoln Ave" + }, + { + "id": "f40926c8-e9e3-490b-9756-0972db299bcf", + "name": "Naples Beach Brewery", + "brewery_type": "micro", + "address_1": "4110 Enterprise Ave Ste 217", + "address_2": null, + "address_3": null, + "city": "Naples", + "state_province": "Florida", + "postal_code": "34104-7084", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2393048795", + "website_url": "http://www.naplesbeachbrewery.com", + "state": "Florida", + "street": "4110 Enterprise Ave Ste 217" + }, + { + "id": "f30c94db-0f97-492d-be18-e0e0d362e360", + "name": "Narragansett Brewing Co - Pawtucket", + "brewery_type": "regional", + "address_1": "461 Main St", + "address_2": null, + "address_3": null, + "city": "Pawtucket", + "state_province": "Rhode Island", + "postal_code": "02860-2913", + "country": "United States", + "longitude": -71.38847715, + "latitude": 41.87668875, + "phone": "4014378970", + "website_url": "http://www.narragansettbeer.com", + "state": "Rhode Island", + "street": "461 Main St" + }, + { + "id": "29d69ef0-65de-402a-a98f-7c6db6ae5271", + "name": "Narragansett Brewing Co - Providence", + "brewery_type": "brewpub", + "address_1": "271 Tockwotton St", + "address_2": null, + "address_3": null, + "city": "Providence", + "state_province": "Rhode Island", + "postal_code": "02903-4356", + "country": "United States", + "longitude": -71.3904225, + "latitude": 41.8185153, + "phone": "4014378970", + "website_url": "http://www.narragansettbeer.com", + "state": "Rhode Island", + "street": "271 Tockwotton St" + }, + { + "id": "02e33b6d-ac7d-44ad-8b38-cb1c8ebea1e7", + "name": "Narrow Gauge Brewing Company", + "brewery_type": "brewpub", + "address_1": "1595 N Highway 67 St", + "address_2": null, + "address_3": null, + "city": "Florissant", + "state_province": "Missouri", + "postal_code": "63031-4606", + "country": "United States", + "longitude": -90.319028, + "latitude": 38.799, + "phone": "3148313222", + "website_url": "http://www.narrowgaugestl.com", + "state": "Missouri", + "street": "1595 N Highway 67 St" + }, + { + "id": "659f6d61-f3e0-431f-9da0-9234fe22b6b3", + "name": "Narrow Path Brewing Company", + "brewery_type": "micro", + "address_1": "106 Karl Brown Way", + "address_2": null, + "address_3": null, + "city": "Loveland", + "state_province": "Ohio", + "postal_code": "45140-2902", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5133123414", + "website_url": "http://www.narrowpathbrewing.com", + "state": "Ohio", + "street": "106 Karl Brown Way" + }, + { + "id": "c1b991c2-5780-4e19-b925-c9c1adb89df9", + "name": "Narrows Brewing Company", + "brewery_type": "micro", + "address_1": "9007 S 19th St", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98466-1819", + "country": "United States", + "longitude": -122.5022378, + "latitude": 47.2428871, + "phone": "2533271400", + "website_url": "http://www.narrowsbrewing.com", + "state": "Washington", + "street": "9007 S 19th St" + }, + { + "id": "c2d17a53-99d9-4d1e-a0cd-8314ddc93b5c", + "name": "Natchez Brewing Co", + "brewery_type": "micro", + "address_1": "207 High St", + "address_2": null, + "address_3": null, + "city": "Natchez", + "state_province": "Mississippi", + "postal_code": "39120-3222", + "country": "United States", + "longitude": -91.4021969, + "latitude": 31.56348326, + "phone": "8287135311", + "website_url": "http://www.natchezbrew.com", + "state": "Mississippi", + "street": "207 High St" + }, + { + "id": "8b10db58-b7e8-473e-9cdd-001212299a6d", + "name": "Natian Brewery", + "brewery_type": "micro", + "address_1": "1321 NE Couch St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97232-3007", + "country": "United States", + "longitude": -122.6529733, + "latitude": 45.5249032, + "phone": "9716787116", + "website_url": "http://www.natianbrewery.com", + "state": "Oregon", + "street": "1321 NE Couch St" + }, + { + "id": "ccdbc69e-ab8d-4133-9897-7728cb066c4b", + "name": "National Beer Museum Development Group", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15212", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4123983236", + "website_url": "http://www.BrewMuseum.com", + "state": "Pennsylvania", + "street": null + }, + { + "id": "c53ae7dd-b837-47ed-899f-1179608c7434", + "name": "National Brewing Company", + "brewery_type": "contract", + "address_1": "28102 Baileys Neck Rd", + "address_2": null, + "address_3": null, + "city": "Easton", + "state_province": "Maryland", + "postal_code": "21601-8520", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4103103553", + "website_url": "http://www.nationalpremiumbeer.com", + "state": "Maryland", + "street": "28102 Baileys Neck Rd" + }, + { + "id": "b6244f79-714c-43b6-bcd1-58cee49a6939", + "name": "Nättraby Kvartersbryggeri", + "brewery_type": "micro", + "address_1": "Åvägen 9", + "address_2": null, + "address_3": null, + "city": "Nättraby", + "state_province": "Blekinge", + "postal_code": "373 30", + "country": "Sweden", + "longitude": 15.63878, + "latitude": 56.20148, + "phone": null, + "website_url": "https://kvartersbryggeri.se/", + "state": "Blekinge", + "street": "Åvägen 9" + }, + { + "id": "68fc2bdf-4401-4dc0-a3c0-2a8a29189e6e", + "name": "Natty Greene's Brewing Co", + "brewery_type": "regional", + "address_1": "1918 W Gate City Blvd", + "address_2": null, + "address_3": null, + "city": "Greensboro", + "state_province": "North Carolina", + "postal_code": "27403-2615", + "country": "United States", + "longitude": -79.7923996, + "latitude": 36.0646259, + "phone": "3362741373", + "website_url": "http://www.nattygreenes.com", + "state": "North Carolina", + "street": "1918 W Gate City Blvd" + }, + { + "id": "e4ada546-4330-42bd-9304-5fcbe922f4f5", + "name": "Natty Greene's Pub & Brewing Co", + "brewery_type": "brewpub", + "address_1": "345 S Elm St", + "address_2": null, + "address_3": null, + "city": "Greensboro", + "state_province": "North Carolina", + "postal_code": "27401-2603", + "country": "United States", + "longitude": -79.7903852, + "latitude": 36.0686458, + "phone": "3368566111", + "website_url": "http://www.nattygreenes.com", + "state": "North Carolina", + "street": "345 S Elm St" + }, + { + "id": "ef38df48-391f-4f62-81a0-5263d7ab21fb", + "name": "Nature Coast Brewing Company", + "brewery_type": "micro", + "address_1": "564 N Citrus Ave", + "address_2": null, + "address_3": null, + "city": "Crystal River", + "state_province": "Florida", + "postal_code": "34428-4017", + "country": "United States", + "longitude": -82.5931784, + "latitude": 28.89917957, + "phone": "3527950956", + "website_url": "http://www.naturecoastbrewingco.com", + "state": "Florida", + "street": "564 N Citrus Ave" + }, + { + "id": "d7b5805d-0762-4f33-b677-8269d16c6a61", + "name": "Naughty Monk Brewery L.L.C.", + "brewery_type": "micro", + "address_1": "2507 Lakewood Ranch Blvd", + "address_2": null, + "address_3": null, + "city": "Bradenton", + "state_province": "Florida", + "postal_code": "34211-4949", + "country": "United States", + "longitude": -82.4324118, + "latitude": 27.4519957, + "phone": "9417082966", + "website_url": "http://www.naughtymonkbrewery.com", + "state": "Florida", + "street": "2507 Lakewood Ranch Blvd" + }, + { + "id": "d523e3ba-ac09-4d9d-be40-c42d5888cf23", + "name": "Naughty Oak Brewing Company", + "brewery_type": "micro", + "address_1": "165 S Broadway St Ste 102", + "address_2": null, + "address_3": null, + "city": "Orcutt", + "state_province": "California", + "postal_code": "93455-4627", + "country": "United States", + "longitude": -120.4482865, + "latitude": 34.86506483, + "phone": "8052879663", + "website_url": "http://www.naughtyoak.com", + "state": "California", + "street": "165 S Broadway St Ste 102" + }, + { + "id": "4aac21f5-3cd7-450e-9245-fa07d1c444f7", + "name": "Naukabout Brewery", + "brewery_type": "micro", + "address_1": "13 Lake Ave", + "address_2": null, + "address_3": null, + "city": "Mashpee", + "state_province": "Massachusetts", + "postal_code": "02649-2075", + "country": "United States", + "longitude": -70.48425901, + "latitude": 41.64936239, + "phone": "7743130200", + "website_url": "http://www.naukabout.com", + "state": "Massachusetts", + "street": "13 Lake Ave" + }, + { + "id": "facec4b8-02cb-4257-b12f-6188679557d8", + "name": "Navigation Brewing Co", + "brewery_type": "micro", + "address_1": "122 Western Ave", + "address_2": null, + "address_3": null, + "city": "Lowell", + "state_province": "Massachusetts", + "postal_code": "01851-1433", + "country": "United States", + "longitude": -71.32464812, + "latitude": 42.64034997, + "phone": null, + "website_url": "http://www.navigationbrewing.com", + "state": "Massachusetts", + "street": "122 Western Ave" + }, + { + "id": "6c4dc675-17ad-4f13-afd5-d69438a709d8", + "name": "NAZZ'D Brew Works and Pub", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Pittsboro", + "state_province": "North Carolina", + "postal_code": "27312", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9196042081", + "website_url": "http://www.nazzdbrew.com", + "state": "North Carolina", + "street": null + }, + { + "id": "e21cd242-f85b-4dd1-9328-e9ca1237624a", + "name": "NC State Brewery", + "brewery_type": "micro", + "address_1": "400 Dan Allen Drive Campus Box 7624", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27695-0001", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9195130802", + "website_url": "http://www.fbns.ncsu.edu/Sheppard/", + "state": "North Carolina", + "street": "400 Dan Allen Drive Campus Box 7624" + }, + { + "id": "32643a19-4321-44dc-b351-792d878226da", + "name": "Nebraska Brewing Co - La Vista", + "brewery_type": "micro", + "address_1": "6950 S 108th St", + "address_2": null, + "address_3": null, + "city": "La Vista", + "state_province": "Nebraska", + "postal_code": "68128-5701", + "country": "United States", + "longitude": -96.0813295, + "latitude": 41.1772046, + "phone": "4029340950", + "website_url": "https://nebraskabrewingco.com", + "state": "Nebraska", + "street": "6950 S 108th St" + }, + { + "id": "4d7b67c5-34a4-4586-8f19-e3c8447cd601", + "name": "Nebraska Brewing Co - Papillion", + "brewery_type": "closed", + "address_1": "7474 Towne Center Pkwy Ste 101 Shadow Lake Towne Center", + "address_2": null, + "address_3": null, + "city": "Papillion", + "state_province": "Nebraska", + "postal_code": "68046-4805", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4029347100", + "website_url": "http://www.nebraskabrewingco.com", + "state": "Nebraska", + "street": "7474 Towne Center Pkwy Ste 101 Shadow Lake Towne Center" + }, + { + "id": "43b8ace8-09d2-4c96-9b4f-357b6a0467ab", + "name": "Neches Brewing Company", + "brewery_type": "brewpub", + "address_1": "1108 Port Neches Ave", + "address_2": null, + "address_3": null, + "city": "Port Neches", + "state_province": "Texas", + "postal_code": "77651-2804", + "country": "United States", + "longitude": -93.958435, + "latitude": 29.991653, + "phone": "4092375700", + "website_url": null, + "state": "Texas", + "street": "1108 Port Neches Ave" + }, + { + "id": "7ceebde8-ab10-4657-9c3e-8f725b8cc388", + "name": "Neon Groundhog Brewery - Majestic Oak Winery", + "brewery_type": "micro", + "address_1": "13554 Mohler Rd", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Ohio", + "postal_code": "43522-9648", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4198756474", + "website_url": "http://www.majesticoakwinery.com", + "state": "Ohio", + "street": "13554 Mohler Rd" + }, + { + "id": "0a9f352e-21f4-4eb6-a11e-2c4aa3732307", + "name": "Nepenthe Homebrew & Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21211-1900", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4434384846", + "website_url": "http://www.nepenthehomebrew.com", + "state": "Maryland", + "street": null + }, + { + "id": "e2b88f90-f367-4c3d-8b0f-69dc62e47f4c", + "name": "Neptunes Brewery, LLC", + "brewery_type": "micro", + "address_1": "119 N L St", + "address_2": null, + "address_3": null, + "city": "Livingston", + "state_province": "Montana", + "postal_code": "59047-2819", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4062227837", + "website_url": "http://www.neptunesbrewery.com", + "state": "Montana", + "street": "119 N L St" + }, + { + "id": "bbf8905d-9def-4a8f-b24b-91d3e6cdccd9", + "name": "Neshaminy Creek Brewing Co", + "brewery_type": "regional", + "address_1": "909 Ray Ave", + "address_2": null, + "address_3": null, + "city": "Croydon", + "state_province": "Pennsylvania", + "postal_code": "19021-7510", + "country": "United States", + "longitude": -74.90222455, + "latitude": 40.08537673, + "phone": "2154587081", + "website_url": "http://www.neshaminycreekbrewing.com", + "state": "Pennsylvania", + "street": "909 Ray Ave" + }, + { + "id": "4dd39fbc-c476-4816-bc7c-6eab5d962db7", + "name": "Network Brewery", + "brewery_type": "micro", + "address_1": "1824 Carnegie Ave", + "address_2": null, + "address_3": null, + "city": "Santa Ana", + "state_province": "California", + "postal_code": "92705-5503", + "country": "United States", + "longitude": -117.845559, + "latitude": 33.7119033, + "phone": "6578598004", + "website_url": "http://www.networkbrewery.com", + "state": "California", + "street": "1824 Carnegie Ave" + }, + { + "id": "061fcb41-7dd1-4db4-8963-733096eea370", + "name": "Neuse River Brewing Company", + "brewery_type": "micro", + "address_1": "518 Pershing Rd", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27608-2624", + "country": "United States", + "longitude": -78.63345205, + "latitude": 35.8045083, + "phone": "9842328479", + "website_url": "http://www.neuseriverbrewing.com", + "state": "North Carolina", + "street": "518 Pershing Rd" + }, + { + "id": "05ce38c8-0c0b-4c51-93dc-ae5f5e98a625", + "name": "Nevadan Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Las Vegas", + "state_province": "Nevada", + "postal_code": "89139-5939", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7028455768", + "website_url": "http://nevadanbrewing.com", + "state": "Nevada", + "street": null + }, + { + "id": "7ad422f8-cd8a-4706-9583-8d20c5242f24", + "name": "Never Summer Brewing Co", + "brewery_type": "micro", + "address_1": "62 E Agate Ave", + "address_2": null, + "address_3": null, + "city": "Granby", + "state_province": "Colorado", + "postal_code": "80446", + "country": "United States", + "longitude": -105.9415686, + "latitude": 40.0855713, + "phone": "9708870333", + "website_url": null, + "state": "Colorado", + "street": "62 E Agate Ave" + }, + { + "id": "28f5a67c-49b0-4197-b7a7-5882a491d63d", + "name": "New Albanian Bank Street Brewhouse", + "brewery_type": "brewpub", + "address_1": "415 Bank St", + "address_2": null, + "address_3": null, + "city": "New Albany", + "state_province": "Indiana", + "postal_code": "47150-3407", + "country": "United States", + "longitude": -85.82220842, + "latitude": 38.28656732, + "phone": "8127259585", + "website_url": "http://www.newalbanian.com", + "state": "Indiana", + "street": "415 Bank St" + }, + { + "id": "bb34f1bf-8108-4dba-8b6a-18553ce95809", + "name": "New Albanian Brewing Co", + "brewery_type": "brewpub", + "address_1": "3312 Plaza Dr", + "address_2": null, + "address_3": null, + "city": "New Albany", + "state_province": "Indiana", + "postal_code": "47150-2478", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8129442577", + "website_url": "http://www.newalbanian.com", + "state": "Indiana", + "street": "3312 Plaza Dr" + }, + { + "id": "e1cf02fc-0380-4c80-89e4-0e52946d9338", + "name": "New American Brewing Company", + "brewery_type": "closed", + "address_1": "1631 SW Main St Ste 105", + "address_2": null, + "address_3": null, + "city": "Ankeny", + "state_province": "Iowa", + "postal_code": "50023-7254", + "country": "United States", + "longitude": -93.618309, + "latitude": 41.712502, + "phone": "5152505648", + "website_url": "http://www.newamericanbeer.com", + "state": "Iowa", + "street": "1631 SW Main St Ste 105" + }, + { + "id": "d76c7a31-bcf2-42b5-842c-abb9b40d8cb1", + "name": "New Anthem Beer Project", + "brewery_type": "micro", + "address_1": "116 Dock St", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "North Carolina", + "postal_code": "28401-4433", + "country": "United States", + "longitude": -77.94826959, + "latitude": 34.23413971, + "phone": "9103994683", + "website_url": "http://www.newanthembeer.com", + "state": "North Carolina", + "street": "116 Dock St" + }, + { + "id": "40c11daf-e510-45be-bf1f-6b8f0b77ebed", + "name": "New Axiom Brewing Company", + "brewery_type": "micro", + "address_1": "949 NE Columbus ", + "address_2": null, + "address_3": null, + "city": "Lees Summit", + "state_province": "Missouri", + "postal_code": "64086", + "country": "United States", + "longitude": -94.351812, + "latitude": 38.947403, + "phone": null, + "website_url": "http://www.newaxiombrewco.com", + "state": "Missouri", + "street": "949 NE Columbus " + }, + { + "id": "e316621b-7562-49c0-9f76-37a3af389eb8", + "name": "New Barons Brewing Cooperative", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53202-2821", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3147050016", + "website_url": "http://www.newbaronsbrewing.com", + "state": "Wisconsin", + "street": null + }, + { + "id": "93a19d3e-c4cf-480d-83da-74c6e41d07c7", + "name": "New Belgium - The Woods At The Source", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80216-5021", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.newbelgium.com/Brewery/TheWoods", + "state": "Colorado", + "street": null + }, + { + "id": "de5ee7c1-54e0-4d20-960a-b825a76ddc9e", + "name": "New Belgium Brewing Co", + "brewery_type": "regional", + "address_1": "21 Craven St", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28806-", + "country": "United States", + "longitude": -82.57194293, + "latitude": 35.5879302, + "phone": "8885989552", + "website_url": "http://www.newbelgium.com", + "state": "North Carolina", + "street": "21 Craven St" + }, + { + "id": "1b0bf444-c830-4958-922c-5c1b46fe37f5", + "name": "New Belgium Brewing Co", + "brewery_type": "regional", + "address_1": "500 Linden St", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80524-2457", + "country": "United States", + "longitude": -105.0678422, + "latitude": 40.59335825, + "phone": "9702210524", + "website_url": "http://www.newbelgium.com", + "state": "Colorado", + "street": "500 Linden St" + }, + { + "id": "cc6f97c5-b82b-4c18-be62-896e2ac2cad0", + "name": "New Bohemia Brewing Co", + "brewery_type": "brewpub", + "address_1": "1030 41st Ave", + "address_2": null, + "address_3": null, + "city": "Santa Cruz", + "state_province": "California", + "postal_code": "95062-4447", + "country": "United States", + "longitude": -121.9647935, + "latitude": 36.96661524, + "phone": "8313500253", + "website_url": "http://www.nubobrew.com", + "state": "California", + "street": "1030 41st Ave" + }, + { + "id": "806f78ce-18d8-4a28-a871-403807795cbe", + "name": "New Boswell Brewing Co", + "brewery_type": "micro", + "address_1": "410 N 10th St", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Indiana", + "postal_code": "47374", + "country": "United States", + "longitude": -84.88916811, + "latitude": 39.83306544, + "phone": "7655467856", + "website_url": "http://www.newboswell.com", + "state": "Indiana", + "street": "410 N 10th St" + }, + { + "id": "7564bb65-8745-4c77-ba1b-2b264a694c2b", + "name": "New Braunfels Brewing", + "brewery_type": "micro", + "address_1": "180 W Mill St Ste 100", + "address_2": null, + "address_3": null, + "city": "New Braunfels", + "state_province": "Texas", + "postal_code": "78130-5058", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8306262739", + "website_url": "http://www.nbbrewing.com", + "state": "Texas", + "street": "180 W Mill St Ste 100" + }, + { + "id": "d550e8d8-a356-4188-bf71-8febfcb326f9", + "name": "New Bremen Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "New Bremen", + "state_province": "Ohio", + "postal_code": "45869-1328", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.gongoozlersbeer.com", + "state": "Ohio", + "street": null + }, + { + "id": "a0ee9d3c-4672-45c4-9d1c-372ce110fd01", + "name": "New City Brewery", + "brewery_type": "micro", + "address_1": "180 Pleasant St Ste 2", + "address_2": null, + "address_3": null, + "city": "Easthampton", + "state_province": "Massachusetts", + "postal_code": "01027-1297", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4135292000", + "website_url": null, + "state": "Massachusetts", + "street": "180 Pleasant St Ste 2" + }, + { + "id": "652351af-c051-4151-8d02-fb562513ec35", + "name": "New Corner Brewing Company", + "brewery_type": "micro", + "address_1": "1900 W Mt Pleasant Blvd Ste G", + "address_2": null, + "address_3": null, + "city": "Muncie", + "state_province": "Indiana", + "postal_code": "47302-9566", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7657304376", + "website_url": "http://www.newcornerbrewing.com", + "state": "Indiana", + "street": "1900 W Mt Pleasant Blvd Ste G" + }, + { + "id": "ba128e4b-4941-45cd-96b0-d500a5c02758", + "name": "New District Brewing Company", + "brewery_type": "micro", + "address_1": "2709 S Oakland St", + "address_2": null, + "address_3": null, + "city": "Arlington", + "state_province": "Virginia", + "postal_code": "22206-2309", + "country": "United States", + "longitude": -77.08966299, + "latitude": 38.84421984, + "phone": "7038885820", + "website_url": "http://www.newdistrictbrewing.com", + "state": "Virginia", + "street": "2709 S Oakland St" + }, + { + "id": "9c2e0292-e7aa-4f8f-babd-38ec3fd466a0", + "name": "New England Brewing Co", + "brewery_type": "micro", + "address_1": "175 Amity Rd", + "address_2": null, + "address_3": null, + "city": "Woodbridge", + "state_province": "Connecticut", + "postal_code": "06525-2201", + "country": "United States", + "longitude": -72.98046406, + "latitude": 41.33858942, + "phone": "2033872222", + "website_url": "http://www.newenglandbrewing.com", + "state": "Connecticut", + "street": "175 Amity Rd" + }, + { + "id": "29e76a2e-199d-4cd7-85f4-338b4b7f81d5", + "name": "New England Brewing Co", + "brewery_type": "micro", + "address_1": "19 Bridge Street", + "address_2": null, + "address_3": null, + "city": "Uralla", + "state_province": "NSW", + "postal_code": "2358", + "country": "Australia", + "longitude": 151.5020294, + "latitude": -30.6402854, + "phone": "+61 2 6778 4781", + "website_url": "http://www.newenglandbrewing.com.au/", + "state": "NSW", + "street": "19 Bridge Street" + }, + { + "id": "53f8cab9-991d-42a6-9e96-f06774f55b41", + "name": "New England Brewing Co.", + "brewery_type": "micro", + "address_1": "19 Bridge Street", + "address_2": null, + "address_3": null, + "city": "Uralla", + "state_province": "NSW", + "postal_code": "2358", + "country": "Australia", + "longitude": 151.5020294, + "latitude": -30.6402854, + "phone": "+61 2 6778 4781", + "website_url": "http://www.newenglandbrewing.com.au/", + "state": "NSW", + "street": "19 Bridge Street" + }, + { + "id": "31b2f8e2-17c1-4344-aeb1-93575d3d5f79", + "name": "New English Brewing Co Inc", + "brewery_type": "micro", + "address_1": "11545 Sorrento Valley Rd Ste 305", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92121-1322", + "country": "United States", + "longitude": -117.230519, + "latitude": 32.912641, + "phone": "6198578023", + "website_url": "http://www.newenglishbrewing.com", + "state": "California", + "street": "11545 Sorrento Valley Rd Ste 305" + }, + { + "id": "55a4aaa7-503f-45e4-bd82-522e5ad20d42", + "name": "New Era Fine Fermentations", + "brewery_type": "micro", + "address_1": "321 S Frankfort Ave", + "address_2": null, + "address_3": null, + "city": "Tulsa", + "state_province": "Oklahoma", + "postal_code": "74120", + "country": "United States", + "longitude": -95.984497, + "latitude": 36.1548985, + "phone": "9183670640", + "website_url": "http://www.neffbrewing.com", + "state": "Oklahoma", + "street": "321 S Frankfort Ave" + }, + { + "id": "c33c63b9-317d-4f75-a5ea-fc492766cae9", + "name": "New Glarus Brewing Co", + "brewery_type": "regional", + "address_1": "2400 State Highway 69", + "address_2": null, + "address_3": null, + "city": "New Glarus", + "state_province": "Wisconsin", + "postal_code": "53574", + "country": "United States", + "longitude": -89.6312918, + "latitude": 42.8095311, + "phone": "6085275850", + "website_url": "http://www.newglarusbrewing.com", + "state": "Wisconsin", + "street": "2400 State Highway 69" + }, + { + "id": "edc8857b-8955-48f1-8b22-a16b5693d1fc", + "name": "New Glarus Brewing Co - Riverside", + "brewery_type": "micro", + "address_1": "2400 State Hwy 69", + "address_2": null, + "address_3": null, + "city": "New Glarus", + "state_province": "Wisconsin", + "postal_code": "53574", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6085275851", + "website_url": "http://www.newglarusbrewing.com", + "state": "Wisconsin", + "street": "2400 State Hwy 69" + }, + { + "id": "547f2a09-6f76-4801-a631-ed0b0b9ffb60", + "name": "New Glory Craft Brewery", + "brewery_type": "micro", + "address_1": "8251 Alpine Ave", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95826-4708", + "country": "United States", + "longitude": -121.402102, + "latitude": 38.53562933, + "phone": "9164519355", + "website_url": "http://www.newglorybeer.com", + "state": "California", + "street": "8251 Alpine Ave" + }, + { + "id": "6822dfaf-6c12-448f-a8b7-4855aa280994", + "name": "New Groove Artisan Brewery", + "brewery_type": "brewpub", + "address_1": "4078 Highway 9", + "address_2": null, + "address_3": null, + "city": "Boiling Springs", + "state_province": "South Carolina", + "postal_code": "29316-8501", + "country": "United States", + "longitude": -82.017032, + "latitude": 35.072809, + "phone": "8645863900", + "website_url": "http://www.newgroovebrew.com", + "state": "South Carolina", + "street": "4078 Highway 9" + }, + { + "id": "3b1b09ef-f184-420f-85b7-f4585546ccc7", + "name": "New Heights Brewing Co", + "brewery_type": "micro", + "address_1": "928 5th Ave S", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37203-4612", + "country": "United States", + "longitude": -86.7706476, + "latitude": 36.1491212, + "phone": "6154906901", + "website_url": "http://www.newheightsbrewing.com", + "state": "Tennessee", + "street": "928 5th Ave S" + }, + { + "id": "b88aedd3-6a71-4619-9589-2ff83748a5a0", + "name": "New Helvetia Brewing Company", + "brewery_type": "micro", + "address_1": "1730 Broadway", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95818-2320", + "country": "United States", + "longitude": -121.4899398, + "latitude": 38.5607772, + "phone": "9164699889", + "website_url": "http://www.newhelvetiabrew.com", + "state": "California", + "street": "1730 Broadway" + }, + { + "id": "c0b2baea-ccb7-4bd2-8793-9e2691a9a6ad", + "name": "New Holland Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Battle Creek", + "state_province": "Michigan", + "postal_code": "49017", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": null + }, + { + "id": "c141e061-ebed-4b52-8ab6-3b5d53955f18", + "name": "New Holland Brewing Co", + "brewery_type": "regional", + "address_1": "66 E 8th St", + "address_2": null, + "address_3": null, + "city": "Holland", + "state_province": "Michigan", + "postal_code": "49423-3504", + "country": "United States", + "longitude": -86.10411872, + "latitude": 42.79010355, + "phone": "6163556422", + "website_url": "http://www.newhollandbrew.com", + "state": "Michigan", + "street": "66 E 8th St" + }, + { + "id": "7228225d-87b3-450e-bb6d-838d21e0975f", + "name": "New Holland Brewing Co - Production Facility", + "brewery_type": "regional", + "address_1": "690 Commerce Ct", + "address_2": null, + "address_3": null, + "city": "Holland", + "state_province": "Michigan", + "postal_code": "49424-2913", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6165102259", + "website_url": null, + "state": "Michigan", + "street": "690 Commerce Ct" + }, + { + "id": "03aa438e-fd51-47a7-a3ce-3c6fde02295c", + "name": "New Image Brewing Co", + "brewery_type": "brewpub", + "address_1": "5622 Yukon St", + "address_2": null, + "address_3": null, + "city": "Arvada", + "state_province": "Colorado", + "postal_code": "80002-2446", + "country": "United States", + "longitude": -105.0824595, + "latitude": 39.79938347, + "phone": "7708811010", + "website_url": "http://www.nibrewing.com", + "state": "Colorado", + "street": "5622 Yukon St" + }, + { + "id": "c51a1926-490d-4558-a569-7664be014334", + "name": "New Jersey Beer Co", + "brewery_type": "micro", + "address_1": "4201 Tonnelle Ave", + "address_2": null, + "address_3": null, + "city": "North Bergen", + "state_province": "New Jersey", + "postal_code": "07047-2430", + "country": "United States", + "longitude": -74.0428134, + "latitude": 40.7714151, + "phone": "2017588342", + "website_url": "http://www.njbeerco.com", + "state": "New Jersey", + "street": "4201 Tonnelle Ave" + }, + { + "id": "1f10e149-7bb3-43b4-9102-feebb8f5f65a", + "name": "New Magnolia Brewing Co", + "brewery_type": "micro", + "address_1": "1616 Bevis St", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77008", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "https://www.instagram.com/newmagnoliabrewing/?hl=en", + "state": "Texas", + "street": "1616 Bevis St" + }, + { + "id": "bd61da27-2aa3-411f-aeff-6d141479c847", + "name": "New Mexico State University Department Of Chemical", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Las Cruces", + "state_province": "New Mexico", + "postal_code": "88003", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5756461213", + "website_url": "http://chme.nmsu.edu", + "state": "New Mexico", + "street": null + }, + { + "id": "b3ffdca4-08b3-4759-9520-74691fd65bf6", + "name": "New Oberpfalz Brewing", + "brewery_type": "brewpub", + "address_1": "121 E Main St", + "address_2": null, + "address_3": null, + "city": "Griffith", + "state_province": "Indiana", + "postal_code": "46319-2243", + "country": "United States", + "longitude": -87.42727571, + "latitude": 41.52270212, + "phone": "3127381308", + "website_url": "http://www.newoberpfalz.com", + "state": "Indiana", + "street": "121 E Main St" + }, + { + "id": "9eb2f4e3-a109-438b-8a64-61b3d572488c", + "name": "New Orleans Lager and Ale Brewing (NOLA Brewing)", + "brewery_type": "micro", + "address_1": "3001 Tchoupitoulas St", + "address_2": null, + "address_3": null, + "city": "New Orleans", + "state_province": "Louisiana", + "postal_code": "70115-1039", + "country": "United States", + "longitude": -90.08141776, + "latitude": 29.9199522, + "phone": "5048969996", + "website_url": "http://www.nolabrewing.com", + "state": "Louisiana", + "street": "3001 Tchoupitoulas St" + }, + { + "id": "60ad3907-0555-4573-8d41-a669adfbc777", + "name": "New Paltz Brewing Company", + "brewery_type": "micro", + "address_1": "7174 Route 209", + "address_2": null, + "address_3": null, + "city": "Wawarsing", + "state_province": "New York", + "postal_code": "12489", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8454193040", + "website_url": "http://www.pfalzerbrau.com", + "state": "New York", + "street": "7174 Route 209" + }, + { + "id": "d0ef1b88-ae8d-4d85-889c-16bf9f4fb58e", + "name": "New Planet Beer Co", + "brewery_type": "contract", + "address_1": "3980 Broadway St Ste 103 # 116", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80304-1161", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3034994978", + "website_url": "http://www.newplanetbeer.com", + "state": "Colorado", + "street": "3980 Broadway St Ste 103 # 116" + }, + { + "id": "e5f6f505-df0a-440a-a014-57a6cd59e21b", + "name": "New Province Brewing Company", + "brewery_type": "micro", + "address_1": "1310 W Hudson Rd", + "address_2": null, + "address_3": null, + "city": "Rogers", + "state_province": "Arkansas", + "postal_code": "72756-2311", + "country": "United States", + "longitude": -94.13279216, + "latitude": 36.355352, + "phone": "4795313233", + "website_url": "http://newprovincebrewing.com", + "state": "Arkansas", + "street": "1310 W Hudson Rd" + }, + { + "id": "b2080e4b-22ae-4a79-b04c-933448cb98dc", + "name": "New Realm Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Virginia Beach", + "state_province": "Virginia", + "postal_code": "23454", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Virginia", + "street": null + }, + { + "id": "285b5827-7b82-428b-856c-f12e3756c663", + "name": "New Realm Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28203", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "North Carolina", + "street": null + }, + { + "id": "2d2814f6-493a-48aa-b037-1710e2926a61", + "name": "New Realm Brewing", + "brewery_type": "brewpub", + "address_1": "550 Somerset Ter NE Unit 101", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30306-4317", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4049682778", + "website_url": "http://www.newrealmbrewing.com", + "state": "Georgia", + "street": "550 Somerset Ter NE Unit 101" + }, + { + "id": "41c942ce-4213-44eb-a73b-d6541d7a807c", + "name": "New Republic Brewing", + "brewery_type": "micro", + "address_1": "11405 N Dowling Rd Ste C", + "address_2": null, + "address_3": null, + "city": "College Station", + "state_province": "Texas", + "postal_code": "77845-8500", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7134894667", + "website_url": "http://www.nrb.beer", + "state": "Texas", + "street": "11405 N Dowling Rd Ste C" + }, + { + "id": "c6d7e285-5fbb-4a5c-acc2-6d1555340ac2", + "name": "New River Brewing", + "brewery_type": "micro", + "address_1": "9211 NC Hwy 194 N Unit A", + "address_2": null, + "address_3": null, + "city": "Lansing", + "state_province": "North Carolina", + "postal_code": "28643", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9194528367", + "website_url": "http://www.newriverbrewing.beer", + "state": "North Carolina", + "street": "9211 NC Hwy 194 N Unit A" + }, + { + "id": "612e347f-19d3-4bab-896a-ba6783ef3cd9", + "name": "New Sarum Brewing", + "brewery_type": "micro", + "address_1": "109 N Lee St", + "address_2": null, + "address_3": null, + "city": "Salisbury", + "state_province": "North Carolina", + "postal_code": "28144", + "country": "United States", + "longitude": -80.46853163, + "latitude": 35.66652728, + "phone": "7043105048", + "website_url": "http://www.newsarumbrewing.com", + "state": "North Carolina", + "street": "109 N Lee St" + }, + { + "id": "d482fba0-cae2-4d98-b1ad-5de60ebef9ef", + "name": "New Smyrna Beach Brewing Co", + "brewery_type": "micro", + "address_1": "143 Canal St", + "address_2": null, + "address_3": null, + "city": "New Smyrna Beach", + "state_province": "Florida", + "postal_code": "32168-7067", + "country": "United States", + "longitude": -80.92236384, + "latitude": 29.02541495, + "phone": "3869573802", + "website_url": "http://www.newsmyrnabrewing.com", + "state": "Florida", + "street": "143 Canal St" + }, + { + "id": "65d76230-d04a-4104-bec6-83cdb4431b7b", + "name": "New South Brewing Co", + "brewery_type": "micro", + "address_1": "1109 Campbell St", + "address_2": null, + "address_3": null, + "city": "Myrtle Beach", + "state_province": "South Carolina", + "postal_code": "29577-3527", + "country": "United States", + "longitude": -78.88989113, + "latitude": 33.69734797, + "phone": "8439162337", + "website_url": "http://www.newsouthbrewing.com", + "state": "South Carolina", + "street": "1109 Campbell St" + }, + { + "id": "8b37edb9-f2e1-45a9-bafe-53bd74bceb9b", + "name": "New Terrain Brewing Company", + "brewery_type": "micro", + "address_1": "16401 Table Mountain Pkwy", + "address_2": null, + "address_3": null, + "city": "Golden", + "state_province": "Colorado", + "postal_code": "80403-1863", + "country": "United States", + "longitude": -105.1851036, + "latitude": 39.77781975, + "phone": "7206977848", + "website_url": "http://newterrainbrewing.com", + "state": "Colorado", + "street": "16401 Table Mountain Pkwy" + }, + { + "id": "8a5156f9-1517-4f92-831c-20788cd4e0ef", + "name": "New Trail Brewing Company", + "brewery_type": "micro", + "address_1": "240 Arch St Bldg 18", + "address_2": null, + "address_3": null, + "city": "Williamsport", + "state_province": "Pennsylvania", + "postal_code": "17701-7810", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.newtrailbrewing.com", + "state": "Pennsylvania", + "street": "240 Arch St Bldg 18" + }, + { + "id": "88c6fe70-e9aa-4658-b6d8-0b4859be19aa", + "name": "New Union Brewing", + "brewery_type": "micro", + "address_1": "400 W Main St", + "address_2": null, + "address_3": null, + "city": "Lowell", + "state_province": "Michigan", + "postal_code": "49331-1617", + "country": "United States", + "longitude": -85.355545, + "latitude": 42.931398, + "phone": "6163197171", + "website_url": "http://www.newunionbrewery.com", + "state": "Michigan", + "street": "400 W Main St" + }, + { + "id": "ca3fbf41-dcfb-478e-bede-15a75f61090b", + "name": "New Village Brewery and Taproom", + "brewery_type": "micro", + "address_1": "702 Broad St", + "address_2": null, + "address_3": null, + "city": "Oriental", + "state_province": "North Carolina", + "postal_code": "28571-9778", + "country": "United States", + "longitude": -76.69472257, + "latitude": 35.02921067, + "phone": "2522496132", + "website_url": "http://www.newvillagebrewery.com", + "state": "North Carolina", + "street": "702 Broad St" + }, + { + "id": "1e59404f-441b-44b8-83d8-7ab28fb49828", + "name": "New York Beer Project", + "brewery_type": "brewpub", + "address_1": "6933 S Transit Rd", + "address_2": null, + "address_3": null, + "city": "Lockport", + "state_province": "New York", + "postal_code": "14094-6330", + "country": "United States", + "longitude": -78.69614336, + "latitude": 43.0897514, + "phone": "7167436927", + "website_url": "http://www.nybeerproject.com", + "state": "New York", + "street": "6933 S Transit Rd" + }, + { + "id": "9b0aded2-f485-490f-b527-7cf3218af77b", + "name": "Newaygo Brewing Co", + "brewery_type": "brewpub", + "address_1": "19 State Rd", + "address_2": null, + "address_3": null, + "city": "Newaygo", + "state_province": "Michigan", + "postal_code": "49337-7951", + "country": "United States", + "longitude": -85.79585808, + "latitude": 43.42386642, + "phone": "2314526551", + "website_url": "http://www.newaygobrewing.com", + "state": "Michigan", + "street": "19 State Rd" + }, + { + "id": "2c946155-4263-420c-8b11-eca20cdf51ff", + "name": "Newburgh Brewing Company", + "brewery_type": "micro", + "address_1": "88 S Colden St", + "address_2": null, + "address_3": null, + "city": "Newburgh", + "state_province": "New York", + "postal_code": "12550-5640", + "country": "United States", + "longitude": -74.00811699, + "latitude": 41.49659119, + "phone": "8455692337", + "website_url": "http://www.newburghbrewing.com", + "state": "New York", + "street": "88 S Colden St" + }, + { + "id": "c94db1c9-bd81-4a4d-a3c6-bfab07f991cc", + "name": "Newburyport Brewing Co", + "brewery_type": "micro", + "address_1": "4 New Pasture Rd", + "address_2": null, + "address_3": null, + "city": "Newburyport", + "state_province": "Massachusetts", + "postal_code": "01950-4040", + "country": "United States", + "longitude": -70.88715582, + "latitude": 42.8019577, + "phone": "9784638700", + "website_url": "http://www.nbptbrewing.com", + "state": "Massachusetts", + "street": "4 New Pasture Rd" + }, + { + "id": "3e49da3b-a8b2-454c-a97d-ada31a36d104", + "name": "Newgrass Brewing Company", + "brewery_type": "micro", + "address_1": "213 S Lafayette St", + "address_2": null, + "address_3": null, + "city": "Shelby", + "state_province": "North Carolina", + "postal_code": "28150-5349", + "country": "United States", + "longitude": -81.54035756, + "latitude": 35.29061978, + "phone": "7049371280", + "website_url": "http://www.newgrassbrewing.com", + "state": "North Carolina", + "street": "213 S Lafayette St" + }, + { + "id": "a3649b1f-6f4d-47f4-b4e6-572cef4b510b", + "name": "Newport Craft Bewing & Distilling Co", + "brewery_type": "micro", + "address_1": "293 JT Connell Hwy", + "address_2": null, + "address_3": null, + "city": "Newport", + "state_province": "Rhode Island", + "postal_code": "02840", + "country": "United States", + "longitude": -71.3159781, + "latitude": 41.5140254, + "phone": "4018495232", + "website_url": "https://newportcraft.com", + "state": "Rhode Island", + "street": "293 JT Connell Hwy" + }, + { + "id": "323cd622-6d8c-4c75-82ba-c96395fba1b2", + "name": "Newstead Brewing Co", + "brewery_type": "micro", + "address_1": "2 Airport Drive", + "address_2": "Level", + "address_3": null, + "city": "Domestic Airport", + "state_province": "QLD", + "postal_code": "4008", + "country": "Australia", + "longitude": 153.1204667, + "latitude": -27.3856294, + "phone": null, + "website_url": "https://www.bne.com.au/passenger/shop-dine-explore/dine/newstead-brewing-co", + "state": "QLD", + "street": "2 Airport Drive" + }, + { + "id": "d9602b6d-7512-41f1-a800-ba689cb7081b", + "name": "Newstead Brewing Co.", + "brewery_type": "micro", + "address_1": "2 Airport Drive", + "address_2": "Level", + "address_3": null, + "city": "Domestic Airport", + "state_province": "QLD", + "postal_code": "4008", + "country": "Australia", + "longitude": 153.1204667, + "latitude": -27.3856294, + "phone": null, + "website_url": "https://www.bne.com.au/passenger/shop-dine-explore/dine/newstead-brewing-co", + "state": "QLD", + "street": "2 Airport Drive" + }, + { + "id": "62dc4ca3-d24f-4ee5-bf94-f5517066bc30", + "name": "Next Chapter Brewpub", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "New York", + "postal_code": "13021-4620", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.nextchapterbrewpub.com", + "state": "New York", + "street": null + }, + { + "id": "cc6d0abb-b1d2-4ff0-be2a-d5b506804d26", + "name": "Next Door Brewing Company", + "brewery_type": "brewpub", + "address_1": "2439 Atwood Ave", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Wisconsin", + "postal_code": "53704-5604", + "country": "United States", + "longitude": -89.34572018, + "latitude": 43.09371275, + "phone": "6087293683", + "website_url": "http://www.nextdoorbrewing.com", + "state": "Wisconsin", + "street": "2439 Atwood Ave" + }, + { + "id": "0d6daf79-df94-4045-966e-20dae3433511", + "name": "Next Trick Brewing LLC", + "brewery_type": "brewpub", + "address_1": "2370 US Route 5", + "address_2": null, + "address_3": null, + "city": "West Burke", + "state_province": "Vermont", + "postal_code": "05871-", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8023281364", + "website_url": "http://www.nexttrickbrewing.com", + "state": "Vermont", + "street": "2370 US Route 5" + }, + { + "id": "b140291a-b48c-4ed0-bafd-fee68859e48f", + "name": "Nexus Brewery", + "brewery_type": "brewpub", + "address_1": "4730 Pan American Fwy NE Ste D", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87109-2204", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5052424100", + "website_url": "http://www.nexusbrewery.com", + "state": "New Mexico", + "street": "4730 Pan American Fwy NE Ste D" + }, + { + "id": "4fe7c651-b3db-4d96-83fd-8d37e856c822", + "name": "Nickel Beer Co", + "brewery_type": "micro", + "address_1": "1485 Hollow Glen Rd", + "address_2": null, + "address_3": null, + "city": "Julian", + "state_province": "California", + "postal_code": "92036", + "country": "United States", + "longitude": -116.5901544, + "latitude": 33.07629942, + "phone": "7607652337", + "website_url": "http://www.nickelbeerco.com", + "state": "California", + "street": "1485 Hollow Glen Rd" + }, + { + "id": "3bc90ba0-66f5-4728-a5b3-049e98d37a3c", + "name": "Nickelpoint Brewing Co", + "brewery_type": "micro", + "address_1": "506 Pershing Rd", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27608-2624", + "country": "United States", + "longitude": -78.63369468, + "latitude": 35.8045808, + "phone": "9199165961", + "website_url": "http://www.nickelpointbrewing.com", + "state": "North Carolina", + "street": "506 Pershing Rd" + }, + { + "id": "05ab0897-df45-4c61-a821-99eb3df920b4", + "name": "Nieuw Brew", + "brewery_type": "brewpub", + "address_1": "24 Main Road", + "address_2": null, + "address_3": null, + "city": "Nieuwoudtville", + "state_province": "Western Cape", + "postal_code": "8180", + "country": "South Africa", + "longitude": 19.1091, + "latitude": -31.3789, + "phone": "+27 27 218 1075", + "website_url": "https://nieuwbrew.co.za/", + "state": "Western Cape", + "street": "24 Main Road" + }, + { + "id": "9cac1034-004e-42e5-803a-20051f1f79f3", + "name": "Night Shift Brewing - Lovejoy Wharf", + "brewery_type": "regional", + "address_1": "1 Lovejoy Wharf", + "address_2": "#101", + "address_3": null, + "city": "Boston", + "state_province": "Massachusetts", + "postal_code": "02114", + "country": "United States", + "longitude": -71.059706849229, + "latitude": 42.367662536249, + "phone": null, + "website_url": null, + "state": "Massachusetts", + "street": "1 Lovejoy Wharf" + }, + { + "id": "b5e1df63-f7fe-4350-b724-f55935e77638", + "name": "Night Shift Brewing, Inc", + "brewery_type": "regional", + "address_1": "87 Santilli Hwy", + "address_2": null, + "address_3": null, + "city": "Everett", + "state_province": "Massachusetts", + "postal_code": "02149-1906", + "country": "United States", + "longitude": -71.0677001, + "latitude": 42.4059393, + "phone": "6172944233", + "website_url": "http://www.nightshiftbrewing.com", + "state": "Massachusetts", + "street": "87 Santilli Hwy" + }, + { + "id": "fc18188e-adce-4ed3-8c6d-35a746da8e86", + "name": "NightLife Brewing Co", + "brewery_type": "micro", + "address_1": "1588 Nw 7th St", + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "Florida", + "postal_code": "33125", + "country": "United States", + "longitude": -80.22131343, + "latitude": 25.7800687, + "phone": "7867872337", + "website_url": "http://www.nightlifebrewingco.com", + "state": "Florida", + "street": "1588 Nw 7th St" + }, + { + "id": "b0c7325d-5406-4b94-9a9b-9f951189a42c", + "name": "Nimble Brewing", + "brewery_type": "micro", + "address_1": "1735 Oak St", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64108", + "country": "United States", + "longitude": -94.579238, + "latitude": 39.095177, + "phone": "8167871822", + "website_url": "http://www.nimblebrewing.com", + "state": "Missouri", + "street": "1735 Oak St" + }, + { + "id": "87c2dc5c-0a40-40ee-a689-acff555737b2", + "name": "Nimble Hill Brewing Co", + "brewery_type": "micro", + "address_1": "3971 SR 6", + "address_2": null, + "address_3": null, + "city": "Tunkhannock", + "state_province": "Pennsylvania", + "postal_code": "18657", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5708369463", + "website_url": "http://www.nimblehillbrewingcompany.com", + "state": "Pennsylvania", + "street": "3971 SR 6" + }, + { + "id": "1f13514b-646f-4685-8e73-a3bdef8e651c", + "name": "Nine Band Brewing Co.", + "brewery_type": "micro", + "address_1": "9 Prestige Cir", + "address_2": null, + "address_3": null, + "city": "Allen", + "state_province": "Texas", + "postal_code": "75002-3419", + "country": "United States", + "longitude": -96.67280786, + "latitude": 33.0931001, + "phone": "9726635707", + "website_url": "http://www.ninebandbrewing.com", + "state": "Texas", + "street": "9 Prestige Cir" + }, + { + "id": "66825536-6e93-4eed-aa6c-eba138076b0e", + "name": "Nine Giant Brewing", + "brewery_type": "brewpub", + "address_1": "6095 Montgomery Rd", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45213-1617", + "country": "United States", + "longitude": -84.4276285, + "latitude": 39.1822755, + "phone": "5133664550", + "website_url": "http://www.ninegiant.com", + "state": "Ohio", + "street": "6095 Montgomery Rd" + }, + { + "id": "9b678eac-c1d5-4ff7-beb9-60534f2346a7", + "name": "Nine Maidens Brewing Company", + "brewery_type": "micro", + "address_1": "1344 University Ave", + "address_2": "Suite 140", + "address_3": null, + "city": "Rochester", + "state_province": "New York", + "postal_code": "14607", + "country": "United States", + "longitude": -77.56625665, + "latitude": 43.15104753, + "phone": "5854343030", + "website_url": "https://ninemaidensbrewing.com", + "state": "New York", + "street": "1344 University Ave" + }, + { + "id": "5cd23923-67b2-4443-b792-0f24872e6467", + "name": "Nine Yards Brewing", + "brewery_type": "closed", + "address_1": "7324 NE 175th St Ste A", + "address_2": null, + "address_3": null, + "city": "Kenmore", + "state_province": "Washington", + "postal_code": "98028-2500", + "country": "United States", + "longitude": -122.2422906, + "latitude": 47.75713837, + "phone": "2066932333", + "website_url": "http://www.nineyardsbrewing.com", + "state": "Washington", + "street": "7324 NE 175th St Ste A" + }, + { + "id": "482a6631-2632-46e5-bea1-834d1d7474c4", + "name": "Ninkasi Brewing Co", + "brewery_type": "regional", + "address_1": "155 Blair Blvd", + "address_2": null, + "address_3": null, + "city": "Eugene", + "state_province": "Oregon", + "postal_code": "97402-4146", + "country": "United States", + "longitude": -123.1108891, + "latitude": 44.05734326, + "phone": "5413442739", + "website_url": "http://www.ninkasibrewing.com", + "state": "Oregon", + "street": "155 Blair Blvd" + }, + { + "id": "8acc8ce7-11c0-43b3-913d-34e0830e03cf", + "name": "Nisqually Valley Brewing", + "brewery_type": "closed", + "address_1": "704 W Yelm Ave", + "address_2": null, + "address_3": null, + "city": "Yelm", + "state_province": "Washington", + "postal_code": "98597-7676", + "country": "United States", + "longitude": -122.6146521, + "latitude": 46.94649437, + "phone": "4252328191", + "website_url": null, + "state": "Washington", + "street": "704 W Yelm Ave" + }, + { + "id": "5ac42050-fd76-4876-9391-6b7b84a7d845", + "name": "Nivol Brewing", + "brewery_type": "micro", + "address_1": "483 N Richard Jackson Blvd", + "address_2": null, + "address_3": null, + "city": "Panama City Beach", + "state_province": "Florida", + "postal_code": "32407-3647", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8502491150", + "website_url": "http://www.nivolbrewery.com", + "state": "Florida", + "street": "483 N Richard Jackson Blvd" + }, + { + "id": "0eef4089-8abb-43aa-9bed-2845c549c737", + "name": "NLand Brewing Company", + "brewery_type": "micro", + "address_1": "4836 Hwy 71 E", + "address_2": null, + "address_3": null, + "city": "del Valle", + "state_province": "Texas", + "postal_code": "78617-3217", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5128061900", + "website_url": null, + "state": "Texas", + "street": "4836 Hwy 71 E" + }, + { + "id": "4ef00f5d-4b35-499e-ba90-8485b4d7ad8d", + "name": "No Boat Brewing Company", + "brewery_type": "micro", + "address_1": "35214 SE Center St # 2", + "address_2": null, + "address_3": null, + "city": "Snoqualmie", + "state_province": "Washington", + "postal_code": "98065-9279", + "country": "United States", + "longitude": -121.8721847, + "latitude": 47.52917112, + "phone": "2063995626", + "website_url": "http://www.noboatbrewing.com", + "state": "Washington", + "street": "35214 SE Center St # 2" + }, + { + "id": "bd119567-1524-49cd-a608-4b15f885a7f7", + "name": "No Clue Craft Brewery", + "brewery_type": "micro", + "address_1": "9037 Arrow Rte Ste 170", + "address_2": null, + "address_3": null, + "city": "Rancho Cucamonga", + "state_province": "California", + "postal_code": "91730-4433", + "country": "United States", + "longitude": -117.5410707, + "latitude": 34.0990988, + "phone": "9099892394", + "website_url": "http://www.nocluebrew.com", + "state": "California", + "street": "9037 Arrow Rte Ste 170" + }, + { + "id": "993fa956-4a45-4a84-94c7-975cea6e9602", + "name": "No Drought Brewing Co", + "brewery_type": "micro", + "address_1": "10604 E 16th Ave", + "address_2": null, + "address_3": null, + "city": "Spokane Valley", + "state_province": "Washington", + "postal_code": "99206", + "country": "United States", + "longitude": -117.2624031, + "latitude": 47.64269047, + "phone": "4257735309", + "website_url": "https://nodroughtbrewing.com", + "state": "Washington", + "street": "10604 E 16th Ave" + }, + { + "id": "ede002ca-e4fd-42ad-8f34-f355339bec32", + "name": "No Label Brewing Co", + "brewery_type": "micro", + "address_1": "5351-A 1st St", + "address_2": null, + "address_3": null, + "city": "Katy", + "state_province": "Texas", + "postal_code": "77493-2506", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2816937545", + "website_url": "http://www.nolabelbrew.com", + "state": "Texas", + "street": "5351-A 1st St" + }, + { + "id": "ab6833ed-c009-48fc-9c28-66b346f3a66d", + "name": "No Worries Brewing Company", + "brewery_type": "closed", + "address_1": "2520 State St", + "address_2": null, + "address_3": null, + "city": "Hamden", + "state_province": "Connecticut", + "postal_code": "06517-3004", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2036916662", + "website_url": "http://www.noworriesbeer.com", + "state": "Connecticut", + "street": "2520 State St" + }, + { + "id": "a2f1cd52-8d42-4763-935d-f6d3846e163b", + "name": "No-Li Brewhouse", + "brewery_type": "micro", + "address_1": "1003 E Trent Ave Ste 170", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99202-2185", + "country": "United States", + "longitude": -117.3935426, + "latitude": 47.6637169, + "phone": "5093154061", + "website_url": "http://www.nolibrewhouse.com", + "state": "Washington", + "street": "1003 E Trent Ave Ste 170" + }, + { + "id": "365669a0-156f-4d7c-8f11-e50bf0b85c80", + "name": "Noble Ale Works", + "brewery_type": "micro", + "address_1": "1621 S Sinclair St Ste B", + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92806-5947", + "country": "United States", + "longitude": -117.8826431, + "latitude": 33.80875036, + "phone": "7146342739", + "website_url": "http://www.noblealeworks.com", + "state": "California", + "street": "1621 S Sinclair St Ste B" + }, + { + "id": "cd6e88e8-4e7d-4c49-bffe-278c5e329313", + "name": "Noble Beast Brewing Co.", + "brewery_type": "brewpub", + "address_1": "1470 Lakeside Ave E", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44114-1137", + "country": "United States", + "longitude": -81.68692334, + "latitude": 41.50768107, + "phone": "7175859216", + "website_url": "http://noblebeastbeer.com", + "state": "Ohio", + "street": "1470 Lakeside Ave E" + }, + { + "id": "35c24341-b1dd-4218-a209-a4b8e26b6d04", + "name": "Noble Creature Cask House", + "brewery_type": "brewpub", + "address_1": "126 E Rayen Ave", + "address_2": null, + "address_3": null, + "city": "Youngstown", + "state_province": "Ohio", + "postal_code": "44503-1619", + "country": "United States", + "longitude": -80.64576162, + "latitude": 41.1022793, + "phone": "2347191827", + "website_url": "http://www.noblecreaturebeer.com", + "state": "Ohio", + "street": "126 E Rayen Ave" + }, + { + "id": "fb3382e7-dddc-4538-a920-8a73f8499fa0", + "name": "Noble Order Brewing Company", + "brewery_type": "brewpub", + "address_1": "3407 National Rd W", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Indiana", + "postal_code": "47374-4416", + "country": "United States", + "longitude": -84.94882319, + "latitude": 39.82198694, + "phone": "7659659463", + "website_url": "http://www.nobleorderbrewing.com", + "state": "Indiana", + "street": "3407 National Rd W" + }, + { + "id": "27b8a5c5-c9b0-4379-92c5-b51227419527", + "name": "Noble Rey Brewing Company", + "brewery_type": "micro", + "address_1": "2636 Farrington St", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75207-5908", + "country": "United States", + "longitude": -96.83952145, + "latitude": 32.79998405, + "phone": "9726777612", + "website_url": "http://www.noblereybrewing.com", + "state": "Texas", + "street": "2636 Farrington St" + }, + { + "id": "be4d1a52-2a5c-493b-9000-6e2d46ca6fed", + "name": "Noble Roots Brewing", + "brewery_type": "micro", + "address_1": "2790 University Ave", + "address_2": null, + "address_3": null, + "city": "Green Bay", + "state_province": "Wisconsin", + "postal_code": "54311-5856", + "country": "United States", + "longitude": -87.996992, + "latitude": 44.51462, + "phone": null, + "website_url": null, + "state": "Wisconsin", + "street": "2790 University Ave" + }, + { + "id": "8ffc4efe-c037-4619-bbd5-6892acf73bc5", + "name": "Noble Shepherd Craft Brewery", + "brewery_type": "micro", + "address_1": "7853 State Route 20a", + "address_2": null, + "address_3": null, + "city": "Bloomfield", + "state_province": "New York", + "postal_code": "14469-9659", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5852297661", + "website_url": "http://www.nobleshepherdbrewery.com", + "state": "New York", + "street": "7853 State Route 20a" + }, + { + "id": "5d6f03de-3d1e-4164-802f-df0ef0addb2b", + "name": "Noble Stein Brewing Co.", + "brewery_type": "micro", + "address_1": "1170-G Wayne Avenue", + "address_2": null, + "address_3": null, + "city": "Indiana", + "state_province": "Pennsylvania", + "postal_code": "15701", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7248018087", + "website_url": "http://www.noblesteinbeer.com", + "state": "Pennsylvania", + "street": "1170-G Wayne Avenue" + }, + { + "id": "7a316e4c-43af-48c4-9dd7-238c29c9355e", + "name": "NOBO Brewing Company", + "brewery_type": "micro", + "address_1": "2901 Commerce Park Dr", + "address_2": null, + "address_3": null, + "city": "Boynton Beach", + "state_province": "Florida", + "postal_code": "33426-8728", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5613201522", + "website_url": "http://www.nobobrewing.com", + "state": "Florida", + "street": "2901 Commerce Park Dr" + }, + { + "id": "0ef56b9f-5e22-4727-9507-4e81e18ec36c", + "name": "NoCoast Beer Co", + "brewery_type": "micro", + "address_1": "1407 17th Ave E Ste B", + "address_2": null, + "address_3": null, + "city": "Oskaloosa", + "state_province": "Iowa", + "postal_code": "52577-3563", + "country": "United States", + "longitude": -92.629066, + "latitude": 41.280628, + "phone": "6416733481", + "website_url": "http://www.nocoastbeer.co", + "state": "Iowa", + "street": "1407 17th Ave E Ste B" + }, + { + "id": "32f14df7-72c2-4b46-be09-9c9c887a8cc1", + "name": "Nocterra Brewing Co", + "brewery_type": "micro", + "address_1": "41 Depot St", + "address_2": null, + "address_3": null, + "city": "Powell", + "state_province": "Ohio", + "postal_code": "43065", + "country": "United States", + "longitude": -83.0784981, + "latitude": 40.1596311, + "phone": "614-896-8000", + "website_url": "https://nocterrabrewing.com/", + "state": "Ohio", + "street": "41 Depot St" + }, + { + "id": "23a3ecc4-0f48-46e5-8b7c-d72222af9d0f", + "name": "Nod Hill Brewery", + "brewery_type": "micro", + "address_1": "137 Ethan Allen Hwy", + "address_2": null, + "address_3": null, + "city": "Ridgefield", + "state_province": "Connecticut", + "postal_code": "06877-6238", + "country": "United States", + "longitude": -73.44388491, + "latitude": 41.27316148, + "phone": "2036171191", + "website_url": "http://www.nodhillbrewery.com", + "state": "Connecticut", + "street": "137 Ethan Allen Hwy" + }, + { + "id": "34b3f37c-5c35-4afa-a10f-590b88a055f1", + "name": "NoDa Brewing Co - NE", + "brewery_type": "regional", + "address_1": "2921 N Tryon St", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28206-2762", + "country": "United States", + "longitude": -80.7190968, + "latitude": 35.3342735, + "phone": "7044511394", + "website_url": "http://www.nodabrewing.com", + "state": "North Carolina", + "street": "2921 N Tryon St" + }, + { + "id": "537b2caf-1ce6-4c4f-9e7c-618d3c0bf9c1", + "name": "NoDa Brewing Co - OG", + "brewery_type": "micro", + "address_1": "2229 N Davidson St", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28205-1829", + "country": "United States", + "longitude": -80.81513271, + "latitude": 35.23971743, + "phone": "7044511394", + "website_url": null, + "state": "North Carolina", + "street": "2229 N Davidson St" + }, + { + "id": "9ffc4ccd-667b-448d-9d66-3d26aeaa505f", + "name": "Nomad Brewing Co", + "brewery_type": "micro", + "address_1": "5 Sydenham Road", + "address_2": null, + "address_3": null, + "city": "Brookvale", + "state_province": "NSW", + "postal_code": "2100", + "country": "Australia", + "longitude": 151.2723506, + "latitude": -33.7640716, + "phone": "+61 2 9907 4113", + "website_url": "http://www.nomadbrewingco.com.au/", + "state": "NSW", + "street": "5 Sydenham Road" + }, + { + "id": "4898f503-7bb3-494f-98dc-921d032912ef", + "name": "Nomadic Beerworks", + "brewery_type": "micro", + "address_1": "3804 Woodbury Dr Suita A", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78704", + "country": "United States", + "longitude": -97.7627464, + "latitude": 30.2244374, + "phone": null, + "website_url": "http://www.nomadicbeerworks.com", + "state": "Texas", + "street": "3804 Woodbury Dr Suita A" + }, + { + "id": "5448b56f-2da6-4a53-a379-061c33b7b66c", + "name": "Nonesuch River Brewing", + "brewery_type": "brewpub", + "address_1": "201 Gorham Rd", + "address_2": null, + "address_3": null, + "city": "Scarborough", + "state_province": "Maine", + "postal_code": "04074-8970", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2072198948", + "website_url": "http://www.nonesuchriverbrewing.com", + "state": "Maine", + "street": "201 Gorham Rd" + }, + { + "id": "8a04b14b-6b7e-41d8-973f-f0b5fcf18f90", + "name": "Noodledoof Brewing Co", + "brewery_type": "micro", + "address_1": "128 Commercial Road", + "address_2": null, + "address_3": null, + "city": "Koroit", + "state_province": "VIC", + "postal_code": "3282", + "country": "Australia", + "longitude": 142.3654736, + "latitude": -38.2917696, + "phone": "+61 3 5545 3178", + "website_url": "http://www.noodledoof.com/", + "state": "VIC", + "street": "128 Commercial Road" + }, + { + "id": "6e462aba-f111-4a3b-a35f-e2f2a9a4ed75", + "name": "Noon Gun Brewery", + "brewery_type": "micro", + "address_1": "214-216 Capricorn Drive", + "address_2": "Capricorn Park", + "address_3": "Muizenberg", + "city": "Cape Town", + "state_province": "Western Cape", + "postal_code": "7945", + "country": "South Africa", + "longitude": 18.4901, + "latitude": -34.0954, + "phone": "+27 21 709 0013", + "website_url": "https://noongun.net/", + "state": "Western Cape", + "street": "214-216 Capricorn Drive" + }, + { + "id": "b7b2b15a-641c-4ca0-9b04-b36d0a5bf3de", + "name": "Noon Whistle Brewing Company", + "brewery_type": "micro", + "address_1": "800 E Roosevelt Rd Ste 3", + "address_2": null, + "address_3": null, + "city": "Lombard", + "state_province": "Illinois", + "postal_code": "60148-4765", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7089063625", + "website_url": "http://www.noonwhistlebrewing.com", + "state": "Illinois", + "street": "800 E Roosevelt Rd Ste 3" + }, + { + "id": "45933549-5fb9-4422-a1dd-06d6c0f17f3f", + "name": "Noosa Hinterland Brewing Co.", + "brewery_type": "micro", + "address_1": "28 King Street", + "address_2": null, + "address_3": null, + "city": "Cooran", + "state_province": "QLD", + "postal_code": "4569", + "country": "Australia", + "longitude": 152.8212937, + "latitude": -26.3339094, + "phone": "+61 458 228 341", + "website_url": "http://noosahinterlandbrewing.com.au/", + "state": "QLD", + "street": "28 King Street" + }, + { + "id": "38ca86ea-1286-4668-ac55-b84aebc30c32", + "name": "Norfork Brewing Company", + "brewery_type": "micro", + "address_1": "1237 River Ridge Rd", + "address_2": null, + "address_3": null, + "city": "Norfork", + "state_province": "Arkansas", + "postal_code": "72658-9630", + "country": "United States", + "longitude": -92.2711893, + "latitude": 36.2245472, + "phone": "9187066082", + "website_url": "http://www.nfbrew.com", + "state": "Arkansas", + "street": "1237 River Ridge Rd" + }, + { + "id": "d0829fa2-1489-43a5-9bbf-a89d51e8747a", + "name": "Norris English Pub", + "brewery_type": "brewpub", + "address_1": "202 E Seminary St", + "address_2": null, + "address_3": null, + "city": "Liberty", + "state_province": "Indiana", + "postal_code": "47353-1206", + "country": "United States", + "longitude": -84.92508133, + "latitude": 39.6344325, + "phone": "7652232337", + "website_url": "http://www.norrisenglishpub.com", + "state": "Indiana", + "street": "202 E Seminary St" + }, + { + "id": "385aa942-7fc3-441b-90c5-7ad9410e2d03", + "name": "Norsemen Brewing Co.", + "brewery_type": "micro", + "address_1": "830 N Kansas Ave", + "address_2": null, + "address_3": null, + "city": "Topeka", + "state_province": "Kansas", + "postal_code": "66608-1211", + "country": "United States", + "longitude": -95.6663742, + "latitude": 39.06706165, + "phone": "7856085065", + "website_url": "http://www.norsemenbrewingco.com", + "state": "Kansas", + "street": "830 N Kansas Ave" + }, + { + "id": "1c3768b5-cdcf-4b42-915a-0f99ad191b87", + "name": "Nortada", + "brewery_type": "brewpub", + "address_1": "R. de Sá da Bandeira 210", + "address_2": null, + "address_3": null, + "city": "Porto", + "state_province": "Porto", + "postal_code": "4000-427", + "country": "Portugal", + "longitude": -8.6081642666967, + "latitude": 41.148109589962, + "phone": "+351 22 018 1000", + "website_url": "https://cervejanortada.pt", + "state": "Porto", + "street": "R. de Sá da Bandeira 210" + }, + { + "id": "a10124cd-39fc-494b-8196-3b71410ba8ca", + "name": "North 47 Brewing Co", + "brewery_type": "micro", + "address_1": "1000 Town Ctr NE Ste 160", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98422-1197", + "country": "United States", + "longitude": -122.4354592, + "latitude": 47.30149275, + "phone": "2535179865", + "website_url": "http://www.north47brewery.com", + "state": "Washington", + "street": "1000 Town Ctr NE Ste 160" + }, + { + "id": "e8c22d10-8479-4770-917a-7d9788a8e515", + "name": "North American Breweries", + "brewery_type": "regional", + "address_1": "445 Saint Paul St", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "New York", + "postal_code": "14605-1726", + "country": "United States", + "longitude": -77.6143245, + "latitude": 43.16481717, + "phone": "5855461030", + "website_url": null, + "state": "New York", + "street": "445 Saint Paul St" + }, + { + "id": "1749a21d-054c-42ac-86a4-a540a60e7110", + "name": "North Branch Brewing Co", + "brewery_type": "micro", + "address_1": "101 Armstrong St Ste 1", + "address_2": null, + "address_3": null, + "city": "Keyser", + "state_province": "West Virginia", + "postal_code": "26726-3502", + "country": "United States", + "longitude": -78.981671784223, + "latitude": 39.462143670226, + "phone": "3047884000", + "website_url": "https://www.facebook.com/NorthBranchPub", + "state": "West Virginia", + "street": "101 Armstrong St Ste 1" + }, + { + "id": "8de15b68-c090-4116-9d26-e09a2c845c52", + "name": "North Brewery", + "brewery_type": "micro", + "address_1": "110 Washington Ave", + "address_2": null, + "address_3": null, + "city": "Endicott", + "state_province": "New York", + "postal_code": "13760-5307", + "country": "United States", + "longitude": -76.04827802, + "latitude": 42.102192, + "phone": "6077850524", + "website_url": "http://www.northbrewery.com", + "state": "New York", + "street": "110 Washington Ave" + }, + { + "id": "a5719005-b4e5-49c8-95ed-47f6c6fcec05", + "name": "North By Northwest Restaurant and Brewery - North Capital", + "brewery_type": "brewpub", + "address_1": "10010 N Capital of Texas Hwy", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78759-5837", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5124676969", + "website_url": "http://www.nxnwbrew.com", + "state": "Texas", + "street": "10010 N Capital of Texas Hwy" + }, + { + "id": "6232a3d2-740c-4c51-b69f-234f44a6d003", + "name": "North By Northwest Restaurant and Brewery - Slaughter", + "brewery_type": "brewpub", + "address_1": "5701 W Slaughter Ln Bld D", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78759-5837", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5124676969", + "website_url": null, + "state": "Texas", + "street": "5701 W Slaughter Ln Bld D" + }, + { + "id": "2fe4a822-2435-4f5c-bebf-66a40909e8d4", + "name": "North Center Brewing Co.", + "brewery_type": "brewpub", + "address_1": "410 N Center St", + "address_2": null, + "address_3": null, + "city": "Northville", + "state_province": "Michigan", + "postal_code": "48167-1224", + "country": "United States", + "longitude": -83.48311135, + "latitude": 42.43412107, + "phone": "2484447967", + "website_url": "http://www.northcenterbrewing.com", + "state": "Michigan", + "street": "410 N Center St" + }, + { + "id": "2983edd7-074e-4a0e-970f-6fc938c07e94", + "name": "North Channel Brewing Co.", + "brewery_type": "brewpub", + "address_1": "86 Washington St", + "address_2": null, + "address_3": null, + "city": "Manistee", + "state_province": "Michigan", + "postal_code": "49660-1231", + "country": "United States", + "longitude": -86.32379888, + "latitude": 44.24929388, + "phone": "2312991020", + "website_url": "http://www.NorthChannelBrewing.com", + "state": "Michigan", + "street": "86 Washington St" + }, + { + "id": "8ded24ab-ee4b-4ae5-89aa-279f870c5f99", + "name": "North Coast Brewing Co Inc.", + "brewery_type": "regional", + "address_1": "455 N Main St", + "address_2": null, + "address_3": null, + "city": "Fort Bragg", + "state_province": "California", + "postal_code": "95437-3215", + "country": "United States", + "longitude": -123.8057604, + "latitude": 39.44618406, + "phone": "7079642739", + "website_url": "http://www.northcoastbrewing.com", + "state": "California", + "street": "455 N Main St" + }, + { + "id": "315984bd-5e4e-4752-bfee-e91c5d77ae8f", + "name": "North Country Brewing Co. LLC", + "brewery_type": "micro", + "address_1": "141 S Main St", + "address_2": null, + "address_3": null, + "city": "Slippery Rock", + "state_province": "Pennsylvania", + "postal_code": "16057-1246", + "country": "United States", + "longitude": -80.05566287, + "latitude": 41.06345599, + "phone": "7247942337", + "website_url": "http://www.northcountrybrewing.com", + "state": "Pennsylvania", + "street": "141 S Main St" + }, + { + "id": "d3d3ffc2-081b-4004-a9b9-b3471061dafc", + "name": "North Country Canning Co", + "brewery_type": "micro", + "address_1": "111 Arrowhead Dr Ste B", + "address_2": null, + "address_3": null, + "city": "Slippery Rock", + "state_province": "Pennsylvania", + "postal_code": "16057-2667", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7247942337", + "website_url": null, + "state": "Pennsylvania", + "street": "111 Arrowhead Dr Ste B" + }, + { + "id": "ca5d6e06-3eb3-4a52-a827-5c237b414323", + "name": "North End Tavern & Brewery", + "brewery_type": "brewpub", + "address_1": "3500 Emerson Ave", + "address_2": null, + "address_3": null, + "city": "Parkersburg", + "state_province": "West Virginia", + "postal_code": "26104-1806", + "country": "United States", + "longitude": -81.5330081, + "latitude": 39.2874512, + "phone": "3044285854", + "website_url": "http://www.netbrewery.com", + "state": "West Virginia", + "street": "3500 Emerson Ave" + }, + { + "id": "f8ecb4a2-5fb8-4b64-8723-2edc12a766a3", + "name": "North Fork Brewing Co", + "brewery_type": "brewpub", + "address_1": "6186 Mt Baker Hwy", + "address_2": null, + "address_3": null, + "city": "Deming", + "state_province": "Washington", + "postal_code": "98244-9501", + "country": "United States", + "longitude": -122.243112, + "latitude": 48.833032, + "phone": "3605992337", + "website_url": "http://www.northforkbrewery.com", + "state": "Washington", + "street": "6186 Mt Baker Hwy" + }, + { + "id": "bae199e6-4672-41d7-9c0c-c3ecc42033da", + "name": "North Fork Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Riverhead", + "state_province": "New York", + "postal_code": "11901-4615", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "7cc5e4f3-1c61-42ce-a66b-eb5e18a011ba", + "name": "North Forty Beer Company", + "brewery_type": "micro", + "address_1": "435 SE Jackson St", + "address_2": null, + "address_3": null, + "city": "Roseburg", + "state_province": "Oregon", + "postal_code": "97470-4945", + "country": "United States", + "longitude": -123.3429552, + "latitude": 43.21021235, + "phone": "5413216636", + "website_url": "http://www.northfortybeer.com", + "state": "Oregon", + "street": "435 SE Jackson St" + }, + { + "id": "453056a2-f7af-460b-81bc-d88e3e558889", + "name": "North Haven Brewing Company", + "brewery_type": "micro", + "address_1": "2 Iron Point Rd # 2", + "address_2": null, + "address_3": null, + "city": "North Haven", + "state_province": "Maine", + "postal_code": "04853", + "country": "United States", + "longitude": -68.8719897, + "latitude": 44.1280622, + "phone": "2078672337", + "website_url": "http://www.northhavenbrewing.com", + "state": "Maine", + "street": "2 Iron Point Rd # 2" + }, + { + "id": "83737f10-3aa4-47c7-899d-d0eac85b098c", + "name": "North High Brewing", + "brewery_type": "micro", + "address_1": "1125 Cleveland Ave", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43201-2900", + "country": "United States", + "longitude": -82.982658, + "latitude": 39.992787, + "phone": "6142263244", + "website_url": "http://www.northhighbrewing.com", + "state": "Ohio", + "street": "1125 Cleveland Ave" + }, + { + "id": "b03278e4-ab18-489a-abdb-2dd1e3a8e487", + "name": "North Idaho Mountain Brew / City Limits Pub", + "brewery_type": "brewpub", + "address_1": "108 Nine Mile Rd", + "address_2": null, + "address_3": null, + "city": "Wallace", + "state_province": "Idaho", + "postal_code": "83873-5021", + "country": "United States", + "longitude": -115.922925, + "latitude": 47.475441, + "phone": "2085561885", + "website_url": "https://northidahomountainbrew.com", + "state": "Idaho", + "street": "108 Nine Mile Rd" + }, + { + "id": "563b7a6a-3c59-4e52-9fa2-c7af3e1bfd18", + "name": "North Jetty Brewing", + "brewery_type": "micro", + "address_1": "4200 Pacific Way", + "address_2": null, + "address_3": null, + "city": "Seaview", + "state_province": "Washington", + "postal_code": "98644-4212", + "country": "United States", + "longitude": -124.0545827, + "latitude": 46.333147, + "phone": "3606424234", + "website_url": "http://www.northjettybrewing.com", + "state": "Washington", + "street": "4200 Pacific Way" + }, + { + "id": "793264a4-d4b5-4aa2-8858-b7806e2fe00c", + "name": "North Laine Brewhouse", + "brewery_type": "brewpub", + "address_1": "Gloucester Place", + "address_2": null, + "address_3": null, + "city": "Brighton", + "state_province": "East Sussex", + "postal_code": "BN1 4AA", + "country": "England", + "longitude": -0.13588, + "latitude": 50.826276, + "phone": "1273683666", + "website_url": "https://www.northlaine.pub/", + "state": "East Sussex", + "street": "Gloucester Place" + }, + { + "id": "c9891cfa-d6dd-4499-bad9-0fa9bfb39342", + "name": "North Mountain Brewing Co", + "brewery_type": "brewpub", + "address_1": "522 E Dunlap Ave", + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85020-2916", + "country": "United States", + "longitude": -112.0660919, + "latitude": 33.56787865, + "phone": "6028615999", + "website_url": "http://www.northmountainbrewing.com", + "state": "Arizona", + "street": "522 E Dunlap Ave" + }, + { + "id": "2a85f041-c3d9-4062-831a-9bf2eb9a9127", + "name": "North Park Beer Co.", + "brewery_type": "micro", + "address_1": "3038 University Ave", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92104-3002", + "country": "United States", + "longitude": -117.129137, + "latitude": 32.748724, + "phone": "6192552946", + "website_url": "http://www.northparkbeerco.com", + "state": "California", + "street": "3038 University Ave" + }, + { + "id": "7bfc1562-4643-4470-9f03-caaabfb82e21", + "name": "North Peak Brewing Co", + "brewery_type": "brewpub", + "address_1": "400 W Front St", + "address_2": null, + "address_3": null, + "city": "Traverse City", + "state_province": "Michigan", + "postal_code": "49684-2800", + "country": "United States", + "longitude": -85.6285431, + "latitude": 44.7643155, + "phone": "2319417325", + "website_url": "http://www.northpeak.net", + "state": "Michigan", + "street": "400 W Front St" + }, + { + "id": "8e765472-33c8-4e1d-8923-20973d75e6f4", + "name": "North Pier Brewing", + "brewery_type": "micro", + "address_1": "670 N Shore Dr", + "address_2": null, + "address_3": null, + "city": "Benton Harbor", + "state_province": "Michigan", + "postal_code": "49022-3646", + "country": "United States", + "longitude": -86.45499315, + "latitude": 42.12454349, + "phone": "2697577163", + "website_url": "http://www.northpierbrewing.com", + "state": "Michigan", + "street": "670 N Shore Dr" + }, + { + "id": "d704deed-0ee2-43be-a3df-68c9c104e83c", + "name": "North River Hops And Brewing", + "brewery_type": "micro", + "address_1": "1571 Route 9", + "address_2": null, + "address_3": null, + "city": "Wappingers Falls", + "state_province": "New York", + "postal_code": "12590-2827", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8452972190", + "website_url": "http://www.northriverbrews.com", + "state": "New York", + "street": "1571 Route 9" + }, + { + "id": "391dc957-781e-4669-9ff0-c76744652ef1", + "name": "North Sound Brewing Co.", + "brewery_type": "micro", + "address_1": "17406 State Route 536 Unit A", + "address_2": null, + "address_3": null, + "city": "Mount Vernon", + "state_province": "Washington", + "postal_code": "98273-8755", + "country": "United States", + "longitude": -122.3701317, + "latitude": 48.43222464, + "phone": "3609822057", + "website_url": "http://northsoundbrewing.com", + "state": "Washington", + "street": "17406 State Route 536 Unit A" + }, + { + "id": "2d8cb6cc-7f6c-4edd-8b1b-a3147e9679e8", + "name": "North West Brewing Co.", + "brewery_type": "micro", + "address_1": "100 Mooligunn Road", + "address_2": null, + "address_3": null, + "city": "Karratha Industrial Estate", + "state_province": "WA", + "postal_code": "6714", + "country": "Australia", + "longitude": 116.862437, + "latitude": -20.7660541, + "phone": "+61 8 9197 2214", + "website_url": "http://www.northwestbrewingco.com.au/", + "state": "WA", + "street": "100 Mooligunn Road" + }, + { + "id": "6fcab9b2-c9bf-40eb-a82e-53bc6a69e5e5", + "name": "Northampton Brewery", + "brewery_type": "brewpub", + "address_1": "11 Brewster Ct", + "address_2": null, + "address_3": null, + "city": "Northampton", + "state_province": "Massachusetts", + "postal_code": "01060-3801", + "country": "United States", + "longitude": -72.6303406, + "latitude": 42.317397, + "phone": "4135849903", + "website_url": "http://www.northamptonbrewery.com", + "state": "Massachusetts", + "street": "11 Brewster Ct" + }, + { + "id": "83c8e63b-c302-46e3-bb2b-7f3ac12ba99b", + "name": "Northbound Smokehouse Brewpub", + "brewery_type": "brewpub", + "address_1": "2716 E 38th St", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55406-3004", + "country": "United States", + "longitude": -93.2323804, + "latitude": 44.9342257, + "phone": "6122081450", + "website_url": "http://www.smokehousebrewpub.com", + "state": "Minnesota", + "street": "2716 E 38th St" + }, + { + "id": "f0382b22-851d-4570-907e-2e79212ef74a", + "name": "Northbridge Brewing Co. (by Beerland)", + "brewery_type": "micro", + "address_1": "44 Lake Street", + "address_2": null, + "address_3": null, + "city": "Northbridge", + "state_province": "WA", + "postal_code": "6003", + "country": "Australia", + "longitude": 115.8573219, + "latitude": -31.9474801, + "phone": "+61 8 6151 6481", + "website_url": "http://www.northbridgebrewingco.com.au/", + "state": "WA", + "street": "44 Lake Street" + }, + { + "id": "0e834e30-1b30-4a68-81d2-10665c6af1df", + "name": "Northern Ales", + "brewery_type": "brewpub", + "address_1": "325 W 3rd Ave", + "address_2": null, + "address_3": null, + "city": "Kettle Falls", + "state_province": "Washington", + "postal_code": "99141-0993", + "country": "United States", + "longitude": -118.0651843, + "latitude": 48.60979793, + "phone": "5097387382", + "website_url": "http://northernales.com", + "state": "Washington", + "street": "325 W 3rd Ave" + }, + { + "id": "6873097b-bd2b-464f-84c1-3f88e07c63d1", + "name": "Northern Harvest Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Moriah", + "state_province": "New York", + "postal_code": "12960-2306", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5184682337", + "website_url": "http://www.northernharvest.beer", + "state": "New York", + "street": null + }, + { + "id": "16b64ce9-966d-4ef8-be16-2fd585f45b9b", + "name": "Northern Maine Brewing Co", + "brewery_type": "brewpub", + "address_1": "22 Main St", + "address_2": null, + "address_3": null, + "city": "Caribou", + "state_province": "Maine", + "postal_code": "04736-4163", + "country": "United States", + "longitude": -67.99670995, + "latitude": 46.81407692, + "phone": "2074922185", + "website_url": null, + "state": "Maine", + "street": "22 Main St" + }, + { + "id": "a4e574c0-4323-43ac-bb45-475c32413d06", + "name": "Northern Oak Brewery", + "brewery_type": "brewpub", + "address_1": "806 N Saginaw St", + "address_2": null, + "address_3": null, + "city": "Holly", + "state_province": "Michigan", + "postal_code": "48442-1347", + "country": "United States", + "longitude": -83.62737964, + "latitude": 42.80026273, + "phone": "2486347515", + "website_url": "http://www.northernoakbrewery.com", + "state": "Michigan", + "street": "806 N Saginaw St" + }, + { + "id": "b66534e0-f458-43b0-b9b4-e72487d9414e", + "name": "Northern Outer Banks Brewing Company", + "brewery_type": "micro", + "address_1": "520 Old Stoney Rd", + "address_2": null, + "address_3": null, + "city": "Corolla", + "state_province": "North Carolina", + "postal_code": "27927", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2522071890", + "website_url": "http://www.northernobxbrewing.com", + "state": "North Carolina", + "street": "520 Old Stoney Rd" + }, + { + "id": "a5ccfdc3-051a-444c-b51b-0091d9a799e0", + "name": "Northern Pine Brewing", + "brewery_type": "micro", + "address_1": "326 N Horne St", + "address_2": null, + "address_3": null, + "city": "Oceanside", + "state_province": "California", + "postal_code": "92054-2810", + "country": "United States", + "longitude": -117.376798, + "latitude": 33.199836, + "phone": "7607541434", + "website_url": "http://www.northernpinebrewing.com", + "state": "California", + "street": "326 N Horne St" + }, + { + "id": "cb19bf9b-71b5-444c-a8a5-00a4fadf1d7b", + "name": "Northern Row Brewery & Distillery", + "brewery_type": "micro", + "address_1": "111 W McMicken Ave", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45202-4915", + "country": "United States", + "longitude": -84.51924466, + "latitude": 39.11836855, + "phone": "5136736689", + "website_url": "http://www.northernrow.com", + "state": "Ohio", + "street": "111 W McMicken Ave" + }, + { + "id": "f82ff275-dad6-45be-ada4-0f572743461b", + "name": "Northish Beer Company", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98444", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2537786106", + "website_url": null, + "state": "Washington", + "street": null + }, + { + "id": "479157a8-7e68-4983-91a5-9b6b2a5ee470", + "name": "Northshire Brewery, Inc", + "brewery_type": "micro", + "address_1": "108 County St", + "address_2": null, + "address_3": null, + "city": "Bennington", + "state_province": "Vermont", + "postal_code": "05201-1807", + "country": "United States", + "longitude": -73.20053877, + "latitude": 42.88457164, + "phone": "8026810201", + "website_url": "http://www.northshirebrewery.com", + "state": "Vermont", + "street": "108 County St" + }, + { + "id": "e19854be-9a28-4587-b055-90e13fcbd7fb", + "name": "Northville Winery and Brewery", + "brewery_type": "micro", + "address_1": "630 Old Baseline Rd", + "address_2": null, + "address_3": null, + "city": "Northville", + "state_province": "Michigan", + "postal_code": "48167", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2483206507", + "website_url": null, + "state": "Michigan", + "street": "630 Old Baseline Rd" + }, + { + "id": "2be1334f-d077-4164-807b-33d967296185", + "name": "Northwest Brewing Company", + "brewery_type": "closed", + "address_1": "1091 Valentine Ave SE", + "address_2": null, + "address_3": null, + "city": "Pacific", + "state_province": "Washington", + "postal_code": "98047-2127", + "country": "United States", + "longitude": -122.2488484, + "latitude": 47.2501336, + "phone": "2539875680", + "website_url": "http://www.nwbrewingcompany.com", + "state": "Washington", + "street": "1091 Valentine Ave SE" + }, + { + "id": "7da574f0-1e97-4f39-81a4-7737b440d445", + "name": "Northwest Passage Craft Brewery", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98661", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3605212417", + "website_url": null, + "state": "Washington", + "street": null + }, + { + "id": "d93d3629-6694-437e-89bd-dcc748c72316", + "name": "Northwest Peaks Brewery", + "brewery_type": "micro", + "address_1": "5718 Rainier Ave S", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98118-2704", + "country": "United States", + "longitude": -122.2774364, + "latitude": 47.55099169, + "phone": "2067252337", + "website_url": "http://www.nwpeaksbrewery.com", + "state": "Washington", + "street": "5718 Rainier Ave S" + }, + { + "id": "fdad47c3-6aa5-48d5-902f-25cfadcb46ed", + "name": "Northwood Public House & Brewery", + "brewery_type": "brewpub", + "address_1": "1401 SE Rasmussen Blvd", + "address_2": null, + "address_3": null, + "city": "Battle Ground", + "state_province": "Washington", + "postal_code": "98604-8620", + "country": "United States", + "longitude": -122.5232786, + "latitude": 45.77521745, + "phone": "3607230937", + "website_url": "http://www.northwoodpublichouse.com", + "state": "Washington", + "street": "1401 SE Rasmussen Blvd" + }, + { + "id": "762d6bfd-e2ba-469e-b3f5-05817d0a2d96", + "name": "Northwoods Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Northwood", + "state_province": "New Hampshire", + "postal_code": "03261", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2073516983", + "website_url": null, + "state": "New Hampshire", + "street": null + }, + { + "id": "10e225f0-d48e-40c8-8d58-1393404ff7a2", + "name": "Northwoods Brewpub and Grill", + "brewery_type": "brewpub", + "address_1": "50918 West Street", + "address_2": null, + "address_3": null, + "city": "Osseo", + "state_province": "Wisconsin", + "postal_code": "54758", + "country": "United States", + "longitude": -91.22665123, + "latitude": 44.58270666, + "phone": "7155520510", + "website_url": "http://www.northwoodsbrewpub.com", + "state": "Wisconsin", + "street": "50918 West Street" + }, + { + "id": "2486587b-e54e-48e4-842e-f35d9111767c", + "name": "Nortons Brewing Co.", + "brewery_type": "brewpub", + "address_1": "125 N Saint Francis St", + "address_2": null, + "address_3": null, + "city": "Wichita", + "state_province": "Kansas", + "postal_code": "67202-2607", + "country": "United States", + "longitude": -97.331744, + "latitude": 37.68657784, + "phone": "3166446067", + "website_url": "http://www.nortonsbrewing.com", + "state": "Kansas", + "street": "125 N Saint Francis St" + }, + { + "id": "439343a8-59c1-4823-9bf6-ea0c831d9db5", + "name": "Norway Brewing Company", + "brewery_type": "brewpub", + "address_1": "237 Main St", + "address_2": null, + "address_3": null, + "city": "Norway", + "state_province": "Maine", + "postal_code": "04268-5913", + "country": "United States", + "longitude": -70.5268344, + "latitude": 44.1973621, + "phone": "2077392126", + "website_url": "http://www.norwaybrewing.com", + "state": "Maine", + "street": "237 Main St" + }, + { + "id": "dab6bfc2-f4ba-4545-b06d-06d9d429f4d6", + "name": "Nosdunk Brewing Company", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Walla Walla", + "state_province": "Washington", + "postal_code": "99362-9311", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5095408784", + "website_url": "http://www.nosdunkbrewing.com", + "state": "Washington", + "street": null + }, + { + "id": "b4be3337-2dfa-44af-affb-9f65903a61c8", + "name": "Nostrum Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Alexandria", + "state_province": "Virginia", + "postal_code": "22303-2214", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Virginia", + "street": null + }, + { + "id": "cfaff05e-fab7-4530-b84e-bf10f5d439b7", + "name": "Notch Brewing", + "brewery_type": "micro", + "address_1": "283R Derby St", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "Massachusetts", + "postal_code": "01970-", + "country": "United States", + "longitude": -70.8898969, + "latitude": 42.52062541, + "phone": "9782389060", + "website_url": "http://www.notchbrewing.com", + "state": "Massachusetts", + "street": "283R Derby St" + }, + { + "id": "d32244a7-1996-4dd3-b2b4-490dde9a5c39", + "name": "Nothing's Left Brewing Co.", + "brewery_type": "contract", + "address_1": "1502 E 6th St", + "address_2": null, + "address_3": null, + "city": "Tulsa", + "state_province": "Oklahoma", + "postal_code": "74120-4026", + "country": "United States", + "longitude": -95.99253596, + "latitude": 36.14047292, + "phone": "9186061902", + "website_url": "http://www.nothingsleftbrew.co", + "state": "Oklahoma", + "street": "1502 E 6th St" + }, + { + "id": "6453bee8-0fca-4da3-9404-92b1d840747c", + "name": "Nottingham Road Brewing Company", + "brewery_type": "brewpub", + "address_1": "Rawdons Hotel", + "address_2": " R103", + "address_3": null, + "city": "Nottingham Road", + "state_province": "KwaZulu-Natal", + "postal_code": "3280", + "country": "South Africa", + "longitude": 29.9702, + "latitude": -29.3524, + "phone": "+27 33 266 6728", + "website_url": "https://nottsbrewery.co.za/", + "state": "KwaZulu-Natal", + "street": "Rawdons Hotel" + }, + { + "id": "db05a3a2-1c2e-4c9f-a5f2-c364db13586e", + "name": "Nova Brewing Co", + "brewery_type": "micro", + "address_1": "1580 W San Bernardino Rd Ste H", + "address_2": null, + "address_3": null, + "city": "Covina", + "state_province": "California", + "postal_code": "91722-3457", + "country": "United States", + "longitude": -117.9230666, + "latitude": 34.08867414, + "phone": "6263889949", + "website_url": "http://www.novabrewingco.com", + "state": "California", + "street": "1580 W San Bernardino Rd Ste H" + }, + { + "id": "8343a7db-e614-456d-8e96-6ea87da3c942", + "name": "Novel Brewing Company", + "brewery_type": "micro", + "address_1": "6510 San Pablo Ave", + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94608-1236", + "country": "United States", + "longitude": -122.282003, + "latitude": 37.837819, + "phone": "5109229974", + "website_url": "http://novelbrewing.com", + "state": "California", + "street": "6510 San Pablo Ave" + }, + { + "id": "7a2b157a-7973-4e45-aacf-c3401a4cf6ac", + "name": "Novel Strand Brewing", + "brewery_type": "micro", + "address_1": "305 W 1st Ave", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80223-1509", + "country": "United States", + "longitude": -104.9923182, + "latitude": 39.718471, + "phone": "5189613217", + "website_url": null, + "state": "Colorado", + "street": "305 W 1st Ave" + }, + { + "id": "6024f8b3-c827-42a8-9ad9-d58b79e1916c", + "name": "Novo Brazil Brewing Company", + "brewery_type": "micro", + "address_1": "901 Lane Ave # 100", + "address_2": null, + "address_3": null, + "city": "Chula Vista", + "state_province": "California", + "postal_code": "91914-3501", + "country": "United States", + "longitude": -116.9613594, + "latitude": 32.6518762, + "phone": "6198694274", + "website_url": "http://www.novobrazilbrewing.com", + "state": "California", + "street": "901 Lane Ave # 100" + }, + { + "id": "44e8dfa5-7682-466d-9fcb-7ab1c42ca7bf", + "name": "Nowhere In Particular Brewing Company", + "brewery_type": "proprietor", + "address_1": "6826 Loop Rd", + "address_2": null, + "address_3": null, + "city": "Dayton", + "state_province": "Ohio", + "postal_code": "45459-2159", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5133487282", + "website_url": "http://www.nipbrewco.com", + "state": "Ohio", + "street": "6826 Loop Rd" + }, + { + "id": "ff1c4781-8052-4cb7-bbc5-510de9df420a", + "name": "Numbers Brewing Company", + "brewery_type": "brewpub", + "address_1": "127 N Beaver St", + "address_2": null, + "address_3": null, + "city": "Lisbon", + "state_province": "Ohio", + "postal_code": "44432-1121", + "country": "United States", + "longitude": -80.76970138, + "latitude": 40.77253357, + "phone": "3308705305", + "website_url": null, + "state": "Ohio", + "street": "127 N Beaver St" + }, + { + "id": "d519f6e4-88be-44b6-948e-ddbd4bf0966b", + "name": "Nun Chuck's Brewing Co", + "brewery_type": "micro", + "address_1": "18609 76th Avenue West Suite #C", + "address_2": null, + "address_3": null, + "city": "Lynnwood", + "state_province": "Washington", + "postal_code": "98037", + "country": "United States", + "longitude": -122.3373596, + "latitude": 47.82993093, + "phone": "2066361105", + "website_url": "https://nunchucksbrewing.com", + "state": "Washington", + "street": "18609 76th Avenue West Suite #C" + }, + { + "id": "f9c62e1c-dd1a-4e87-b3b7-c70f941976b9", + "name": "Nutmeg Brewhouse", + "brewery_type": "brewpub", + "address_1": "1905 County Road 42 W", + "address_2": null, + "address_3": null, + "city": "Burnsville", + "state_province": "Minnesota", + "postal_code": "55306-6211", + "country": "United States", + "longitude": -93.30547377, + "latitude": 44.74636346, + "phone": "9528921438", + "website_url": "http://www.nutmegbrewhouse.com", + "state": "Minnesota", + "street": "1905 County Road 42 W" + }, + { + "id": "370c64be-4eac-4b7b-b0d0-a40c69290320", + "name": "Nuts and Bolts Brewing", + "brewery_type": "micro", + "address_1": "10 Westpoint Ln Bldg 10 Ste 204", + "address_2": null, + "address_3": null, + "city": "Biddeford", + "state_province": "Maine", + "postal_code": "04005", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2074681538", + "website_url": "http://www.nutsnboltsbeer.com", + "state": "Maine", + "street": "10 Westpoint Ln Bldg 10 Ste 204" + }, + { + "id": "7585139f-7a98-4552-862c-388de1fe1d59", + "name": "O Brother Brewing", + "brewery_type": "micro", + "address_1": "G3", + "address_2": "Network Enterprise Park", + "address_3": null, + "city": "Kilcool", + "state_province": "Wicklow", + "postal_code": "A63 DX47", + "country": "Ireland", + "longitude": -6.0642913, + "latitude": 53.0986762, + "phone": "353872028465", + "website_url": "https://www.obrotherbrewing.com/", + "state": "Wicklow", + "street": "G3" + }, + { + "id": "5a27af9d-5a16-408e-b9c3-525ff59636c3", + "name": "O.H.S.O. Brewery", + "brewery_type": "brewpub", + "address_1": "10810 N Tatum Blvd Ste 126", + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85028-6057", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6029009003", + "website_url": "http://www.ohsobrewery.com", + "state": "Arizona", + "street": "10810 N Tatum Blvd Ste 126" + }, + { + "id": "9848a316-3ec6-415c-bca6-a6a8514decf6", + "name": "O.H.S.O. Brewery - Gilbert", + "brewery_type": "brewpub", + "address_1": "335 N Gilbert Rd", + "address_2": null, + "address_3": null, + "city": "Gilbert", + "state_province": "Arizona", + "postal_code": "85234-5766", + "country": "United States", + "longitude": -111.7896117, + "latitude": 33.3508552, + "phone": "6029009004", + "website_url": null, + "state": "Arizona", + "street": "335 N Gilbert Rd" + }, + { + "id": "02affaa6-de24-4d80-ba61-889f9c5752d9", + "name": "O.H.S.O. Eatery + NanoBrewery", + "brewery_type": "brewpub", + "address_1": "4900 E Indian School Rd", + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85018-5554", + "country": "United States", + "longitude": -111.975831, + "latitude": 33.49501715, + "phone": "6029550358", + "website_url": "http://www.ohsobrewery.com", + "state": "Arizona", + "street": "4900 E Indian School Rd" + }, + { + "id": "4214d4f6-75da-4830-b0b5-c643f8ec76ac", + "name": "O'Connor Brewing Co", + "brewery_type": "micro", + "address_1": "211 W 24th St", + "address_2": null, + "address_3": null, + "city": "Norfolk", + "state_province": "Virginia", + "postal_code": "23517-1303", + "country": "United States", + "longitude": -76.28625088, + "latitude": 36.8697822, + "phone": "7576520059", + "website_url": "http://www.oconnorbrewing.com", + "state": "Virginia", + "street": "211 W 24th St" + }, + { + "id": "201c624e-15c6-46ac-93ff-3ec93543d17e", + "name": "O'Dempsey's Brewing Co", + "brewery_type": "contract", + "address_1": "205 Grosvenor Place, Nw", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30328", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4048450059", + "website_url": "http://www.odempseys.com", + "state": "Georgia", + "street": "205 Grosvenor Place, Nw" + }, + { + "id": "79ed4f4a-a470-42c2-af50-955633f757b7", + "name": "O'Fallon Brewery", + "brewery_type": "micro", + "address_1": "45 Progress Pkwy", + "address_2": null, + "address_3": null, + "city": "Maryland Heights", + "state_province": "Missouri", + "postal_code": "63043-3701", + "country": "United States", + "longitude": -90.44580667, + "latitude": 38.71250421, + "phone": "6364742337", + "website_url": "http://www.ofallonbrewery.com", + "state": "Missouri", + "street": "45 Progress Pkwy" + }, + { + "id": "a4e0521d-ddd8-4991-9d19-456b3455ecd8", + "name": "O'Griffs Grill & Brewhouse", + "brewery_type": "brewpub", + "address_1": "415 Hampshire St", + "address_2": null, + "address_3": null, + "city": "Quincy", + "state_province": "Illinois", + "postal_code": "62301-2931", + "country": "United States", + "longitude": -91.40876529, + "latitude": 39.93330414, + "phone": "2172242002", + "website_url": null, + "state": "Illinois", + "street": "415 Hampshire St" + }, + { + "id": "f7121060-48a5-4779-b6bd-57a1a7642c62", + "name": "O'Meara Bros. Brewing Company", + "brewery_type": "brewpub", + "address_1": "901 Bevins St", + "address_2": null, + "address_3": null, + "city": "Lakeport", + "state_province": "California", + "postal_code": "95453-8778", + "country": "United States", + "longitude": -122.9245547, + "latitude": 39.04005267, + "phone": "7072621234", + "website_url": "http://www.omearabros.com", + "state": "California", + "street": "901 Bevins St" + }, + { + "id": "eabf7b18-6513-4c95-bfac-ef15d532a21a", + "name": "O'Neil & Sons Brewing Company", + "brewery_type": "micro", + "address_1": "502 Half League Rd Unit A", + "address_2": null, + "address_3": null, + "city": "Port Lavaca", + "state_province": "Texas", + "postal_code": "77979-", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3616766023", + "website_url": "http://www.oneilandsons.com/home", + "state": "Texas", + "street": "502 Half League Rd Unit A" + }, + { + "id": "0464077b-c2c4-4bf1-b777-b26ec800b7ea", + "name": "O'so Brewing", + "brewery_type": "micro", + "address_1": "3028 Village Park Dr", + "address_2": null, + "address_3": null, + "city": "Plover", + "state_province": "Wisconsin", + "postal_code": "54467-4300", + "country": "United States", + "longitude": -89.52343053, + "latitude": 44.45340044, + "phone": "7152542163", + "website_url": "http://www.osobrewing.com", + "state": "Wisconsin", + "street": "3028 Village Park Dr" + }, + { + "id": "47226f07-fbbd-4f97-88b9-e8a7a6e0f5a8", + "name": "Oak & Iron Brewing Co", + "brewery_type": "brewpub", + "address_1": "18 Red Spring Rd", + "address_2": null, + "address_3": null, + "city": "Andover", + "state_province": "Massachusetts", + "postal_code": "01810-3448", + "country": "United States", + "longitude": -71.14788579, + "latitude": 42.65614908, + "phone": "9784754077", + "website_url": "http://www.oakandironbrewing.com", + "state": "Massachusetts", + "street": "18 Red Spring Rd" + }, + { + "id": "ce6318f1-dd45-402a-849d-43548e7b8e6a", + "name": "Oak and Dagger Public House", + "brewery_type": "brewpub", + "address_1": "18 Seaboard Ave Ste 150", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27604-8010", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9199459382", + "website_url": "http://www.oakanddagger.beer", + "state": "North Carolina", + "street": "18 Seaboard Ave Ste 150" + }, + { + "id": "e5b56c80-41a9-4101-aeec-ffb683617611", + "name": "Oak Cliff Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75224-1305", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "9fd8f231-917e-4a85-9511-0c7eda622d18", + "name": "Oak Creek Brewery & Grill", + "brewery_type": "brewpub", + "address_1": "336 State Route 179 Ste D201", + "address_2": null, + "address_3": null, + "city": "Sedona", + "state_province": "Arizona", + "postal_code": "86336-6183", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9282823300", + "website_url": null, + "state": "Arizona", + "street": "336 State Route 179 Ste D201" + }, + { + "id": "1e6a90d9-5819-4bf8-90b9-5099daa6f16f", + "name": "Oak Creek Brewing Co", + "brewery_type": "brewpub", + "address_1": "2050 Yavapai Dr Ste 2C", + "address_2": null, + "address_3": null, + "city": "Sedona", + "state_province": "Arizona", + "postal_code": "86336-4559", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9282039441", + "website_url": "http://www.oakcreekbrew.com", + "state": "Arizona", + "street": "2050 Yavapai Dr Ste 2C" + }, + { + "id": "8b3d8e4c-661d-446b-bc66-b1b738feca80", + "name": "Oak Grove Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Glendale", + "state_province": "California", + "postal_code": "91208-1836", + "country": "United States", + "longitude": -118.2462486, + "latitude": 34.192912, + "phone": "8183199577", + "website_url": "http://Www.oakgrovebrewingcompany.com", + "state": "California", + "street": null + }, + { + "id": "908d69a1-e550-4409-98e6-9c9a676d956a", + "name": "Oak Haven Brewery", + "brewery_type": "micro", + "address_1": "12 Laser Drive", + "address_2": "Unit 3", + "address_3": null, + "city": "Rowville", + "state_province": "VIC", + "postal_code": "3178", + "country": "Australia", + "longitude": 145.2450774, + "latitude": -37.9096844, + "phone": "+61 408 392 226", + "website_url": "https://projectbrewing.com.au/", + "state": "VIC", + "street": "12 Laser Drive" + }, + { + "id": "7f1f3bd0-82cd-46a7-99b0-0fded816d380", + "name": "Oak Highlands Brewery", + "brewery_type": "micro", + "address_1": "10484 Brockwood Rd", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75238-1640", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4698029455", + "website_url": "http://www.ohbrewery.com", + "state": "Texas", + "street": "10484 Brockwood Rd" + }, + { + "id": "782d72e8-ff4a-449e-a2c0-76a5d4ae3903", + "name": "Oak Hills Brewing", + "brewery_type": "micro", + "address_1": "12221 Poplar St Ste 3", + "address_2": null, + "address_3": null, + "city": "Hesperia", + "state_province": "California", + "postal_code": "92344-9287", + "country": "United States", + "longitude": -117.3969876, + "latitude": 34.4156358, + "phone": "7602448278", + "website_url": "http://www.oakhillsbrewing.com", + "state": "California", + "street": "12221 Poplar St Ste 3" + }, + { + "id": "4922f203-3290-4063-a879-0009376395bc", + "name": "Oak Park Brewing Co", + "brewery_type": "brewpub", + "address_1": "3514 Broadway", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95817-2825", + "country": "United States", + "longitude": -121.4681046, + "latitude": 38.55062715, + "phone": "9166602723", + "website_url": "http://www.opbrewco.com", + "state": "California", + "street": "3514 Broadway" + }, + { + "id": "63c296f9-29e3-4b2e-9f52-2064578114ee", + "name": "Oak Park Brewing Company", + "brewery_type": "brewpub", + "address_1": "155 S Oak Park Ave", + "address_2": null, + "address_3": null, + "city": "Oak Park", + "state_province": "Illinois", + "postal_code": "60302-2901", + "country": "United States", + "longitude": -87.79456064, + "latitude": 41.886465, + "phone": "8475425523", + "website_url": "http://www.oakparkbeer.com", + "state": "Illinois", + "street": "155 S Oak Park Ave" + }, + { + "id": "36159780-2e66-42c6-92ca-54b98c9d9b56", + "name": "Oak Pond Brewing Co", + "brewery_type": "micro", + "address_1": "101 Oak Pond Rd", + "address_2": null, + "address_3": null, + "city": "Skowhegan", + "state_province": "Maine", + "postal_code": "04976-4602", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2074743233", + "website_url": "http://www.oakpondbrewery.com", + "state": "Maine", + "street": "101 Oak Pond Rd" + }, + { + "id": "b4089ac0-ba23-40c3-91c5-7d7f3f2aec1d", + "name": "Oak Road Brewery", + "brewery_type": "micro", + "address_1": "108 E 3rd North St Ste C", + "address_2": null, + "address_3": null, + "city": "Summerville", + "state_province": "South Carolina", + "postal_code": "29483-6810", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8436959886", + "website_url": "http://www.oakroadbrewery.com", + "state": "South Carolina", + "street": "108 E 3rd North St Ste C" + }, + { + "id": "f7977b5d-4e21-4f63-aede-1c5ca36e519a", + "name": "Oakbrook Brewing Company", + "brewery_type": "brewpub", + "address_1": "628 Park Ave", + "address_2": null, + "address_3": null, + "city": "Reading", + "state_province": "Pennsylvania", + "postal_code": "19611-1926", + "country": "United States", + "longitude": -75.93478919, + "latitude": 40.31684944, + "phone": "4847555289", + "website_url": "http://www.oakbrookbrew.com", + "state": "Pennsylvania", + "street": "628 Park Ave" + }, + { + "id": "024ae123-c899-413e-8964-801b01d74d6e", + "name": "Oaken Barrel Brewing Co", + "brewery_type": "brewpub", + "address_1": "50 Airport Pkwy Ste L", + "address_2": null, + "address_3": null, + "city": "Greenwood", + "state_province": "Indiana", + "postal_code": "46143-1438", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3178872287", + "website_url": "http://www.oakenbarrel.com", + "state": "Indiana", + "street": "50 Airport Pkwy Ste L" + }, + { + "id": "4d8ee740-1b56-49f1-bb3f-ba452fc28401", + "name": "Oakenbrau", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Milwaukie", + "state_province": "Oregon", + "postal_code": "97267-3838", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9715063126", + "website_url": "http://www.oakenbrau.com", + "state": "Oregon", + "street": null + }, + { + "id": "d57fb73d-3582-4f8d-8b86-8daea30c36f2", + "name": "Oakland United Beerworks", + "brewery_type": "micro", + "address_1": "3775 Alameda Ave Ste G", + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94601-3920", + "country": "United States", + "longitude": -122.2720141, + "latitude": 37.79470818, + "phone": "5102518898", + "website_url": "http://www.oaklandunitedbeerworks.com", + "state": "California", + "street": "3775 Alameda Ave Ste G" + }, + { + "id": "25beda23-8920-4a0a-a7a7-fd8b972ac1cd", + "name": "Oaklyn Springs Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fuquay Varina", + "state_province": "North Carolina", + "postal_code": "27526-5499", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9192800046", + "website_url": "http://www.oaklynspringsbrewery.com", + "state": "North Carolina", + "street": null + }, + { + "id": "ffd62db7-780c-4b0d-9f42-812ddefb2305", + "name": "Oakshire Brewing", + "brewery_type": "micro", + "address_1": "1055 Madera St", + "address_2": null, + "address_3": null, + "city": "Eugene", + "state_province": "Oregon", + "postal_code": "97402-2019", + "country": "United States", + "longitude": -123.1410241, + "latitude": 44.07299355, + "phone": "5416884555", + "website_url": "http://www.oakbrew.com", + "state": "Oregon", + "street": "1055 Madera St" + }, + { + "id": "11e18963-8156-4941-b7e6-457b01b6d19f", + "name": "Oasis Brewery", + "brewery_type": "micro", + "address_1": "3257 N Lowell Blvd", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80211", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3033174369", + "website_url": "http://www.oasisbeer.com", + "state": "Colorado", + "street": "3257 N Lowell Blvd" + }, + { + "id": "5398673e-abb7-4855-ab70-276b95e0147f", + "name": "Oasis Texas Brewing Company", + "brewery_type": "micro", + "address_1": "6548 Comanche Trl Ste 301", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78732-1210", + "country": "United States", + "longitude": -98.151206, + "latitude": 30.043267, + "phone": "5122849407", + "website_url": "http://www.otxbc.com", + "state": "Texas", + "street": "6548 Comanche Trl Ste 301" + }, + { + "id": "58bc0ff5-5ada-4b37-a5c0-325746773116", + "name": "Oban Bay", + "brewery_type": "micro", + "address_1": "60 George Street", + "address_2": null, + "address_3": null, + "city": "Oban", + "state_province": "Argyll", + "postal_code": "PA34 5SD", + "country": "Scotland", + "longitude": -5.4725942, + "latitude": 56.4146637, + "phone": "1631564492", + "website_url": "http://obanbaybrewery.co.uk/", + "state": "Argyll", + "street": "60 George Street" + }, + { + "id": "3d4c07b2-bb81-4da0-b01c-3dbb529792ff", + "name": "Obec Brewing", + "brewery_type": "micro", + "address_1": "1144 NW 52nd St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98107-5129", + "country": "United States", + "longitude": -122.3725178, + "latitude": 47.6666586, + "phone": "2066590082", + "website_url": "http://www.obecbrewing.com", + "state": "Washington", + "street": "1144 NW 52nd St" + }, + { + "id": "29534279-4d68-4740-98b0-c02948f24fcc", + "name": "Obed & Isaac's", + "brewery_type": "micro", + "address_1": "500 S 6th St", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Illinois", + "postal_code": "62701-1810", + "country": "United States", + "longitude": -89.647885, + "latitude": 39.797079, + "phone": "2176700627", + "website_url": "http://www.connhospitalitygroup.com", + "state": "Illinois", + "street": "500 S 6th St" + }, + { + "id": "10b8d072-1ccc-45ab-93e4-08cfd8134d67", + "name": "Obed & Isaac's Microbrewery and Eatery - Peoria", + "brewery_type": "brewpub", + "address_1": "321 NE Madison Ave", + "address_2": null, + "address_3": null, + "city": "Peoria", + "state_province": "Illinois", + "postal_code": "61603", + "country": "United States", + "longitude": -89.58865914, + "latitude": 40.69577241, + "phone": "3093060190", + "website_url": null, + "state": "Illinois", + "street": "321 NE Madison Ave" + }, + { + "id": "59312c81-d887-4e24-a35b-a9d04075d490", + "name": "Ober Brewing, LLC.", + "brewery_type": "micro", + "address_1": "1443 Lakeside Cir", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "Virginia", + "postal_code": "24153-4144", + "country": "United States", + "longitude": -80.03027545, + "latitude": 37.30474414, + "phone": "5403925418", + "website_url": "http://www.oberbrewing.com", + "state": "Virginia", + "street": "1443 Lakeside Cir" + }, + { + "id": "d24860e3-dfb2-4a38-b861-8a472326e7ac", + "name": "Oblivion Brewing Co", + "brewery_type": "micro", + "address_1": "63027 Plateau Dr Ste 4", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97701-3855", + "country": "United States", + "longitude": -121.2933829, + "latitude": 44.08881821, + "phone": "5417283509", + "website_url": "http://www.oblivionbrewingco.com", + "state": "Oregon", + "street": "63027 Plateau Dr Ste 4" + }, + { + "id": "1f49e95a-580d-4f3c-896d-d1ad0e3691e1", + "name": "Obscurity", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Elburn", + "state_province": "Illinois", + "postal_code": "60119-7012", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.drinkobscurity.com", + "state": "Illinois", + "street": null + }, + { + "id": "7277f89e-0dc3-45a8-b943-a1decdf91a9e", + "name": "Occidental Brewing", + "brewery_type": "micro", + "address_1": "6635 N Baltimore Ave Ste 100", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97203-5465", + "country": "United States", + "longitude": -122.760861, + "latitude": 45.588728, + "phone": "5037197102", + "website_url": "http://www.occidentalbrewing.com", + "state": "Oregon", + "street": "6635 N Baltimore Ave Ste 100" + }, + { + "id": "c1385831-5303-4caf-bd9f-1ecd253e6936", + "name": "Occidental Brewing", + "brewery_type": "brewpub", + "address_1": "865 S Rock Blvd", + "address_2": null, + "address_3": null, + "city": "Sparks", + "state_province": "Nevada", + "postal_code": "89431", + "country": "United States", + "longitude": -119.7600161, + "latitude": 39.50114854, + "phone": "7753984200", + "website_url": null, + "state": "Nevada", + "street": "865 S Rock Blvd" + }, + { + "id": "11f1fe94-506f-4117-b2b7-47346d9f094d", + "name": "Ocean Beach Brewery", + "brewery_type": "brewpub", + "address_1": "5041 Newport Ave", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92107-3009", + "country": "United States", + "longitude": -117.252024, + "latitude": 32.747109, + "phone": "6199558053", + "website_url": null, + "state": "California", + "street": "5041 Newport Ave" + }, + { + "id": "b4745b6b-01a8-42f4-902c-ff6865829c71", + "name": "Ocean Beach Brewing", + "brewery_type": "micro", + "address_1": "47 Thompson Avenue", + "address_2": null, + "address_3": null, + "city": "Cowes", + "state_province": "VIC", + "postal_code": "3922", + "country": "Australia", + "longitude": 145.239258, + "latitude": -38.449759, + "phone": "+61 401 250 977", + "website_url": "http://oceanreach.beer/", + "state": "VIC", + "street": "47 Thompson Avenue" + }, + { + "id": "9d9fecf0-04a2-4fdb-bb1f-3d50e8a79427", + "name": "Ocean City Brewing Company", + "brewery_type": "brewpub", + "address_1": "5509 Coastal Hwy", + "address_2": null, + "address_3": null, + "city": "Ocean City", + "state_province": "Maryland", + "postal_code": "21842-3144", + "country": "United States", + "longitude": -75.06838761, + "latitude": 38.37965759, + "phone": "4436646842", + "website_url": "http://www.ocbrewingcompany.com", + "state": "Maryland", + "street": "5509 Coastal Hwy" + }, + { + "id": "00ee07d7-10ff-43de-a0b1-dc5d6f249a89", + "name": "Ocean Reach Brewing", + "brewery_type": "micro", + "address_1": "47 Thompson Avenue", + "address_2": null, + "address_3": null, + "city": "Cowes", + "state_province": "VIC", + "postal_code": "3922", + "country": "Australia", + "longitude": 145.239258, + "latitude": -38.449759, + "phone": "+61 401 250 977", + "website_url": "http://oceanreach.beer/", + "state": "VIC", + "street": "47 Thompson Avenue" + }, + { + "id": "872b17f6-785d-4116-93af-a1144865ed17", + "name": "Ocean Sun Brewing", + "brewery_type": "micro", + "address_1": "3030 Curry Ford Road", + "address_2": null, + "address_3": null, + "city": "Orlando", + "state_province": "Florida", + "postal_code": "32806-3376", + "country": "United States", + "longitude": -81.3249533, + "latitude": 28.5243367, + "phone": "4077455551", + "website_url": null, + "state": "Florida", + "street": "3030 Curry Ford Road" + }, + { + "id": "b891398a-d135-40b8-a824-58dcaa31048d", + "name": "Ocean View Community Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Norfolk", + "state_province": "Virginia", + "postal_code": "23503-4838", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7576514170", + "website_url": null, + "state": "Virginia", + "street": null + }, + { + "id": "673bb920-1816-468a-a4dc-1d869a7adb69", + "name": "Oceanside Ale Works", + "brewery_type": "micro", + "address_1": "1800 Ord Way", + "address_2": null, + "address_3": null, + "city": "Oceanside", + "state_province": "California", + "postal_code": "92056-1502", + "country": "United States", + "longitude": -117.2727432, + "latitude": 33.21200937, + "phone": "7607214253", + "website_url": "http://www.oceansidealeworks.net", + "state": "California", + "street": "1800 Ord Way" + }, + { + "id": "64f90c02-c3f8-4dec-a7c1-ea176b161d88", + "name": "Oceanside Brewing Company", + "brewery_type": "micro", + "address_1": "312 Via Del Norte", + "address_2": null, + "address_3": null, + "city": "Oceanside", + "state_province": "California", + "postal_code": "92058-1232", + "country": "United States", + "longitude": -117.3529573, + "latitude": 33.21369735, + "phone": "7604537900", + "website_url": "http://www.oceansidebrewingco.com", + "state": "California", + "street": "312 Via Del Norte" + }, + { + "id": "197b6b80-0643-419f-a39e-6b70b0113f40", + "name": "Ocelot Brewing Co", + "brewery_type": "micro", + "address_1": "23600 Overland Dr Ste 180", + "address_2": null, + "address_3": null, + "city": "Dulles", + "state_province": "Virginia", + "postal_code": "20166-4441", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7036652146", + "website_url": "http://www.ocelotbrewing.com", + "state": "Virginia", + "street": "23600 Overland Dr Ste 180" + }, + { + "id": "47f822de-3870-4731-8c79-59628d19e9fe", + "name": "Ocho Beer", + "brewery_type": "micro", + "address_1": "8 Yallourn Parade", + "address_2": null, + "address_3": null, + "city": "Ringwood", + "state_province": "VIC", + "postal_code": "3134", + "country": "Australia", + "longitude": 145.2142326, + "latitude": -37.8199056, + "phone": null, + "website_url": "http://8trackbrewery.com.au/", + "state": "VIC", + "street": "8 Yallourn Parade" + }, + { + "id": "74626ac8-014e-43ff-948d-32bea22ed086", + "name": "Ochoco Brewing Co", + "brewery_type": "micro", + "address_1": "380 N Main St", + "address_2": null, + "address_3": null, + "city": "Prineville", + "state_province": "Oregon", + "postal_code": "97754-1852", + "country": "United States", + "longitude": -120.8469675, + "latitude": 44.30359041, + "phone": "5412330883", + "website_url": "http://www.ochocobrewing.com", + "state": "Oregon", + "street": "380 N Main St" + }, + { + "id": "7028c787-cdf8-4eea-8d31-a7481eacd912", + "name": "Ocmulgee Brewpub", + "brewery_type": "brewpub", + "address_1": "484 2nd St", + "address_2": null, + "address_3": null, + "city": "Macon", + "state_province": "Georgia", + "postal_code": "31201-2734", + "country": "United States", + "longitude": -83.62932833, + "latitude": 32.8360763, + "phone": "4782542848", + "website_url": "http://www.ocmulgeebrewpub.com", + "state": "Georgia", + "street": "484 2nd St" + }, + { + "id": "93d43473-5c16-454b-ba92-4586a4e22abc", + "name": "Oconee Brewing Company", + "brewery_type": "micro", + "address_1": "202 N West St", + "address_2": null, + "address_3": null, + "city": "Greensboro", + "state_province": "Georgia", + "postal_code": "30642-1124", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7069201177", + "website_url": "http://www.oconeebrewingco.com", + "state": "Georgia", + "street": "202 N West St" + }, + { + "id": "c9edf2c6-268f-459c-9223-f41fcf2a710c", + "name": "Octopi Brewing / Untitled Art", + "brewery_type": "micro", + "address_1": "1131 Uniek Dr", + "address_2": null, + "address_3": null, + "city": "Waunakee", + "state_province": "Wisconsin", + "postal_code": "53597-8947", + "country": "United States", + "longitude": -89.4223579, + "latitude": 43.1858364, + "phone": "6086204705", + "website_url": "http://www.octopibrewing.com", + "state": "Wisconsin", + "street": "1131 Uniek Dr" + }, + { + "id": "0f063272-e447-4b7a-84d2-125dac5482cd", + "name": "Oda Restaurant", + "brewery_type": "brewpub", + "address_1": "1500 Owens St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94158-2334", + "country": "United States", + "longitude": -122.3954096, + "latitude": 37.7687392, + "phone": "4155589450", + "website_url": "http://www.barodasf.com", + "state": "California", + "street": "1500 Owens St" + }, + { + "id": "78b74aa2-7f5e-4ce4-96ad-f36ffd789fe5", + "name": "Odd Alewives Farm Brewery", + "brewery_type": "micro", + "address_1": "99 Old Rte One", + "address_2": null, + "address_3": null, + "city": "Waldoboro", + "state_province": "Maine", + "postal_code": "04572", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2077908406", + "website_url": "http://www.oddalewives.com", + "state": "Maine", + "street": "99 Old Rte One" + }, + { + "id": "bd90a960-3620-4563-98d1-4b77f5c69a62", + "name": "Odd Breed Wild Ales", + "brewery_type": "micro", + "address_1": "50 NE 1st St", + "address_2": null, + "address_3": null, + "city": "Pompano Beach", + "state_province": "Florida", + "postal_code": "33060-6602", + "country": "United States", + "longitude": -80.124792, + "latitude": 26.23234049, + "phone": "8646506210", + "website_url": "http://www.oddbreed.com", + "state": "Florida", + "street": "50 NE 1st St" + }, + { + "id": "6bacf2d3-9e03-438b-bc8d-601ca741400d", + "name": "Odd Fellows Brewing Co", + "brewery_type": "brewpub", + "address_1": "124 Main St", + "address_2": null, + "address_3": null, + "city": "Nashua", + "state_province": "New Hampshire", + "postal_code": "03060", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6035218129", + "website_url": "https://www.oddfellowsbrewery.com/", + "state": "New Hampshire", + "street": "124 Main St" + }, + { + "id": "52a1d246-495c-4d4a-9166-5fed18ae10f0", + "name": "Odd Man Rush", + "brewery_type": "micro", + "address_1": "10930 Mausel St Ste A1", + "address_2": null, + "address_3": null, + "city": "Eagle River", + "state_province": "Alaska", + "postal_code": "99577-8095", + "country": "United States", + "longitude": -149.580902, + "latitude": 61.320013, + "phone": "9076962337", + "website_url": "http://www.oddmanrushbrewing.com", + "state": "Alaska", + "street": "10930 Mausel St Ste A1" + }, + { + "id": "e96f54c0-fca8-4a58-8cc6-8b538b18b55a", + "name": "Odd Otter Brewing Company", + "brewery_type": "micro", + "address_1": "716 Pacific Ave", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98402-5208", + "country": "United States", + "longitude": -122.437927, + "latitude": 47.250289, + "phone": "2532794871", + "website_url": "http://www.oddotterbrewing.com", + "state": "Washington", + "street": "716 Pacific Ave" + }, + { + "id": "3718d688-1dab-4e58-835d-b76ed69ba1cb", + "name": "Odd Side Ales", + "brewery_type": "micro", + "address_1": "41 Washington Ave Ste 160", + "address_2": null, + "address_3": null, + "city": "Grand Haven", + "state_province": "Michigan", + "postal_code": "49417-1392", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6169357326", + "website_url": "http://www.oddsideales.com", + "state": "Michigan", + "street": "41 Washington Ave Ste 160" + }, + { + "id": "dc89cfaa-5024-46ca-b73f-ef654ed15a16", + "name": "Odd Side Ales Production Facility", + "brewery_type": "micro", + "address_1": "1810 Industrial Dr", + "address_2": null, + "address_3": null, + "city": "Grand Haven", + "state_province": "Michigan", + "postal_code": "49417-8930", + "country": "United States", + "longitude": -86.1983973, + "latitude": 43.03124408, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "1810 Industrial Dr" + }, + { + "id": "b257714f-ad0b-4898-a9bc-3c6e29dc70a1", + "name": "Odd13 Brewing Inc", + "brewery_type": "micro", + "address_1": "301 E Simpson St", + "address_2": null, + "address_3": null, + "city": "Lafayette", + "state_province": "Colorado", + "postal_code": "80026-2325", + "country": "United States", + "longitude": -105.0878839, + "latitude": 39.9983626, + "phone": "3039974164", + "website_url": "http://www.odd13brewing.com", + "state": "Colorado", + "street": "301 E Simpson St" + }, + { + "id": "ec524746-888e-4384-9f87-f8dc1af6428e", + "name": "Odd13 Production Facility", + "brewery_type": "micro", + "address_1": "505 Stacy Ct Ste D", + "address_2": null, + "address_3": null, + "city": "Lafayette", + "state_province": "Colorado", + "postal_code": "80026", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "505 Stacy Ct Ste D" + }, + { + "id": "3d6ce7c7-5481-48c6-afd7-4b68dccec4dc", + "name": "Oddball Brewing", + "brewery_type": "micro", + "address_1": "6 Glass St", + "address_2": null, + "address_3": null, + "city": "Suncook", + "state_province": "New Hampshire", + "postal_code": "03275-1512", + "country": "United States", + "longitude": -71.45239635, + "latitude": 43.1308185, + "phone": "6032105654", + "website_url": "http://www.oddballbrewingnh.com", + "state": "New Hampshire", + "street": "6 Glass St" + }, + { + "id": "d496c903-0a57-4e47-a859-3dd0aed44a71", + "name": "OddPitch Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Missoula", + "state_province": "Montana", + "postal_code": "59801-4473", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4063605363", + "website_url": "http://www.oddpitch.com", + "state": "Montana", + "street": null + }, + { + "id": "2f6b7d0c-9a11-46bf-ab17-7bc72f9868a0", + "name": "Oddstory Brewing Co", + "brewery_type": "micro", + "address_1": "336 E Mlk", + "address_2": null, + "address_3": null, + "city": "Chattanooga", + "state_province": "Tennessee", + "postal_code": "37403-4121", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2563097208", + "website_url": "http://www.oddstorybrewing.co", + "state": "Tennessee", + "street": "336 E Mlk" + }, + { + "id": "c922d09e-1c59-44c2-906e-1cd7493b5867", + "name": "Oddwood Ales", + "brewery_type": "brewpub", + "address_1": "3108 Manor Rd", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78723-5719", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.oddwoodales.com", + "state": "Texas", + "street": "3108 Manor Rd" + }, + { + "id": "be4c4685-fff4-40c5-9b6a-96e25f809c09", + "name": "Ode Brewing Co.", + "brewery_type": "brewpub", + "address_1": "3233 N Mesa St Spot 301", + "address_2": null, + "address_3": null, + "city": "El Paso", + "state_province": "Texas", + "postal_code": "79902-2337", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9153514377", + "website_url": null, + "state": "Texas", + "street": "3233 N Mesa St Spot 301" + }, + { + "id": "63fd2c11-5530-4de9-8fe2-8fbf65e3a49f", + "name": "Odell Brewing Co", + "brewery_type": "regional", + "address_1": "800 E Lincoln Ave", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80524-2507", + "country": "United States", + "longitude": -105.0633327, + "latitude": 40.5895239, + "phone": "9704989070", + "website_url": "http://www.odellbrewing.com", + "state": "Colorado", + "street": "800 E Lincoln Ave" + }, + { + "id": "504a4dee-ca0d-49cf-87dc-259504ae153c", + "name": "Odell Brewing Co - Denver", + "brewery_type": "micro", + "address_1": "2945 Larimer St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80205-2308", + "country": "United States", + "longitude": -104.9810078, + "latitude": 39.7621447, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "2945 Larimer St" + }, + { + "id": "ed47cd56-6311-47e5-9905-eb5ecca339ff", + "name": "Odin Brewing Co", + "brewery_type": "brewpub", + "address_1": "402 Baker Blvd", + "address_2": null, + "address_3": null, + "city": "Tukwila", + "state_province": "Washington", + "postal_code": "98188-2905", + "country": "United States", + "longitude": -122.2520643, + "latitude": 47.4586237, + "phone": "2062432363", + "website_url": "http://www.odinbrewing.com", + "state": "Washington", + "street": "402 Baker Blvd" + }, + { + "id": "4520147b-3286-4029-bbc7-c6faf486a166", + "name": "Odra Barrels", + "brewery_type": "micro", + "address_1": "Międzyleska 2/4", + "address_2": null, + "address_3": null, + "city": "Wrocław", + "state_province": "dolnośląskie", + "postal_code": "50-514", + "country": "Poland", + "longitude": 17.0706993, + "latitude": 51.0817502, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Międzyleska 2/4" + }, + { + "id": "319af5ac-111d-487e-81d2-0b25f910602d", + "name": "Odyssey Beerwerks", + "brewery_type": "micro", + "address_1": "5535 W 56th Ave Ste 107", + "address_2": null, + "address_3": null, + "city": "Arvada", + "state_province": "Colorado", + "postal_code": "80002-2806", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3034210772", + "website_url": "http://www.odysseybeerwerks.com", + "state": "Colorado", + "street": "5535 W 56th Ave Ste 107" + }, + { + "id": "36e353c7-895b-4ebd-ba43-01ce7b083c94", + "name": "OEC Brewing", + "brewery_type": "micro", + "address_1": "7 Fox Hollow Rd", + "address_2": null, + "address_3": null, + "city": "Oxford", + "state_province": "Connecticut", + "postal_code": "06478-3162", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2032952831", + "website_url": "http://www.oecbrewing.com", + "state": "Connecticut", + "street": "7 Fox Hollow Rd" + }, + { + "id": "e81874e0-d418-4c9e-aaf6-6420272a1796", + "name": "Off Camber Brewing", + "brewery_type": "micro", + "address_1": "6506 114th Avenue Ct E", + "address_2": null, + "address_3": null, + "city": "Puyallup", + "state_province": "Washington", + "postal_code": "98372-2811", + "country": "United States", + "longitude": -122.2772454, + "latitude": 47.1989594, + "phone": "2533128796", + "website_url": "https://www.offcamberbrewing.com", + "state": "Washington", + "street": "6506 114th Avenue Ct E" + }, + { + "id": "c8e69ab9-60b6-44b9-8188-cf3d719b8d82", + "name": "Off Color Brewing", + "brewery_type": "micro", + "address_1": "3925 W Dickens Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60647-3453", + "country": "United States", + "longitude": -87.72538437, + "latitude": 41.91892697, + "phone": null, + "website_url": "http://www.offcolorbrewing.com", + "state": "Illinois", + "street": "3925 W Dickens Ave" + }, + { + "id": "970d787c-1b48-4cf7-a213-0c1845db1391", + "name": "Off Main Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Davidson", + "state_province": "North Carolina", + "postal_code": "28036-6945", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5124153075", + "website_url": "http://OffMainBrewing.com", + "state": "North Carolina", + "street": null + }, + { + "id": "89cd06c5-f8ec-4d6a-9156-420f49bd1d2a", + "name": "Off Square Brewing", + "brewery_type": "brewpub", + "address_1": "11000 Delaware Pkwy", + "address_2": null, + "address_3": null, + "city": "Crown Point", + "state_province": "Indiana", + "postal_code": "46307-7895", + "country": "United States", + "longitude": -87.329728, + "latitude": 41.417636, + "phone": "2193108898", + "website_url": "http://www.offsquarebrewing.com", + "state": "Indiana", + "street": "11000 Delaware Pkwy" + }, + { + "id": "3208af9a-4b72-4023-827c-8f41336a6227", + "name": "Off The Cuff Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "West Brookfield", + "state_province": "Massachusetts", + "postal_code": "01585-6023", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4132810525", + "website_url": null, + "state": "Massachusetts", + "street": null + }, + { + "id": "ff0367d9-f73e-4002-b6ff-1fafb6649c86", + "name": "Off the Grid Brewing Co", + "brewery_type": "micro", + "address_1": "13615 John Glenn Rd Ste A", + "address_2": null, + "address_3": null, + "city": "Apple Valley", + "state_province": "California", + "postal_code": "92308-5730", + "country": "United States", + "longitude": -117.1827885, + "latitude": 34.49900885, + "phone": "7602475600", + "website_url": "http://www.otgbrew.com", + "state": "California", + "street": "13615 John Glenn Rd Ste A" + }, + { + "id": "cf1aec2c-18d4-42cc-a4e2-f8407b060607", + "name": "Off Track Brewing Company", + "brewery_type": "micro", + "address_1": "227 Stark Street", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45214", + "country": "United States", + "longitude": -84.522243, + "latitude": 39.118674, + "phone": "5136044527", + "website_url": "http://www.OffTrackBrewingCompany.com", + "state": "Ohio", + "street": "227 Stark Street" + }, + { + "id": "0a92f902-3d1d-4ef8-9351-5352615cc749", + "name": "Off-Kilter Brewing", + "brewery_type": "micro", + "address_1": "15810 Carbrey Ave", + "address_2": null, + "address_3": null, + "city": "South Beloit", + "state_province": "Illinois", + "postal_code": "61080", + "country": "United States", + "longitude": -89.06082453, + "latitude": 42.48966938, + "phone": null, + "website_url": "http://www.OffKilterBrewing.com", + "state": "Illinois", + "street": "15810 Carbrey Ave" + }, + { + "id": "7f85506d-f2bc-4377-9c88-43d519059151", + "name": "Offshoot Beer Co.", + "brewery_type": "micro", + "address_1": "737 Dunn Way", + "address_2": null, + "address_3": null, + "city": "Placentia", + "state_province": "California", + "postal_code": "92870", + "country": "United States", + "longitude": -117.880182, + "latitude": 33.86112597, + "phone": "7149966258", + "website_url": "http://www.offshootbeer.com", + "state": "California", + "street": "737 Dunn Way" + }, + { + "id": "9e3524ee-a548-4089-8de2-7a82c9cd767f", + "name": "Offshore Ale Co", + "brewery_type": "brewpub", + "address_1": "30 Kennebec Ave", + "address_2": null, + "address_3": null, + "city": "Oak Bluffs", + "state_province": "Massachusetts", + "postal_code": "02557", + "country": "United States", + "longitude": -70.55790959, + "latitude": 41.45488324, + "phone": "5086932626", + "website_url": "http://www.offshoreale.com", + "state": "Massachusetts", + "street": "30 Kennebec Ave" + }, + { + "id": "9716ba4a-bd0b-47b0-93c9-4c18bd2afaec", + "name": "Oggi's Sports Brewhouse Pizza - Apple Valley", + "brewery_type": "brewpub", + "address_1": "19201 Bear Valley Rd Ste D", + "address_2": null, + "address_3": null, + "city": "Apple Valley", + "state_province": "California", + "postal_code": "92308-2704", + "country": "United States", + "longitude": -117.2449244, + "latitude": 34.47042728, + "phone": "7607922622", + "website_url": "http://www.oggis.com", + "state": "California", + "street": "19201 Bear Valley Rd Ste D" + }, + { + "id": "8c9cf724-6f82-4486-bbd4-d2f1ae91c4d1", + "name": "Oggi's Sports Brewhouse Pizza - Upland", + "brewery_type": "brewpub", + "address_1": "1173 E 19th St", + "address_2": null, + "address_3": null, + "city": "Upland", + "state_province": "California", + "postal_code": "91784", + "country": "United States", + "longitude": -117.6351899, + "latitude": 34.1334924, + "phone": "9099498868", + "website_url": "http://www.oggis.com", + "state": "California", + "street": "1173 E 19th St" + }, + { + "id": "5f5febce-99e7-4d0f-9408-a0d1c1d86270", + "name": "Oggis Pizza & Brewing Co - Carmel Mountain Ranch", + "brewery_type": "brewpub", + "address_1": "10155 Rancho Carmel Dr", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92128-3609", + "country": "United States", + "longitude": -117.089795, + "latitude": 32.965495, + "phone": "8585927883", + "website_url": "http://www.oggis.com", + "state": "California", + "street": "10155 Rancho Carmel Dr" + }, + { + "id": "6bd6516a-7ce7-411f-8cbe-bf77f1d43ab9", + "name": "Oggis Pizza & Brewing Co - Mission Valley", + "brewery_type": "brewpub", + "address_1": "2245 Fenton Pkwy Ste 108 Fenton Marketplace", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92108-4737", + "country": "United States", + "longitude": -117.1291243, + "latitude": 32.78010941, + "phone": "6196401072", + "website_url": "http://www.oggis.com", + "state": "California", + "street": "2245 Fenton Pkwy Ste 108 Fenton Marketplace" + }, + { + "id": "5e4bf39c-a945-4ede-a628-3c8de572c419", + "name": "Ogie Brewing", + "brewery_type": "micro", + "address_1": "12 South St", + "address_2": null, + "address_3": null, + "city": "Milford", + "state_province": "New Hampshire", + "postal_code": "03055", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6034396788", + "website_url": null, + "state": "New Hampshire", + "street": "12 South St" + }, + { + "id": "0b2c7cb1-a556-49d7-b748-3b98c61769b8", + "name": "Ogopogo Brewing", + "brewery_type": "micro", + "address_1": "864 Commercial Ave", + "address_2": null, + "address_3": null, + "city": "San Gabriel", + "state_province": "California", + "postal_code": "91776", + "country": "United States", + "longitude": -118.0891476, + "latitude": 34.096219, + "phone": null, + "website_url": "http://www.ogopogobrewco.com", + "state": "California", + "street": "864 Commercial Ave" + }, + { + "id": "195c9a3a-3c64-4ba9-befb-a94b9b9a9573", + "name": "Ogres Brewing", + "brewery_type": "micro", + "address_1": "7693 Cultus Bay Rd Ste 1", + "address_2": null, + "address_3": null, + "city": "Clinton", + "state_province": "Washington", + "postal_code": "98236-9432", + "country": "United States", + "longitude": -122.38990827309, + "latitude": 47.931982071205, + "phone": "4254189005", + "website_url": "http://www.ogresbrewing.com", + "state": "Washington", + "street": "7693 Cultus Bay Rd Ste 1" + }, + { + "id": "c0757e3d-a7d9-485c-8bf2-919886691990", + "name": "Ohana Brewing Co", + "brewery_type": "micro", + "address_1": "1756 E 23rd St", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90058-1012", + "country": "United States", + "longitude": -118.2415609, + "latitude": 34.01575629, + "phone": "6262822337", + "website_url": "http://www.ohanabrew.com", + "state": "California", + "street": "1756 E 23rd St" + }, + { + "id": "88ae39de-93d2-4832-97a1-3c28a0457ce8", + "name": "Ohio Brewing Company", + "brewery_type": "micro", + "address_1": "2250 Front St", + "address_2": null, + "address_3": null, + "city": "Cuyahoga Falls", + "state_province": "Ohio", + "postal_code": "44221-2510", + "country": "United States", + "longitude": -81.4748217, + "latitude": 41.1444116, + "phone": "2342086243", + "website_url": "http://www.ohiobrewing.com", + "state": "Ohio", + "street": "2250 Front St" + }, + { + "id": "f40656ab-f140-4a95-8292-6f00c74b2e82", + "name": "Oil City Beer Company", + "brewery_type": "micro", + "address_1": "4155 Legion LN", + "address_2": null, + "address_3": null, + "city": "Casper", + "state_province": "Wyoming", + "postal_code": "82609-1946", + "country": "United States", + "longitude": -106.2752165983, + "latitude": 42.851373807407, + "phone": "3073371177", + "website_url": "http://www.oilcitybeer.com", + "state": "Wyoming", + "street": "4155 Legion LN" + }, + { + "id": "4c18e0e2-d6c6-430f-a3aa-3ffecd52e29d", + "name": "Oil Horse Brewing Company", + "brewery_type": "micro", + "address_1": "101 W Tyler St", + "address_2": null, + "address_3": null, + "city": "Longview", + "state_province": "Texas", + "postal_code": "75601-6318", + "country": "United States", + "longitude": -94.740354, + "latitude": 32.495365, + "phone": "9032203414", + "website_url": "http://Www.oilhorsebrewing.com", + "state": "Texas", + "street": "101 W Tyler St" + }, + { + "id": "8afbe041-76da-4532-8b5b-484bb190e998", + "name": "OK3 Brewing Company", + "brewery_type": "micro", + "address_1": "12913 17th Ave", + "address_2": null, + "address_3": null, + "city": "Lemoore", + "state_province": "California", + "postal_code": "93245-9485", + "country": "United States", + "longitude": -119.7617855, + "latitude": 36.28513704, + "phone": "15598164083", + "website_url": "http://www.ok3brewing.com", + "state": "California", + "street": "12913 17th Ave" + }, + { + "id": "81916cf6-f84e-4480-a48c-93ff1e1322ad", + "name": "Okell & Sons Ltd", + "brewery_type": "micro", + "address_1": "Old Castletown Road", + "address_2": null, + "address_3": null, + "city": "Kewaigue", + "state_province": "Middle", + "postal_code": "IM2 1QG", + "country": "Isle of Man", + "longitude": -4.506495, + "latitude": 54.143623, + "phone": "+441624699400", + "website_url": "https://www.okells.co.uk/", + "state": "Middle", + "street": "Old Castletown Road" + }, + { + "id": "eabc841f-1006-44c9-a1bf-1b067946ea0a", + "name": "Okoboji Brewing Co", + "brewery_type": "micro", + "address_1": "3705 Highway 71", + "address_2": null, + "address_3": null, + "city": "Spirit Lake", + "state_province": "Iowa", + "postal_code": "51360-7196", + "country": "United States", + "longitude": -95.125984, + "latitude": 43.405983, + "phone": "7123303363", + "website_url": "http://www.brewokoboji.com", + "state": "Iowa", + "street": "3705 Highway 71" + }, + { + "id": "7b8b7788-ba85-4324-8ed5-44ed0770911b", + "name": "Ol' Republic Brewery", + "brewery_type": "micro", + "address_1": "124 Argall Way", + "address_2": null, + "address_3": null, + "city": "Nevada City", + "state_province": "California", + "postal_code": "95959-3002", + "country": "United States", + "longitude": -121.0244602, + "latitude": 39.25272303, + "phone": "5302647263", + "website_url": "http://www.olrepublicbrewery.com", + "state": "California", + "street": "124 Argall Way" + }, + { + "id": "02ff9941-1dab-4ef3-b713-21f3e095d62b", + "name": "Ol' Republic Brewery Rancho Cordova", + "brewery_type": "micro", + "address_1": "11151 Trade Center Dr Ste 104", + "address_2": null, + "address_3": null, + "city": "Rancho Cordova", + "state_province": "California", + "postal_code": "95670", + "country": "United States", + "longitude": -121.2706039, + "latitude": 38.60219217, + "phone": "9162158702", + "website_url": null, + "state": "California", + "street": "11151 Trade Center Dr Ste 104" + }, + { + "id": "9dc287b2-c3b4-41d9-943f-eb24f2e4ce10", + "name": "Ol' Shed Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mathis", + "state_province": "Texas", + "postal_code": "78368-1738", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "74ecf1e8-780b-4fdf-a910-722bb60f8abb", + "name": "Ola Brew Co.", + "brewery_type": "micro", + "address_1": "74-5598 Luhia St Ste A", + "address_2": null, + "address_3": null, + "city": "Kailua Kona", + "state_province": "Hawaii", + "postal_code": "96740-3151", + "country": "United States", + "longitude": -155.99806, + "latitude": 19.646861, + "phone": "8083393565", + "website_url": "http://www.olabrewco.com", + "state": "Hawaii", + "street": "74-5598 Luhia St Ste A" + }, + { + "id": "df551d63-a1b6-4973-b329-999f41e4c337", + "name": "Old 290 Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Santa Ana", + "state_province": "California", + "postal_code": "92704-7463", + "country": "United States", + "longitude": -117.8732213, + "latitude": 33.7494951, + "phone": "7145464255", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "ac5ea286-db7c-47ea-ac22-e13289b39bbf", + "name": "Old 690 Brewing Co", + "brewery_type": "brewpub", + "address_1": "15670 Ashbury Church Rd", + "address_2": null, + "address_3": null, + "city": "Purcellville", + "state_province": "Virginia", + "postal_code": "20132-2817", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5406687023", + "website_url": "http://www.old690.com", + "state": "Virginia", + "street": "15670 Ashbury Church Rd" + }, + { + "id": "fd94d41b-6d0a-4a93-a700-f042096025da", + "name": "Old 99 Brewing Co", + "brewery_type": "micro", + "address_1": "3750 Hooker Rd Ste A", + "address_2": null, + "address_3": null, + "city": "Roseburg", + "state_province": "Oregon", + "postal_code": "97470-4501", + "country": "United States", + "longitude": -123.3532677, + "latitude": 43.25418612, + "phone": "5417848012", + "website_url": "http://www.old99brewing.com", + "state": "Oregon", + "street": "3750 Hooker Rd Ste A" + }, + { + "id": "78f58f23-0430-49bf-b50b-9371cb7ab9cb", + "name": "Old Bavarian Brewing Co", + "brewery_type": "contract", + "address_1": "1515 Greendale St", + "address_2": null, + "address_3": null, + "city": "Menasha", + "state_province": "Wisconsin", + "postal_code": "54952-2620", + "country": "United States", + "longitude": -88.416059, + "latitude": 44.217357, + "phone": "9207300202", + "website_url": "http://www.oldbavarian.com", + "state": "Wisconsin", + "street": "1515 Greendale St" + }, + { + "id": "af3289a4-80a1-4aaa-872d-3699402bfbe2", + "name": "Old Bisbee Brewing", + "brewery_type": "micro", + "address_1": "23 Brewery Ave", + "address_2": null, + "address_3": null, + "city": "Bisbee", + "state_province": "Arizona", + "postal_code": "85603", + "country": "United States", + "longitude": -109.9138438, + "latitude": 31.44272169, + "phone": "5204322739", + "website_url": "http://www.oldbisbeebrewingcompany.com", + "state": "Arizona", + "street": "23 Brewery Ave" + }, + { + "id": "f684669c-35f3-4626-9f4e-04906fbbfb58", + "name": "Old Black Bear Brewing", + "brewery_type": "micro", + "address_1": "208 Main St", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Alabama", + "postal_code": "35758-1813", + "country": "United States", + "longitude": -86.74922409, + "latitude": 34.69329345, + "phone": "2568504639", + "website_url": null, + "state": "Alabama", + "street": "208 Main St" + }, + { + "id": "9698719a-2987-488e-aa75-6b1c5ae568fc", + "name": "Old Boys Brewhouse", + "brewery_type": "brewpub", + "address_1": "971 W Savidge St", + "address_2": null, + "address_3": null, + "city": "Spring Lake", + "state_province": "Michigan", + "postal_code": "49456-1684", + "country": "United States", + "longitude": -86.21215194, + "latitude": 43.07642829, + "phone": "6168509950", + "website_url": "http://www.oldboysbrewhouse.com", + "state": "Michigan", + "street": "971 W Savidge St" + }, + { + "id": "60cbbd4a-6323-4ac6-8614-ca4aae338a65", + "name": "Old Bus Tavern", + "brewery_type": "brewpub", + "address_1": "3193 Mission St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94110-4515", + "country": "United States", + "longitude": -122.4195103, + "latitude": 37.745701, + "phone": "4158431938", + "website_url": "http://www.oldbustavern.com", + "state": "California", + "street": "3193 Mission St" + }, + { + "id": "14141cf3-5f2e-4179-92b9-a74e83c7aeaa", + "name": "Old Bust Head Brewing Co.", + "brewery_type": "micro", + "address_1": "7134 Lineweaver Rd", + "address_2": null, + "address_3": null, + "city": "Warrenton", + "state_province": "Virginia", + "postal_code": "20187-3949", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5403474777", + "website_url": "http://www.oldbusthead.com", + "state": "Virginia", + "street": "7134 Lineweaver Rd" + }, + { + "id": "485b439f-0d2d-4106-8859-dbaafd85729b", + "name": "Old Coast Ales", + "brewery_type": "micro", + "address_1": "300 Anastasia Blvd Ste C", + "address_2": null, + "address_3": null, + "city": "Saint Augustine", + "state_province": "Florida", + "postal_code": "32080-4759", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9045018575", + "website_url": "http://www.oldcoastales.com", + "state": "Florida", + "street": "300 Anastasia Blvd Ste C" + }, + { + "id": "72b08c53-8608-49e4-9f73-0fb075dafbec", + "name": "Old Coast Rd Brewery", + "brewery_type": "micro", + "address_1": "1238 West Break", + "address_2": null, + "address_3": null, + "city": "Myalup", + "state_province": "WA", + "postal_code": "6220", + "country": "Australia", + "longitude": 115.7426445, + "latitude": -33.0789779, + "phone": "+61 1300 792 106", + "website_url": "https://www.ocrb.com.au/", + "state": "WA", + "street": "1238 West Break" + }, + { + "id": "ba6f163e-34ae-4314-9003-59f0720e2197", + "name": "Old Colony Brewing", + "brewery_type": "micro", + "address_1": "605 Bedford St Unit 1", + "address_2": null, + "address_3": null, + "city": "Whitman", + "state_province": "Massachusetts", + "postal_code": "02382-2088", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7815237105", + "website_url": "http://www.oldcolonybrew.com", + "state": "Massachusetts", + "street": "605 Bedford St Unit 1" + }, + { + "id": "b945d00a-5596-4992-8010-f2313d71dc6b", + "name": "Old Colorado Brewing Co", + "brewery_type": "micro", + "address_1": "8121 First St.", + "address_2": null, + "address_3": null, + "city": "Wellington", + "state_province": "Colorado", + "postal_code": "80549", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9702172129", + "website_url": "http://www.oldcoloradobrewing.com", + "state": "Colorado", + "street": "8121 First St." + }, + { + "id": "7e345dad-f25e-4817-ac2c-5f941fbe6b3f", + "name": "Old Country Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fairfield", + "state_province": "California", + "postal_code": "94533-7790", + "country": "United States", + "longitude": -122.0399663, + "latitude": 38.2493581, + "phone": null, + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "65c4f76c-6d0e-4e7f-a668-1e0eb8971506", + "name": "Old Detroit Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Bloomfield Hills", + "state_province": "Michigan", + "postal_code": "48304-3817", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": null + }, + { + "id": "1799d0b2-7266-4ad9-a3ca-15cc2e3bf833", + "name": "Old Dog Alehouse & Brewery", + "brewery_type": "micro", + "address_1": "13 W William St", + "address_2": null, + "address_3": null, + "city": "Delaware", + "state_province": "Ohio", + "postal_code": "43015", + "country": "United States", + "longitude": -83.0998526, + "latitude": 40.2984874, + "phone": "740-990-4506", + "website_url": "https://www.olddogalehouse.com/menu", + "state": "Ohio", + "street": "13 W William St" + }, + { + "id": "60ad3e0d-4848-4049-8fc1-1960fe170fbd", + "name": "Old Ellsworth Brewing Company", + "brewery_type": "brewpub", + "address_1": "22005 S Ellsworth Rd", + "address_2": null, + "address_3": null, + "city": "Queen Creek", + "state_province": "Arizona", + "postal_code": "85142-8707", + "country": "United States", + "longitude": -111.6343894, + "latitude": 33.24511285, + "phone": "4804330651", + "website_url": "http://www.oldebc.com", + "state": "Arizona", + "street": "22005 S Ellsworth Rd" + }, + { + "id": "18749797-7047-40a7-915d-feb5edfd5caa", + "name": "Old Firehouse Brewery", + "brewery_type": "micro", + "address_1": "237 W Main St", + "address_2": null, + "address_3": null, + "city": "Williamsburg", + "state_province": "Ohio", + "postal_code": "45176-1342", + "country": "United States", + "longitude": -84.05307618, + "latitude": 39.05398396, + "phone": "5135369071", + "website_url": "http://www.oldfirehousebrewery.com", + "state": "Ohio", + "street": "237 W Main St" + }, + { + "id": "724c81c8-1ab1-47ce-bd14-1bce1e9c02bc", + "name": "Old Forge Brewing Co", + "brewery_type": "micro", + "address_1": "401 Railroad St Ste 104", + "address_2": null, + "address_3": null, + "city": "Danville", + "state_province": "Pennsylvania", + "postal_code": "17821-1593", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5702758151", + "website_url": "http://www.oldforgebrewingcompany.com", + "state": "Pennsylvania", + "street": "401 Railroad St Ste 104" + }, + { + "id": "49051f65-584d-4045-8a6f-3f55499f9f2a", + "name": "Old Forge Brewing Co", + "brewery_type": "brewpub", + "address_1": "532 Mill St", + "address_2": null, + "address_3": null, + "city": "Danville", + "state_province": "Pennsylvania", + "postal_code": "17821-1015", + "country": "United States", + "longitude": -76.61600763, + "latitude": 40.96547999, + "phone": "5702758151", + "website_url": "http://www.oldforgebrewingcompany.com", + "state": "Pennsylvania", + "street": "532 Mill St" + }, + { + "id": "92732f6c-a628-4eaa-a240-d5534a8ee449", + "name": "Old Hangtown Beer Works", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Placerville", + "state_province": "California", + "postal_code": "95667", + "country": "United States", + "longitude": -120.798546, + "latitude": 38.7296252, + "phone": "5309195166", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "baee055a-ed44-4149-bb78-804a064dc3d9", + "name": "Old Hangtown Beer Works", + "brewery_type": "micro", + "address_1": "11327 Trade Center Dr Ste 350", + "address_2": null, + "address_3": null, + "city": "Rancho Cordova", + "state_province": "California", + "postal_code": "95742-6285", + "country": "United States", + "longitude": -121.264149, + "latitude": 38.6075491, + "phone": "5309195166", + "website_url": "http://www.oldhangtownbeerworks.com", + "state": "California", + "street": "11327 Trade Center Dr Ste 350" + }, + { + "id": "c4a47c6d-ab6b-4ac7-9f15-17e830111015", + "name": "Old House Vineyards", + "brewery_type": "micro", + "address_1": "18351 Corkys Ln", + "address_2": null, + "address_3": null, + "city": "Culpeper", + "state_province": "Virginia", + "postal_code": "22701", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5404231032", + "website_url": "http://www.oldhousevineyards.com", + "state": "Virginia", + "street": "18351 Corkys Ln" + }, + { + "id": "bacebf35-8146-4ec3-abe8-545c53d935a7", + "name": "Old Irving Brewing Co.", + "brewery_type": "brewpub", + "address_1": "4419 W Montrose Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60641-2021", + "country": "United States", + "longitude": -87.7394333, + "latitude": 41.9605751, + "phone": "7739166421", + "website_url": "http://www.oldirvingbrewing.com", + "state": "Illinois", + "street": "4419 W Montrose Ave" + }, + { + "id": "1dc3e29e-702f-42df-9561-aead46dce8f3", + "name": "Old Ivy Brewery and Taproom", + "brewery_type": "closed", + "address_1": "108 W Evergreen Blvd Ste A", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98660-3124", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3609931827", + "website_url": "http://www.oldivybrewery.com", + "state": "Washington", + "street": "108 W Evergreen Blvd Ste A" + }, + { + "id": "c5aea541-9ffc-402b-bfb5-ab680e8edb1a", + "name": "Old Kan Beer & Co", + "brewery_type": "brewpub", + "address_1": "95 Linden St", + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94607-2510", + "country": "United States", + "longitude": -122.2879928, + "latitude": 37.7995945, + "phone": "5103383965", + "website_url": "http://www.old-kan.com", + "state": "California", + "street": "95 Linden St" + }, + { + "id": "08eed67d-4ce8-4871-8b2d-5fb77a2543f7", + "name": "Old Klaverack Brewery", + "brewery_type": "micro", + "address_1": "150 Thielman Rd", + "address_2": null, + "address_3": null, + "city": "Hudson", + "state_province": "New York", + "postal_code": "12534-3716", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5189651437", + "website_url": "http://www.oldklaverackbrewery.com", + "state": "New York", + "street": "150 Thielman Rd" + }, + { + "id": "1e875480-8642-4d5f-a9b7-d1b582657830", + "name": "Old Louisville Brewery", + "brewery_type": "micro", + "address_1": "625 W Magnolia Ave", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40208-2239", + "country": "United States", + "longitude": -85.76579382, + "latitude": 38.22970855, + "phone": "5024985434", + "website_url": "http://www.oldlouisvillebrewery.com", + "state": "Kentucky", + "street": "625 W Magnolia Ave" + }, + { + "id": "ee77f852-eeaf-4166-ac21-72afe9810545", + "name": "Old Majestic Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mobile", + "state_province": "Alabama", + "postal_code": "36602-2404", + "country": "United States", + "longitude": -88.0430541, + "latitude": 30.6943566, + "phone": "2514347387", + "website_url": null, + "state": "Alabama", + "street": null + }, + { + "id": "9ff19944-bee2-4bc3-8f15-288588c9d1c5", + "name": "Old Market Pub and Brewery", + "brewery_type": "brewpub", + "address_1": "6959 SW Multnomah Blvd", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97223-3439", + "country": "United States", + "longitude": -122.7486715, + "latitude": 45.46603555, + "phone": "5032440450", + "website_url": "http://www.drinkbeerhere.com", + "state": "Oregon", + "street": "6959 SW Multnomah Blvd" + }, + { + "id": "632333a1-7c1e-4fde-9e34-145a803be4dc", + "name": "Old Mill Brewing Company", + "brewery_type": "micro", + "address_1": "Convoy Enterprise Centre", + "address_2": null, + "address_3": null, + "city": "Convoy", + "state_province": "Donegal", + "postal_code": "F93 X314", + "country": "Ireland", + "longitude": -7.6664472, + "latitude": 54.8605864, + "phone": "353833447788", + "website_url": null, + "state": "Donegal", + "street": "Convoy Enterprise Centre" + }, + { + "id": "df0d2a61-3905-4340-a0b9-be4bf6bd30ef", + "name": "Old Mill Brewpub", + "brewery_type": "brewpub", + "address_1": "711 E Main St", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "South Carolina", + "postal_code": "29072-3670", + "country": "United States", + "longitude": -81.2298014, + "latitude": 33.9772343, + "phone": "8037852337", + "website_url": "http://www.oldmillbrewpub.net", + "state": "South Carolina", + "street": "711 E Main St" + }, + { + "id": "fd4d4773-1ead-4f71-9f61-55cdfe620267", + "name": "Old Mill Brewpub and Grill", + "brewery_type": "brewpub", + "address_1": "717 E Bridge St", + "address_2": null, + "address_3": null, + "city": "Plainwell", + "state_province": "Michigan", + "postal_code": "49080-1801", + "country": "United States", + "longitude": -85.63224537, + "latitude": 42.442939, + "phone": "2692046601", + "website_url": "http://www.oldmillbrew.com", + "state": "Michigan", + "street": "717 E Bridge St" + }, + { + "id": "5a9cc7b6-2864-48be-81a8-0a27a48440ac", + "name": "Old Mill Craft Beer", + "brewery_type": "micro", + "address_1": "2376 State Route 850", + "address_2": null, + "address_3": null, + "city": "Bidwell", + "state_province": "Ohio", + "postal_code": "45614-9590", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7402459463", + "website_url": null, + "state": "Ohio", + "street": "2376 State Route 850" + }, + { + "id": "caf2d686-872a-423f-9593-6ec537c7f13e", + "name": "Old Nation Brewing Company", + "brewery_type": "micro", + "address_1": "1500 W. Grand River Ave", + "address_2": null, + "address_3": null, + "city": "Williamston", + "state_province": "Michigan", + "postal_code": "48895-97ND", + "country": "United States", + "longitude": -84.2899561, + "latitude": 42.6878555, + "phone": "5176551301", + "website_url": "http://www.oldnationbrewing.com", + "state": "Michigan", + "street": "1500 W. Grand River Ave" + }, + { + "id": "b02c0a0c-840d-459e-b9e9-347cd9ebfc44", + "name": "Old Ox Brewery LLC", + "brewery_type": "micro", + "address_1": "44652 Guilford Dr Ste 114", + "address_2": null, + "address_3": null, + "city": "Ashburn", + "state_province": "Virginia", + "postal_code": "20147-6006", + "country": "United States", + "longitude": -77.45608031, + "latitude": 39.02226368, + "phone": "7037298375", + "website_url": "http://www.oldoxbrewery.com", + "state": "Virginia", + "street": "44652 Guilford Dr Ste 114" + }, + { + "id": "2582e5ad-5382-4e33-a5a3-7c0e321b7208", + "name": "Old Planters Brewing Co.", + "brewery_type": "micro", + "address_1": "100 Corning St", + "address_2": null, + "address_3": null, + "city": "Beverly", + "state_province": "Massachusetts", + "postal_code": "01915-3837", + "country": "United States", + "longitude": -70.86287139, + "latitude": 42.55499645, + "phone": "9785226446", + "website_url": "http://www.oldplanters.com", + "state": "Massachusetts", + "street": "100 Corning St" + }, + { + "id": "6ce2c54b-2304-46e8-a50d-ffc84489ed06", + "name": "Old Possum Brewing Company", + "brewery_type": "brewpub", + "address_1": "357 Sutton Pl", + "address_2": null, + "address_3": null, + "city": "Santa Rosa", + "state_province": "California", + "postal_code": "95407", + "country": "United States", + "longitude": -122.7252078, + "latitude": 38.39097419, + "phone": "7073037177", + "website_url": "http://www.oldpossumbrewing.com", + "state": "California", + "street": "357 Sutton Pl" + }, + { + "id": "90b7c712-b3e7-4302-8b5d-761dcb0412cd", + "name": "Old Potter’s Inn & Brewhouse", + "brewery_type": "brewpub", + "address_1": "19 Main Road", + "address_2": null, + "address_3": null, + "city": "Greyton", + "state_province": "Western Cape", + "postal_code": "7233", + "country": "South Africa", + "longitude": 19.6087, + "latitude": -34.0518, + "phone": "+27 28 254 9690", + "website_url": "https://oldpottersinn.com/", + "state": "Western Cape", + "street": "19 Main Road" + }, + { + "id": "ebc2f1b3-852f-4e01-b412-09a669cd0c7f", + "name": "Old Rail Brewing Co", + "brewery_type": "closed", + "address_1": "639 Girod St", + "address_2": null, + "address_3": null, + "city": "Mandeville", + "state_province": "Louisiana", + "postal_code": "70448-5205", + "country": "United States", + "longitude": -90.06386106, + "latitude": 30.35985466, + "phone": "9856121828", + "website_url": "http://www.oldrailbrewing.com", + "state": "Louisiana", + "street": "639 Girod St" + }, + { + "id": "43e3961c-245d-448b-9745-6be68d5bd105", + "name": "Old Redwood Brewing Co", + "brewery_type": "closed", + "address_1": "9000 Windsor Rd # A", + "address_2": null, + "address_3": null, + "city": "Windsor", + "state_province": "California", + "postal_code": "95492-9701", + "country": "United States", + "longitude": -122.8166482, + "latitude": 38.5475452, + "phone": "7076577624", + "website_url": "http://www.oldredwoodbrewing.com", + "state": "California", + "street": "9000 Windsor Rd # A" + }, + { + "id": "0b2aaada-2557-45f9-a039-b4a41832183f", + "name": "Old Schoolhouse Brewery", + "brewery_type": "brewpub", + "address_1": "155 Riverside Ave", + "address_2": null, + "address_3": null, + "city": "Winthrop", + "state_province": "Washington", + "postal_code": "98862-0577", + "country": "United States", + "longitude": -120.1866354, + "latitude": 48.47814625, + "phone": "5099963183", + "website_url": "http://www.oldschoolhousebrewery.com", + "state": "Washington", + "street": "155 Riverside Ave" + }, + { + "id": "788d873c-70cc-4d9e-94f5-a2675f2c23fa", + "name": "Old Soul Brewing", + "brewery_type": "micro", + "address_1": "10970 S Cleveland Ave Ste 402", + "address_2": null, + "address_3": null, + "city": "Fort Myers", + "state_province": "Florida", + "postal_code": "33907-2315", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2393344334", + "website_url": "http://www.oldsoulbrewcompany.com", + "state": "Florida", + "street": "10970 S Cleveland Ave Ste 402" + }, + { + "id": "d6dab3d7-38df-41b7-a2f0-21699fcf1a7b", + "name": "Old Spruce Brewing", + "brewery_type": "brewpub", + "address_1": "10 Snowshoe Dr", + "address_2": null, + "address_3": null, + "city": "Snowshoe", + "state_province": "West Virginia", + "postal_code": "26209", + "country": "United States", + "longitude": -80.036148, + "latitude": 38.416222, + "phone": "3045721020", + "website_url": "http://www.oldsprucetavern.com", + "state": "West Virginia", + "street": "10 Snowshoe Dr" + }, + { + "id": "b97ab81e-5190-41da-8107-8014bfa7a4d4", + "name": "Old Station Brewing Co", + "brewery_type": "micro", + "address_1": "140 1st St", + "address_2": null, + "address_3": null, + "city": "Havre", + "state_province": "Montana", + "postal_code": "59501-3502", + "country": "United States", + "longitude": -109.6803593, + "latitude": 48.55367512, + "phone": "4062650980", + "website_url": null, + "state": "Montana", + "street": "140 1st St" + }, + { + "id": "59614bdc-7e99-4f33-be89-3d38e50dbde7", + "name": "Old Stove Brewing Company", + "brewery_type": "brewpub", + "address_1": "1916 Pike Pl Ste 12 # 420", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98101-1056", + "country": "United States", + "longitude": -122.34284164943, + "latitude": 47.610283074606, + "phone": "2066602682", + "website_url": "http://www.oldstove.com", + "state": "Washington", + "street": "1916 Pike Pl Ste 12 # 420" + }, + { + "id": "0eb7bedd-5067-44f4-b5c5-28997e84b34a", + "name": "Old Stump Brewery", + "brewery_type": "micro", + "address_1": "2896 Metropolitan Pl", + "address_2": null, + "address_3": null, + "city": "Pomona", + "state_province": "California", + "postal_code": "91767-1854", + "country": "United States", + "longitude": -117.7541465, + "latitude": 34.09763808, + "phone": "9098609052", + "website_url": "http://www.oldstumpbrewery.com", + "state": "California", + "street": "2896 Metropolitan Pl" + }, + { + "id": "b16226d8-7fb9-4f93-99b8-055edbb68325", + "name": "Old Town Abbey Ales", + "brewery_type": "proprietor", + "address_1": "125 S Jefferson St Unit 2709", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60661-3731", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3126226544", + "website_url": "http://www.oldtownabbey.com", + "state": "Illinois", + "street": "125 S Jefferson St Unit 2709" + }, + { + "id": "71e0c30f-3833-4d6c-83b6-ecce06256c93", + "name": "Old Town Brewhouse", + "brewery_type": "micro", + "address_1": "146 Whatley Ave", + "address_2": null, + "address_3": null, + "city": "Lewisville", + "state_province": "Texas", + "postal_code": "75057-3961", + "country": "United States", + "longitude": -96.99353141, + "latitude": 33.044038, + "phone": "9722212337", + "website_url": "http://www.cobrabrewingco.com", + "state": "Texas", + "street": "146 Whatley Ave" + }, + { + "id": "e7f93b89-81e3-411d-8260-e2c6ec60c587", + "name": "Old Town Brewing", + "brewery_type": "brewpub", + "address_1": "5201 NE M L King Blvd", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97211-3235", + "country": "United States", + "longitude": -122.6639427, + "latitude": 45.5606811, + "phone": "5032005988", + "website_url": "http://www.otbrewing.com", + "state": "Oregon", + "street": "5201 NE M L King Blvd" + }, + { + "id": "1a23b4af-f4c1-455c-a8d2-37eadf0ba098", + "name": "Old Trade Brewery", + "brewery_type": "micro", + "address_1": "13270 Alanthus Rd", + "address_2": null, + "address_3": null, + "city": "Brandy Station", + "state_province": "Virginia", + "postal_code": "22714-1905", + "country": "United States", + "longitude": -77.910796, + "latitude": 38.523145, + "phone": "7742188645", + "website_url": "http://www.oldtradebrewery.com", + "state": "Virginia", + "street": "13270 Alanthus Rd" + }, + { + "id": "12e7aba5-3cf1-417f-9d75-e35a48398119", + "name": "Old Tree Brewery", + "brewery_type": "micro", + "address_1": "Richmond Place", + "address_2": null, + "address_3": null, + "city": "Brighton", + "state_province": "East Sussex", + "postal_code": "BN2 9NA", + "country": "England", + "longitude": -0.134261, + "latitude": 50.828046, + "phone": "7413064346", + "website_url": "https://oldtree.house/", + "state": "East Sussex", + "street": "Richmond Place" + }, + { + "id": "55b4f23d-823a-4281-8045-52184ec7e9e0", + "name": "Old Wives Ales", + "brewery_type": "micro", + "address_1": "36 Alfred Street", + "address_2": null, + "address_3": null, + "city": "South Melbourne", + "state_province": "VIC", + "postal_code": "3205", + "country": "Australia", + "longitude": 144.949474, + "latitude": -37.83206, + "phone": "+61 3 9694 2124", + "website_url": "http://www.westsidealeworks.com.au/", + "state": "VIC", + "street": "36 Alfred Street" + }, + { + "id": "c5c707c0-4459-4e37-9673-00a58959a74d", + "name": "Olde Bedford Brewing Company", + "brewery_type": "micro", + "address_1": "109 Railroad St", + "address_2": null, + "address_3": null, + "city": "Bedford", + "state_province": "Pennsylvania", + "postal_code": "15522-1014", + "country": "United States", + "longitude": -78.5033435, + "latitude": 40.021898, + "phone": "9072297942", + "website_url": "http://www.oldebbc.com", + "state": "Pennsylvania", + "street": "109 Railroad St" + }, + { + "id": "379400de-0839-4f1e-94f4-b34d888e0f50", + "name": "Olde Burnside Brewing Co.", + "brewery_type": "closed", + "address_1": "776 Tolland St", + "address_2": null, + "address_3": null, + "city": "East Hartford", + "state_province": "Connecticut", + "postal_code": "06108-2727", + "country": "United States", + "longitude": -72.60022238, + "latitude": 41.7850567, + "phone": "8605282200", + "website_url": "http://www.oldeburnsidebrewing.com", + "state": "Connecticut", + "street": "776 Tolland St" + }, + { + "id": "6b3bd021-21d2-4a08-8883-3f22c7df0896", + "name": "Olde Hickory Brewery - Production", + "brewery_type": "micro", + "address_1": "2 3rd St SW", + "address_2": null, + "address_3": null, + "city": "Hickory", + "state_province": "North Carolina", + "postal_code": "28602-2941", + "country": "United States", + "longitude": -81.34229502, + "latitude": 35.7313114, + "phone": null, + "website_url": null, + "state": "North Carolina", + "street": "2 3rd St SW" + }, + { + "id": "538cd69c-0efe-43e1-bef4-a93fac2ae151", + "name": "Olde Hickory Brewery & Amos Howards", + "brewery_type": "brewpub", + "address_1": "2828 US Highway 70 SW", + "address_2": null, + "address_3": null, + "city": "Hickory", + "state_province": "North Carolina", + "postal_code": "28602-4645", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8283238753", + "website_url": "http://www.amoshowards.com", + "state": "North Carolina", + "street": "2828 US Highway 70 SW" + }, + { + "id": "1abb8651-92a8-4388-89ad-0c62011de017", + "name": "Olde Main Brewing Co & Restaurant", + "brewery_type": "closed", + "address_1": "316 Main St", + "address_2": null, + "address_3": null, + "city": "Ames", + "state_province": "Iowa", + "postal_code": "50010", + "country": "United States", + "longitude": -93.61410043, + "latitude": 42.02503227, + "phone": "5152320553", + "website_url": "http://www.oldemainbrewing.com/", + "state": "Iowa", + "street": "316 Main St" + }, + { + "id": "dd9deed9-dddf-45b9-b439-8a6a4d9be915", + "name": "Olde Mother Brewing, LLC", + "brewery_type": "micro", + "address_1": "911 E Patrick St", + "address_2": null, + "address_3": null, + "city": "Frederick", + "state_province": "Maryland", + "postal_code": "21701-3132", + "country": "United States", + "longitude": -77.3912138, + "latitude": 39.40928, + "phone": "3016241700", + "website_url": "http://OldeMother.com", + "state": "Maryland", + "street": "911 E Patrick St" + }, + { + "id": "f32515b5-61f3-4a83-9c8e-34a05734158a", + "name": "Olde Peninsula Brewpub and Restaurant", + "brewery_type": "brewpub", + "address_1": "200 E Michigan Ave", + "address_2": null, + "address_3": null, + "city": "Kalamazoo", + "state_province": "Michigan", + "postal_code": "49007-3961", + "country": "United States", + "longitude": -85.581578, + "latitude": 42.2916484, + "phone": "2693432739", + "website_url": "http://www.oldepeninsula.com", + "state": "Michigan", + "street": "200 E Michigan Ave" + }, + { + "id": "1d13ecd0-7e01-4919-bae6-eb64f29e53e1", + "name": "Olde Salem Brewing Company", + "brewery_type": "micro", + "address_1": "21 E Main St", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "Virginia", + "postal_code": "24153-3806", + "country": "United States", + "longitude": -80.04053168, + "latitude": 37.29440174, + "phone": null, + "website_url": "http://oldesalembrewing.com", + "state": "Virginia", + "street": "21 E Main St" + }, + { + "id": "24245887-9267-4799-b5a4-82e95deea0c0", + "name": "Ole Dallas Brewery", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "North Carolina", + "postal_code": "28034-9793", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7042661472", + "website_url": "http://www.oledallasbrewery.com", + "state": "North Carolina", + "street": null + }, + { + "id": "9494d683-de13-4a05-a457-b250a497c54f", + "name": "Ole Shed Brewing Company", + "brewery_type": "micro", + "address_1": "516 E Carroll St", + "address_2": null, + "address_3": null, + "city": "Tullahoma", + "state_province": "Tennessee", + "postal_code": "37388-3983", + "country": "United States", + "longitude": -86.19823741, + "latitude": 35.36075686, + "phone": "9312124277", + "website_url": "http://www.oleshedbrewing.com", + "state": "Tennessee", + "street": "516 E Carroll St" + }, + { + "id": "bf79ba63-583a-4545-bc3c-feddd9123c36", + "name": "Olentangy River Brewing Company", + "brewery_type": "micro", + "address_1": "303 Green Meadows Dr S", + "address_2": null, + "address_3": null, + "city": "Lewis Center", + "state_province": "Ohio", + "postal_code": "43035", + "country": "United States", + "longitude": -83.0798709, + "latitude": 40.1618242, + "phone": "740-803-1561", + "website_url": "http://www.olentangybrew.com/", + "state": "Ohio", + "street": "303 Green Meadows Dr S" + }, + { + "id": "9ee73057-9c01-46b3-b5fd-7900bfbc2eb0", + "name": "Oliphant Brewing", + "brewery_type": "micro", + "address_1": "350 Main St Ste 2", + "address_2": null, + "address_3": null, + "city": "Somerset", + "state_province": "Wisconsin", + "postal_code": "54025-9108", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6513077881", + "website_url": "http://www.oliphantbrewing.com", + "state": "Wisconsin", + "street": "350 Main St Ste 2" + }, + { + "id": "d5d6202f-bbba-45a5-b363-cf14a1b87ad5", + "name": "Oliver Brewing Company", + "brewery_type": "micro", + "address_1": "4216 Shannon Dr", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21213-2144", + "country": "United States", + "longitude": -76.5531768, + "latitude": 39.3149018, + "phone": "4104833302", + "website_url": "http://www.oliverbrewingco.com", + "state": "Maryland", + "street": "4216 Shannon Dr" + }, + { + "id": "74ece31f-809b-4139-882a-1e1c9328b7f6", + "name": "Ology Brewing Co", + "brewery_type": "micro", + "address_1": "118 E 6th Ave", + "address_2": null, + "address_3": null, + "city": "Tallahassee", + "state_province": "Florida", + "postal_code": "32303", + "country": "United States", + "longitude": -84.2815824, + "latitude": 30.45646517, + "phone": "8505662463", + "website_url": "http://www.ologybrewing.com", + "state": "Florida", + "street": "118 E 6th Ave" + }, + { + "id": "077b9bc3-e570-4f08-a6c6-87325271424a", + "name": "Olvalde Farm & Brewing", + "brewery_type": "micro", + "address_1": "16557 County Road 25", + "address_2": null, + "address_3": null, + "city": "Rollingstone", + "state_province": "Minnesota", + "postal_code": "55969-4046", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5072054969", + "website_url": "http://www.olvalde.com", + "state": "Minnesota", + "street": "16557 County Road 25" + }, + { + "id": "a88637ad-825b-415c-b29f-601794f2ecb5", + "name": "Omaha Brewing Company", + "brewery_type": "micro", + "address_1": "265 Brew St", + "address_2": null, + "address_3": null, + "city": "Omaha", + "state_province": "Georgia", + "postal_code": "31821-2258", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2298384779", + "website_url": "http://www.omahabrewingcompany.com", + "state": "Georgia", + "street": "265 Brew St" + }, + { + "id": "853b4f3f-35bd-48e7-a735-0e3364043a8a", + "name": "Ombibulous Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fall Creek", + "state_province": "Wisconsin", + "postal_code": "54742-4965", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7155779151", + "website_url": null, + "state": "Wisconsin", + "street": null + }, + { + "id": "249bc0e5-0816-45db-98f3-adfdf97ac144", + "name": "OMD Café", + "brewery_type": "bar", + "address_1": "12 East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "428723", + "country": "Singapore", + "longitude": 1.3041909416563, + "latitude": 103.90239119743, + "phone": "+65 8783 3494", + "website_url": null, + "state": "Singapore", + "street": "12 East Coast Road" + }, + { + "id": "e5f2f0af-a281-4c82-a065-98689363dd4c", + "name": "Omega Brewing Experience", + "brewery_type": "micro", + "address_1": "115 E. Main St", + "address_2": null, + "address_3": null, + "city": "Omro", + "state_province": "Wisconsin", + "postal_code": "54963", + "country": "United States", + "longitude": -88.7441189, + "latitude": 44.0396052, + "phone": null, + "website_url": "https://www.facebook.com/Omega-Brewing-Experience-163883807641712/", + "state": "Wisconsin", + "street": "115 E. Main St" + }, + { + "id": "670097b2-bf75-4157-b909-e829676a0592", + "name": "OMNI Brewing Company", + "brewery_type": "micro", + "address_1": "9462 Deerwood Ln N", + "address_2": null, + "address_3": null, + "city": "Maple Grove", + "state_province": "Minnesota", + "postal_code": "55369-3629", + "country": "United States", + "longitude": -93.42589843, + "latitude": 45.12605143, + "phone": "7152229832", + "website_url": null, + "state": "Minnesota", + "street": "9462 Deerwood Ln N" + }, + { + "id": "fc4851e9-7c4e-46f1-9328-bb25cafd982b", + "name": "Omnium Brewing", + "brewery_type": "brewpub", + "address_1": "300 Main St", + "address_2": null, + "address_3": null, + "city": "Nashua", + "state_province": "New Hampshire", + "postal_code": "03060", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6035216377", + "website_url": "https://omniumbrewing.com/", + "state": "New Hampshire", + "street": "300 Main St" + }, + { + "id": "76934d0b-fc8e-4050-8138-2da6a3059081", + "name": "On Rotation Brewery", + "brewery_type": "micro", + "address_1": "7328 Gaston Ave # 110", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75214-4130", + "country": "United States", + "longitude": -96.731396, + "latitude": 32.8109335, + "phone": "9728072588", + "website_url": "http://www.on-rotation.com", + "state": "Texas", + "street": "7328 Gaston Ave # 110" + }, + { + "id": "666792cc-8e1e-4db4-8d1d-c59c01356838", + "name": "On The Fly Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sunbury", + "state_province": "Ohio", + "postal_code": "43074-9022", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6145618735", + "website_url": "http://www.ontheflybrewing.com", + "state": "Ohio", + "street": null + }, + { + "id": "a3261795-e389-45f6-9d4f-5ef77392416f", + "name": "On Tour Brewing Co.", + "brewery_type": "micro", + "address_1": "1725 W Hubbard St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60622-6213", + "country": "United States", + "longitude": -87.670578, + "latitude": 41.8896255, + "phone": "3127963119", + "website_url": "http://www.ontourbrewing.com", + "state": "Illinois", + "street": "1725 W Hubbard St" + }, + { + "id": "460f7adb-fa4e-4c32-aa32-367065e140fc", + "name": "One Allegiance Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Chicago Ridge", + "state_province": "Illinois", + "postal_code": "60415-1347", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.OneAllegiance.com", + "state": "Illinois", + "street": null + }, + { + "id": "8aeb41b6-5d7e-4b56-8170-af58e83e6c3d", + "name": "One Barrel Brewing Company", + "brewery_type": "micro", + "address_1": "2001 Atwood Ave", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Wisconsin", + "postal_code": "53704-5324", + "country": "United States", + "longitude": -89.35499479, + "latitude": 43.09180985, + "phone": "6086309286", + "website_url": "http://www.onebarrelbrewing.com", + "state": "Wisconsin", + "street": "2001 Atwood Ave" + }, + { + "id": "d3794681-04d5-428e-91b4-c700d35e1eef", + "name": "One Brewing / Harmony Meadows Center", + "brewery_type": "closed", + "address_1": "4848 Green Ave Ste B", + "address_2": null, + "address_3": null, + "city": "Manson", + "state_province": "Washington", + "postal_code": "98831-9404", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5098882344", + "website_url": "http://www.harmonymeadowscenter.com", + "state": "Washington", + "street": "4848 Green Ave Ste B" + }, + { + "id": "f1a0653f-e593-43e4-88c5-7afeefaa4270", + "name": "One Drop Brewing Co", + "brewery_type": "micro", + "address_1": "5 Erith Street", + "address_2": null, + "address_3": null, + "city": "Botany", + "state_province": "NSW", + "postal_code": "2019", + "country": "Australia", + "longitude": 151.1929678, + "latitude": -33.9453954, + "phone": null, + "website_url": "http://onedropbrewingco.com.au/?utm_source=google&utm_medium=wix_google_business_profile&utm_campaign=3190687379776620687", + "state": "NSW", + "street": "5 Erith Street" + }, + { + "id": "f40f4e36-ce70-4e47-8e63-5ff8e3b982e5", + "name": "One Drop Brewing Co.", + "brewery_type": "micro", + "address_1": "5 Erith Street", + "address_2": null, + "address_3": null, + "city": "Botany", + "state_province": "NSW", + "postal_code": "2019", + "country": "Australia", + "longitude": 151.1929678, + "latitude": -33.9453954, + "phone": null, + "website_url": "http://onedropbrewingco.com.au/?utm_source=google&utm_medium=wix_google_business_profile&utm_campaign=3190687379776620687", + "state": "NSW", + "street": "5 Erith Street" + }, + { + "id": "bfe4620f-2af2-457c-8465-2d85e6b926bb", + "name": "One Eye Open Brewing Company", + "brewery_type": "micro", + "address_1": "41 Fox Street Shed A", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04101-2538", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2075364176", + "website_url": "http://www.oeobrewing.com", + "state": "Maine", + "street": "41 Fox Street Shed A" + }, + { + "id": "6fd50d10-b732-4eb1-9f20-3cd45ff45d21", + "name": "One Eyed Buffalo Brewing Company LLC", + "brewery_type": "brewpub", + "address_1": "528 Broadway St", + "address_2": null, + "address_3": null, + "city": "Thermopolis", + "state_province": "Wyoming", + "postal_code": "82443-2718", + "country": "United States", + "longitude": -108.2107883, + "latitude": 43.64609158, + "phone": "3078643555", + "website_url": null, + "state": "Wyoming", + "street": "528 Broadway St" + }, + { + "id": "1a669bd2-fdb1-437f-98f8-06d3a1bc0274", + "name": "One Legged Pheasant Brewery", + "brewery_type": "micro", + "address_1": "721 S Main St", + "address_2": null, + "address_3": null, + "city": "Aberdeen", + "state_province": "South Dakota", + "postal_code": "57401-6047", + "country": "United States", + "longitude": -98.48790197, + "latitude": 45.45741525, + "phone": "6057251534", + "website_url": "http://oneleggedpheasant.com", + "state": "South Dakota", + "street": "721 S Main St" + }, + { + "id": "e3942af4-576c-42af-9395-735a5d44e762", + "name": "One Trick Pony Brewery", + "brewery_type": "micro", + "address_1": "17845 Chappel Ave # 17851", + "address_2": null, + "address_3": null, + "city": "Lansing", + "state_province": "Illinois", + "postal_code": "60438-4525", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7088896683", + "website_url": "http://www.onetrickponybrewery.com", + "state": "Illinois", + "street": "17845 Chappel Ave # 17851" + }, + { + "id": "59764d11-cd2b-4d85-8e4c-a7d64cdc5754", + "name": "One Well Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Kalamazoo", + "state_province": "Michigan", + "postal_code": "49001-5264", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2694599240", + "website_url": null, + "state": "Michigan", + "street": null + }, + { + "id": "ea5c0b16-2adc-444c-a5c4-77c28c07a5cd", + "name": "One Well Brewing", + "brewery_type": "brewpub", + "address_1": "4213 Portage St", + "address_2": null, + "address_3": null, + "city": "Kalamazoo", + "state_province": "Michigan", + "postal_code": "49001-5264", + "country": "United States", + "longitude": -85.5591755, + "latitude": 42.2485915, + "phone": "2694599240", + "website_url": "http://www.onewellbrewing.com", + "state": "Michigan", + "street": "4213 Portage St" + }, + { + "id": "4d0805e5-a99c-4deb-b8f7-1eb3a2449fd6", + "name": "One World Brewing", + "brewery_type": "micro", + "address_1": "10 Patton Ave Ste 002", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28801-3302", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8287855580", + "website_url": "http://www.oneworldbrewing.com", + "state": "North Carolina", + "street": "10 Patton Ave Ste 002" + }, + { + "id": "7cbe110f-d5b6-42bc-b3c6-43dd3b5b6c0e", + "name": "Only Child Brewing Company", + "brewery_type": "micro", + "address_1": "1350 Tri State Pkwy Ste 124", + "address_2": null, + "address_3": null, + "city": "Gurnee", + "state_province": "Illinois", + "postal_code": "60031-9135", + "country": "United States", + "longitude": -87.9558129, + "latitude": 42.3826426, + "phone": "2246565241", + "website_url": "http://www.onlychildbrewing.com", + "state": "Illinois", + "street": "1350 Tri State Pkwy Ste 124" + }, + { + "id": "9506a7a6-918f-403f-8c97-0258a6c9258c", + "name": "Ono Brewing Company", + "brewery_type": "micro", + "address_1": "4520 Daly Dr Ste 102", + "address_2": null, + "address_3": null, + "city": "Chantilly", + "state_province": "Virginia", + "postal_code": "20151-3735", + "country": "United States", + "longitude": -77.44370063, + "latitude": 38.88327875, + "phone": "5714096662", + "website_url": "http://www.onobrewco.com", + "state": "Virginia", + "street": "4520 Daly Dr Ste 102" + }, + { + "id": "82356efc-f035-4524-9d3a-b92cc7f49ba6", + "name": "Onsite Brewing Company", + "brewery_type": "micro", + "address_1": "3211 Denali St", + "address_2": null, + "address_3": null, + "city": "Anchorage", + "state_province": "Alaska", + "postal_code": "99503-4030", + "country": "United States", + "longitude": -149.876395, + "latitude": 61.191918, + "phone": "9073102337", + "website_url": "https://onsitebrewing.com", + "state": "Alaska", + "street": "3211 Denali St" + }, + { + "id": "48c665c3-108e-4c2d-8a61-7dece8271027", + "name": "Ooga Brewing Company", + "brewery_type": "brewpub", + "address_1": "301 S Spring St", + "address_2": null, + "address_3": null, + "city": "Beaver Dam", + "state_province": "Wisconsin", + "postal_code": "53916", + "country": "United States", + "longitude": -88.8393255, + "latitude": 43.4530921, + "phone": "9203065100", + "website_url": "https://oogabrewing.com/", + "state": "Wisconsin", + "street": "301 S Spring St" + }, + { + "id": "2a2cfa3a-a9b7-43bb-bac4-3961a0eb84af", + "name": "Ookapow Brewing Company", + "brewery_type": "micro", + "address_1": "1142 Old Okeechobee Road, Bay 13", + "address_2": null, + "address_3": null, + "city": "West Palm Beach", + "state_province": "Florida", + "postal_code": "33401", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7183009006", + "website_url": "http://www.ookapow.com", + "state": "Florida", + "street": "1142 Old Okeechobee Road, Bay 13" + }, + { + "id": "e7098631-04bb-4065-bf60-1416a452a022", + "name": "Opa Opa Brewery", + "brewery_type": "contract", + "address_1": "19 Wemelco Way", + "address_2": null, + "address_3": null, + "city": "Easthampton", + "state_province": "Massachusetts", + "postal_code": "01027", + "country": "United States", + "longitude": -72.69191299, + "latitude": 42.25467048, + "phone": "4135270808", + "website_url": "http://www.opaopasteakhousebrewery.com", + "state": "Massachusetts", + "street": "19 Wemelco Way" + }, + { + "id": "d2cd461c-a529-4394-b72a-3030975dbb22", + "name": "Open Barrel Brewing Company", + "brewery_type": "brewpub", + "address_1": "1930 Main St", + "address_2": null, + "address_3": null, + "city": "Torrington", + "state_province": "Wyoming", + "postal_code": "82240-2707", + "country": "United States", + "longitude": -104.18461871085, + "latitude": 42.065451356572, + "phone": "3074010107", + "website_url": "https://openbarrelbrewing.net", + "state": "Wyoming", + "street": "1930 Main St" + }, + { + "id": "29c89d1e-5b60-40d7-998c-a38fa101b0f8", + "name": "Open Door Brewing Company", + "brewery_type": "contract", + "address_1": "2030 Ionosphere St Unit G", + "address_2": null, + "address_3": null, + "city": "Longmont", + "state_province": "Colorado", + "postal_code": "80504-8459", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7205931401", + "website_url": "http://www.opendoorbrewco.com", + "state": "Colorado", + "street": "2030 Ionosphere St Unit G" + }, + { + "id": "a8004c53-8b0b-4fb1-9516-1230cde7bc8e", + "name": "Open Outcry", + "brewery_type": "brewpub", + "address_1": "10934 S Western Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60643-3228", + "country": "United States", + "longitude": -87.6814747, + "latitude": 41.6943819, + "phone": "7736296055", + "website_url": "http://www.openoutcrybrewing.com", + "state": "Illinois", + "street": "10934 S Western Ave" + }, + { + "id": "53744872-6d32-41fb-87a0-863dfe3d9afa", + "name": "OpenRoad Brewery", + "brewery_type": "brewpub", + "address_1": "128 S Main St", + "address_2": null, + "address_3": null, + "city": "Wayland", + "state_province": "Michigan", + "postal_code": "49348-1209", + "country": "United States", + "longitude": -85.64331774, + "latitude": 42.67311202, + "phone": "6162937855", + "website_url": "http://www.openroadbrewing.com", + "state": "Michigan", + "street": "128 S Main St" + }, + { + "id": "3c51af37-1774-4cdc-8c6f-0a978af2fa7b", + "name": "Opocofi Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Franklin", + "state_province": "Indiana", + "postal_code": "46131-8901", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Indiana", + "street": null + }, + { + "id": "86fc5253-5f2b-42bd-985d-0b8f4ba72c60", + "name": "Opposition Brewing Company", + "brewery_type": "micro", + "address_1": "545 Rossanley Dr Ste 106", + "address_2": null, + "address_3": null, + "city": "Medford", + "state_province": "Oregon", + "postal_code": "97501-1771", + "country": "United States", + "longitude": -122.895928, + "latitude": 42.34064429, + "phone": "5412108550", + "website_url": "http://www.oppositionbrewing.com", + "state": "Oregon", + "street": "545 Rossanley Dr Ste 106" + }, + { + "id": "654be923-513c-48dc-ac4b-d2a422c24a35", + "name": "Optimism Brewing Company", + "brewery_type": "closed", + "address_1": "1158 Broadway", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98122-3822", + "country": "United States", + "longitude": -122.3205219731, + "latitude": 47.612922926987, + "phone": "2062289227", + "website_url": "http://www.optimismbrewing.com", + "state": "Washington", + "street": "1158 Broadway" + }, + { + "id": "ba798b4c-1785-44f0-b376-b75f00b4f142", + "name": "Optimum Craft Brewery", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Meyerton", + "state_province": "Gauteng", + "postal_code": "1961", + "country": "South Africa", + "longitude": 28.0833, + "latitude": -26.5667, + "phone": "+27 72 841 7142", + "website_url": null, + "state": "Gauteng", + "street": null + }, + { + "id": "26e42c3c-141b-4da5-848c-14c7111498bc", + "name": "Oracle Brewing Company", + "brewery_type": "micro", + "address_1": "122 N Michigan Ave", + "address_2": null, + "address_3": null, + "city": "Saginaw", + "state_province": "Michigan", + "postal_code": "48602-4234", + "country": "United States", + "longitude": -83.96401351, + "latitude": 43.417723, + "phone": "9894017446", + "website_url": "http://www.oraclebeer.com", + "state": "Michigan", + "street": "122 N Michigan Ave" + }, + { + "id": "47085a48-f74d-4905-926c-013f1bfaddf6", + "name": "Orange Blossom Brewing Company", + "brewery_type": "proprietor", + "address_1": "44 W Illiana St Ste 102", + "address_2": null, + "address_3": null, + "city": "Orlando", + "state_province": "Florida", + "postal_code": "32806-4439", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4077540045", + "website_url": "http://www.orangeblossombrewing.com", + "state": "Florida", + "street": "44 W Illiana St Ste 102" + }, + { + "id": "f23613d0-d127-4f8e-ba66-7f4be11f6707", + "name": "Orange Cat Brewery", + "brewery_type": "proprietor", + "address_1": "5110 S Graystone Ave", + "address_2": null, + "address_3": null, + "city": "Sioux Falls", + "state_province": "South Dakota", + "postal_code": "57108-7561", + "country": "United States", + "longitude": -96.67330313, + "latitude": 43.49940496, + "phone": "7125404325", + "website_url": "http://www.orangecatbrewery.com", + "state": "South Dakota", + "street": "5110 S Graystone Ave" + }, + { + "id": "678aa828-c482-4334-b05a-fe618c364226", + "name": "Orange County Brewers", + "brewery_type": "brewpub", + "address_1": "131 N Orange Ave Ste 106", + "address_2": null, + "address_3": null, + "city": "Orlando", + "state_province": "Florida", + "postal_code": "32801-2385", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3864538936", + "website_url": "http://www.theocbrewers.com", + "state": "Florida", + "street": "131 N Orange Ave Ste 106" + }, + { + "id": "109f1a56-7519-4e67-991a-0dc6ef43ca4e", + "name": "Orchid Island Brewery", + "brewery_type": "micro", + "address_1": "2855 Ocean Dr Ste C1", + "address_2": null, + "address_3": null, + "city": "Vero Beach", + "state_province": "Florida", + "postal_code": "32963-2038", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7722052436", + "website_url": "http://www.orchidislandbrewery.com", + "state": "Florida", + "street": "2855 Ocean Dr Ste C1" + }, + { + "id": "432cfd6e-51ef-4683-91bb-f622961addc7", + "name": "Ordnance Brewing", + "brewery_type": "micro", + "address_1": "405 NE Olson Rd", + "address_2": null, + "address_3": null, + "city": "Boardman", + "state_province": "Oregon", + "postal_code": "-97818", + "country": "United States", + "longitude": -119.6847411, + "latitude": 45.84826134, + "phone": "5413148568", + "website_url": "http://www.ordnancebrewing.com", + "state": "Oregon", + "street": "405 NE Olson Rd" + }, + { + "id": "b778b875-6f29-41fc-94f9-23c09e872530", + "name": "Ore Dock Brewing Co", + "brewery_type": "micro", + "address_1": "114 W Spring St", + "address_2": null, + "address_3": null, + "city": "Marquette", + "state_province": "Michigan", + "postal_code": "49855-4608", + "country": "United States", + "longitude": -87.39388593, + "latitude": 46.54189135, + "phone": "9068675309", + "website_url": "http://www.oredockbrewingcompany.com", + "state": "Michigan", + "street": "114 W Spring St" + }, + { + "id": "1dac88c5-82ad-4a5b-958e-b56cc14ba96f", + "name": "Oregon City Brewing Company", + "brewery_type": "brewpub", + "address_1": "1401 Washington St", + "address_2": null, + "address_3": null, + "city": "Oregon City", + "state_province": "Oregon", + "postal_code": "97045-1650", + "country": "United States", + "longitude": -122.6001483, + "latitude": 45.3617756, + "phone": "5039081948", + "website_url": "http://www.ocbeerco.com", + "state": "Oregon", + "street": "1401 Washington St" + }, + { + "id": "049c95c7-2a86-4764-b7e8-7ddf047305b6", + "name": "Oregon Trail Brewery", + "brewery_type": "micro", + "address_1": "341 SW 2nd St", + "address_2": null, + "address_3": null, + "city": "Corvallis", + "state_province": "Oregon", + "postal_code": "97333-4640", + "country": "United States", + "longitude": -123.2608445, + "latitude": 44.5612822, + "phone": "5417583527", + "website_url": "http://www.oregontrailbrewery.com", + "state": "Oregon", + "street": "341 SW 2nd St" + }, + { + "id": "2f6072fd-ecfc-4842-ad47-8d39c0eb2d20", + "name": "Orf Brewing", + "brewery_type": "micro", + "address_1": "4700 Burleson Rd Ste F", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78744-1230", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5124285217", + "website_url": "http://www.orfbrewing.com", + "state": "Texas", + "street": "4700 Burleson Rd Ste F" + }, + { + "id": "82915e82-b961-495f-8b87-a8faf71b3e13", + "name": "Origin Brewer", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "California", + "postal_code": "94805-2121", + "country": "United States", + "longitude": -122.3477486, + "latitude": 37.9357576, + "phone": null, + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "39db40da-0ee5-465d-9a9a-38f9eb51ba09", + "name": "Original Gravity Brewing Co", + "brewery_type": "brewpub", + "address_1": "440 County St", + "address_2": null, + "address_3": null, + "city": "Milan", + "state_province": "Michigan", + "postal_code": "48160-1504", + "country": "United States", + "longitude": -83.67523597, + "latitude": 42.083974, + "phone": "7344397490", + "website_url": "http://www.ogbrewing.com", + "state": "Michigan", + "street": "440 County St" + }, + { + "id": "ab675ed9-9050-41b8-81f1-c6ebf70b3106", + "name": "Original Pattern Brewing Company", + "brewery_type": "micro", + "address_1": "292 4th St", + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94607-4332", + "country": "United States", + "longitude": -122.2718245, + "latitude": 37.796075, + "phone": "5108444833", + "website_url": "http://www.originalpatternbeer.com", + "state": "California", + "street": "292 4th St" + }, + { + "id": "6b8450c8-3810-40ce-bac3-55bf20261c4c", + "name": "Orlando Brewing Partners, Inc.", + "brewery_type": "micro", + "address_1": "1301 Atlanta Ave", + "address_2": null, + "address_3": null, + "city": "Orlando", + "state_province": "Florida", + "postal_code": "32806-3908", + "country": "United States", + "longitude": -81.38304499, + "latitude": 28.52691826, + "phone": "4078721117", + "website_url": "http://www.orlandobrewing.com", + "state": "Florida", + "street": "1301 Atlanta Ave" + }, + { + "id": "e9c56fbd-e001-470f-88b6-29df8e0573c9", + "name": "Orlison Brewing Company", + "brewery_type": "closed", + "address_1": "12921 West 17th Ave", + "address_2": null, + "address_3": null, + "city": "Airway Heights", + "state_province": "Washington", + "postal_code": "99001", + "country": "United States", + "longitude": -117.5924443, + "latitude": 47.6403069, + "phone": "5093896253", + "website_url": "http://www.orlisonbrewing.com", + "state": "Washington", + "street": "12921 West 17th Ave" + }, + { + "id": "fcfc9ac7-49ce-4ab4-a727-0d2fa89919b9", + "name": "Ormond Brewing", + "brewery_type": "micro", + "address_1": "301 Division Ave Unit 15", + "address_2": null, + "address_3": null, + "city": "Ormond Beach", + "state_province": "Florida", + "postal_code": "32174-8812", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3862563904", + "website_url": "http://www.ormondbrewing.com", + "state": "Florida", + "street": "301 Division Ave Unit 15" + }, + { + "id": "c1357ef9-d471-4c4c-98a7-b740c6c013ab", + "name": "Oro Brewing Company", + "brewery_type": "micro", + "address_1": "210 W Main St", + "address_2": null, + "address_3": null, + "city": "Mesa", + "state_province": "Arizona", + "postal_code": "85201-7312", + "country": "United States", + "longitude": -111.8370503, + "latitude": 33.41519982, + "phone": "4803988247", + "website_url": "http://www.orobrewing.com", + "state": "Arizona", + "street": "210 W Main St" + }, + { + "id": "9fca7f46-6737-4633-a566-cb957ca93034", + "name": "Orono Brewing Bangor Draught Room", + "brewery_type": "micro", + "address_1": "26 State St", + "address_2": null, + "address_3": null, + "city": "Bangor", + "state_province": "Maine", + "postal_code": "04401", + "country": "United States", + "longitude": -68.7428115, + "latitude": 44.81159483, + "phone": null, + "website_url": null, + "state": "Maine", + "street": "26 State St" + }, + { + "id": "91949951-a50a-430e-a009-59bc9124ed00", + "name": "Orono Brewing Brewery & Draught Room", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Orono", + "state_province": "Maine", + "postal_code": "04473", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Maine", + "street": null + }, + { + "id": "f255ae39-f3df-4876-bbc6-28073432c3e3", + "name": "Orono Brewing Company", + "brewery_type": "brewpub", + "address_1": "20 Main St", + "address_2": null, + "address_3": null, + "city": "Orono", + "state_province": "Maine", + "postal_code": "04473", + "country": "United States", + "longitude": -68.669582, + "latitude": 44.88754094, + "phone": "2078664677", + "website_url": "http://www.oronobrewing.com", + "state": "Maine", + "street": "20 Main St" + }, + { + "id": "769676e2-2a79-475b-8b35-6755a2826e47", + "name": "Orpheus Brewing", + "brewery_type": "micro", + "address_1": "1440 Dutch Valley Pl NE Ste 2001", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30324-5366", + "country": "United States", + "longitude": -84.36858051, + "latitude": 33.79314935, + "phone": "4043471777", + "website_url": "http://www.orpheusbrewing.com", + "state": "Georgia", + "street": "1440 Dutch Valley Pl NE Ste 2001" + }, + { + "id": "3265e88f-c7af-4243-b836-5475b1e3315d", + "name": "Orr's Brewing Company", + "brewery_type": "brewpub", + "address_1": "109 S Franklin St", + "address_2": null, + "address_3": null, + "city": "Titusville", + "state_province": "Pennsylvania", + "postal_code": "16354", + "country": "United States", + "longitude": -79.6733234, + "latitude": 41.6230211, + "phone": "8148270000", + "website_url": null, + "state": "Pennsylvania", + "street": "109 S Franklin St" + }, + { + "id": "b9c27692-5db5-44dd-aa88-b8b66b944f3c", + "name": "Osgood Brewing", + "brewery_type": "brewpub", + "address_1": "4051 Chicago Dr SW", + "address_2": null, + "address_3": null, + "city": "Grandville", + "state_province": "Michigan", + "postal_code": "49418-1257", + "country": "United States", + "longitude": -85.76493039, + "latitude": 42.90907804, + "phone": null, + "website_url": "http://www.osgoodbrewing.com", + "state": "Michigan", + "street": "4051 Chicago Dr SW" + }, + { + "id": "d128cc62-6893-4c15-bdde-6d23b55822cc", + "name": "Oskar Blues Brewery", + "brewery_type": "micro", + "address_1": "10420 Metric Blvd # 150", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78758-4939", + "country": "United States", + "longitude": -97.71470248, + "latitude": 30.3839295, + "phone": "5122437054", + "website_url": null, + "state": "Texas", + "street": "10420 Metric Blvd # 150" + }, + { + "id": "b3b08e37-95c0-4756-9ad5-2a6388705534", + "name": "Oskar Blues Brewery - Brevard", + "brewery_type": "regional", + "address_1": "342 Mountain Industrial Dr", + "address_2": null, + "address_3": null, + "city": "Brevard", + "state_province": "North Carolina", + "postal_code": "28712-5122", + "country": "United States", + "longitude": -82.7069595, + "latitude": 35.2536956, + "phone": "3037760724", + "website_url": "http://www.oskarblues.com", + "state": "North Carolina", + "street": "342 Mountain Industrial Dr" + }, + { + "id": "57f68c2a-2520-4c6f-a595-570aadb38358", + "name": "Oskar Blues Brewery - Lyons", + "brewery_type": "brewpub", + "address_1": "303 Main St", + "address_2": null, + "address_3": null, + "city": "Lyons", + "state_province": "Colorado", + "postal_code": "80540", + "country": "United States", + "longitude": -105.2676934, + "latitude": 40.22451332, + "phone": "3038236685", + "website_url": "http://www.oskarblues.com", + "state": "Colorado", + "street": "303 Main St" + }, + { + "id": "5a28cd92-6aeb-4cac-a24f-2260802b07b7", + "name": "Oskar Blues Brewery & Tasty Weasel Tap Room", + "brewery_type": "regional", + "address_1": "1800 Pike Rd Unit B", + "address_2": null, + "address_3": null, + "city": "Longmont", + "state_province": "Colorado", + "postal_code": "80501-6794", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3037760724", + "website_url": "http://www.oskarblues.com", + "state": "Colorado", + "street": "1800 Pike Rd Unit B" + }, + { + "id": "62ba2bf9-9efa-4a2d-a452-5871f84c0b3a", + "name": "Osmo's Alehouse", + "brewery_type": "micro", + "address_1": "522 S Central Ave", + "address_2": null, + "address_3": null, + "city": "Medford", + "state_province": "Oregon", + "postal_code": "97501-7246", + "country": "United States", + "longitude": -122.8683277, + "latitude": 42.32230438, + "phone": "5418420557", + "website_url": null, + "state": "Oregon", + "street": "522 S Central Ave" + }, + { + "id": "c74b0536-3885-495d-b945-fb0b75d64cc8", + "name": "Oswald Brewing Company", + "brewery_type": "brewpub", + "address_1": "110 S Main St", + "address_2": null, + "address_3": null, + "city": "Blue Earth", + "state_province": "Minnesota", + "postal_code": "56013-2007", + "country": "United States", + "longitude": -94.2184542, + "latitude": 44.10610449, + "phone": "5075263101", + "website_url": "http://www.oswaldbrewingcompany.com", + "state": "Minnesota", + "street": "110 S Main St" + }, + { + "id": "a5b37b60-e3c3-43b4-a6d7-16eba9218bed", + "name": "Oswego Brewing Company", + "brewery_type": "micro", + "address_1": "61 Main St", + "address_2": null, + "address_3": null, + "city": "Oswego", + "state_province": "Illinois", + "postal_code": "60543-8592", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3319991991", + "website_url": "http://www.oswegoBrewing.com", + "state": "Illinois", + "street": "61 Main St" + }, + { + "id": "ab943f7d-ad10-4f0b-8292-3f4c18e46ff9", + "name": "Other Half Brewing Company", + "brewery_type": "micro", + "address_1": "195 Centre St", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11231-3907", + "country": "United States", + "longitude": -73.9991264, + "latitude": 40.6737903, + "phone": null, + "website_url": null, + "state": "New York", + "street": "195 Centre St" + }, + { + "id": "51855a0c-1fcc-40d4-b1c8-d3e1be783068", + "name": "Other Side of the Moon Brewery / Full Moon Oyster Bar", + "brewery_type": "brewpub", + "address_1": "1477 River Ridge Dr", + "address_2": null, + "address_3": null, + "city": "Clemmons", + "state_province": "North Carolina", + "postal_code": "27012", + "country": "United States", + "longitude": -80.3912598, + "latitude": 36.0738908, + "phone": "3367128200", + "website_url": "http://www.fullmoonoysterbar.com", + "state": "North Carolina", + "street": "1477 River Ridge Dr" + }, + { + "id": "4e2592fe-96b1-4940-a5af-924b92944bb9", + "name": "Otherside Brewing Co", + "brewery_type": "micro", + "address_1": "Blaikie Street", + "address_2": null, + "address_3": null, + "city": "Myaree", + "state_province": "WA", + "postal_code": "6154", + "country": "Australia", + "longitude": 115.8209844, + "latitude": -32.0424962, + "phone": "+61 8 9336 2837", + "website_url": "https://www.othersidebrewing.com.au/the-brewhouse", + "state": "WA", + "street": "Blaikie Street" + }, + { + "id": "a5ca843e-e063-4226-86ed-589099fdec8e", + "name": "Otter Craft Distilling", + "brewery_type": "micro", + "address_1": "26-30 Halloran Street", + "address_2": "Unit 2", + "address_3": null, + "city": "Lilyfield", + "state_province": "NSW", + "postal_code": "2040", + "country": "Australia", + "longitude": 151.1651839, + "latitude": -33.8722001, + "phone": null, + "website_url": "https://ocdistilling.com/", + "state": "NSW", + "street": "26-30 Halloran Street" + }, + { + "id": "1cbec9c9-522a-4d61-9848-34f8d9230a99", + "name": "Otter Creek Brewing Co", + "brewery_type": "regional", + "address_1": "793 Exchange St", + "address_2": null, + "address_3": null, + "city": "Middlebury", + "state_province": "Vermont", + "postal_code": "05753-1193", + "country": "United States", + "longitude": -73.17075772, + "latitude": 44.03315644, + "phone": "8023880727", + "website_url": "http://www.ottercreekbrewing.com", + "state": "Vermont", + "street": "793 Exchange St" + }, + { + "id": "77e5ec06-4cc7-485b-b35c-201984baed5e", + "name": "Ottos Pub & Brewery", + "brewery_type": "brewpub", + "address_1": "2235 N Atherton St", + "address_2": null, + "address_3": null, + "city": "State College", + "state_province": "Pennsylvania", + "postal_code": "16803-1529", + "country": "United States", + "longitude": -77.8742944, + "latitude": 40.7977695, + "phone": "8144701394", + "website_url": "http://www.ottospubandbrewery.com", + "state": "Pennsylvania", + "street": "2235 N Atherton St" + }, + { + "id": "597ab1af-dcc7-4df0-9c4d-018bfcec68ff", + "name": "Ouachita Brewing Company", + "brewery_type": "micro", + "address_1": "95 McClendon Ave", + "address_2": null, + "address_3": null, + "city": "West Monroe", + "state_province": "Louisiana", + "postal_code": "71291-3299", + "country": "United States", + "longitude": -92.1221749, + "latitude": 32.49990448, + "phone": "383879816", + "website_url": "http://www.ouachitabrewing.com", + "state": "Louisiana", + "street": "95 McClendon Ave" + }, + { + "id": "8565cb64-f9be-4ba3-b845-e878cffb4f05", + "name": "Our Brewing Co", + "brewery_type": "micro", + "address_1": "76 E 8th St", + "address_2": null, + "address_3": null, + "city": "Holland", + "state_province": "Michigan", + "postal_code": "49423-3556", + "country": "United States", + "longitude": -86.1037537, + "latitude": 42.7901898, + "phone": "6169948417", + "website_url": "http://www.ourbrewingcompany.com", + "state": "Michigan", + "street": "76 E 8th St" + }, + { + "id": "1f0405ff-3d96-47e7-90ee-a1bc5764149b", + "name": "Our Mutual Friend Brewing", + "brewery_type": "micro", + "address_1": "2810 Larimer St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80205-2223", + "country": "United States", + "longitude": -104.9825596, + "latitude": 39.7605777, + "phone": "3032963441", + "website_url": "http://www.omfbeer.com", + "state": "Colorado", + "street": "2810 Larimer St" + }, + { + "id": "b9da27a0-7c53-4aaf-9a85-fa453d97ebf3", + "name": "Ouray Brewery", + "brewery_type": "brewpub", + "address_1": "607 Main St", + "address_2": null, + "address_3": null, + "city": "Ouray", + "state_province": "Colorado", + "postal_code": "81427-", + "country": "United States", + "longitude": -107.6712878, + "latitude": 38.0229071, + "phone": "9703257388", + "website_url": "http://www.ouraybrewery.com", + "state": "Colorado", + "street": "607 Main St" + }, + { + "id": "a6d1b092-de65-4af6-a543-b752f93979ce", + "name": "Ourayle House Brewery", + "brewery_type": "micro", + "address_1": "703 Main St", + "address_2": null, + "address_3": null, + "city": "Ouray", + "state_province": "Colorado", + "postal_code": "81427-0630", + "country": "United States", + "longitude": -107.6714048, + "latitude": 38.02402041, + "phone": "9709031824", + "website_url": null, + "state": "Colorado", + "street": "703 Main St" + }, + { + "id": "f9009fe3-a89e-4635-8d8b-1a92df2ebe06", + "name": "Out of Bounds Brewing Company", + "brewery_type": "micro", + "address_1": "4480 Yankee Hill Rd Ste 100", + "address_2": null, + "address_3": null, + "city": "Rocklin", + "state_province": "California", + "postal_code": "95677-1633", + "country": "United States", + "longitude": -121.2289797, + "latitude": 38.80045074, + "phone": null, + "website_url": null, + "state": "California", + "street": "4480 Yankee Hill Rd Ste 100" + }, + { + "id": "35901770-f2e3-424c-b462-1deb0fa2da06", + "name": "Out World Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Longmont", + "state_province": "Colorado", + "postal_code": "80503-7285", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.outworld.beer", + "state": "Colorado", + "street": null + }, + { + "id": "74f4a6b0-9be8-401a-b320-7ad33254f2c3", + "name": "Out.Haus Ales", + "brewery_type": "closed", + "address_1": "442 1st Nh Tpke Unit 2", + "address_2": null, + "address_3": null, + "city": "Northwood", + "state_province": "New Hampshire", + "postal_code": "03261-3445", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6035482151", + "website_url": "http://www.outhausales.com", + "state": "New Hampshire", + "street": "442 1st Nh Tpke Unit 2" + }, + { + "id": "ab8a8e3a-f6e0-4869-a2f3-34ada12c7cff", + "name": "Outbreak Brewing Co.", + "brewery_type": "micro", + "address_1": "640 Main St", + "address_2": null, + "address_3": null, + "city": "Placerville", + "state_province": "California", + "postal_code": "95667-5704", + "country": "United States", + "longitude": -120.794212, + "latitude": 38.7293661, + "phone": "5307483258", + "website_url": "http://www.outbreakbrewing.com", + "state": "California", + "street": "640 Main St" + }, + { + "id": "8151cea5-19ff-42c4-8f3e-e3dbbeb384c2", + "name": "Outer Banks Brewing Station", + "brewery_type": "brewpub", + "address_1": "600 S Croatan Hwy", + "address_2": null, + "address_3": null, + "city": "Kill Devil Hills", + "state_province": "North Carolina", + "postal_code": "27948", + "country": "United States", + "longitude": -75.65925231, + "latitude": 36.00947755, + "phone": "2524492739", + "website_url": "http://www.obbrewing.com", + "state": "North Carolina", + "street": "600 S Croatan Hwy" + }, + { + "id": "664fde9d-7114-4ad3-bbad-33bc65a1d4c9", + "name": "Outer Light Brewing Company", + "brewery_type": "micro", + "address_1": "266 Bridge St Ste 1", + "address_2": null, + "address_3": null, + "city": "Groton", + "state_province": "Connecticut", + "postal_code": "06340-3739", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4752019972", + "website_url": "http://www.outerlightbrewing.com", + "state": "Connecticut", + "street": "266 Bridge St Ste 1" + }, + { + "id": "de23fb6c-55b7-4e7d-a27f-dca9ce7816f0", + "name": "Outer Limits Brewing, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Proctorsville", + "state_province": "Vermont", + "postal_code": "05153-9518", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2072057076", + "website_url": null, + "state": "Vermont", + "street": null + }, + { + "id": "8280e47c-4aed-4aa0-b20f-b3217d7478be", + "name": "Outer Planet Craft Brewing", + "brewery_type": "micro", + "address_1": "1812 12th Ave", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98122-8420", + "country": "United States", + "longitude": -122.3167381, + "latitude": 47.6180009, + "phone": "2067637000", + "website_url": "http://www.outerplanetbrewing.com", + "state": "Washington", + "street": "1812 12th Ave" + }, + { + "id": "65b80308-dbfd-45c1-8c7a-a76e43ed006f", + "name": "Outer Range Brewing Co", + "brewery_type": "micro", + "address_1": "182 Lusher Court #2", + "address_2": null, + "address_3": null, + "city": "Frisco", + "state_province": "Colorado", + "postal_code": "80443-6601", + "country": "United States", + "longitude": -106.0989298, + "latitude": 39.5892615, + "phone": "9703683101", + "website_url": "http://www.outerrange.com", + "state": "Colorado", + "street": "182 Lusher Court #2" + }, + { + "id": "cc5bec77-94df-470f-bcaf-c2d9a5d091a7", + "name": "Outerbelt Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Carroll", + "state_province": "Ohio", + "postal_code": "43112", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6143096796", + "website_url": "http://www.outerbeltbrewing.com", + "state": "Ohio", + "street": null + }, + { + "id": "b71e75ef-6458-4128-a39f-c3f6f0461e9d", + "name": "Outland Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "New Hampshire", + "postal_code": "03079-1867", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New Hampshire", + "street": null + }, + { + "id": "3000da0a-9704-41be-b9e2-dad825b50e56", + "name": "Outland Farm Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Pittsfield", + "state_province": "Maine", + "postal_code": "04967-5811", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2076168125", + "website_url": "http://www.outlandfarmbrewery.com", + "state": "Maine", + "street": null + }, + { + "id": "1f57f054-d4ec-473d-b2a6-12c4ac8ff5de", + "name": "Outlander Brewery & Pub", + "brewery_type": "brewpub", + "address_1": "225 N 36th St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98103-8610", + "country": "United States", + "longitude": -122.3555596, + "latitude": 47.6523014, + "phone": "2064864088", + "website_url": "http://www.outlanderbrewing.com", + "state": "Washington", + "street": "225 N 36th St" + }, + { + "id": "4763319d-b0fe-47b6-8549-47cca21ab91e", + "name": "Outlaw Brewing Co", + "brewery_type": "micro", + "address_1": "2876 N 27th Ave", + "address_2": null, + "address_3": null, + "city": "Bozeman", + "state_province": "Montana", + "postal_code": "59718-7168", + "country": "United States", + "longitude": -111.0725189, + "latitude": 45.70878295, + "phone": "4063889182", + "website_url": "http://www.outlaw-brewing.com", + "state": "Montana", + "street": "2876 N 27th Ave" + }, + { + "id": "50e149c8-f205-4469-8f9c-27cc526fc78e", + "name": "Outlaw Cigar / Gunslinger Saloon Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64151-2026", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8165052442", + "website_url": "http://www.outlawcigar.com", + "state": "Missouri", + "street": null + }, + { + "id": "816eae14-e2ae-434e-8c7d-f24481dd4c9b", + "name": "Outlook Farm Brewery", + "brewery_type": "micro", + "address_1": "136 Main Rd", + "address_2": null, + "address_3": null, + "city": "Westhampton", + "state_province": "Massachusetts", + "postal_code": "01027-9673", + "country": "United States", + "longitude": -72.772262, + "latitude": 42.285973, + "phone": "4135299388", + "website_url": "http://www.outlookfarm.com", + "state": "Massachusetts", + "street": "136 Main Rd" + }, + { + "id": "38ca2684-4b26-4e6b-9cf7-32a3e727adac", + "name": "Outpost Brewing Co", + "brewery_type": "micro", + "address_1": "932 Stateline Ave", + "address_2": null, + "address_3": null, + "city": "South Lake Tahoe", + "state_province": "California", + "postal_code": "96150-6913", + "country": "United States", + "longitude": -119.9450001, + "latitude": 38.96097394, + "phone": "5304949805", + "website_url": null, + "state": "California", + "street": "932 Stateline Ave" + }, + { + "id": "cf838e5b-da1b-487b-aa7f-44af17e2e121", + "name": "Outstate Brewing Company LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fergus Falls", + "state_province": "Minnesota", + "postal_code": "56537", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9702175026", + "website_url": "http://www.oustatebrew.co", + "state": "Minnesota", + "street": null + }, + { + "id": "27605647-6c13-43a9-94aa-ed38ce1994f9", + "name": "OVAL Craft Brewing", + "brewery_type": "micro", + "address_1": "111 Ohio Rd", + "address_2": null, + "address_3": null, + "city": "Plattsburgh", + "state_province": "New York", + "postal_code": "12903-4403", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5183242739", + "website_url": "http://www.ovalcraftbrewing.com", + "state": "New York", + "street": "111 Ohio Rd" + }, + { + "id": "bdd9f11c-9b60-4d1b-9dc9-c81cb6ba9301", + "name": "Over Yonder Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Golden", + "state_province": "Colorado", + "postal_code": "80403-8590", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7203638089", + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "ecc8660b-2bf6-4e95-b4b1-a6659fc74c0f", + "name": "Overflow Brewing Company", + "brewery_type": "micro", + "address_1": "770 1st Ave N", + "address_2": null, + "address_3": null, + "city": "Saint Petersburg", + "state_province": "Florida", + "postal_code": "33701", + "country": "United States", + "longitude": -82.644494, + "latitude": 27.77196743, + "phone": null, + "website_url": "http://www.overflowbrewingco.com", + "state": "Florida", + "street": "770 1st Ave N" + }, + { + "id": "fe1b7e7e-788f-492e-b69d-d7eb15497822", + "name": "Overshores Brewing Co", + "brewery_type": "micro", + "address_1": "250 Bradley St", + "address_2": null, + "address_3": null, + "city": "East Haven", + "state_province": "Connecticut", + "postal_code": "06512-", + "country": "United States", + "longitude": -72.87397563, + "latitude": 41.29004301, + "phone": "2039096224", + "website_url": "http://www.overshores.com", + "state": "Connecticut", + "street": "250 Bradley St" + }, + { + "id": "093abb2e-c49c-4581-ab52-3148c1494a61", + "name": "Oviedo Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Oviedo", + "state_province": "Florida", + "postal_code": "32765-7426", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4075875400", + "website_url": "http://www.facebook.com/OviedoBrewingCo", + "state": "Florida", + "street": null + }, + { + "id": "5e934252-53d3-4160-8021-f490d1b7eb7e", + "name": "Owen OLearys Restaurant and Brewery", + "brewery_type": "brewpub", + "address_1": "17 Connector Rd", + "address_2": null, + "address_3": null, + "city": "Westborough", + "state_province": "Massachusetts", + "postal_code": "01581-3916", + "country": "United States", + "longitude": -71.58591979, + "latitude": 42.28996559, + "phone": "5083669262", + "website_url": "http://www.owenolearys.com", + "state": "Massachusetts", + "street": "17 Connector Rd" + }, + { + "id": "7ea048a2-85e4-4443-b543-a62f1fe07ce9", + "name": "Owls Rest Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Malone", + "state_province": "New York", + "postal_code": "12953-1517", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "18703afa-900e-4dee-a6ab-08eb0034b8e2", + "name": "Owls Roost Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Wake Forest", + "state_province": "North Carolina", + "postal_code": "27587-2958", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9197491428", + "website_url": null, + "state": "North Carolina", + "street": null + }, + { + "id": "1931756b-8cf2-4dc4-9ee6-b406cdf5f5aa", + "name": "Oxbow Blending & Bottling", + "brewery_type": "micro", + "address_1": "49 Washington Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04101", + "country": "United States", + "longitude": -70.2513253, + "latitude": 43.6649414, + "phone": null, + "website_url": null, + "state": "Maine", + "street": "49 Washington Ave" + }, + { + "id": "e37d3cfa-dc4a-46fe-ae52-e6b4d25f173a", + "name": "Oxbow Brewing Co", + "brewery_type": "micro", + "address_1": "274 Jones Woods Rd", + "address_2": null, + "address_3": null, + "city": "Newcastle", + "state_province": "Maine", + "postal_code": "04553-3123", + "country": "United States", + "longitude": -69.5639953, + "latitude": 44.0830789, + "phone": "2073155962", + "website_url": "http://www.oxbowbeer.com", + "state": "Maine", + "street": "274 Jones Woods Rd" + }, + { + "id": "7768bd2f-906c-450b-9520-2fb57d0b4799", + "name": "Oxford Brewing Company", + "brewery_type": "nano", + "address_1": "1215 N 20th St", + "address_2": null, + "address_3": null, + "city": "Grand Forks", + "state_province": "North Dakota", + "postal_code": "58203-2343", + "country": "United States", + "longitude": -97.05511709, + "latitude": 47.93241078, + "phone": "7017574565", + "website_url": null, + "state": "North Dakota", + "street": "1215 N 20th St" + }, + { + "id": "5f30ddff-dac4-472b-adb1-82f390c5f505", + "name": "Oyster Bay Brewing", + "brewery_type": "micro", + "address_1": "36 Audrey Ave", + "address_2": null, + "address_3": null, + "city": "Oyster Bay", + "state_province": "New York", + "postal_code": "11771-1548", + "country": "United States", + "longitude": -73.53140323, + "latitude": 40.87304967, + "phone": "5168025546", + "website_url": "http://www.oysterbaybrewing.com", + "state": "New York", + "street": "36 Audrey Ave" + }, + { + "id": "43fa1fa9-3de8-45ed-b56d-b4b79349587a", + "name": "Oyster City Brewing Company", + "brewery_type": "micro", + "address_1": "17 Avenue D", + "address_2": null, + "address_3": null, + "city": "Apalachicola", + "state_province": "Florida", + "postal_code": "32320-1801", + "country": "United States", + "longitude": -84.98504389, + "latitude": 29.7259562, + "phone": null, + "website_url": "http://www.oystercitybrewingco.com", + "state": "Florida", + "street": "17 Avenue D" + }, + { + "id": "8c600205-6e67-43a7-983a-0e2daba7bb93", + "name": "Oyster House Brewing Co.", + "brewery_type": "brewpub", + "address_1": "625 Haywood Rd", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28806-3255", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8285759370", + "website_url": "http://www.oysterhousebeers.com", + "state": "North Carolina", + "street": "625 Haywood Rd" + }, + { + "id": "62783901-9445-4424-911b-291647dc2284", + "name": "Ozark Beer Company", + "brewery_type": "micro", + "address_1": "109 N Arkansas St", + "address_2": null, + "address_3": null, + "city": "Rogers", + "state_province": "Arkansas", + "postal_code": "72756-6601", + "country": "United States", + "longitude": -94.1147203, + "latitude": 36.3335034, + "phone": "4796362337", + "website_url": "http://www.ozarkbeercompany.com", + "state": "Arkansas", + "street": "109 N Arkansas St" + }, + { + "id": "e80e1cb2-de57-4bc2-8330-94ea13ec1c0c", + "name": "Ozarks Brewing Company", + "brewery_type": "closed", + "address_1": "1872 S. U.S. Hwy. 63", + "address_2": null, + "address_3": null, + "city": "West Plains", + "state_province": "Missouri", + "postal_code": "65775", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4172741507", + "website_url": "http://www.ozarksbrewing.com", + "state": "Missouri", + "street": "1872 S. U.S. Hwy. 63" + }, + { + "id": "9ed590d8-b54b-41f5-be70-ac9d695378a0", + "name": "Ozone's Brewhouse", + "brewery_type": "micro", + "address_1": "305 Beaver St", + "address_2": null, + "address_3": null, + "city": "Lansing", + "state_province": "Michigan", + "postal_code": "48906-4411", + "country": "United States", + "longitude": -84.54860983, + "latitude": 42.7505921, + "phone": "5179992739", + "website_url": "http://www.ozonesbrewhouse.com", + "state": "Michigan", + "street": "305 Beaver St" + }, + { + "id": "95218728-13e3-4eef-9fa5-1deec394c2f6", + "name": "Pabst Milwaukee Brewery", + "brewery_type": "large", + "address_1": "1037 W Juneau Ave", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53233-1405", + "country": "United States", + "longitude": -87.9255251, + "latitude": 43.04554365, + "phone": "4149080025", + "website_url": null, + "state": "Wisconsin", + "street": "1037 W Juneau Ave" + }, + { + "id": "ad63e92d-15cf-45e1-9f5a-e1cc9fef0928", + "name": "Pacific Beach Ale House", + "brewery_type": "brewpub", + "address_1": "721 Grand Ave", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92109-3905", + "country": "United States", + "longitude": -117.255265, + "latitude": 32.794255, + "phone": "8585812337", + "website_url": "http://www.pbalehouse.com", + "state": "California", + "street": "721 Grand Ave" + }, + { + "id": "8f3206c8-8c13-4357-875b-25fcbbc9d63f", + "name": "Pacific Brew Haus", + "brewery_type": "brewpub", + "address_1": "220 S 1st St", + "address_2": null, + "address_3": null, + "city": "Pacific", + "state_province": "Missouri", + "postal_code": "63069", + "country": "United States", + "longitude": -90.741706, + "latitude": 38.500322, + "phone": "6362572650", + "website_url": "http://www.pacificbrewhaus.com", + "state": "Missouri", + "street": "220 S 1st St" + }, + { + "id": "035386c7-55dd-4d17-acec-2270d759a2ee", + "name": "Pacific Brew Lab", + "brewery_type": "closed", + "address_1": "111 Industrial Way", + "address_2": null, + "address_3": null, + "city": "Belmont", + "state_province": "California", + "postal_code": "94002-8202", + "country": "United States", + "longitude": -122.2659984, + "latitude": 37.52175007, + "phone": "4159377843", + "website_url": "http://www.pacbrewlab.com", + "state": "California", + "street": "111 Industrial Way" + }, + { + "id": "5a50aa54-5ae5-4968-a8ec-fc53d5796df2", + "name": "Pacific Brewing and Malting", + "brewery_type": "micro", + "address_1": "610 Pacific Ave", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98402-4606", + "country": "United States", + "longitude": -122.437927, + "latitude": 47.250289, + "phone": "2533832337", + "website_url": "http://www.pacificbrewingandmalting.com", + "state": "Washington", + "street": "610 Pacific Ave" + }, + { + "id": "a45bef15-e043-4985-ad3b-ce0e1625c633", + "name": "Pacific Islander Beer Company", + "brewery_type": "micro", + "address_1": "8665 Argent St ste b", + "address_2": null, + "address_3": null, + "city": "Santee", + "state_province": "California", + "postal_code": "92071-4180", + "country": "United States", + "longitude": -116.9893321, + "latitude": 32.83323005, + "phone": "6192707777", + "website_url": "http://www.pibbeer.com", + "state": "California", + "street": "8665 Argent St ste b" + }, + { + "id": "e8524519-a341-4027-b4ab-331fcb328f8c", + "name": "Pacific Northwest Brewing Center, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Everett", + "state_province": "Washington", + "postal_code": "98208-3320", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Washington", + "street": null + }, + { + "id": "605b3e94-9468-42de-97b8-2e3518fec767", + "name": "Pacific Plate Brewing Co", + "brewery_type": "micro", + "address_1": "1999 S Myrtle Ave", + "address_2": null, + "address_3": null, + "city": "Monrovia", + "state_province": "California", + "postal_code": "91016-4854", + "country": "United States", + "longitude": -118.0010497, + "latitude": 34.1492456, + "phone": "6262398456", + "website_url": "http://www.pacificplatebrewing.com", + "state": "California", + "street": "1999 S Myrtle Ave" + }, + { + "id": "df821931-277e-489a-9a2c-7d4a0aa7e756", + "name": "Packinghouse Brewing Co, The", + "brewery_type": "micro", + "address_1": "6421 Central Ave Ste 101", + "address_2": null, + "address_3": null, + "city": "Riverside", + "state_province": "California", + "postal_code": "92504-1450", + "country": "United States", + "longitude": -117.4395735, + "latitude": 33.95445847, + "phone": "9513339261", + "website_url": "http://pbbeer.com", + "state": "California", + "street": "6421 Central Ave Ste 101" + }, + { + "id": "4c9cdd7b-ea79-4d81-b629-fbfdf899dce6", + "name": "Paddle Hard Brewing", + "brewery_type": "micro", + "address_1": "118 Michigan Ave", + "address_2": null, + "address_3": null, + "city": "Grayling", + "state_province": "Michigan", + "postal_code": "49738-1741", + "country": "United States", + "longitude": -84.709584, + "latitude": 44.66521, + "phone": "9897456388", + "website_url": "http://paddlehardbrewing.com", + "state": "Michigan", + "street": "118 Michigan Ave" + }, + { + "id": "6ea02eb4-7386-46bf-ac13-fc452dabc976", + "name": "Paddle Hard Brewing", + "brewery_type": "brewpub", + "address_1": "227 E Michigan Ave", + "address_2": null, + "address_3": null, + "city": "Grayling", + "state_province": "Michigan", + "postal_code": "49738-1742", + "country": "United States", + "longitude": -84.71675164, + "latitude": 44.6600473, + "phone": "9897456388", + "website_url": null, + "state": "Michigan", + "street": "227 E Michigan Ave" + }, + { + "id": "084c617f-abee-4719-b085-9d44682c00c5", + "name": "Padre Island Brewing Co", + "brewery_type": "brewpub", + "address_1": "3400 Padre Blvd", + "address_2": null, + "address_3": null, + "city": "South Padre Island", + "state_province": "Texas", + "postal_code": "78597", + "country": "United States", + "longitude": -97.165899, + "latitude": 26.079915, + "phone": "9567619585", + "website_url": "http://www.pibrewingcompany.com", + "state": "Texas", + "street": "3400 Padre Blvd" + }, + { + "id": "d3ac23ba-2221-4e04-9a2d-32afec5b12bc", + "name": "Paducah Beer Werks", + "brewery_type": "brewpub", + "address_1": "301 N 4th St", + "address_2": null, + "address_3": null, + "city": "Paducah", + "state_province": "Kentucky", + "postal_code": "42001-0753", + "country": "United States", + "longitude": -88.599512, + "latitude": 37.088841, + "phone": null, + "website_url": "http://www.paducahbeerwerks.com", + "state": "Kentucky", + "street": "301 N 4th St" + }, + { + "id": "208fc2d7-7b2b-494f-a1ae-a3c1331f8c38", + "name": "Pagan River Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Smithfield", + "state_province": "Virginia", + "postal_code": "23430-2301", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7574143247", + "website_url": "http://www.paganriverbrewing.com", + "state": "Virginia", + "street": null + }, + { + "id": "1718be2e-b314-45d6-a208-8f79e31e8234", + "name": "Pagosa Brewing & Grill", + "brewery_type": "brewpub", + "address_1": "118 N Pagosa Blvd", + "address_2": null, + "address_3": null, + "city": "Pagosa Springs", + "state_province": "Colorado", + "postal_code": "81147-8470", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9707312739", + "website_url": "http://www.pagosabrewing.com", + "state": "Colorado", + "street": "118 N Pagosa Blvd" + }, + { + "id": "3446ec5f-e21e-4583-83be-a3a086f212a1", + "name": "Pair O' Dice Brewing Company", + "brewery_type": "micro", + "address_1": "4400 118th Ave N Ste 208", + "address_2": null, + "address_3": null, + "city": "Clearwater", + "state_province": "Florida", + "postal_code": "33762-4433", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7277553423", + "website_url": "http://www.pairodicebrewing.com", + "state": "Florida", + "street": "4400 118th Ave N Ste 208" + }, + { + "id": "b648c0ea-b1df-4f26-96fb-403d963c07e3", + "name": "Paladin Brewing", + "brewery_type": "micro", + "address_1": "6520 Mahoning Ave", + "address_2": null, + "address_3": null, + "city": "Austintown", + "state_province": "Ohio", + "postal_code": "44515-2012", + "country": "United States", + "longitude": -80.78742748, + "latitude": 41.099487, + "phone": "3305506338", + "website_url": "http://www.paladinbrewing.com", + "state": "Ohio", + "street": "6520 Mahoning Ave" + }, + { + "id": "e7def3c1-ed4e-4225-ba15-454a3c96ddb1", + "name": "Pale Fire Brewing Co", + "brewery_type": "micro", + "address_1": "217 S Liberty St Ste 105", + "address_2": null, + "address_3": null, + "city": "Harrisonburg", + "state_province": "Virginia", + "postal_code": "22801-3675", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5402175452", + "website_url": "http://www.palefirebrewing.com", + "state": "Virginia", + "street": "217 S Liberty St Ste 105" + }, + { + "id": "cf834341-f73a-4e54-b4ff-e8bc965dbf0b", + "name": "Palisade Brewing Company", + "brewery_type": "brewpub", + "address_1": "200 Peach Ave", + "address_2": null, + "address_3": null, + "city": "Palisade", + "state_province": "Colorado", + "postal_code": "81526", + "country": "United States", + "longitude": -108.3542553, + "latitude": 39.11109565, + "phone": "9704641462", + "website_url": "http://www.palisadebrewingcompany.com", + "state": "Colorado", + "street": "200 Peach Ave" + }, + { + "id": "699d53b0-0296-411c-8d95-8a7f6637448a", + "name": "Pallister Brothers Brewing Company", + "brewery_type": "micro", + "address_1": "116 N Market St", + "address_2": null, + "address_3": null, + "city": "Ottumwa", + "state_province": "Iowa", + "postal_code": "52501", + "country": "United States", + "longitude": -92.4101724, + "latitude": 41.0180942, + "phone": null, + "website_url": null, + "state": "Iowa", + "street": "116 N Market St" + }, + { + "id": "2439bcd8-7ffc-4e87-8a39-c093ada01419", + "name": "Palm City Brewing", + "brewery_type": "micro", + "address_1": "7887 Drew Cir Ste 130", + "address_2": null, + "address_3": null, + "city": "Fort Myers", + "state_province": "Florida", + "postal_code": "33967-6083", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2393622862", + "website_url": null, + "state": "Florida", + "street": "7887 Drew Cir Ste 130" + }, + { + "id": "7c3cbcf7-16f2-41af-a384-804acd5261c1", + "name": "Palm Harbor Brewery", + "brewery_type": "brewpub", + "address_1": "1022 Georgia Ave", + "address_2": null, + "address_3": null, + "city": "Palm Harbor", + "state_province": "Florida", + "postal_code": "34683-4317", + "country": "United States", + "longitude": -82.76688529, + "latitude": 28.07707237, + "phone": "7277868039", + "website_url": null, + "state": "Florida", + "street": "1022 Georgia Ave" + }, + { + "id": "a3045868-5a15-46de-9eb3-d721be2231e5", + "name": "Palmer Brewery & Cider House", + "brewery_type": "micro", + "address_1": "2926 Girard Blvd NE", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87107-1935", + "country": "United States", + "longitude": -106.6136878, + "latitude": 35.11493302, + "phone": "5055080508", + "website_url": null, + "state": "New Mexico", + "street": "2926 Girard Blvd NE" + }, + { + "id": "7157dd7f-0dd1-4d2e-a87c-a153a762a691", + "name": "Palmetto Brewing Co", + "brewery_type": "regional", + "address_1": "289 Huger St Bldg B", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "South Carolina", + "postal_code": "29403-4560", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8439370903", + "website_url": "http://www.palmettobrewery.com", + "state": "South Carolina", + "street": "289 Huger St Bldg B" + }, + { + "id": "244bd051-831b-41c1-9d86-a0b1c5d6af13", + "name": "Palmia", + "brewery_type": "proprietor", + "address_1": "3749 Divisadero St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94123-1010", + "country": "United States", + "longitude": -122.4438993, + "latitude": 37.804342, + "phone": "4153853100", + "website_url": "http://www.palmiabeer.com", + "state": "California", + "street": "3749 Divisadero St" + }, + { + "id": "568ece36-a3d7-40ad-9364-592642a1cdd3", + "name": "Palo Alto Brewing Co", + "brewery_type": "contract", + "address_1": "1080B La Avenida St", + "address_2": null, + "address_3": null, + "city": "Mountain View", + "state_province": "California", + "postal_code": "94043-1422", + "country": "United States", + "longitude": -122.0717657, + "latitude": 37.41326789, + "phone": null, + "website_url": "http://www.paloaltobrewing.com", + "state": "California", + "street": "1080B La Avenida St" + }, + { + "id": "68e10e91-616a-4760-99ad-1be117ebafcf", + "name": "Pals Brewing Company", + "brewery_type": "brewpub", + "address_1": "4520 South Buffalo Bill Avenue", + "address_2": null, + "address_3": null, + "city": "North Platte", + "state_province": "Nebraska", + "postal_code": "69101-9311", + "country": "United States", + "longitude": -100.7916041, + "latitude": 41.12294, + "phone": "6088079332", + "website_url": "http://www.palsbrewingcompany.com", + "state": "Nebraska", + "street": "4520 South Buffalo Bill Avenue" + }, + { + "id": "fcc5674e-befb-4eab-bfb6-ec508720b7a0", + "name": "Panacea Brewing Company / Remedy Brewing Company", + "brewery_type": "brewpub", + "address_1": "401 E 8th St Ste 120", + "address_2": null, + "address_3": null, + "city": "Sioux Falls", + "state_province": "South Dakota", + "postal_code": "57103-7012", + "country": "United States", + "longitude": -96.7221603, + "latitude": 43.54794988, + "phone": "6052141327", + "website_url": "http://www.remedybrewco.com", + "state": "South Dakota", + "street": "401 E 8th St Ste 120" + }, + { + "id": "6baeae2b-3797-4e73-84ec-1687f7f669cc", + "name": "Panther Creek Brews", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Christiana", + "state_province": "Tennessee", + "postal_code": "37037-5122", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6155891401", + "website_url": "http://www.panthercreekbrews.com", + "state": "Tennessee", + "street": null + }, + { + "id": "67d27756-36a8-402d-be42-843cfe015bd5", + "name": "Panther Island Brewing Company", + "brewery_type": "micro", + "address_1": "501 N Main St", + "address_2": null, + "address_3": null, + "city": "Fort Worth", + "state_province": "Texas", + "postal_code": "76164-9508", + "country": "United States", + "longitude": -97.33793538, + "latitude": 32.7636809, + "phone": "8178828121", + "website_url": "http://www.pantherislandbrewing.com", + "state": "Texas", + "street": "501 N Main St" + }, + { + "id": "c7c2ba11-d41c-48a4-a5c5-fbd6977fe0c9", + "name": "Pantomime Mixtures", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Hector", + "state_province": "New York", + "postal_code": "14841-9629", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6319442668", + "website_url": "http://www.pantomimemxitures.com", + "state": "New York", + "street": null + }, + { + "id": "b4364f80-3e30-40fc-bae8-00b3fa7b9c58", + "name": "Pantown Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Saint Cloud", + "state_province": "Minnesota", + "postal_code": "56303-3047", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3209803100", + "website_url": "http://www.pantownBrewing.com", + "state": "Minnesota", + "street": null + }, + { + "id": "4a6351a8-2ec1-42b0-8c6a-ca6c630df76b", + "name": "Paonia United Brewing Company", + "brewery_type": "micro", + "address_1": "325 Grand Ave", + "address_2": null, + "address_3": null, + "city": "Paonia", + "state_province": "Colorado", + "postal_code": "81428", + "country": "United States", + "longitude": -107.5976969, + "latitude": 38.86899455, + "phone": "9704177759", + "website_url": "http://www.paoniaunitedbrew.com", + "state": "Colorado", + "street": "325 Grand Ave" + }, + { + "id": "b96b43ff-31cd-46f3-8c14-e225aeec0841", + "name": "Papa Marce's Cerveceria", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Carlsbad", + "state_province": "California", + "postal_code": "92008", + "country": "United States", + "longitude": -117.3505966, + "latitude": 33.1580933, + "phone": "8584146976", + "website_url": "http://www.papamarces.com", + "state": "California", + "street": null + }, + { + "id": "ceb076d0-abb4-41df-b085-6799d5356f13", + "name": "Paper City Development LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Vicksburg", + "state_province": "Michigan", + "postal_code": "49097", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6049961400", + "website_url": "http://papercitymillworks.com", + "state": "Michigan", + "street": null + }, + { + "id": "42168831-d3a0-4eef-a36d-254e4095a412", + "name": "Paper Scissors Rock Brew Co.", + "brewery_type": "micro", + "address_1": "119 Grampians Road", + "address_2": null, + "address_3": null, + "city": "Halls Gap", + "state_province": "VIC", + "postal_code": "3381", + "country": "Australia", + "longitude": 142.5193149, + "latitude": -37.1407882, + "phone": "+61 3 5311 3709", + "website_url": "http://www.paperscissorsrock.beer/", + "state": "VIC", + "street": "119 Grampians Road" + }, + { + "id": "6c521aa8-180a-4e57-a711-ea6018b3f219", + "name": "Paper Street Brewing Company", + "brewery_type": "brewpub", + "address_1": "701 The Parkway", + "address_2": null, + "address_3": null, + "city": "Richland", + "state_province": "Washington", + "postal_code": "99352-4251", + "country": "United States", + "longitude": -119.274455, + "latitude": 46.274953, + "phone": "5097137088", + "website_url": "http://www.paperstbrewing.com", + "state": "Washington", + "street": "701 The Parkway" + }, + { + "id": "0f1246e4-cd74-4090-a807-e3cbbadac148", + "name": "Paperback Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Woodland Hills", + "state_province": "California", + "postal_code": "91367-2912", + "country": "United States", + "longitude": -118.6059197, + "latitude": 34.1683386, + "phone": null, + "website_url": "http://www.paperback.la", + "state": "California", + "street": null + }, + { + "id": "6309c11e-0f36-4621-80b9-33e7645e0a85", + "name": "Pappy Slokum Brewing Co.", + "brewery_type": "micro", + "address_1": "409 S Treadaway Blvd", + "address_2": null, + "address_3": null, + "city": "Abilene", + "state_province": "Texas", + "postal_code": "79602-1750", + "country": "United States", + "longitude": -99.726991, + "latitude": 32.444828, + "phone": "3252014112", + "website_url": "http://waggonerr@gmail.com", + "state": "Texas", + "street": "409 S Treadaway Blvd" + }, + { + "id": "fc5a19c0-7f02-4f50-834e-e4a3f02a37d5", + "name": "Parachilna Brew Project", + "brewery_type": "micro", + "address_1": "West Terrace", + "address_2": null, + "address_3": null, + "city": "Parachilna", + "state_province": "SA", + "postal_code": "5730", + "country": "Australia", + "longitude": 138.39551, + "latitude": -31.1326753, + "phone": "+61 1800 331 473", + "website_url": "https://www.prairiehotel.com.au/", + "state": "SA", + "street": "West Terrace" + }, + { + "id": "f2376e93-a30f-4e71-9476-b56f98957f16", + "name": "Paradigm Shift Brewing", + "brewery_type": "micro", + "address_1": "128 North Ave NE", + "address_2": null, + "address_3": null, + "city": "Massillon", + "state_province": "Ohio", + "postal_code": "44646-5526", + "country": "United States", + "longitude": -81.52183929, + "latitude": 40.79865814, + "phone": "3308800008", + "website_url": "http://www.paradigmshiftbrew.com", + "state": "Ohio", + "street": "128 North Ave NE" + }, + { + "id": "1923b722-bc48-4f2f-b003-5b52a77695c1", + "name": "Paradise Creek Brewery", + "brewery_type": "micro", + "address_1": "505 SE Riverview St Ste C", + "address_2": null, + "address_3": null, + "city": "Pullman", + "state_province": "Washington", + "postal_code": "99163-5262", + "country": "United States", + "longitude": -117.16188920262, + "latitude": 46.877432024206, + "phone": "5095920114", + "website_url": "http://www.paradisecreekbrewery.com", + "state": "Washington", + "street": "505 SE Riverview St Ste C" + }, + { + "id": "ecde2a37-e88b-4637-933e-ebd02cbff2b8", + "name": "Paradox Beer Co", + "brewery_type": "micro", + "address_1": "10 Buffalo Ct", + "address_2": null, + "address_3": null, + "city": "Divide", + "state_province": "Colorado", + "postal_code": "80814-9178", + "country": "United States", + "longitude": -105.1550486, + "latitude": 38.94440915, + "phone": null, + "website_url": "http://www.paradoxbeercompany.com", + "state": "Colorado", + "street": "10 Buffalo Ct" + }, + { + "id": "88ae082b-ea43-4367-90e5-bba2aa64f7ea", + "name": "Paradox Brewery", + "brewery_type": "micro", + "address_1": "154 State Route 9", + "address_2": null, + "address_3": null, + "city": "Schroon Lake", + "state_province": "New York", + "postal_code": "12870", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5183515036", + "website_url": "http://www.paradoxbrewery.com", + "state": "New York", + "street": "154 State Route 9" + }, + { + "id": "5b34875f-fccf-447f-a85e-f363efe9e2d0", + "name": "Paradox Brewery / Gateway To the Adirondacks", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Schroon Lake", + "state_province": "New York", + "postal_code": "12870", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "5bd1f033-c140-4d10-9e22-ba828de064ea", + "name": "Paradune Brewing", + "brewery_type": "micro", + "address_1": "10551 1/2 County Rd 286", + "address_2": null, + "address_3": null, + "city": "Huntsville", + "state_province": "Ohio", + "postal_code": "43324", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": "10551 1/2 County Rd 286" + }, + { + "id": "a48cf2bc-b38c-493f-8c15-c5d6c572b561", + "name": "Paradune Brewing Company", + "brewery_type": "micro", + "address_1": "20707 Township Rd 119", + "address_2": null, + "address_3": null, + "city": "Belle Center", + "state_province": "Ohio", + "postal_code": "43310", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9375891730", + "website_url": "http://www.paradunebrewing.com", + "state": "Ohio", + "street": "20707 Township Rd 119" + }, + { + "id": "c3bd276d-0168-4060-9055-e997af4ab18a", + "name": "Paragon Brewing", + "brewery_type": "proprietor", + "address_1": "5785 N Government Way", + "address_2": null, + "address_3": null, + "city": "Coeur D Alene", + "state_province": "Idaho", + "postal_code": "83815-7329", + "country": "United States", + "longitude": -116.787369, + "latitude": 47.725118, + "phone": "2087729292", + "website_url": "http://www.paragonbrewing.com", + "state": "Idaho", + "street": "5785 N Government Way" + }, + { + "id": "51d30268-e015-4b21-9500-147c2109c7bc", + "name": "Paraiso Brewery", + "brewery_type": "micro", + "address_1": "80 W G St", + "address_2": null, + "address_3": null, + "city": "Los Banos", + "state_province": "California", + "postal_code": "93635-3659", + "country": "United States", + "longitude": -120.8549566, + "latitude": 37.06775432, + "phone": "2098552337", + "website_url": "http://paraisobrewery.com", + "state": "California", + "street": "80 W G St" + }, + { + "id": "a17858d1-e5aa-41c5-a429-8418b7890d9d", + "name": "Paramount Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Andover", + "state_province": "Massachusetts", + "postal_code": "01810-5011", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6178691388", + "website_url": null, + "state": "Massachusetts", + "street": null + }, + { + "id": "581a681e-b5e8-4595-8cc6-f579304f804e", + "name": "Parched Eagle Brewpub", + "brewery_type": "brewpub", + "address_1": "5440 Willow Rd Ste 112", + "address_2": null, + "address_3": null, + "city": "Waunakee", + "state_province": "Wisconsin", + "postal_code": "53597-8431", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6082049192", + "website_url": "http://www.parchedeaglebrewpub.com", + "state": "Wisconsin", + "street": "5440 Willow Rd Ste 112" + }, + { + "id": "77b2e1c4-db34-4c4b-b0ed-55b2553f1191", + "name": "Pareidolia Brewing Co.", + "brewery_type": "brewpub", + "address_1": "712 Cleveland St", + "address_2": null, + "address_3": null, + "city": "Sebastian", + "state_province": "Florida", + "postal_code": "32958-4178", + "country": "United States", + "longitude": -80.46645659, + "latitude": 27.81084556, + "phone": "7725840331", + "website_url": "http://www.pareidoliabeer.com", + "state": "Florida", + "street": "712 Cleveland St" + }, + { + "id": "21446025-be15-4477-9ef8-e4686bc7ec90", + "name": "Pariah Brewing Company", + "brewery_type": "micro", + "address_1": "3052 El Cajon Blvd Ste B", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92104-1618", + "country": "United States", + "longitude": -117.1286268, + "latitude": 32.75594166, + "phone": "6196420545", + "website_url": "http://www.pariahbrewingco.com", + "state": "California", + "street": "3052 El Cajon Blvd Ste B" + }, + { + "id": "703a9282-97f8-4305-8d39-b06b9814d34c", + "name": "Parish Brewing Company", + "brewery_type": "micro", + "address_1": "229 Jared Dr", + "address_2": null, + "address_3": null, + "city": "Broussard", + "state_province": "Louisiana", + "postal_code": "70518-4362", + "country": "United States", + "longitude": -91.9485237, + "latitude": 30.1592466, + "phone": "3373308601", + "website_url": "http://www.parishbeer.com", + "state": "Louisiana", + "street": "229 Jared Dr" + }, + { + "id": "437725f5-e51b-407f-be9b-1fed4e71cc7c", + "name": "Park City Brewery", + "brewery_type": "closed", + "address_1": "2720 Rasmussen Rd Ste A1", + "address_2": null, + "address_3": null, + "city": "Park City", + "state_province": "Utah", + "postal_code": "84098-5751", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4352008906", + "website_url": "http://www.parkcitybrewery.com", + "state": "Utah", + "street": "2720 Rasmussen Rd Ste A1" + }, + { + "id": "1f09c9cd-5e78-4c69-a3df-28d7728a6862", + "name": "Park Tavern Brewery", + "brewery_type": "brewpub", + "address_1": "500 10th St NE", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30309-4272", + "country": "United States", + "longitude": -84.377744, + "latitude": 33.781867, + "phone": "4042490001", + "website_url": "http://www.parktavern.com", + "state": "Georgia", + "street": "500 10th St NE" + }, + { + "id": "877e9636-df9e-46af-b667-eee6930cffaf", + "name": "Parker's Steakhouse and Brewery", + "brewery_type": "brewpub", + "address_1": "1300 Mt Saint Helens Way NE", + "address_2": null, + "address_3": null, + "city": "Castle Rock", + "state_province": "Washington", + "postal_code": "98611-9014", + "country": "United States", + "longitude": -122.898886, + "latitude": 46.287285, + "phone": "3609672333", + "website_url": "http://www.parkerssteakhouse.com", + "state": "Washington", + "street": "1300 Mt Saint Helens Way NE" + }, + { + "id": "fb80ac7b-2db7-4d36-83a8-0b32ca21140a", + "name": "Parkers Hilltop Brewery", + "brewery_type": "brewpub", + "address_1": "6110 Dixie Hwy", + "address_2": null, + "address_3": null, + "city": "Clarkston", + "state_province": "Michigan", + "postal_code": "48346-3409", + "country": "United States", + "longitude": -83.4149011, + "latitude": 42.7174413, + "phone": "2483838444", + "website_url": "http://www.hilltopbrew.com", + "state": "Michigan", + "street": "6110 Dixie Hwy" + }, + { + "id": "536453ac-c66c-4cd2-b3c4-34095183ed62", + "name": "Parkersburg Brewing Co", + "brewery_type": "brewpub", + "address_1": "707 Market St", + "address_2": null, + "address_3": null, + "city": "Parkersburg", + "state_province": "West Virginia", + "postal_code": "26101-4628", + "country": "United States", + "longitude": -81.55823029, + "latitude": 39.26705857, + "phone": "3049161502", + "website_url": "http://www.parkersburgbrewing.com", + "state": "West Virginia", + "street": "707 Market St" + }, + { + "id": "69f0e786-deae-48b2-9320-8dae1f85a1a5", + "name": "Parkside Brewing Company", + "brewery_type": "brewpub", + "address_1": "2601 Madison Ave", + "address_2": null, + "address_3": null, + "city": "Burlington", + "state_province": "Iowa", + "postal_code": "52601-6622", + "country": "United States", + "longitude": -91.1079175, + "latitude": 40.77905391, + "phone": "3192092739", + "website_url": "http://www.parksidebrewing.com", + "state": "Iowa", + "street": "2601 Madison Ave" + }, + { + "id": "12b5ad73-b4d0-4030-b7de-486e4b16c792", + "name": "Parkway Brewing", + "brewery_type": "micro", + "address_1": "739 Kessler Mill Rd", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "Virginia", + "postal_code": "24153-3035", + "country": "United States", + "longitude": -80.0332665, + "latitude": 37.30925145, + "phone": "5404049810", + "website_url": "http://www.parkwaybrewing.com", + "state": "Virginia", + "street": "739 Kessler Mill Rd" + }, + { + "id": "fff36b1b-b208-4477-8652-8eb64bee33c9", + "name": "Parleaux Beer Lab", + "brewery_type": "micro", + "address_1": "634 Lesseps St", + "address_2": null, + "address_3": null, + "city": "New Orleans", + "state_province": "Louisiana", + "postal_code": "70117", + "country": "United States", + "longitude": -90.03400238, + "latitude": 29.9607459, + "phone": "5047028433", + "website_url": "http://www.parleauxbeerlab.com", + "state": "Louisiana", + "street": "634 Lesseps St" + }, + { + "id": "d58fa2dc-0c5d-4eaa-9252-f25f59c3025e", + "name": "Parts & Labor Brewing Company", + "brewery_type": "brewpub", + "address_1": "402 Main St Unit B", + "address_2": null, + "address_3": null, + "city": "Sterling", + "state_province": "Colorado", + "postal_code": "80751-4343", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9702228221", + "website_url": "http://www.partsandlaborbrewing.com", + "state": "Colorado", + "street": "402 Main St Unit B" + }, + { + "id": "fc875d84-2f1d-4076-b67f-594fff2b00d7", + "name": "Pastime Brewery Bar and Grill", + "brewery_type": "brewpub", + "address_1": "1307 Main St", + "address_2": null, + "address_3": null, + "city": "Oroville", + "state_province": "Washington", + "postal_code": "98844-9384", + "country": "United States", + "longitude": -119.4363091, + "latitude": 48.93797078, + "phone": "5094763007", + "website_url": "http://www.pastimebarandgrill.com", + "state": "Washington", + "street": "1307 Main St" + }, + { + "id": "a7d5823a-039b-49d2-9747-ae947815a394", + "name": "Pat O'Hara Brewing Company", + "brewery_type": "brewpub", + "address_1": "1019 15th St", + "address_2": null, + "address_3": null, + "city": "Cody", + "state_province": "Wyoming", + "postal_code": "82414-3721", + "country": "United States", + "longitude": -109.058375, + "latitude": 44.52678265, + "phone": "3075865410", + "website_url": null, + "state": "Wyoming", + "street": "1019 15th St" + }, + { + "id": "d16230f3-d387-46cf-bd27-570d88645432", + "name": "Patiala Brew", + "brewery_type": "micro", + "address_1": "34 Fabriek Street", + "address_2": null, + "address_3": null, + "city": "Paarl", + "state_province": "Western Cape", + "postal_code": "7646", + "country": "South Africa", + "longitude": 18.9619, + "latitude": -33.7381, + "phone": "+27 60 715 0341", + "website_url": null, + "state": "Western Cape", + "street": "34 Fabriek Street" + }, + { + "id": "0afdca59-0ed4-44dc-80d8-7a952e1924f6", + "name": "Pato Brewing", + "brewery_type": "micro", + "address_1": "Centro Empresarial Sintra-Estoril I", + "address_2": "Av. Pedro Álvares Cabral 177 ARMAZÉM G", + "address_3": "Beloura", + "city": "Sintra", + "state_province": "Lisboa", + "postal_code": "2710-144", + "country": "Portugal", + "longitude": -9.3749116269047, + "latitude": 38.759246154526, + "phone": "+351 96 280 0847", + "website_url": "http://www.patobrewing.com", + "state": "Lisboa", + "street": "Centro Empresarial Sintra-Estoril I" + }, + { + "id": "a3525861-0aba-40f8-aff8-1af8bba01946", + "name": "Patriot Acres Farm Brewery", + "brewery_type": "micro", + "address_1": "1621 Millington Rd", + "address_2": null, + "address_3": null, + "city": "Sudlersville", + "state_province": "Maryland", + "postal_code": "21668-1427", + "country": "United States", + "longitude": -75.86736136, + "latitude": 39.22228298, + "phone": "4107085424", + "website_url": "http://www.patriotacresfarmbrewery.com", + "state": "Maryland", + "street": "1621 Millington Rd" + }, + { + "id": "d74c242a-21e2-4817-873b-1314dff7770f", + "name": "Patro's Sports Bar and Restaurant", + "brewery_type": "bar", + "address_1": "920 East Coast Park", + "address_2": "Parkland Green", + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "449875", + "country": "Singapore", + "longitude": 1.2992922288778, + "latitude": 103.9066415, + "phone": "+65 6440 9372", + "website_url": null, + "state": "Singapore", + "street": "920 East Coast Park" + }, + { + "id": "239ea12a-9340-4a7b-81c5-d819af331f2c", + "name": "Patron Saints Brewery", + "brewery_type": "micro", + "address_1": "4730 W Bancroft St #8", + "address_2": null, + "address_3": null, + "city": "Toledo", + "state_province": "Ohio", + "postal_code": "43615", + "country": "United States", + "longitude": -83.650886, + "latitude": 41.662495, + "phone": null, + "website_url": "http://www.PatronSaintsBrewery.com", + "state": "Ohio", + "street": "4730 W Bancroft St #8" + }, + { + "id": "5575c888-ae31-4c95-93af-3f76a5f11242", + "name": "Paw Paw Brewing Company", + "brewery_type": "brewpub", + "address_1": "929 E Michigan Ave", + "address_2": null, + "address_3": null, + "city": "Paw Paw", + "state_province": "Michigan", + "postal_code": "49079-9488", + "country": "United States", + "longitude": -85.87748984, + "latitude": 42.2192304, + "phone": "2694150145", + "website_url": "http://pawpawbrewery.com", + "state": "Michigan", + "street": "929 E Michigan Ave" + }, + { + "id": "f6ae3e02-e4dd-4aa3-961b-107a6b9706ae", + "name": "Paw Paw Brewing Company LLC", + "brewery_type": "micro", + "address_1": "780 S Gremps street", + "address_2": null, + "address_3": null, + "city": "PAW PAW", + "state_province": "Michigan", + "postal_code": "49079", + "country": "United States", + "longitude": -85.89437423, + "latitude": 42.2131394, + "phone": "2695015241", + "website_url": "http://www.pawpawbrewing.com", + "state": "Michigan", + "street": "780 S Gremps street" + }, + { + "id": "3d619b2b-ece6-478b-a46b-752087ff4a10", + "name": "Paw Paw Brewing Company Production Facility", + "brewery_type": "micro", + "address_1": "780 S Gremps St", + "address_2": null, + "address_3": null, + "city": "Paw Paw", + "state_province": "Michigan", + "postal_code": "49079", + "country": "United States", + "longitude": -85.89437423, + "latitude": 42.2131394, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "780 S Gremps St" + }, + { + "id": "42ff6091-e237-43c8-93ab-0b8d5e170721", + "name": "Pawleys Island Brewing Company", + "brewery_type": "brewpub", + "address_1": "2668 Industrial Ave", + "address_2": null, + "address_3": null, + "city": "North Charleston", + "state_province": "South Carolina", + "postal_code": "29405-7429", + "country": "United States", + "longitude": -80.00423049, + "latitude": 32.8533504, + "phone": "8432258292", + "website_url": "http://www.pawleysislandbrewing.com", + "state": "South Carolina", + "street": "2668 Industrial Ave" + }, + { + "id": "e041442e-c7f9-4896-a0b5-4c4f0bc66c9b", + "name": "Pax Verum Brewing", + "brewery_type": "micro", + "address_1": "908 N Main St", + "address_2": null, + "address_3": null, + "city": "Lapel", + "state_province": "Indiana", + "postal_code": "46051-", + "country": "United States", + "longitude": -85.84802957, + "latitude": 40.0686988, + "phone": "3172858819", + "website_url": "http://www.paxverum.com", + "state": "Indiana", + "street": "908 N Main St" + }, + { + "id": "061be81d-5cc0-44e9-b474-ad1b046ff25b", + "name": "Payette Brewing Co", + "brewery_type": "micro", + "address_1": "733 S Pioneer St", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83702-5219", + "country": "United States", + "longitude": -116.2145033, + "latitude": 43.61301363, + "phone": "2083440011", + "website_url": "http://www.payettebrewing.com", + "state": "Idaho", + "street": "733 S Pioneer St" + }, + { + "id": "63062c41-f06b-4562-b723-eab8f21a4fe6", + "name": "Paystreak Brewing", + "brewery_type": "brewpub", + "address_1": "449 Main Street", + "address_2": null, + "address_3": null, + "city": "Etna", + "state_province": "California", + "postal_code": "96027", + "country": "United States", + "longitude": -122.8937015, + "latitude": 41.4565805, + "phone": "5304672337", + "website_url": "http://www.paystreakbrewing.com", + "state": "California", + "street": "449 Main Street" + }, + { + "id": "8759cc82-6616-436e-b9ed-50b897439a8e", + "name": "Pdub Brewing Co", + "brewery_type": "brewpub", + "address_1": "187 S Purcell Blvd", + "address_2": null, + "address_3": null, + "city": "Pueblo", + "state_province": "Colorado", + "postal_code": "81007-5081", + "country": "United States", + "longitude": -104.7084175, + "latitude": 38.3164023, + "phone": "7196478864", + "website_url": "http://www.pdubbrewing.com", + "state": "Colorado", + "street": "187 S Purcell Blvd" + }, + { + "id": "79e4d05e-14c1-4af7-b2a9-192eebe502c0", + "name": "Peabody Heights Brewery", + "brewery_type": "micro", + "address_1": "401 E 30th St", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21218-3935", + "country": "United States", + "longitude": -76.61041505, + "latitude": 39.32410525, + "phone": "4104677837", + "website_url": "http://www.peabodyheightsbrewery.com", + "state": "Maryland", + "street": "401 E 30th St" + }, + { + "id": "686a7573-f9de-4f70-a03d-1c8a225ca092", + "name": "Peace Tree Brewing Company", + "brewery_type": "micro", + "address_1": "107 W Main St", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Iowa", + "postal_code": "50138-2528", + "country": "United States", + "longitude": -93.09970823, + "latitude": 41.31903523, + "phone": "6418422739", + "website_url": "http://www.peacetreebrewing.com", + "state": "Iowa", + "street": "107 W Main St" + }, + { + "id": "2944a16b-b018-42bb-9c9e-48a05ec26739", + "name": "Peace Tree Brewing Company - Des Moines Branch", + "brewery_type": "micro", + "address_1": "317 E Court Ave", + "address_2": null, + "address_3": null, + "city": "Des Moines", + "state_province": "Iowa", + "postal_code": "50309-2014", + "country": "United States", + "longitude": -93.6121558, + "latitude": 41.5867046, + "phone": "5158832739", + "website_url": "http://www.peacetreebrewing.com", + "state": "Iowa", + "street": "317 E Court Ave" + }, + { + "id": "1c0f1498-1b85-4472-946d-eae8385c6118", + "name": "Peacemaker Brewing Company", + "brewery_type": "micro", + "address_1": "20 Pleasant St", + "address_2": null, + "address_3": null, + "city": "Canandaigua", + "state_province": "New York", + "postal_code": "14424-2047", + "country": "United States", + "longitude": -77.27866055, + "latitude": 42.88851165, + "phone": "5853963561", + "website_url": "http://www.peacemakerbrewing.com", + "state": "New York", + "street": "20 Pleasant St" + }, + { + "id": "a8882009-9fd1-4cab-a8e8-c19bf22d6dea", + "name": "Peak Organic Brewing Co", + "brewery_type": "proprietor", + "address_1": "110 Marginal Way # 802", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04101-2442", + "country": "United States", + "longitude": -70.26454878, + "latitude": 43.66244776, + "phone": "2075865586", + "website_url": "http://www.peakbrewing.com", + "state": "Maine", + "street": "110 Marginal Way # 802" + }, + { + "id": "3c4ee320-98f6-4949-9ec1-8a24f16619d8", + "name": "Peak To Peak Tap & Brew", + "brewery_type": "brewpub", + "address_1": "16701 E Iliff Ave", + "address_2": null, + "address_3": null, + "city": "Aurora", + "state_province": "Colorado", + "postal_code": "80013-1148", + "country": "United States", + "longitude": -104.8366181, + "latitude": 39.6750535, + "phone": "7204468714", + "website_url": "http://www.peakbrews.com", + "state": "Colorado", + "street": "16701 E Iliff Ave" + }, + { + "id": "8eb28987-4959-4f49-b410-757b110e5356", + "name": "Peak To Peak Tap & Brew", + "brewery_type": "micro", + "address_1": "9735 E Colfax Ave", + "address_2": null, + "address_3": null, + "city": "Aurora", + "state_province": "Colorado", + "postal_code": "80010", + "country": "United States", + "longitude": -104.8505299, + "latitude": 39.7402157, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "9735 E Colfax Ave" + }, + { + "id": "ec411fb6-0238-45ae-a312-8c3d6133d140", + "name": "Peak View Brewing Company", + "brewery_type": "closed", + "address_1": "9672 E Arapahoe Rd", + "address_2": null, + "address_3": null, + "city": "Greenwood Village", + "state_province": "Colorado", + "postal_code": "80112", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "9672 E Arapahoe Rd" + }, + { + "id": "e0f10443-62fe-48ca-a9d5-3b1c3cb426f0", + "name": "Peaks and Creeks Brewing Company", + "brewery_type": "micro", + "address_1": "212 King St Ste B", + "address_2": null, + "address_3": null, + "city": "Brevard", + "state_province": "North Carolina", + "postal_code": "28712", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8285504765", + "website_url": "http://www.brevardlumberyard.com", + "state": "North Carolina", + "street": "212 King St Ste B" + }, + { + "id": "02552dfe-2893-4ef1-82d6-b4713015c61f", + "name": "Peaks N Pines Brewing Company", + "brewery_type": "micro", + "address_1": "4005 Tutt Blvd", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80922-2508", + "country": "United States", + "longitude": -104.7146045, + "latitude": 38.88965993, + "phone": "7193586758", + "website_url": "http://www.peaksnpinesbrewery.com", + "state": "Colorado", + "street": "4005 Tutt Blvd" + }, + { + "id": "49c63f60-1304-43cb-839f-d4b05eb592be", + "name": "Pearl Street Brewery", + "brewery_type": "micro", + "address_1": "1401 Saint Andrew St", + "address_2": null, + "address_3": null, + "city": "La Crosse", + "state_province": "Wisconsin", + "postal_code": "54603-2866", + "country": "United States", + "longitude": -91.23526334, + "latitude": 43.835173, + "phone": null, + "website_url": "http://pearlstreetbrewery.com/", + "state": "Wisconsin", + "street": "1401 Saint Andrew St" + }, + { + "id": "a4ce36e6-21d4-41c4-9af4-0da93bb98581", + "name": "Pearl Street Grill and Brewery", + "brewery_type": "brewpub", + "address_1": "76 Pearl St", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14202-4106", + "country": "United States", + "longitude": -78.87722544, + "latitude": 42.88105759, + "phone": "7168562337", + "website_url": "http://www.pearlstreetgrill.com", + "state": "New York", + "street": "76 Pearl St" + }, + { + "id": "c78e00a1-dbd0-4a22-884c-99cddc4d3460", + "name": "Pecan Street Brewing Co", + "brewery_type": "brewpub", + "address_1": "106 East Pecan Drive", + "address_2": null, + "address_3": null, + "city": "Johnson City", + "state_province": "Texas", + "postal_code": "78636-1504", + "country": "United States", + "longitude": -98.4113504, + "latitude": 30.27762004, + "phone": "8308682131", + "website_url": "http://www.pecanstreetbrewing.com", + "state": "Texas", + "street": "106 East Pecan Drive" + }, + { + "id": "66883061-9c0c-47b2-b6dd-178809cded7c", + "name": "Peckish Pig", + "brewery_type": "brewpub", + "address_1": "623 Howard St", + "address_2": null, + "address_3": null, + "city": "Evanston", + "state_province": "Illinois", + "postal_code": "60202-3941", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8474916778", + "website_url": "http://www.thepeckishpig@gmail.com", + "state": "Illinois", + "street": "623 Howard St" + }, + { + "id": "6d1b585a-6e1b-4452-8d1d-2b0d1f061a4f", + "name": "Pedal Haus Brewery", + "brewery_type": "brewpub", + "address_1": "730 S Mill Ave. Suite 102", + "address_2": null, + "address_3": null, + "city": "Tempe", + "state_province": "Arizona", + "postal_code": "85281-3618", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4803142337", + "website_url": "http://www.pedalhausbrewery.com", + "state": "Arizona", + "street": "730 S Mill Ave. Suite 102" + }, + { + "id": "a8a2c02d-5871-4c69-9ee1-11766bc3c948", + "name": "Peddler Brewing", + "brewery_type": "micro", + "address_1": "1514 NW Leary Way", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98107-4739", + "country": "United States", + "longitude": -122.37703, + "latitude": 47.6638679, + "phone": "3603620002", + "website_url": "http://www.peddlerbrewing.com", + "state": "Washington", + "street": "1514 NW Leary Way" + }, + { + "id": "add42f7c-059e-4ecc-81dd-2f7d3eabb800", + "name": "Pedestrian Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lakewood", + "state_province": "Ohio", + "postal_code": "44107-3309", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2162620740", + "website_url": "http://pedestrian.beer", + "state": "Ohio", + "street": null + }, + { + "id": "35b9ca60-ff08-49e0-a3d2-82f41ece475d", + "name": "Pedro Point Brewing", + "brewery_type": "micro", + "address_1": "55A Bill Drake Way", + "address_2": null, + "address_3": null, + "city": "Pacifica", + "state_province": "California", + "postal_code": "94044", + "country": "United States", + "longitude": -122.4910217, + "latitude": 37.65116158, + "phone": "6502889149", + "website_url": "http://www.pedropointbrewing.com", + "state": "California", + "street": "55A Bill Drake Way" + }, + { + "id": "c74aeb35-eca1-49ba-bc2a-cdda2c11b4a0", + "name": "Peekskill Brewing Co", + "brewery_type": "brewpub", + "address_1": "47 S Water St # 53", + "address_2": null, + "address_3": null, + "city": "Peekskill", + "state_province": "New York", + "postal_code": "10566-2035", + "country": "United States", + "longitude": -73.9292934, + "latitude": 41.2867311, + "phone": "9147342337", + "website_url": "http://www.peekskillbrewery.com", + "state": "New York", + "street": "47 S Water St # 53" + }, + { + "id": "4649b1ce-01c9-4428-acad-c001f7dfc9e5", + "name": "Peel Brewing Co.", + "brewery_type": "brewpub", + "address_1": "104 S Cherry St", + "address_2": null, + "address_3": null, + "city": "O Fallon", + "state_province": "Illinois", + "postal_code": "62269-2046", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6187262244", + "website_url": "http://www.peelpizza.com", + "state": "Illinois", + "street": "104 S Cherry St" + }, + { + "id": "d9e12659-831c-433a-9229-23f71e25c592", + "name": "Pegasus City Brewery", + "brewery_type": "micro", + "address_1": "2222 Vantage St", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75207-6102", + "country": "United States", + "longitude": -96.83399696, + "latitude": 32.79915648, + "phone": "9723667722", + "website_url": "http://www.pegasuscitybrewery.com", + "state": "Texas", + "street": "2222 Vantage St" + }, + { + "id": "f7036951-96e0-4f03-b3e7-f56351d36eda", + "name": "Pelican Brewing Company", + "brewery_type": "regional", + "address_1": "33180 Cape Kiwanda Dr", + "address_2": null, + "address_3": null, + "city": "Pacific City", + "state_province": "Oregon", + "postal_code": "97135-8012", + "country": "United States", + "longitude": -123.9695724, + "latitude": 45.21550832, + "phone": "5039657007", + "website_url": "http://www.pelicanbrewery.com", + "state": "Oregon", + "street": "33180 Cape Kiwanda Dr" + }, + { + "id": "03879edb-988b-45ac-88a0-90c19d25dab5", + "name": "Pelican Brewing Company - Cannon Beach", + "brewery_type": "brewpub", + "address_1": "1371 S Hemlock St", + "address_2": null, + "address_3": null, + "city": "Cannon Beach", + "state_province": "Oregon", + "postal_code": "97110-3055", + "country": "United States", + "longitude": -123.9620236, + "latitude": 45.88850543, + "phone": "5039083377", + "website_url": null, + "state": "Oregon", + "street": "1371 S Hemlock St" + }, + { + "id": "611cf039-c4d2-4a29-af93-6893281c2469", + "name": "Pelican Brewing Company - Tillamook", + "brewery_type": "micro", + "address_1": "1708 1st St", + "address_2": null, + "address_3": null, + "city": "Tillamook", + "state_province": "Oregon", + "postal_code": "97141-2104", + "country": "United States", + "longitude": -123.8462991, + "latitude": 45.45789207, + "phone": "5039657007", + "website_url": null, + "state": "Oregon", + "street": "1708 1st St" + }, + { + "id": "091b0410-7c35-47b4-a3f6-6da8d83f6a22", + "name": "Pen Druid Brewing", + "brewery_type": "micro", + "address_1": "7 River Ln", + "address_2": null, + "address_3": null, + "city": "Sperryville", + "state_province": "Virginia", + "postal_code": "22740", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5409875064", + "website_url": "http://www.pendruid.com", + "state": "Virginia", + "street": "7 River Ln" + }, + { + "id": "a4d8d567-4e45-4a19-9798-6e882bbcae17", + "name": "Pennesseewassee Brewing", + "brewery_type": "micro", + "address_1": "458 Plains Rd", + "address_2": null, + "address_3": null, + "city": "Harrison", + "state_province": "Maine", + "postal_code": "04040-3829", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2077439808", + "website_url": "http://www.pennybrew.com", + "state": "Maine", + "street": "458 Plains Rd" + }, + { + "id": "6e5cb266-90f8-4e79-bde0-076cc8dba8dd", + "name": "Pennsylvania Brewing Co", + "brewery_type": "micro", + "address_1": "800 Vinial St", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15212-5151", + "country": "United States", + "longitude": -79.99163722, + "latitude": 40.457132, + "phone": "4122379402", + "website_url": "http://www.pennbrew.com", + "state": "Pennsylvania", + "street": "800 Vinial St" + }, + { + "id": "405503f6-a0f3-456b-b47b-eefd54cf0a43", + "name": "Pennyweight Craft Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Livermore", + "state_province": "California", + "postal_code": "94550", + "country": "United States", + "longitude": -121.7680531, + "latitude": 37.6820583, + "phone": "5107541685", + "website_url": "http://www.pennyweightbrew.com", + "state": "California", + "street": null + }, + { + "id": "06198bbc-2cab-40c1-b306-692a299452eb", + "name": "Penobscot Bay Brewery", + "brewery_type": "micro", + "address_1": "279 South Main Street", + "address_2": null, + "address_3": null, + "city": "Winterport", + "state_province": "Maine", + "postal_code": "04496-0405", + "country": "United States", + "longitude": -68.847883, + "latitude": 44.634187, + "phone": "2072234500", + "website_url": "http://www.winterportwinery.com/brewery.asp", + "state": "Maine", + "street": "279 South Main Street" + }, + { + "id": "779f7764-a326-4b35-9d24-3d9a098f8df9", + "name": "Penrose Brewing Company", + "brewery_type": "micro", + "address_1": "509 Stevens St", + "address_2": null, + "address_3": null, + "city": "Geneva", + "state_province": "Illinois", + "postal_code": "60134-1363", + "country": "United States", + "longitude": -88.30984886, + "latitude": 41.89253112, + "phone": "6302322115", + "website_url": "http://www.penrosebrewing.com", + "state": "Illinois", + "street": "509 Stevens St" + }, + { + "id": "c7a5c1e3-3814-4acd-bef9-d408dead58fe", + "name": "Pensacola Bay Brewery", + "brewery_type": "micro", + "address_1": "225 E Zaragoza St", + "address_2": null, + "address_3": null, + "city": "Pensacola", + "state_province": "Florida", + "postal_code": "32502-6048", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8504343353", + "website_url": "http://www.pbbrew.com", + "state": "Florida", + "street": "225 E Zaragoza St" + }, + { + "id": "fc70ca5f-24fb-4665-87b9-b377f9cf996f", + "name": "Pentagonal Brewing Co", + "brewery_type": "closed", + "address_1": "115 N Imperial Ave Suite A", + "address_2": null, + "address_3": null, + "city": "Imperial", + "state_province": "California", + "postal_code": "92251-1250", + "country": "United States", + "longitude": -115.4192538, + "latitude": 32.80049306, + "phone": "7605451045", + "website_url": "http://www.facebook.com/Pentagonalbrewingcompany/", + "state": "California", + "street": "115 N Imperial Ave Suite A" + }, + { + "id": "6d395f83-0e7b-4f48-820d-b98859b0b8f1", + "name": "Peoples Brewing Co", + "brewery_type": "micro", + "address_1": "2006 N 9th Street Rd", + "address_2": null, + "address_3": null, + "city": "Lafayette", + "state_province": "Indiana", + "postal_code": "47904-1036", + "country": "United States", + "longitude": -86.885995, + "latitude": 40.43700688, + "phone": "7657924677", + "website_url": "http://www.peoplesbrew.com", + "state": "Indiana", + "street": "2006 N 9th Street Rd" + }, + { + "id": "5feefc62-8f0b-4150-a4d0-1817f292a3f0", + "name": "Peoria Artisan Brewery", + "brewery_type": "brewpub", + "address_1": "10144 W. Lake Pleasant Parkway Suite 1130", + "address_2": null, + "address_3": null, + "city": "Peoria", + "state_province": "Arizona", + "postal_code": "85382", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6236959357", + "website_url": "http://www.peoriaartisanbrewing.com", + "state": "Arizona", + "street": "10144 W. Lake Pleasant Parkway Suite 1130" + }, + { + "id": "8f8dec1e-8d9e-4328-bf6c-2df4521cd661", + "name": "Peoria Artisan Brewery", + "brewery_type": "brewpub", + "address_1": "10144 W Lake Pleasant Pkwy Ste 1130", + "address_2": null, + "address_3": null, + "city": "Peoria", + "state_province": "Arizona", + "postal_code": "85382-9716", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6235364804", + "website_url": "http://www.peoriaartisanbrewing.com", + "state": "Arizona", + "street": "10144 W Lake Pleasant Pkwy Ste 1130" + }, + { + "id": "da9fa8f8-bf7d-47b8-baa9-9e3f4da93b86", + "name": "Percival Brewing Company", + "brewery_type": "micro", + "address_1": "83 Morse St", + "address_2": null, + "address_3": null, + "city": "Norwood", + "state_province": "Massachusetts", + "postal_code": "02122", + "country": "United States", + "longitude": -71.2072323, + "latitude": 42.17226305, + "phone": "7816644705", + "website_url": "http://www.percivalbeercompany.com", + "state": "Massachusetts", + "street": "83 Morse St" + }, + { + "id": "bcd21562-9ff4-4a7b-8230-8cb051094f2d", + "name": "Perennial Artisan Ales", + "brewery_type": "micro", + "address_1": "8125 Michigan Ave Ste 116", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63111-3535", + "country": "United States", + "longitude": -90.265979, + "latitude": 38.54573, + "phone": "3146317300", + "website_url": "http://www.perennialbeer.com", + "state": "Missouri", + "street": "8125 Michigan Ave Ste 116" + }, + { + "id": "903821aa-5e72-4fb3-b896-5956bda40bcf", + "name": "Perentie Brewstillery", + "brewery_type": "micro", + "address_1": "124 Distillery Road", + "address_2": null, + "address_3": null, + "city": "Eagleby", + "state_province": "QLD", + "postal_code": "4207", + "country": "Australia", + "longitude": 153.2210398, + "latitude": -27.7237933, + "phone": "+61 7 3373 0222", + "website_url": "https://perentiebrewing.co/", + "state": "QLD", + "street": "124 Distillery Road" + }, + { + "id": "5ca8e3d6-f42d-4389-9854-fe521a3ce95c", + "name": "Perfect Fool Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30319", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Georgia", + "street": null + }, + { + "id": "2d9384f0-ef54-4aaf-bc74-05c5b5169ee9", + "name": "Perfect Plain Brewing Co.", + "brewery_type": "micro", + "address_1": "50 E Garden St", + "address_2": null, + "address_3": null, + "city": "Pensacola", + "state_province": "Florida", + "postal_code": "32502-5604", + "country": "United States", + "longitude": -87.214831, + "latitude": 30.4132165, + "phone": null, + "website_url": "http://www.perfectplain.com", + "state": "Florida", + "street": "50 E Garden St" + }, + { + "id": "d5a19834-aad1-4e8f-a0f8-650595f717ab", + "name": "Perfect World Brewing Co", + "brewery_type": "micro", + "address_1": "1276 Broadway", + "address_2": null, + "address_3": null, + "city": "Albany", + "state_province": "New York", + "postal_code": "12204-2623", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.facebook.com/PerfectWorldBrewing/", + "state": "New York", + "street": "1276 Broadway" + }, + { + "id": "61928845-6acb-4d83-a5ea-5e43788c9ad2", + "name": "Perihelion Brewery", + "brewery_type": "brewpub", + "address_1": "2800 16th Ave S", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98144-5732", + "country": "United States", + "longitude": -122.3118193, + "latitude": 47.5784432, + "phone": "2062003935", + "website_url": null, + "state": "Washington", + "street": "2800 16th Ave S" + }, + { + "id": "67b5abdf-0111-4a45-9677-495e4eb63552", + "name": "Periodic Brewing LLC", + "brewery_type": "brewpub", + "address_1": "115 E 7th St", + "address_2": null, + "address_3": null, + "city": "Leadville", + "state_province": "Colorado", + "postal_code": "80461-3505", + "country": "United States", + "longitude": -106.2917767, + "latitude": 39.2496419, + "phone": "7203168144", + "website_url": "http://www.periodicbrewing.com", + "state": "Colorado", + "street": "115 E 7th St" + }, + { + "id": "6b0b1108-2486-4c3d-aad3-f9c736b5a855", + "name": "Periodic Brewing Northglenn", + "brewery_type": "micro", + "address_1": "2100 E 112th Ave", + "address_2": null, + "address_3": null, + "city": "Northglenn", + "state_province": "Colorado", + "postal_code": "80233-2345", + "country": "United States", + "longitude": -104.9619495, + "latitude": 39.89940226, + "phone": "7208641012", + "website_url": null, + "state": "Colorado", + "street": "2100 E 112th Ave" + }, + { + "id": "92398e11-aee4-469d-a522-52ff39843cd8", + "name": "Perkiomen Valley Brewery", + "brewery_type": "taproom", + "address_1": "101 Walnut St", + "address_2": null, + "address_3": null, + "city": "Green Lane", + "state_province": "Pennsylvania", + "postal_code": "18054", + "country": "United States", + "longitude": -75.4716647, + "latitude": 40.3381909, + "phone": "2158726424", + "website_url": "http://www.perkiomenvalleybrewery.com", + "state": "Pennsylvania", + "street": "101 Walnut St" + }, + { + "id": "06cfb198-fc60-4119-bd71-813f5d4db893", + "name": "Permission Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43004", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6143530762", + "website_url": "http://www.permissionbrewing.com", + "state": "Ohio", + "street": null + }, + { + "id": "745138de-12aa-4167-9302-1fb84642e899", + "name": "Perrin Brewing Company", + "brewery_type": "regional", + "address_1": "5910 Comstock Park Dr NW", + "address_2": null, + "address_3": null, + "city": "Comstock Park", + "state_province": "Michigan", + "postal_code": "49321-8256", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6165511957", + "website_url": "http://www.perrinbrewing.com", + "state": "Michigan", + "street": "5910 Comstock Park Dr NW" + }, + { + "id": "ac2950c8-10fb-479f-80b7-878146cc5461", + "name": "Perry Street Brewing Co.", + "brewery_type": "micro", + "address_1": "1025 S Perry St # 2", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99202-3464", + "country": "United States", + "longitude": -117.3898022, + "latitude": 47.64605073, + "phone": "5092792820", + "website_url": "http://www.perrystreetbrewing.com", + "state": "Washington", + "street": "1025 S Perry St # 2" + }, + { + "id": "8c24c15e-9b95-440e-94e4-72e5a0de9a27", + "name": "Perrylodgic Brewing Company", + "brewery_type": "micro", + "address_1": "3465 US-79 N", + "address_2": null, + "address_3": null, + "city": "Paris", + "state_province": "Tennessee", + "postal_code": "38242-9998", + "country": "United States", + "longitude": -88.3268031, + "latitude": 36.2785418, + "phone": "7314077100", + "website_url": "http://www.perrylodgic.com", + "state": "Tennessee", + "street": "3465 US-79 N" + }, + { + "id": "71398a4c-3cfb-41ef-8869-738b39958d46", + "name": "Persimmon Hollow Brewing", + "brewery_type": "micro", + "address_1": "111 W Georgia Ave", + "address_2": null, + "address_3": null, + "city": "Deland", + "state_province": "Florida", + "postal_code": "32720-5406", + "country": "United States", + "longitude": -81.30372058, + "latitude": 29.02726822, + "phone": "3868737350", + "website_url": "http://www.persimmonhollowbrewing.com", + "state": "Florida", + "street": "111 W Georgia Ave" + }, + { + "id": "6d9f7f4e-e492-4647-8e5f-89612b4fcbd9", + "name": "Pesky Pelican Brewpub", + "brewery_type": "brewpub", + "address_1": "923 72nd St N", + "address_2": null, + "address_3": null, + "city": "Saint Petersburg", + "state_province": "Florida", + "postal_code": "33710-4666", + "country": "United States", + "longitude": -82.73743948, + "latitude": 27.78248193, + "phone": "7273029600", + "website_url": "http://www.peskypelicanbrewpub.com", + "state": "Florida", + "street": "923 72nd St N" + }, + { + "id": "1b2570c6-9396-41a3-8247-f2b9a0231018", + "name": "Peter B's Brewpub", + "brewery_type": "brewpub", + "address_1": "2 Portola Plz Behind The Portola Hotel", + "address_2": null, + "address_3": null, + "city": "Monterey", + "state_province": "California", + "postal_code": "93940-2419", + "country": "United States", + "longitude": -121.8947298, + "latitude": 36.60253247, + "phone": "8316492699", + "website_url": "http://www.peterbsbrewpub.com", + "state": "California", + "street": "2 Portola Plz Behind The Portola Hotel" + }, + { + "id": "ce4a02f3-1dd0-4063-bf4b-ffef297c2bbc", + "name": "Peticolas Brewing Co", + "brewery_type": "micro", + "address_1": "2026 Farrington St", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75207-6616", + "country": "United States", + "longitude": -96.83031882, + "latitude": 32.79677687, + "phone": "2142347600", + "website_url": "http://www.peticolasbrewing.com", + "state": "Texas", + "street": "2026 Farrington St" + }, + { + "id": "067530c6-4848-4418-9a45-92dd720cc681", + "name": "Petoskey Brewing", + "brewery_type": "micro", + "address_1": "1844 M 119 Harbor-Petoskey Rd", + "address_2": null, + "address_3": null, + "city": "Petoskey", + "state_province": "Michigan", + "postal_code": "49770-9341", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2317532057", + "website_url": "http://www.petoskeybrewing.com", + "state": "Michigan", + "street": "1844 M 119 Harbor-Petoskey Rd" + }, + { + "id": "a929c6d4-0f33-4aa0-98c9-bc419b661c53", + "name": "Petrichor Brewing", + "brewery_type": "micro", + "address_1": "7434 Village Center Dr. ", + "address_2": null, + "address_3": null, + "city": "O Fallon", + "state_province": "Missouri", + "postal_code": "63368", + "country": "United States", + "longitude": -90.733123, + "latitude": 38.749498, + "phone": "6362654004", + "website_url": "http://www.petrichorbeer.com", + "state": "Missouri", + "street": "7434 Village Center Dr. " + }, + { + "id": "c9997ca5-9564-4374-b2b5-12ea56890eeb", + "name": "Petrucci Brothers Brewing Co", + "brewery_type": "micro", + "address_1": "911 5th Ave", + "address_2": null, + "address_3": null, + "city": "New Brighton", + "state_province": "Pennsylvania", + "postal_code": "15066-1923", + "country": "United States", + "longitude": -80.31190134, + "latitude": 40.73477504, + "phone": "7249872579", + "website_url": "http://www.petruccibrothers.com", + "state": "Pennsylvania", + "street": "911 5th Ave" + }, + { + "id": "ab15fe9b-7b80-4ba9-88e4-9bd9fafac949", + "name": "Petskull Brewing", + "brewery_type": "micro", + "address_1": "220 N 9th St", + "address_2": null, + "address_3": null, + "city": "Manitowoc", + "state_province": "Wisconsin", + "postal_code": "54220-4637", + "country": "United States", + "longitude": -87.65931012, + "latitude": 44.0940222, + "phone": "9209465670", + "website_url": "http://www.petskullbrewing.com", + "state": "Wisconsin", + "street": "220 N 9th St" + }, + { + "id": "d6058fcd-e918-4063-bd15-b96f4feade20", + "name": "PFriem Family Brewers", + "brewery_type": "regional", + "address_1": "707 Portway Ave Ste 101", + "address_2": null, + "address_3": null, + "city": "Hood River", + "state_province": "Oregon", + "postal_code": "97031-1218", + "country": "United States", + "longitude": -121.51797, + "latitude": 45.714751, + "phone": "5413210490", + "website_url": "http://www.pfriembeer.com", + "state": "Oregon", + "street": "707 Portway Ave Ste 101" + }, + { + "id": "aa8a1144-494e-4f48-8793-da510818686f", + "name": "Phantom Ales", + "brewery_type": "brewpub", + "address_1": "1211 N Las Brisas St", + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92806-1823", + "country": "United States", + "longitude": -117.8667466, + "latitude": 33.8540325, + "phone": "7146309463", + "website_url": "http://www.phantomales.com", + "state": "California", + "street": "1211 N Las Brisas St" + }, + { + "id": "2b3ee6dd-fca7-4375-9d38-32fedfd00ada", + "name": "Phantom Canyon Brewing Co", + "brewery_type": "brewpub", + "address_1": "2 E Pikes Peak Ave", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80903-1504", + "country": "United States", + "longitude": -104.8249314, + "latitude": 38.83423935, + "phone": "7196352800", + "website_url": "http://www.phantomcanyon.com", + "state": "Colorado", + "street": "2 E Pikes Peak Ave" + }, + { + "id": "adbc4ae2-16a5-4a7e-9303-c2c577021217", + "name": "Phantom Carriage Brewery", + "brewery_type": "brewpub", + "address_1": "18525 S Main St", + "address_2": null, + "address_3": null, + "city": "Gardena", + "state_province": "California", + "postal_code": "90248-4611", + "country": "United States", + "longitude": -118.2760638, + "latitude": 33.86203125, + "phone": "3105385834", + "website_url": "http://www.phantomcarriage.com", + "state": "California", + "street": "18525 S Main St" + }, + { + "id": "07efdf5b-f8a3-4091-8777-9bc9cb85c92b", + "name": "Phantom Horse Brewing", + "brewery_type": "brewpub", + "address_1": "56-A Fieldstone Village Dr", + "address_2": null, + "address_3": null, + "city": "Rock Spring", + "state_province": "Georgia", + "postal_code": "30739", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4233144978", + "website_url": "http://www.phantomhorsebrewing.com", + "state": "Georgia", + "street": "56-A Fieldstone Village Dr" + }, + { + "id": "aa245b87-5b85-4101-9dc1-6e3100d15f71", + "name": "Phase 2 Brewing", + "brewery_type": "brewpub", + "address_1": "19382 Diamond Lake Drive", + "address_2": null, + "address_3": null, + "city": "Lansdowne", + "state_province": "Virginia", + "postal_code": "20176", + "country": "United States", + "longitude": -77.4939698, + "latitude": 39.0808996, + "phone": "5409870219", + "website_url": "http://www.phase2brewing.com", + "state": "Virginia", + "street": "19382 Diamond Lake Drive" + }, + { + "id": "586fac27-7b0e-4071-b9d3-765c35503384", + "name": "Phat Brew Club", + "brewery_type": "micro", + "address_1": "102 Railway Street", + "address_2": null, + "address_3": null, + "city": "West Perth", + "state_province": "WA", + "postal_code": "6005", + "country": "Australia", + "longitude": 115.8449979, + "latitude": -31.944271, + "phone": null, + "website_url": "http://www.phatbrewclub.com/", + "state": "WA", + "street": "102 Railway Street" + }, + { + "id": "d1646dcc-bbf1-4ffe-ac3f-47e3e7031bf1", + "name": "Phat Fish Brewing", + "brewery_type": "brewpub", + "address_1": "1031 W Villard St", + "address_2": null, + "address_3": null, + "city": "Dickinson", + "state_province": "North Dakota", + "postal_code": "58601-4845", + "country": "United States", + "longitude": -102.8019477, + "latitude": 46.88119882, + "phone": "7017610170", + "website_url": "http://www.phatfishbrewing.com", + "state": "North Dakota", + "street": "1031 W Villard St" + }, + { + "id": "911d3c95-36af-45ad-b01e-8bf8e76e94be", + "name": "Philadelphia Brewing Co", + "brewery_type": "micro", + "address_1": "2423 Amber St", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19125-1606", + "country": "United States", + "longitude": -75.12769991, + "latitude": 39.98282736, + "phone": "2154272739", + "website_url": "http://www.philadelphiabrewing.com", + "state": "Pennsylvania", + "street": "2423 Amber St" + }, + { + "id": "f66ca9a9-2128-41b0-ac3d-3b1805a91dd1", + "name": "Philipsburg Brewing Co", + "brewery_type": "micro", + "address_1": "106 Brewery Road", + "address_2": null, + "address_3": null, + "city": "Philipsburg", + "state_province": "Montana", + "postal_code": "59858", + "country": "United States", + "longitude": -113.2871976, + "latitude": 46.3299328, + "phone": "4068592739", + "website_url": null, + "state": "Montana", + "street": "106 Brewery Road" + }, + { + "id": "8d111536-e72d-4f2e-86b6-f3c1585e21a4", + "name": "Philipsburg Brewing Co", + "brewery_type": "micro", + "address_1": "101 W Broadway", + "address_2": null, + "address_3": null, + "city": "Philipsburg", + "state_province": "Montana", + "postal_code": "59858", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4068592739", + "website_url": "http://www.philipsburgbrewingcompany.com", + "state": "Montana", + "street": "101 W Broadway" + }, + { + "id": "00e3e4f3-9883-42dd-8297-1c32b2525df8", + "name": "Phillip Island Brewing Co.", + "brewery_type": "micro", + "address_1": "1821 Phillip Island Road", + "address_2": null, + "address_3": null, + "city": "Cowes", + "state_province": "VIC", + "postal_code": "3922", + "country": "Australia", + "longitude": 145.261352, + "latitude": -38.4864802, + "phone": "+61 3 5952 1666", + "website_url": "http://www.phillipislandbrewingco.com.au/", + "state": "VIC", + "street": "1821 Phillip Island Road" + }, + { + "id": "8072ed7c-84cc-42e5-b6a4-c749b60bae8f", + "name": "Philter", + "brewery_type": "micro", + "address_1": "92-98 Sydenham Road", + "address_2": null, + "address_3": null, + "city": "Marrickville", + "state_province": "NSW", + "postal_code": "2204", + "country": "Australia", + "longitude": 151.1626457, + "latitude": -33.9102514, + "phone": null, + "website_url": "http://www.philterbrewing.com/", + "state": "NSW", + "street": "92-98 Sydenham Road" + }, + { + "id": "5866adf3-58e0-4f88-b47b-9b744905db8f", + "name": "Philter Brewing", + "brewery_type": "micro", + "address_1": "92-98 Sydenham Road", + "address_2": null, + "address_3": null, + "city": "Marrickville", + "state_province": "NSW", + "postal_code": "2204", + "country": "Australia", + "longitude": 151.1626457, + "latitude": -33.9102514, + "phone": null, + "website_url": "http://www.philterbrewing.com/", + "state": "NSW", + "street": "92-98 Sydenham Road" + }, + { + "id": "75e58a42-3f5b-416e-b7e1-abd3f1207bd0", + "name": "Picacho Peak Brewing Company", + "brewery_type": "brewpub", + "address_1": "3900 W Picacho Ave", + "address_2": null, + "address_3": null, + "city": "Las Cruces", + "state_province": "New Mexico", + "postal_code": "88007", + "country": "United States", + "longitude": -106.8024024, + "latitude": 32.3118566, + "phone": "5756806394", + "website_url": "http://www.picachopeakbrewery.com", + "state": "New Mexico", + "street": "3900 W Picacho Ave" + }, + { + "id": "f3441b03-69b9-4e95-8171-347ec813a20c", + "name": "Pickled Monkey Brewing", + "brewery_type": "micro", + "address_1": "127 Victoria Road", + "address_2": null, + "address_3": null, + "city": "Marrickville", + "state_province": "NSW", + "postal_code": "2204", + "country": "Australia", + "longitude": 151.1647312, + "latitude": -33.906241, + "phone": "+61 2 9510 1140", + "website_url": "https://www.pickledmonkey.beer/", + "state": "NSW", + "street": "127 Victoria Road" + }, + { + "id": "7db7b882-21a1-47fa-a2a2-75449c83d328", + "name": "Pie & Pints Restaurant & Brewery", + "brewery_type": "contract", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Oxford", + "state_province": "Connecticut", + "postal_code": "06478", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2035731743", + "website_url": "http://www.piesandpints.biz", + "state": "Connecticut", + "street": null + }, + { + "id": "48140e90-91e9-483e-b66f-99b99b1448e9", + "name": "Piece Brewery", + "brewery_type": "brewpub", + "address_1": "1927 W North Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60622-1316", + "country": "United States", + "longitude": -87.6760621, + "latitude": 41.9102937, + "phone": "7737724422", + "website_url": "http://www.piecechicago.com", + "state": "Illinois", + "street": "1927 W North Ave" + }, + { + "id": "dd41a944-6c7c-4a68-9ca3-f584a5e4d545", + "name": "Piedmont Brewery and Kitchen", + "brewery_type": "brewpub", + "address_1": "450-B Third Street", + "address_2": null, + "address_3": null, + "city": "Macon", + "state_province": "Georgia", + "postal_code": "31201", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4782542337", + "website_url": "http://www.piedmontbrerwery.com", + "state": "Georgia", + "street": "450-B Third Street" + }, + { + "id": "389ffa15-0ced-4099-b832-10da54e9add9", + "name": "Pig Iron Brewing Co", + "brewery_type": "brewpub", + "address_1": "40 E Front St", + "address_2": null, + "address_3": null, + "city": "Marietta", + "state_province": "Pennsylvania", + "postal_code": "17547-1538", + "country": "United States", + "longitude": -76.55317283, + "latitude": 40.05569372, + "phone": "7176041161", + "website_url": "http://www.pigironbrewingco.com", + "state": "Pennsylvania", + "street": "40 E Front St" + }, + { + "id": "80f35301-8149-4307-affe-e6e4442b2df3", + "name": "Pig Island Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Bradford", + "state_province": "Pennsylvania", + "postal_code": "16701-1304", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8143667612", + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "c8d3c288-3993-4c62-8cf7-8d0a74af9350", + "name": "Pig Minds Brewing Co", + "brewery_type": "brewpub", + "address_1": "4080 Steele Dr", + "address_2": null, + "address_3": null, + "city": "Machesney Park", + "state_province": "Illinois", + "postal_code": "61115-8358", + "country": "United States", + "longitude": -89.0232046, + "latitude": 42.3692457, + "phone": "8159687447", + "website_url": "http://www.pigmindsbrewing.com", + "state": "Illinois", + "street": "4080 Steele Dr" + }, + { + "id": "86e9610f-9d70-45d5-a43a-cdf824923728", + "name": "Pig Pounder Brewery", + "brewery_type": "micro", + "address_1": "1107 Grecade St", + "address_2": null, + "address_3": null, + "city": "Greensboro", + "state_province": "North Carolina", + "postal_code": "27408-8709", + "country": "United States", + "longitude": -79.804196, + "latitude": 36.084466, + "phone": "3365531290", + "website_url": "http://www.pigpounder.com", + "state": "North Carolina", + "street": "1107 Grecade St" + }, + { + "id": "07fe858e-1a42-477e-ab51-dac36447ae8a", + "name": "Pigeon Head Brewery", + "brewery_type": "micro", + "address_1": "840 E 5th St", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89512-3508", + "country": "United States", + "longitude": -119.802685, + "latitude": 39.53337578, + "phone": "7752766766", + "website_url": "http://www.pigeonheadbrewery.com", + "state": "Nevada", + "street": "840 E 5th St" + }, + { + "id": "88293b57-bdc4-4fb7-afb4-1de24a9e82e9", + "name": "Pigeon Hill Brewery Production Facility", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Muskegon", + "state_province": "Michigan", + "postal_code": "49440-1109", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": null + }, + { + "id": "c7296318-3def-485e-9f58-b76d2db04b25", + "name": "Pigeon Hill Brewing Co", + "brewery_type": "micro", + "address_1": "500 W Western Ave Ste 100", + "address_2": null, + "address_3": null, + "city": "Muskegon", + "state_province": "Michigan", + "postal_code": "49440-1000", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2313755184", + "website_url": "http://www.pigeonhillbrew.com", + "state": "Michigan", + "street": "500 W Western Ave Ste 100" + }, + { + "id": "adb1a784-30f8-4e7f-a43c-2759087c4dc7", + "name": "Pigeon River Brewing", + "brewery_type": "brewpub", + "address_1": "1103 N Main St", + "address_2": null, + "address_3": null, + "city": "Marion", + "state_province": "Wisconsin", + "postal_code": "54950-9182", + "country": "United States", + "longitude": -88.88978978, + "latitude": 44.67986485, + "phone": "7152567721", + "website_url": "http://www.pigeonriverbrewing.com", + "state": "Wisconsin", + "street": "1103 N Main St" + }, + { + "id": "6f2798c9-c9ac-48bb-b220-d48bdc3bc5ae", + "name": "Pigs Eye Pub", + "brewery_type": "proprietor", + "address_1": "10107 Bridgewater Pkwy", + "address_2": null, + "address_3": null, + "city": "Woodbury", + "state_province": "Minnesota", + "postal_code": "55129-8587", + "country": "United States", + "longitude": -92.90133962, + "latitude": 44.92277843, + "phone": "6517341661", + "website_url": "http://www.pigseyebeer.com", + "state": "Minnesota", + "street": "10107 Bridgewater Pkwy" + }, + { + "id": "886981c9-f7df-4bc6-8d39-193176fe3d15", + "name": "Pigsfly Kitchen and Bar", + "brewery_type": "bar", + "address_1": "19 East Coast Road", + "address_2": null, + "address_3": "#01-03", + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "428746", + "country": "Singapore", + "longitude": 1.3045323352254, + "latitude": 103.9024138, + "phone": "+65 6348 2283", + "website_url": null, + "state": "Singapore", + "street": "19 East Coast Road" + }, + { + "id": "4f4eb2c0-5053-4232-a3b4-eaa37434ef33", + "name": "Pigskin Brewing Company", + "brewery_type": "brewpub", + "address_1": "81 Mill St Ste 150", + "address_2": null, + "address_3": null, + "city": "Gahanna", + "state_province": "Ohio", + "postal_code": "43230-1718", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6149449311", + "website_url": null, + "state": "Ohio", + "street": "81 Mill St Ste 150" + }, + { + "id": "a98948f7-7271-475a-b681-fb52c09d8506", + "name": "Pike 51 Brewing", + "brewery_type": "brewpub", + "address_1": "3768 Chicago Dr", + "address_2": null, + "address_3": null, + "city": "Hudsonville", + "state_province": "Michigan", + "postal_code": "49426-1637", + "country": "United States", + "longitude": -85.87944718, + "latitude": 42.8606644, + "phone": "6166624589", + "website_url": "http://www.hudsonvillewinery.com", + "state": "Michigan", + "street": "3768 Chicago Dr" + }, + { + "id": "b8b7963b-ef34-4b45-b9e2-402504abfa23", + "name": "Pike Brewing Co", + "brewery_type": "micro", + "address_1": "1415 1st Ave", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98101-2017", + "country": "United States", + "longitude": -122.3397179, + "latitude": 47.6082151, + "phone": "2066223373", + "website_url": "http://www.pikebrewing.com", + "state": "Washington", + "street": "1415 1st Ave" + }, + { + "id": "a051ba94-9f47-4313-9dc7-ebb8ad2a5069", + "name": "Pikes Beer Co.", + "brewery_type": "micro", + "address_1": "233 Polish Hill Road", + "address_2": null, + "address_3": null, + "city": "Polish Hill River", + "state_province": "SA", + "postal_code": "5453", + "country": "Australia", + "longitude": 138.675003, + "latitude": -33.8874435, + "phone": "+61 8 8843 4370", + "website_url": "http://www.pikesbeercompany.com.au/", + "state": "SA", + "street": "233 Polish Hill Road" + }, + { + "id": "d99db2dc-a8fa-4027-8afd-4deae0112c88", + "name": "Pikes Peak Brewing", + "brewery_type": "micro", + "address_1": "1756 Lake Woodmoor Dr", + "address_2": null, + "address_3": null, + "city": "Monument", + "state_province": "Colorado", + "postal_code": "80132-9215", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7192084098", + "website_url": "http://www.pikespeakbrewing.com", + "state": "Colorado", + "street": "1756 Lake Woodmoor Dr" + }, + { + "id": "9078765f-0ed2-4b9e-8ab4-108885f696df", + "name": "Pileated Brewing Co", + "brewery_type": "micro", + "address_1": "2290 South Industrial Highway", + "address_2": null, + "address_3": null, + "city": "Ann Arbor", + "state_province": "Michigan", + "postal_code": "48104", + "country": "United States", + "longitude": -83.73385304, + "latitude": 42.2528625, + "phone": "7343696290", + "website_url": "http://www.pileatedbrewing.com", + "state": "Michigan", + "street": "2290 South Industrial Highway" + }, + { + "id": "e9841166-8a2c-481b-8fbf-0a8c50bc31b6", + "name": "Pilot Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28205", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "North Carolina", + "street": null + }, + { + "id": "50368316-c57b-44d3-bfaa-b4d1c4cc9370", + "name": "Pilothouse Brewing Company", + "brewery_type": "closed", + "address_1": "4233 S Buckley Rd", + "address_2": null, + "address_3": null, + "city": "Aurora", + "state_province": "Colorado", + "postal_code": "80013-2947", + "country": "United States", + "longitude": -104.7915508, + "latitude": 39.63993222, + "phone": "3039944971", + "website_url": "http://www.pilothousebrewco.com", + "state": "Colorado", + "street": "4233 S Buckley Rd" + }, + { + "id": "6040935f-f4dc-4318-b456-502caa825118", + "name": "Pin-up Beers Ltd", + "brewery_type": "micro", + "address_1": "Manor Hall Road", + "address_2": null, + "address_3": null, + "city": "Brighton", + "state_province": "East Sussex", + "postal_code": "BN42 4NH", + "country": "England", + "longitude": -0.220415, + "latitude": 50.835048, + "phone": "1273411127", + "website_url": "https://www.pinupbrewingco.com/", + "state": "East Sussex", + "street": "Manor Hall Road" + }, + { + "id": "640a31f6-7697-4b49-a990-ff796588a283", + "name": "Pine and Palm Brewing", + "brewery_type": "micro", + "address_1": "352 W Bedford Ave Ste 102", + "address_2": null, + "address_3": null, + "city": "Fresno", + "state_province": "California", + "postal_code": "93711-6079", + "country": "United States", + "longitude": -119.7978837, + "latitude": 36.84630567, + "phone": null, + "website_url": "http://www.pineandpalmbrewing.com", + "state": "California", + "street": "352 W Bedford Ave Ste 102" + }, + { + "id": "c94c18cf-8bb3-46d7-9703-1d72bb920feb", + "name": "Pine Island Brewing", + "brewery_type": "micro", + "address_1": "682 County Route 1 Ste B", + "address_2": null, + "address_3": null, + "city": "Pine Island", + "state_province": "New York", + "postal_code": "10969-1715", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8452882646", + "website_url": "http://www.pineislandbeer.com", + "state": "New York", + "street": "682 County Route 1 Ste B" + }, + { + "id": "5dd40d8f-6b42-4f9c-9e8b-094a91c1e436", + "name": "Pine Street Brewery", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94109-4929", + "country": "United States", + "longitude": -122.4192363, + "latitude": 37.7792808, + "phone": "4157444062", + "website_url": "http://www.pinestreetbrewery.com", + "state": "California", + "street": null + }, + { + "id": "a418742c-1196-4602-8a28-6f4f4203d82b", + "name": "Pinehurst Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Pinehurst", + "state_province": "North Carolina", + "postal_code": "28374", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "North Carolina", + "street": null + }, + { + "id": "3882eece-5d4c-4783-89dc-03717599fcdd", + "name": "Pinehurst Resort", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Pinehurst", + "state_province": "North Carolina", + "postal_code": "28374", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9102358703", + "website_url": null, + "state": "North Carolina", + "street": null + }, + { + "id": "d6ad6491-193e-48bb-b785-467752117b86", + "name": "Pinelands Brewing", + "brewery_type": "micro", + "address_1": "140 7th Ave Unit 15", + "address_2": null, + "address_3": null, + "city": "Little Egg Harbor Twp", + "state_province": "New Jersey", + "postal_code": "08087-4259", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6092966169", + "website_url": "http://www.pinelandsbrewing.com", + "state": "New Jersey", + "street": "140 7th Ave Unit 15" + }, + { + "id": "1d263d88-3e19-4945-864d-fdd8dd5cb715", + "name": "Pinellas Ale Works", + "brewery_type": "micro", + "address_1": "1962 1st Ave S", + "address_2": null, + "address_3": null, + "city": "Saint Petersburg", + "state_province": "Florida", + "postal_code": "33712-1345", + "country": "United States", + "longitude": -82.6597329, + "latitude": 27.77012863, + "phone": "7272350970", + "website_url": "http://www.pawbeer.com", + "state": "Florida", + "street": "1962 1st Ave S" + }, + { + "id": "d93bb3a9-c080-4c8a-8a4e-5181fc15b35a", + "name": "Pinetop Brewing Company", + "brewery_type": "brewpub", + "address_1": "159 W White Mountain Blvd", + "address_2": null, + "address_3": null, + "city": "Lakeside", + "state_province": "Arizona", + "postal_code": "85929-6527", + "country": "United States", + "longitude": -109.9561769, + "latitude": 34.14301231, + "phone": "9283581971", + "website_url": "http://www.pinetopbeer.com", + "state": "Arizona", + "street": "159 W White Mountain Blvd" + }, + { + "id": "bfb0e8c9-fed1-4332-9fff-c4b45b49a7bf", + "name": "Piney River Brewing Company", + "brewery_type": "micro", + "address_1": "15194 Walnut Grove Dr", + "address_2": null, + "address_3": null, + "city": "Bucyrus", + "state_province": "Missouri", + "postal_code": "65444-9002", + "country": "United States", + "longitude": -92.01768537, + "latitude": 37.32148798, + "phone": "4179674001", + "website_url": "http://www.pineyriverbrewing.com", + "state": "Missouri", + "street": "15194 Walnut Grove Dr" + }, + { + "id": "2c7c2d1e-c48c-4842-9753-a0bb88a605c7", + "name": "Piney River Taproom", + "brewery_type": "brewpub", + "address_1": "326 US Rte 66 E", + "address_2": null, + "address_3": null, + "city": "Waynesville", + "state_province": "Missouri", + "postal_code": "65583", + "country": "United States", + "longitude": -92.193612, + "latitude": 37.87597, + "phone": "5734332739", + "website_url": "http://www.pineyriverbrewing.com", + "state": "Missouri", + "street": "326 US Rte 66 E" + }, + { + "id": "3802e9d2-1bbd-4a80-a045-ab7e15c28113", + "name": "Pinglehead Brewery / Brewer's Pizza", + "brewery_type": "brewpub", + "address_1": "14B Blanding Blvd Ste B", + "address_2": null, + "address_3": null, + "city": "Orange Park", + "state_province": "Florida", + "postal_code": "32073-2232", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9042765159", + "website_url": "http://www.brewerspizza.com", + "state": "Florida", + "street": "14B Blanding Blvd Ste B" + }, + { + "id": "dd87a0e6-c13b-49ac-ad00-e4ee2ca428be", + "name": "Pint", + "brewery_type": "brewpub", + "address_1": "332 Clay St", + "address_2": null, + "address_3": null, + "city": "Kerrville", + "state_province": "Texas", + "postal_code": "78028-4502", + "country": "United States", + "longitude": -99.141, + "latitude": 30.0494005, + "phone": "8303157468", + "website_url": "http://www.pintandplow.com", + "state": "Texas", + "street": "332 Clay St" + }, + { + "id": "9022e968-f018-46f2-8027-ad91feba9c22", + "name": "Pint 9 Brewing Co", + "brewery_type": "micro", + "address_1": "10411 Portal Rd", + "address_2": null, + "address_3": null, + "city": "La Vista", + "state_province": "Nebraska", + "postal_code": "68128", + "country": "United States", + "longitude": -96.07590229, + "latitude": 41.17191269, + "phone": "4023591418", + "website_url": "https://pintninebrewing.com", + "state": "Nebraska", + "street": "10411 Portal Rd" + }, + { + "id": "590c1861-3175-4f4f-8b2d-051d2db81294", + "name": "Pinthouse Pizza North", + "brewery_type": "brewpub", + "address_1": "4729 Burnet Rd", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78756-2826", + "country": "United States", + "longitude": -97.7390631, + "latitude": 30.3187523, + "phone": null, + "website_url": "http://www.pinthousepizza.com", + "state": "Texas", + "street": "4729 Burnet Rd" + }, + { + "id": "6bf22b2c-4836-4d2f-8f0a-88c5f40a0a56", + "name": "Pinthouse Pizza Round Rock", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Round Rock", + "state_province": "Texas", + "postal_code": "78681", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "9a8b0b19-2a32-4f4e-97c6-890cb9bf42b9", + "name": "Pinthouse Pizza South", + "brewery_type": "brewpub", + "address_1": "4236 S Lamar Blvd", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78704-7905", + "country": "United States", + "longitude": -97.7958917, + "latitude": 30.2361072, + "phone": "5125685300", + "website_url": "http://www.pinthousepizza.com", + "state": "Texas", + "street": "4236 S Lamar Blvd" + }, + { + "id": "b44103c8-48e8-4156-8367-4381e34d3f87", + "name": "Pints Brewery and Sports Bar", + "brewery_type": "brewpub", + "address_1": "2100 S Casino Dr", + "address_2": null, + "address_3": null, + "city": "Laughlin", + "state_province": "Nevada", + "postal_code": "89029", + "country": "United States", + "longitude": -114.574559, + "latitude": 35.157448, + "phone": "7022984000", + "website_url": "http://www.coloradobelle.com", + "state": "Nevada", + "street": "2100 S Casino Dr" + }, + { + "id": "6ed57500-9e54-4468-bbc2-4b8b113c6ebe", + "name": "PINTS Brewing Company and Urban Taproom", + "brewery_type": "micro", + "address_1": "412 NW 5th Ave Suite 200", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97209-3893", + "country": "United States", + "longitude": -122.6754225, + "latitude": 45.5261944, + "phone": "5035642739", + "website_url": "http://www.pintsbrewing.com", + "state": "Oregon", + "street": "412 NW 5th Ave Suite 200" + }, + { + "id": "26c5bf08-f1a2-4e4f-b092-e802ee69d039", + "name": "Pints Pub Brewery and Freehouse", + "brewery_type": "brewpub", + "address_1": "221 W 13th Ave", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80204-2711", + "country": "United States", + "longitude": -104.9908538, + "latitude": 39.737018, + "phone": "3035347543", + "website_url": "http://www.pintspub.com", + "state": "Colorado", + "street": "221 W 13th Ave" + }, + { + "id": "b649ace0-0985-41c2-828e-807cbee21bcc", + "name": "Pinups & Pints", + "brewery_type": "micro", + "address_1": "10963 Lower Valley Pike", + "address_2": null, + "address_3": null, + "city": "Medway", + "state_province": "Ohio", + "postal_code": "45341-9706", + "country": "United States", + "longitude": -84.045082, + "latitude": 39.860912, + "phone": "9378491400", + "website_url": "http://www.pinupsandpints.com", + "state": "Ohio", + "street": "10963 Lower Valley Pike" + }, + { + "id": "92b6c4b8-99ed-4d68-be85-a0d00a6424c7", + "name": "Pioneer Brewing", + "brewery_type": "micro", + "address_1": "339 South Bowan Park Road", + "address_2": null, + "address_3": null, + "city": "Bowan Park", + "state_province": "NSW", + "postal_code": "2864", + "country": "Australia", + "longitude": 148.8104214, + "latitude": -33.3398969, + "phone": null, + "website_url": null, + "state": "NSW", + "street": "339 South Bowan Park Road" + }, + { + "id": "e61d8398-eb60-49f0-a3e2-92534c5bc02a", + "name": "Pipe Dream Brewing", + "brewery_type": "closed", + "address_1": "49 Harvey Rd Unit 4", + "address_2": null, + "address_3": null, + "city": "Londonderry", + "state_province": "New Hampshire", + "postal_code": "03053-7442", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6034040751", + "website_url": "http://www.pipedreambrewingnh.com", + "state": "New Hampshire", + "street": "49 Harvey Rd Unit 4" + }, + { + "id": "e195223f-feb9-4782-9ce8-98a48b15ca2a", + "name": "Pipeworks Brewing Co", + "brewery_type": "micro", + "address_1": "3912 W McLean Ave Ste B", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60647-5973", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8479109493", + "website_url": "http://pipeworksbrewing.com", + "state": "Illinois", + "street": "3912 W McLean Ave Ste B" + }, + { + "id": "cf3bbe8d-9956-48c4-a576-9e691b26c50e", + "name": "Pipeworks Brewing Co", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60647-5972", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8479109493", + "website_url": null, + "state": "Illinois", + "street": null + }, + { + "id": "e21b6aea-a78f-498d-9bb0-469b4deeac4b", + "name": "Pirate Life Brewing", + "brewery_type": "large", + "address_1": "18 Baker Street", + "address_2": null, + "address_3": null, + "city": "Port Adelaide", + "state_province": "SA", + "postal_code": "5015", + "country": "Australia", + "longitude": 138.5096616, + "latitude": -34.8445271, + "phone": "+61 8 8317 2111", + "website_url": "https://piratelife.com.au/", + "state": "SA", + "street": "18 Baker Street" + }, + { + "id": "b9ffed7c-9569-4f18-82a6-b51b59dd5bb8", + "name": "Pisgah Brewing Co", + "brewery_type": "micro", + "address_1": "150 Eastside Dr", + "address_2": null, + "address_3": null, + "city": "Black Mountain", + "state_province": "North Carolina", + "postal_code": "28711-8208", + "country": "United States", + "longitude": -82.35826, + "latitude": 35.6079376, + "phone": "8286690190", + "website_url": "http://www.pisgahbrewing.com", + "state": "North Carolina", + "street": "150 Eastside Dr" + }, + { + "id": "1b47f02a-b009-4856-8a94-1048e59ecc1e", + "name": "Pismo Brewing Co", + "brewery_type": "micro", + "address_1": "500 Cypress St", + "address_2": null, + "address_3": null, + "city": "Pismo Beach", + "state_province": "California", + "postal_code": "93449-2624", + "country": "United States", + "longitude": -120.6409192, + "latitude": 35.13908295, + "phone": "8052956200", + "website_url": "http://www.pismobrew.com", + "state": "California", + "street": "500 Cypress St" + }, + { + "id": "1d26e5a5-2e88-45d7-94ef-0e10c85cecde", + "name": "Pitchers Sports Restaurant and Brewery", + "brewery_type": "brewpub", + "address_1": "1100 W Drake Rd", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80526-6008", + "country": "United States", + "longitude": -105.0973959, + "latitude": 40.55306785, + "phone": "9704935374", + "website_url": "http://www.pitchersbrewery.com", + "state": "Colorado", + "street": "1100 W Drake Rd" + }, + { + "id": "0c0c9b38-f4da-4862-8f13-838adfe16c7f", + "name": "Pitchfork Brewing", + "brewery_type": "micro", + "address_1": "709 Rodeo Dr Ste 104", + "address_2": null, + "address_3": null, + "city": "Hudson", + "state_province": "Wisconsin", + "postal_code": "54016-4700", + "country": "United States", + "longitude": -92.68354304, + "latitude": 44.9654252, + "phone": "7152453675", + "website_url": "http://www.pitchforkbrewing.com", + "state": "Wisconsin", + "street": "709 Rodeo Dr Ste 104" + }, + { + "id": "5c29c1ec-f2dd-4b73-b9be-b89a91c94dae", + "name": "Pitt Street Brewing Company", + "brewery_type": "micro", + "address_1": "630 S Pitt St", + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "North Carolina", + "postal_code": "27834-3159", + "country": "United States", + "longitude": -77.37694822, + "latitude": 35.6095883, + "phone": "2522274151", + "website_url": "http://www.pittstreetbrewing.com", + "state": "North Carolina", + "street": "630 S Pitt St" + }, + { + "id": "14e42687-7706-4eda-aec6-739577141d69", + "name": "Pittsburgh Brewing Co", + "brewery_type": "contract", + "address_1": "3340 Liberty Ave", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15201-1394", + "country": "United States", + "longitude": -79.96570261, + "latitude": 40.46161288, + "phone": "4126827400", + "website_url": "http://www.pittsburghbrewing.com", + "state": "Pennsylvania", + "street": "3340 Liberty Ave" + }, + { + "id": "f7860ee9-ed57-4b51-b919-5dd6a1e83b39", + "name": "PIVO Brewery", + "brewery_type": "micro", + "address_1": "101 Huber Dr", + "address_2": null, + "address_3": null, + "city": "Calmar", + "state_province": "Iowa", + "postal_code": "52132", + "country": "United States", + "longitude": -91.871483, + "latitude": 43.190941, + "phone": "5635621053", + "website_url": "http://www.pivoblepta.com", + "state": "Iowa", + "street": "101 Huber Dr" + }, + { + "id": "cbc413e8-2e23-4d6e-8a3b-2540e40222e8", + "name": "Pivot Brewing Company", + "brewery_type": "micro", + "address_1": "1400 Delaware Ave", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "Kentucky", + "postal_code": "40505", + "country": "United States", + "longitude": -84.470627, + "latitude": 38.038574, + "phone": "8592856778", + "website_url": "http://www.pivotbrewingcompany.com", + "state": "Kentucky", + "street": "1400 Delaware Ave" + }, + { + "id": "190d46ba-0081-44f8-b7be-b08f374d44ff", + "name": "Piwnica Świdnicka", + "brewery_type": "brewpub", + "address_1": "Rynek 50", + "address_2": null, + "address_3": null, + "city": "Wrocław", + "state_province": "dolnośląskie", + "postal_code": "50-996", + "country": "Poland", + "longitude": 17.0320275, + "latitude": 51.1095636, + "phone": null, + "website_url": null, + "state": "dolnośląskie", + "street": "Rynek 50" + }, + { + "id": "cf7d04c2-de19-4843-8e23-d58fe9a99720", + "name": "Pixeled Brewing Company", + "brewery_type": "micro", + "address_1": "1100 NP Ave #101", + "address_2": null, + "address_3": null, + "city": "Fargo", + "state_province": "North Dakota", + "postal_code": "58102-4794", + "country": "United States", + "longitude": -96.79606487, + "latitude": 46.87589876, + "phone": "7015320915", + "website_url": "http://pixeled.beer", + "state": "North Dakota", + "street": "1100 NP Ave #101" + }, + { + "id": "7293e7d3-7f88-4641-aec9-a23ba475a31d", + "name": "Pizza Beer Company", + "brewery_type": "contract", + "address_1": "5N404 Harvest Ln", + "address_2": null, + "address_3": null, + "city": "Saint Charles", + "state_province": "Illinois", + "postal_code": "60175-8242", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6303776888", + "website_url": "http://www.pizzabeer.net", + "state": "Illinois", + "street": "5N404 Harvest Ln" + }, + { + "id": "3b7c7089-8a91-4178-8e66-4438ff0d3e71", + "name": "Pizza Boy Brewing Co", + "brewery_type": "micro", + "address_1": "2240 Millennium Way", + "address_2": null, + "address_3": null, + "city": "Enola", + "state_province": "Pennsylvania", + "postal_code": "17025-1484", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7177283840", + "website_url": "http://www.pizzaboybrewing.com", + "state": "Pennsylvania", + "street": "2240 Millennium Way" + }, + { + "id": "40ce948c-ae39-44d4-b738-340a336484a5", + "name": "Pizza By Elizabeths", + "brewery_type": "brewpub", + "address_1": "3801 Kennett Pike", + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "Delaware", + "postal_code": "19807-2321", + "country": "United States", + "longitude": -75.59566848, + "latitude": 39.77560249, + "phone": "3026544478", + "website_url": "http://www.pizzabyelizabeths.com", + "state": "Delaware", + "street": "3801 Kennett Pike" + }, + { + "id": "ad83acf3-671c-404e-8b55-785f230286d7", + "name": "Pizza Port - Bressi Ranch", + "brewery_type": "regional", + "address_1": "2730 Gateway Rd", + "address_2": null, + "address_3": null, + "city": "Carlsbad", + "state_province": "California", + "postal_code": "92009-1730", + "country": "United States", + "longitude": -117.2510773, + "latitude": 33.12807761, + "phone": "7607071655", + "website_url": "http://www.pizzaport.com", + "state": "California", + "street": "2730 Gateway Rd" + }, + { + "id": "7de092fc-38a2-438d-8f0e-8bd0101bfad1", + "name": "Pizza Port Carlsbad", + "brewery_type": "regional", + "address_1": "571 Carlsbad Village Dr", + "address_2": null, + "address_3": null, + "city": "Carlsbad", + "state_province": "California", + "postal_code": "92008-2304", + "country": "United States", + "longitude": -117.3477152, + "latitude": 33.1598703, + "phone": "7607207007", + "website_url": "http://www.pizzaport.com", + "state": "California", + "street": "571 Carlsbad Village Dr" + }, + { + "id": "0f0b7b5b-b5ae-48f1-9339-5b363249da79", + "name": "Pizza Port Ocean Beach", + "brewery_type": "brewpub", + "address_1": "1956 Bacon St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92107-2844", + "country": "United States", + "longitude": -117.2503592, + "latitude": 32.74799385, + "phone": "6192244700", + "website_url": "http://www.pizzaport.com", + "state": "California", + "street": "1956 Bacon St" + }, + { + "id": "f80ad04c-4af6-4773-8a2b-499f1c57d4b5", + "name": "Pizza Port San Clemente", + "brewery_type": "brewpub", + "address_1": "301 N El Camino Real", + "address_2": null, + "address_3": null, + "city": "San Clemente", + "state_province": "California", + "postal_code": "92672-4716", + "country": "United States", + "longitude": -117.613484, + "latitude": 33.4288345, + "phone": "9499400005", + "website_url": "http://www.pizzaport.com", + "state": "California", + "street": "301 N El Camino Real" + }, + { + "id": "d2da8c9e-ad96-42c6-9876-88a10677a8c9", + "name": "Pizza Port Solana Beach", + "brewery_type": "brewpub", + "address_1": "135 N Highway 101", + "address_2": null, + "address_3": null, + "city": "Solana Beach", + "state_province": "California", + "postal_code": "92075-1128", + "country": "United States", + "longitude": -117.2737068, + "latitude": 32.9977749, + "phone": "8584817332", + "website_url": "http://www.pizzaport.com", + "state": "California", + "street": "135 N Highway 101" + }, + { + "id": "72641386-78bd-4ab2-b961-ce314019f2b7", + "name": "Placerville Brewing Co", + "brewery_type": "brewpub", + "address_1": "155 Placerville Dr", + "address_2": null, + "address_3": null, + "city": "Placerville", + "state_province": "California", + "postal_code": "95667-3909", + "country": "United States", + "longitude": -120.8370686, + "latitude": 38.7276787, + "phone": "5302959166", + "website_url": "http://www.placervillebrewing.com", + "state": "California", + "street": "155 Placerville Dr" + }, + { + "id": "1ab227f5-0399-4f11-9af9-e5d90794a752", + "name": "Plan 9 Alehouse", + "brewery_type": "brewpub", + "address_1": "155 E Grand Ave", + "address_2": null, + "address_3": null, + "city": "Escondido", + "state_province": "California", + "postal_code": "92025-2701", + "country": "United States", + "longitude": -117.0821707, + "latitude": 33.12121471, + "phone": "7604898817", + "website_url": "http://www.plan9alehouse.com", + "state": "California", + "street": "155 E Grand Ave" + }, + { + "id": "1be396ef-bd51-4cbd-985c-4618decd6732", + "name": "Plan Bee Farm Brewery", + "brewery_type": "micro", + "address_1": "115 Underhill Rd", + "address_2": null, + "address_3": null, + "city": "Poughkeepsie", + "state_province": "New York", + "postal_code": "12603-1045", + "country": "United States", + "longitude": -73.88591274, + "latitude": 41.71721405, + "phone": "7653078589", + "website_url": "http://www.planbeefarmbrewery.com", + "state": "New York", + "street": "115 Underhill Rd" + }, + { + "id": "2eb9c869-f6e1-4e5b-9876-86c96f2c49ef", + "name": "Planetary Brewing Company", + "brewery_type": "micro", + "address_1": "500 Polk St Ste 22", + "address_2": null, + "address_3": null, + "city": "Greenwood", + "state_province": "Indiana", + "postal_code": "46143-1638", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3172154941", + "website_url": "http://www.planetarybrewing.com", + "state": "Indiana", + "street": "500 Polk St Ste 22" + }, + { + "id": "0b10c02c-d787-402e-80b9-18c53977f62b", + "name": "Plank Town Brewing", + "brewery_type": "micro", + "address_1": "346 Main St", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Oregon", + "postal_code": "97477-5362", + "country": "United States", + "longitude": -123.0214468, + "latitude": 44.04627308, + "phone": "4582017039", + "website_url": "http://planktownbrewing.com", + "state": "Oregon", + "street": "346 Main St" + }, + { + "id": "2cbfe2ea-677a-4c4d-95b1-349556953fa2", + "name": "Platform Beer Co", + "brewery_type": "regional", + "address_1": "4125 Lorain Ave", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44113-3718", + "country": "United States", + "longitude": -81.7140045, + "latitude": 41.4799605, + "phone": "2162021386", + "website_url": "http://platformbeer.co", + "state": "Ohio", + "street": "4125 Lorain Ave" + }, + { + "id": "309b3fd3-b726-48a2-a141-5d1f3a71f493", + "name": "Platform Beer Co - Production Facility", + "brewery_type": "micro", + "address_1": "3506 Vega Ave", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44113-4900", + "country": "United States", + "longitude": -81.70785488, + "latitude": 41.47449194, + "phone": null, + "website_url": "http://www.platformbeer.co", + "state": "Ohio", + "street": "3506 Vega Ave" + }, + { + "id": "442750a7-de36-4035-969e-e73915939443", + "name": "Platform Beer Co Taproom", + "brewery_type": "micro", + "address_1": "408 N 6th St", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43215-2137", + "country": "United States", + "longitude": -82.9949497, + "latitude": 39.97173, + "phone": "6148262285", + "website_url": "http://www.platformbeer.co", + "state": "Ohio", + "street": "408 N 6th St" + }, + { + "id": "3230d289-2e6c-456c-b9c4-256dc17f44f1", + "name": "Platform Cincinnati", + "brewery_type": "micro", + "address_1": "916 Dalton Ave", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45203", + "country": "United States", + "longitude": -84.5362431, + "latitude": 39.10592991, + "phone": "2162021386", + "website_url": null, + "state": "Ohio", + "street": "916 Dalton Ave" + }, + { + "id": "6225d756-4684-46ba-8ef4-de19e6fb0d8c", + "name": "Platt Park Brewing Co.", + "brewery_type": "micro", + "address_1": "1875 S Pearl St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80210-3136", + "country": "United States", + "longitude": -104.9805967, + "latitude": 39.68267416, + "phone": "3039686674", + "website_url": "http://www.plattparkbrewing.com", + "state": "Colorado", + "street": "1875 S Pearl St" + }, + { + "id": "9248a7e6-08a5-41c0-bdba-e1bc9066a2e6", + "name": "Platte Creek Brewing Company", + "brewery_type": "micro", + "address_1": "311 Main St", + "address_2": null, + "address_3": null, + "city": "Geddes", + "state_province": "South Dakota", + "postal_code": "57342-7706", + "country": "United States", + "longitude": -98.68955885, + "latitude": 43.26576978, + "phone": "6053372994", + "website_url": "http://www.plattecreekbrewingcompany.com", + "state": "South Dakota", + "street": "311 Main St" + }, + { + "id": "bd03f69a-609b-4909-b616-2d1c4e3253ca", + "name": "Plattsburgh Brewing Co", + "brewery_type": "brewpub", + "address_1": "411 Route 3", + "address_2": null, + "address_3": null, + "city": "Plattsburgh", + "state_province": "New York", + "postal_code": "12901-6520", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5183246680", + "website_url": "http://www.plattsburghbrewingco.com", + "state": "New York", + "street": "411 Route 3" + }, + { + "id": "4d2fe5ef-0674-47fc-9c31-f88b75f2056a", + "name": "Platypus", + "brewery_type": "bar", + "address_1": "1 Raffles Link", + "address_2": "Citylink Mall", + "address_3": "#B1-23", + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "039393", + "country": "Singapore", + "longitude": 1.2930832027367, + "latitude": 103.85587808466, + "phone": "+65 6908 1773", + "website_url": "https://platypuscantina.net/", + "state": "Singapore", + "street": "1 Raffles Link" + }, + { + "id": "5b10f972-8107-42f7-8023-85845934982d", + "name": "Platypus", + "brewery_type": "bar", + "address_1": "693 East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "459058", + "country": "Singapore", + "longitude": 1.3119000040122, + "latitude": 103.921908, + "phone": "+65 6320 3601", + "website_url": "https://platypuscantina.net/", + "state": "Singapore", + "street": "693 East Coast Road" + }, + { + "id": "e4d21ea4-1561-47b0-bb15-876ab5defcfd", + "name": "Platypus Brewing", + "brewery_type": "brewpub", + "address_1": "1902 Washington Ave Ste E", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77007-6414", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8329858007", + "website_url": "http://www.platypusbrewing.com", + "state": "Texas", + "street": "1902 Washington Ave Ste E" + }, + { + "id": "73d3ba34-6019-4f55-ac56-068d10796b70", + "name": "Playalinda Brewing Company", + "brewery_type": "micro", + "address_1": "305 S Washington Ave", + "address_2": null, + "address_3": null, + "city": "Titusville", + "state_province": "Florida", + "postal_code": "32796-3539", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3212258978", + "website_url": "http://www.playalindabrewingcompany.com", + "state": "Florida", + "street": "305 S Washington Ave" + }, + { + "id": "c66dae41-8336-4879-af3a-190e804e6268", + "name": "Playalinda Brewing Company - Brix Project", + "brewery_type": "brewpub", + "address_1": "5220 S Washington Ave", + "address_2": null, + "address_3": null, + "city": "Titusville", + "state_province": "Florida", + "postal_code": "32780-7316", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.playalindabrewingcompany.com", + "state": "Florida", + "street": "5220 S Washington Ave" + }, + { + "id": "1adb74d8-a66e-48f7-9bfa-7fdd76d4dcaa", + "name": "Pleasure House Brewing", + "brewery_type": "micro", + "address_1": "3025 Shore Dr", + "address_2": null, + "address_3": null, + "city": "Virginia Beach", + "state_province": "Virginia", + "postal_code": "23451-1247", + "country": "United States", + "longitude": -76.079164, + "latitude": 36.909938, + "phone": "7574960916", + "website_url": "http://www.pleasurehousebrewing.com", + "state": "Virginia", + "street": "3025 Shore Dr" + }, + { + "id": "13a3a187-393c-4c75-b0ad-2d112106e627", + "name": "Plow Brewing Company", + "brewery_type": "micro", + "address_1": "3334 Industrial Dr", + "address_2": null, + "address_3": null, + "city": "Santa Rosa", + "state_province": "California", + "postal_code": "95403-2011", + "country": "United States", + "longitude": -122.740072, + "latitude": 38.47455222, + "phone": "7078434583", + "website_url": "http://www.sonomacounty.com/brewery/plow-brewing-company", + "state": "California", + "street": "3334 Industrial Dr" + }, + { + "id": "0d206bbe-547d-4180-b0d4-2cdf05676971", + "name": "Plymouth Beer Company / Dirty Water Distillery", + "brewery_type": "micro", + "address_1": "10 Water St", + "address_2": null, + "address_3": null, + "city": "Plymouth", + "state_province": "Massachusetts", + "postal_code": "02360-3349", + "country": "United States", + "longitude": -70.6620267, + "latitude": 41.9549491, + "phone": "5085910589", + "website_url": "http://www.plymouthbeer.rocks", + "state": "Massachusetts", + "street": "10 Water St" + }, + { + "id": "67291cf6-893e-4bcd-bb05-3900373b6aea", + "name": "Plymouth Brewing Co", + "brewery_type": "micro", + "address_1": "222 E Mill St", + "address_2": null, + "address_3": null, + "city": "Plymouth", + "state_province": "Wisconsin", + "postal_code": "53073-1706", + "country": "United States", + "longitude": -87.9776737, + "latitude": 43.7477014, + "phone": "9208576083", + "website_url": "http://www.plymouthbrewingcompany.com", + "state": "Wisconsin", + "street": "222 E Mill St" + }, + { + "id": "ed20ba54-aead-449e-8a1f-1f3dc9a6a787", + "name": "Po'Boy Brewing", + "brewery_type": "micro", + "address_1": "200 Wilson St Unit E3", + "address_2": null, + "address_3": null, + "city": "Port Jefferson Station", + "state_province": "New York", + "postal_code": "11776-1145", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6318281131", + "website_url": "http://www.poboybrewery.com", + "state": "New York", + "street": "200 Wilson St Unit E3" + }, + { + "id": "10803076-d2d0-45c1-8fbf-2b4158a08a7c", + "name": "Pocock Brewing Company", + "brewery_type": "micro", + "address_1": "24907 Avenue Tibbitts Ste B", + "address_2": null, + "address_3": null, + "city": "Santa Clarita", + "state_province": "California", + "postal_code": "91355-3487", + "country": "United States", + "longitude": -118.571182, + "latitude": 34.43079435, + "phone": "6617754899", + "website_url": "http://www.pocockbrewing.com", + "state": "California", + "street": "24907 Avenue Tibbitts Ste B" + }, + { + "id": "1910b8fc-28c0-491b-a7fa-abf2973d9ce5", + "name": "Pocono Brewery Company", + "brewery_type": "brewpub", + "address_1": "2092 Route 611", + "address_2": null, + "address_3": null, + "city": "Swiftwater", + "state_province": "Pennsylvania", + "postal_code": "18370-7773", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5708391500", + "website_url": null, + "state": "Pennsylvania", + "street": "2092 Route 611" + }, + { + "id": "8b639b0e-6598-469e-871f-940b1143a3ba", + "name": "POG Brewing Company", + "brewery_type": "brewpub", + "address_1": "24524 S State State Rte D", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Missouri", + "postal_code": "64734", + "country": "United States", + "longitude": -94.582691, + "latitude": 38.701465, + "phone": "8164064179", + "website_url": "http://www.pogbrewing.com", + "state": "Missouri", + "street": "24524 S State State Rte D" + }, + { + "id": "0342dc02-62b5-4f51-8667-46d98847bde8", + "name": "Point Blank Brewing Company", + "brewery_type": "brewpub", + "address_1": "105 E Beaver St", + "address_2": null, + "address_3": null, + "city": "Corydon", + "state_province": "Indiana", + "postal_code": "47112-1146", + "country": "United States", + "longitude": -86.12616408, + "latitude": 38.21111448, + "phone": "8122255141", + "website_url": "http://www.pointblankbrewing.com", + "state": "Indiana", + "street": "105 E Beaver St" + }, + { + "id": "cdf91a93-80df-4940-af33-6a5562b7eef8", + "name": "Point Breeze Brewing", + "brewery_type": "micro", + "address_1": "1225 S 28th St", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19146-", + "country": "United States", + "longitude": -75.1900898, + "latitude": 39.9382866, + "phone": null, + "website_url": "http://www.pointbreezebrewing.com", + "state": "Pennsylvania", + "street": "1225 S 28th St" + }, + { + "id": "d454edbb-ddb4-4aaa-a922-e6c7ad84c73b", + "name": "Point Labaddie Brewery", + "brewery_type": "micro", + "address_1": "1029 Thiebes Rd", + "address_2": null, + "address_3": null, + "city": "Labadie", + "state_province": "Missouri", + "postal_code": "63055-1712", + "country": "United States", + "longitude": -90.80569, + "latitude": 38.500563, + "phone": "6367422861", + "website_url": "http://www.pointlabaddiebrewery.com", + "state": "Missouri", + "street": "1029 Thiebes Rd" + }, + { + "id": "db32cfd6-bffb-4f0e-9ed3-f71ab574c505", + "name": "Point Ybel Brewing Company", + "brewery_type": "micro", + "address_1": "16120 San Carlos Blvd Ste 4", + "address_2": null, + "address_3": null, + "city": "Fort Myers", + "state_province": "Florida", + "postal_code": "33908-3294", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2396036535", + "website_url": "http://www.pointybelbrew.com", + "state": "Florida", + "street": "16120 San Carlos Blvd Ste 4" + }, + { + "id": "e0a4a050-03c1-422b-91e1-d0bb315d9752", + "name": "Pointless Brewery", + "brewery_type": "micro", + "address_1": "3014 Packard St", + "address_2": null, + "address_3": null, + "city": "Ann Arbor", + "state_province": "Michigan", + "postal_code": "48108-1935", + "country": "United States", + "longitude": -83.7297662, + "latitude": 42.260633, + "phone": "9894554484", + "website_url": "http://www.pointlessbrew.com", + "state": "Michigan", + "street": "3014 Packard St" + }, + { + "id": "c6447b87-5325-42ff-9406-46484ce38d67", + "name": "Poison Frog Brewing Company", + "brewery_type": "brewpub", + "address_1": "1908 Horton Rd", + "address_2": null, + "address_3": null, + "city": "Jackson", + "state_province": "Michigan", + "postal_code": "49203-5520", + "country": "United States", + "longitude": -84.4374522, + "latitude": 42.20141178, + "phone": "5177485997", + "website_url": null, + "state": "Michigan", + "street": "1908 Horton Rd" + }, + { + "id": "71adfacc-e332-40de-8fde-3a36caabd5ff", + "name": "Pokro Brewing Company, The", + "brewery_type": "micro", + "address_1": "311 N Broad St", + "address_2": null, + "address_3": null, + "city": "Griffith", + "state_province": "Indiana", + "postal_code": "46319-2222", + "country": "United States", + "longitude": -87.42755733, + "latitude": 41.5266943, + "phone": "2199247950", + "website_url": "http://www.pokrobrewing.com", + "state": "Indiana", + "street": "311 N Broad St" + }, + { + "id": "f84fe98f-6767-4f6a-94cf-315a70d35dbf", + "name": "Polarity Brewing Ltd", + "brewery_type": "micro", + "address_1": "Abbotts Close", + "address_2": null, + "address_3": null, + "city": "Worthing", + "state_province": "West Sussex", + "postal_code": "BN11 1JB", + "country": "England", + "longitude": -0.375446, + "latitude": 50.814845, + "phone": "7872105300", + "website_url": "http://www.polaritybrewing.co.uk/", + "state": "West Sussex", + "street": "Abbotts Close" + }, + { + "id": "d9b4198d-7fdb-4dde-a6c3-6195489e2ca3", + "name": "Policy Kings Brewery LLC", + "brewery_type": "micro", + "address_1": "223 N 100 W", + "address_2": null, + "address_3": null, + "city": "Cedar City", + "state_province": "Utah", + "postal_code": "84721", + "country": "United States", + "longitude": -113.064003, + "latitude": 37.681305, + "phone": null, + "website_url": "http://www.policykingsbrewery.com", + "state": "Utah", + "street": "223 N 100 W" + }, + { + "id": "f5a51ebc-3959-4dbc-b754-09b4a6a9bbb4", + "name": "Pollyanna Brewing & Distilling Company", + "brewery_type": "micro", + "address_1": "106 S Riverside Ave", + "address_2": null, + "address_3": null, + "city": "Saint Charles", + "state_province": "Illinois", + "postal_code": "60174", + "country": "United States", + "longitude": -88.312023716864, + "latitude": 41.912925051035, + "phone": "6305497372", + "website_url": "https://pollyannabrewing.com", + "state": "Illinois", + "street": "106 S Riverside Ave" + }, + { + "id": "8beeebf7-5b40-4fa7-a085-b62b63740a31", + "name": "Pollyanna Brewing Company", + "brewery_type": "micro", + "address_1": "431 Talcott Ave", + "address_2": null, + "address_3": null, + "city": "Lemont", + "state_province": "Illinois", + "postal_code": "60439-3744", + "country": "United States", + "longitude": -87.9978837, + "latitude": 41.6759774, + "phone": "6309145834", + "website_url": "http://www.pollyannabrewing.com", + "state": "Illinois", + "street": "431 Talcott Ave" + }, + { + "id": "90218961-385e-459f-b286-a1560ee423a8", + "name": "Polyculture Brewing Company", + "brewery_type": "closed", + "address_1": "3 Camel Hump Rd", + "address_2": null, + "address_3": null, + "city": "Croydon", + "state_province": "New Hampshire", + "postal_code": "03773", + "country": "United States", + "longitude": -72.18685389, + "latitude": 43.41054689, + "phone": "7735471994", + "website_url": "http://www.polyculturebrewing.com", + "state": "New Hampshire", + "street": "3 Camel Hump Rd" + }, + { + "id": "0c7ebfab-f995-4487-b59c-6c90f42d8298", + "name": "Pondaseta Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Amarillo", + "state_province": "Texas", + "postal_code": "79119", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.pondaseta.com", + "state": "Texas", + "street": null + }, + { + "id": "759c9519-636c-434e-b7c9-4bedae0d5f42", + "name": "Ponderosa Brewing", + "brewery_type": "brewpub", + "address_1": "1761 Bellamah Ave NW", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87104-2247", + "country": "United States", + "longitude": -106.6650502, + "latitude": 35.10091248, + "phone": "5056395941", + "website_url": "http://www.ponderosabrewing.net", + "state": "New Mexico", + "street": "1761 Bellamah Ave NW" + }, + { + "id": "766996ca-e6f6-4882-98f3-272e0c354cb6", + "name": "Pono Brewing Company", + "brewery_type": "contract", + "address_1": "5716 SE 92nd Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97266-4659", + "country": "United States", + "longitude": -122.5679347, + "latitude": 45.4808905, + "phone": "5034328400", + "website_url": "http://www.ponobrewing.com", + "state": "Oregon", + "street": "5716 SE 92nd Ave" + }, + { + "id": "25566098-7a9c-4bf0-9804-2ba4470b9cc5", + "name": "Pontoon Brewing Company", + "brewery_type": "micro", + "address_1": "8601 Dunwoody Pl Bld 500 Ste 500", + "address_2": null, + "address_3": null, + "city": "Sandy Springs", + "state_province": "Georgia", + "postal_code": "30350-2551", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7049293821", + "website_url": "http://www.pontoonbrewing.com", + "state": "Georgia", + "street": "8601 Dunwoody Pl Bld 500 Ste 500" + }, + { + "id": "9a279764-f687-43a5-b361-8c98189d177b", + "name": "Ponysaurus Brewing Company", + "brewery_type": "brewpub", + "address_1": "219 Hood St", + "address_2": null, + "address_3": null, + "city": "Durham", + "state_province": "North Carolina", + "postal_code": "27701-3715", + "country": "United States", + "longitude": -78.89399922, + "latitude": 35.99008624, + "phone": "9784827701", + "website_url": "http://www.ponysaurusbrewing.com", + "state": "North Carolina", + "street": "219 Hood St" + }, + { + "id": "de95f5a9-4958-4474-9d7a-061f4d7f6c17", + "name": "Poor House Brewing", + "brewery_type": "micro", + "address_1": "4494 30th St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92116-4287", + "country": "United States", + "longitude": -117.130404, + "latitude": 32.758977, + "phone": "8587699070", + "website_url": "http://www.poorhousebrew.com", + "state": "California", + "street": "4494 30th St" + }, + { + "id": "e2356861-cbe8-4634-a65c-69f938f7c2a2", + "name": "Populuxe Brewing", + "brewery_type": "micro", + "address_1": "826 NW 49th St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98107-3614", + "country": "United States", + "longitude": -122.3680288, + "latitude": 47.6645382, + "phone": "2067063400", + "website_url": "http://www.populuxebrewing.com", + "state": "Washington", + "street": "826 NW 49th St" + }, + { + "id": "3ef8c970-0b94-4235-b598-aa45b1c6478c", + "name": "Porchlight Brewing Company", + "brewery_type": "micro", + "address_1": "866 57th St", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95819-3327", + "country": "United States", + "longitude": -121.4334621, + "latitude": 38.5659589, + "phone": "9164765384", + "website_url": "http://www.porchlightbrewingcompany.com", + "state": "California", + "street": "866 57th St" + }, + { + "id": "1ac4b47c-9abe-424e-acfa-ebfcfc62ca9a", + "name": "Port Brewing Co / The Lost Abbey", + "brewery_type": "micro", + "address_1": "155 Mata Way Ste 104", + "address_2": null, + "address_3": null, + "city": "San Marcos", + "state_province": "California", + "postal_code": "92069-2983", + "country": "United States", + "longitude": -117.149141, + "latitude": 33.141537, + "phone": "8009186816", + "website_url": "http://www.portbrewing.com", + "state": "California", + "street": "155 Mata Way Ste 104" + }, + { + "id": "626290ac-7473-4368-9ee8-e71b2f28027f", + "name": "Port City Brewing Co.", + "brewery_type": "regional", + "address_1": "3950 Wheeler Ave", + "address_2": null, + "address_3": null, + "city": "Alexandria", + "state_province": "Virginia", + "postal_code": "22304-6409", + "country": "United States", + "longitude": -77.10149229, + "latitude": 38.80803165, + "phone": "7037972739", + "website_url": "http://www.portcitybrewing.com", + "state": "Virginia", + "street": "3950 Wheeler Ave" + }, + { + "id": "66a3e623-89dd-482b-b87f-aff2f1d293fc", + "name": "Port Dock Brewery Hotel", + "brewery_type": "micro", + "address_1": "18 Baker Street", + "address_2": null, + "address_3": null, + "city": "Port Adelaide", + "state_province": "SA", + "postal_code": "5015", + "country": "Australia", + "longitude": 138.5096616, + "latitude": -34.8445271, + "phone": "+61 8 8317 2111", + "website_url": "https://piratelife.com.au/", + "state": "SA", + "street": "18 Baker Street" + }, + { + "id": "75454326-9c64-4b35-901f-04f91703618b", + "name": "Port Huron Brewing Co", + "brewery_type": "micro", + "address_1": "805 Business Park Dr", + "address_2": null, + "address_3": null, + "city": "Wisconsin Dells", + "state_province": "Wisconsin", + "postal_code": "53965-9440", + "country": "United States", + "longitude": -89.74657667, + "latitude": 43.62851667, + "phone": "6082530340", + "website_url": "http://www.porthuronbeer.com", + "state": "Wisconsin", + "street": "805 Business Park Dr" + }, + { + "id": "ab2fd436-f359-4068-a961-df786f966314", + "name": "Port Jeff Brewing Co", + "brewery_type": "micro", + "address_1": "22 Mill Creek Rd", + "address_2": null, + "address_3": null, + "city": "Port Jefferson", + "state_province": "New York", + "postal_code": "11777-1663", + "country": "United States", + "longitude": -73.06772855, + "latitude": 40.94140421, + "phone": "8774752739", + "website_url": "http://www.portjeffbrewing.com", + "state": "New York", + "street": "22 Mill Creek Rd" + }, + { + "id": "c50438f5-20be-421d-8b82-fcac834ab278", + "name": "Port O'Pints Brewing Co.", + "brewery_type": "brewpub", + "address_1": "1215 Northcrest Dr", + "address_2": null, + "address_3": null, + "city": "Crescent City", + "state_province": "California", + "postal_code": "95531-2320", + "country": "United States", + "longitude": -124.1993085, + "latitude": 41.76863139, + "phone": "7074601154", + "website_url": "http://www.portopints.com", + "state": "California", + "street": "1215 Northcrest Dr" + }, + { + "id": "cfc29049-96aa-443a-b0fd-3fce12d6dbde", + "name": "Port Orleans Brewing Company", + "brewery_type": "micro", + "address_1": "4124 Tchoupitoulas St", + "address_2": null, + "address_3": null, + "city": "New Orleans", + "state_province": "Louisiana", + "postal_code": "70115-1435", + "country": "United States", + "longitude": -90.0982849, + "latitude": 29.9169759, + "phone": "5042662332", + "website_url": "http://www.portorleansbrewingco.com", + "state": "Louisiana", + "street": "4124 Tchoupitoulas St" + }, + { + "id": "ba2847cc-d3ae-450c-ace5-22cb58964107", + "name": "Port Phillip Brewing", + "brewery_type": "micro", + "address_1": "28 Simcock Street", + "address_2": "2", + "address_3": null, + "city": "Somerville", + "state_province": "VIC", + "postal_code": "3912", + "country": "Australia", + "longitude": 145.18209, + "latitude": -38.2199569, + "phone": "+61 407 487 107", + "website_url": "http://www.portphillipbrewing.com.au/", + "state": "VIC", + "street": "28 Simcock Street" + }, + { + "id": "5a9fb0d9-6046-4d49-9b87-ecda2d690cf8", + "name": "Port Town Brewing Co", + "brewery_type": "proprietor", + "address_1": "700-726 S Centre St", + "address_2": null, + "address_3": null, + "city": "San Pedro", + "state_province": "California", + "postal_code": "90731", + "country": "United States", + "longitude": -118.283633, + "latitude": 33.73804379, + "phone": "3105086013", + "website_url": "http://www.porttownbrewing.com", + "state": "California", + "street": "700-726 S Centre St" + }, + { + "id": "93f623db-5df1-4a30-94d5-445a2e100580", + "name": "Port Townsend Brewing Co", + "brewery_type": "micro", + "address_1": "330 10th St Ste C", + "address_2": null, + "address_3": null, + "city": "Port Townsend", + "state_province": "Washington", + "postal_code": "98368-1815", + "country": "United States", + "longitude": -122.78084247123, + "latitude": 48.107566843641, + "phone": "3603859967", + "website_url": "http://www.porttownsendbrewing.com", + "state": "Washington", + "street": "330 10th St Ste C" + }, + { + "id": "2279eddf-9455-4973-8013-0b2a19894fea", + "name": "Portal Brewing Co", + "brewery_type": "brewpub", + "address_1": "100 E 6th St", + "address_2": null, + "address_3": null, + "city": "Medford", + "state_province": "Oregon", + "postal_code": "97501-5902", + "country": "United States", + "longitude": -122.873661, + "latitude": 42.326944, + "phone": "5419410240", + "website_url": "http://www.portalbrewingco.com", + "state": "Oregon", + "street": "100 E 6th St" + }, + { + "id": "7c72c2f9-3184-4b2a-8c13-9c1bc3ab5148", + "name": "Porter Pizza & Brewery", + "brewery_type": "brewpub", + "address_1": "6370 Powers Ferry Rd NW", + "address_2": null, + "address_3": null, + "city": "Sandy Springs", + "state_province": "Georgia", + "postal_code": "30339", + "country": "United States", + "longitude": -84.4304239, + "latitude": 33.9043481, + "phone": null, + "website_url": "http://www.porterpizzabrewery.com", + "state": "Georgia", + "street": "6370 Powers Ferry Rd NW" + }, + { + "id": "3c70cec2-a5d1-4901-b97b-f257d082028c", + "name": "Porters Mill Brewery", + "brewery_type": "micro", + "address_1": "1918 Porters Mill Rd", + "address_2": null, + "address_3": null, + "city": "Midlothian", + "state_province": "Virginia", + "postal_code": "23114", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8042471370", + "website_url": "https://www.facebook.com/PortersMillBrew/?ref=bookmarks", + "state": "Virginia", + "street": "1918 Porters Mill Rd" + }, + { + "id": "e2ae7c8c-6317-4c6b-8b13-f36667508ddb", + "name": "Portico Brewing Co", + "brewery_type": "contract", + "address_1": "256 Moody Street", + "address_2": null, + "address_3": null, + "city": "Waltham", + "state_province": "Massachusetts", + "postal_code": "02453", + "country": "United States", + "longitude": -71.2366218, + "latitude": 42.3718244, + "phone": null, + "website_url": null, + "state": "Massachusetts", + "street": "256 Moody Street" + }, + { + "id": "9265aaad-fabe-40a4-bec6-656338eb04b9", + "name": "Portland Brewing/North American Breweries", + "brewery_type": "regional", + "address_1": "2730 NW 31st Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97210-1718", + "country": "United States", + "longitude": -122.713089, + "latitude": 45.54176525, + "phone": "5032267623", + "website_url": "http://www.portlandbrewing.com", + "state": "Oregon", + "street": "2730 NW 31st Ave" + }, + { + "id": "8c661895-c05b-4300-a08f-160ff0ae018d", + "name": "Portland U-Brew & Pub", + "brewery_type": "brewpub", + "address_1": "6237 SE Milwaukie Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "-97202", + "country": "United States", + "longitude": -122.649393, + "latitude": 45.47740515, + "phone": "5039432727", + "website_url": "http://www.portlandubrewandpub.com", + "state": "Oregon", + "street": "6237 SE Milwaukie Ave" + }, + { + "id": "52a372b0-a5a6-4dac-8c4d-eaa8fe630819", + "name": "Portneuf Valley Brewing Co", + "brewery_type": "brewpub", + "address_1": "615 S 1st Ave", + "address_2": null, + "address_3": null, + "city": "Pocatello", + "state_province": "Idaho", + "postal_code": "83201-6557", + "country": "United States", + "longitude": -112.4431819, + "latitude": 42.85998871, + "phone": "2082321644", + "website_url": "http://www.portneufvalleybrewing.com", + "state": "Idaho", + "street": "615 S 1st Ave" + }, + { + "id": "87fa87d6-8042-493b-9926-c515656f1e9f", + "name": "Portsmouth Brewing Co/Maults", + "brewery_type": "brewpub", + "address_1": "224 Second St", + "address_2": null, + "address_3": null, + "city": "Portsmouth", + "state_province": "Ohio", + "postal_code": "45662-0218", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7403546106", + "website_url": "http://www.portsmouthohbrewing.com", + "state": "Ohio", + "street": "224 Second St" + }, + { + "id": "281a2d47-03db-45a9-a624-00063a1ea079", + "name": "Poseidon Brewing Company", + "brewery_type": "micro", + "address_1": "5777 Olivas Park Dr Unit Q", + "address_2": null, + "address_3": null, + "city": "Ventura", + "state_province": "California", + "postal_code": "93003-7928", + "country": "United States", + "longitude": -119.2097757, + "latitude": 34.24415285, + "phone": "8054770239", + "website_url": "http://www.poseidonbrewingco.com", + "state": "California", + "street": "5777 Olivas Park Dr Unit Q" + }, + { + "id": "be1a1bf2-5b41-4c45-aaad-b8ac31a93e06", + "name": "Post and Beam Brewing", + "brewery_type": "micro", + "address_1": "40 Grove Street", + "address_2": null, + "address_3": null, + "city": "Peterborough", + "state_province": "New Hampshire", + "postal_code": "03458-1452", + "country": "United States", + "longitude": -71.9509965, + "latitude": 42.88548717, + "phone": "6037845361", + "website_url": "http://www.postandbeambrewery.com", + "state": "New Hampshire", + "street": "40 Grove Street" + }, + { + "id": "0577bc6d-2115-4da6-a151-bf67b4e937e0", + "name": "Post Falls Brewing", + "brewery_type": "micro", + "address_1": "112 N Spokane St", + "address_2": null, + "address_3": null, + "city": "Post Falls", + "state_province": "Idaho", + "postal_code": "83854-9537", + "country": "United States", + "longitude": -116.9479708, + "latitude": 47.7062358, + "phone": "2087737301", + "website_url": "http://postfallsbrewing.com", + "state": "Idaho", + "street": "112 N Spokane St" + }, + { + "id": "86b5a710-4d68-4937-8350-3af75ca30e15", + "name": "Postdoc Brewing - Kenmore", + "brewery_type": "taproom", + "address_1": "7204 NE 175th St", + "address_2": null, + "address_3": null, + "city": "Kenmore", + "state_province": "Washington", + "postal_code": "98028-3561", + "country": "United States", + "longitude": -122.2440866, + "latitude": 47.7571424, + "phone": "4259495295", + "website_url": "https://www.postdocbrewing.com", + "state": "Washington", + "street": "7204 NE 175th St" + }, + { + "id": "7b6da13b-deab-42c5-b315-f12fc4cced7e", + "name": "Postdoc Brewing - Redmond", + "brewery_type": "micro", + "address_1": "17625 NE 65th St Ste 100", + "address_2": null, + "address_3": null, + "city": "Redmond", + "state_province": "Washington", + "postal_code": "98052-7908", + "country": "United States", + "longitude": -122.1050772, + "latitude": 47.66392008, + "phone": "4256584963", + "website_url": "http://www.postdocbrewing.com", + "state": "Washington", + "street": "17625 NE 65th St Ste 100" + }, + { + "id": "dfa14d71-6c4f-4a62-9a73-907af8f4ed16", + "name": "Potosi Brewing Co", + "brewery_type": "micro", + "address_1": "209 S Main St", + "address_2": null, + "address_3": null, + "city": "Potosi", + "state_province": "Wisconsin", + "postal_code": "53820-9675", + "country": "United States", + "longitude": -90.72487192, + "latitude": 42.6755069, + "phone": "6087634002", + "website_url": "http://www.potosibrewery.com", + "state": "Wisconsin", + "street": "209 S Main St" + }, + { + "id": "9bc3e2bc-71ab-40b6-87d5-6faea14596b1", + "name": "Potosi Brewing Production Facility", + "brewery_type": "micro", + "address_1": "215 S Main St", + "address_2": null, + "address_3": null, + "city": "Potosi", + "state_province": "Wisconsin", + "postal_code": "53820", + "country": "United States", + "longitude": -87.7836648, + "latitude": 42.73182738, + "phone": null, + "website_url": null, + "state": "Wisconsin", + "street": "215 S Main St" + }, + { + "id": "6d5148c1-4534-45a3-ac5d-3464fce5f1bc", + "name": "Powder Hollow Brewery", + "brewery_type": "micro", + "address_1": "504 Hazard Ave", + "address_2": null, + "address_3": null, + "city": "Enfield", + "state_province": "Connecticut", + "postal_code": "06082-", + "country": "United States", + "longitude": -72.5778709, + "latitude": 41.9896523, + "phone": "8602050942", + "website_url": "http://www.powderhollowbrewery.com", + "state": "Connecticut", + "street": "504 Hazard Ave" + }, + { + "id": "01cf04ff-5582-4664-baf2-83f3f3ddd932", + "name": "Powderhaus Brewing", + "brewery_type": "micro", + "address_1": "9719 W Chinden Blvd", + "address_2": null, + "address_3": null, + "city": "Garden City", + "state_province": "Idaho", + "postal_code": "83714-2008", + "country": "United States", + "longitude": -116.302435, + "latitude": 43.657494, + "phone": "2083764026", + "website_url": "http://www.powderhausbrewing.com", + "state": "Idaho", + "street": "9719 W Chinden Blvd" + }, + { + "id": "bd88172f-055e-4db1-a5fa-73cc5827f9a7", + "name": "Power House Brewing Co's Columbus Bar", + "brewery_type": "brewpub", + "address_1": "2735 N State Road 9", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Indiana", + "postal_code": "47203-9648", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8123758800", + "website_url": "http://www.powerhousebrewingco.com", + "state": "Indiana", + "street": "2735 N State Road 9" + }, + { + "id": "38c7a835-2cf5-4e7e-b07a-58794ac59c99", + "name": "Powerhouse Restaurant and Brewery", + "brewery_type": "brewpub", + "address_1": "454 E Main", + "address_2": null, + "address_3": null, + "city": "Puyallup", + "state_province": "Washington", + "postal_code": "98372-3258", + "country": "United States", + "longitude": -122.28796837311, + "latitude": 47.191696414014, + "phone": "2538451370", + "website_url": "http://www.powerhousebrewpub.com", + "state": "Washington", + "street": "454 E Main" + }, + { + "id": "13c71c4c-2ff7-4833-abaf-745311b9cd51", + "name": "Prairie Artisan Ales", + "brewery_type": "micro", + "address_1": "3 NE 8th St", + "address_2": null, + "address_3": null, + "city": "Oklahoma City", + "state_province": "Oklahoma", + "postal_code": "73104", + "country": "United States", + "longitude": -97.5117337, + "latitude": 35.4762832, + "phone": "4056020894", + "website_url": "http://www.prairieales.com", + "state": "Oklahoma", + "street": "3 NE 8th St" + }, + { + "id": "6a13311e-fdd4-4385-a049-2de6a5d6ed11", + "name": "Prairie Artisan Ales", + "brewery_type": "micro", + "address_1": "223 N Main St", + "address_2": null, + "address_3": null, + "city": "Tulsa", + "state_province": "Oklahoma", + "postal_code": "74103", + "country": "United States", + "longitude": -95.9938821, + "latitude": 36.1590862, + "phone": "9189364395", + "website_url": "http://www.prairiepub.com", + "state": "Oklahoma", + "street": "223 N Main St" + }, + { + "id": "37c4db32-da47-4e9f-81d1-40c9a6840c73", + "name": "Prairie Krafts Brewing Company", + "brewery_type": "micro", + "address_1": "1310 Busch Pkwy", + "address_2": null, + "address_3": null, + "city": "Buffalo Grove", + "state_province": "Illinois", + "postal_code": "60089-4505", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2244342189", + "website_url": "http://www.prairiekrafts.com", + "state": "Illinois", + "street": "1310 Busch Pkwy" + }, + { + "id": "4c60f800-2cec-4a26-8b1e-771b6e8b647b", + "name": "Prairie Pride Brewery", + "brewery_type": "micro", + "address_1": "115 E South Front St", + "address_2": null, + "address_3": null, + "city": "Grand Island", + "state_province": "Nebraska", + "postal_code": "68801-5917", + "country": "United States", + "longitude": -98.34025786, + "latitude": 40.92675443, + "phone": "3088505375", + "website_url": "https://www.prairiepridebrewery.com", + "state": "Nebraska", + "street": "115 E South Front St" + }, + { + "id": "551c1130-152c-44d2-b645-772bed02915a", + "name": "Prairie Street Brewing Co.", + "brewery_type": "brewpub", + "address_1": "200 Prairie St Ste 203", + "address_2": null, + "address_3": null, + "city": "Rockford", + "state_province": "Illinois", + "postal_code": "61107-3967", + "country": "United States", + "longitude": -89.087658, + "latitude": 42.273033, + "phone": null, + "website_url": "http://www.psbrewingco.com", + "state": "Illinois", + "street": "200 Prairie St Ste 203" + }, + { + "id": "34fddd70-3f61-4758-8e03-157410164201", + "name": "Prancing Pony Brewery", + "brewery_type": "micro", + "address_1": "42 Mount Barker Road", + "address_2": null, + "address_3": null, + "city": "Totness", + "state_province": "SA", + "postal_code": "5250", + "country": "Australia", + "longitude": 138.8465935, + "latitude": -35.0527777, + "phone": "+61 8 8398 3881", + "website_url": "http://www.prancingponybrewery.com.au/", + "state": "SA", + "street": "42 Mount Barker Road" + }, + { + "id": "53c24b39-49a6-495d-8048-4412389cb450", + "name": "Prater Beer Garden", + "brewery_type": "beergarden", + "address_1": "Kastanienallee 7-9", + "address_2": null, + "address_3": null, + "city": "Berlin", + "state_province": "Berlin", + "postal_code": "10435", + "country": "Germany", + "longitude": 52.5285752, + "latitude": 13.3942421, + "phone": null, + "website_url": "https://www.prater-biergarten.de/", + "state": "Berlin", + "street": "Kastanienallee 7-9" + }, + { + "id": "f3277674-533f-49bc-8e1a-c8087d019d1b", + "name": "Pratt Street Ale House", + "brewery_type": "brewpub", + "address_1": "206 W Pratt St", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21201-2426", + "country": "United States", + "longitude": -76.61815436, + "latitude": 39.28659055, + "phone": "4102448900", + "website_url": "http://www.oliverales.com", + "state": "Maryland", + "street": "206 W Pratt St" + }, + { + "id": "58336544-2f7c-4a30-8e39-d796906b3055", + "name": "Praxis", + "brewery_type": "brewpub", + "address_1": "Urbanização Quinta da Várzea", + "address_2": "Lote 29", + "address_3": null, + "city": "Santa Clara", + "state_province": "Coimbra", + "postal_code": "3040-320", + "country": "Portugal", + "longitude": -8.4327192750351, + "latitude": 40.194751103947, + "phone": "+351 911 922 162", + "website_url": "https://www.beerpraxis.com", + "state": "Coimbra", + "street": "Urbanização Quinta da Várzea" + }, + { + "id": "95e02a51-f950-44e5-bd3d-1cdbbdbda3d5", + "name": "Precarious Beer Project", + "brewery_type": "micro", + "address_1": "521 Prince George St", + "address_2": null, + "address_3": null, + "city": "Williamsburg", + "state_province": "Virginia", + "postal_code": "23185-3621", + "country": "United States", + "longitude": -76.70845653, + "latitude": 37.27279075, + "phone": "6166388866", + "website_url": "http://www.theamberox.com", + "state": "Virginia", + "street": "521 Prince George St" + }, + { + "id": "ab1a267c-6a92-4f19-b127-66065ad1b993", + "name": "Prehistoric Brewing Company", + "brewery_type": "micro", + "address_1": "1816 S Glenstone Ave", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Missouri", + "postal_code": "65804", + "country": "United States", + "longitude": -93.261483, + "latitude": 37.181077, + "phone": "4175011083", + "website_url": "http://www.prehistoricbrewing.com", + "state": "Missouri", + "street": "1816 S Glenstone Ave" + }, + { + "id": "288a1501-5129-46e7-8c3e-1692cb0939b7", + "name": "Prescott Brewing Co", + "brewery_type": "brewpub", + "address_1": "130 W Gurley St Ste A", + "address_2": null, + "address_3": null, + "city": "Prescott", + "state_province": "Arizona", + "postal_code": "86301-3603", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9287712795", + "website_url": "http://www.prescottbrewingcompany.com", + "state": "Arizona", + "street": "130 W Gurley St Ste A" + }, + { + "id": "1b6e6fff-249d-4673-bf57-fa7af2aec4b1", + "name": "Prescott Brewing Co - Production Facility", + "brewery_type": "micro", + "address_1": "6396 Lear Ln", + "address_2": null, + "address_3": null, + "city": "Prescott", + "state_province": "Arizona", + "postal_code": "86301-9118", + "country": "United States", + "longitude": -112.4132617, + "latitude": 34.649529, + "phone": "9287712795", + "website_url": "http://www.prescottbrewingcompany.com", + "state": "Arizona", + "street": "6396 Lear Ln" + }, + { + "id": "46ee6aab-af12-44ff-aa5a-ed12944370fd", + "name": "Presidential Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Portage", + "state_province": "Michigan", + "postal_code": "49024", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2694689765", + "website_url": "http://www.presidentialbrewing.com", + "state": "Michigan", + "street": null + }, + { + "id": "2d046236-3fe0-49ec-be63-c59777f23f7c", + "name": "Pressure Drop Brewing", + "brewery_type": "micro", + "address_1": "65 Vandalia St", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14204-2739", + "country": "United States", + "longitude": -78.86103739, + "latitude": 42.86640421, + "phone": "7168489942", + "website_url": "http://www.barrelfactory.com", + "state": "New York", + "street": "65 Vandalia St" + }, + { + "id": "a64ce5ee-e021-4f18-8874-8cce9f78071c", + "name": "Prestonrose Farm and Brewing Co.", + "brewery_type": "brewpub", + "address_1": "201 Saint Louis Valley Rd", + "address_2": null, + "address_3": null, + "city": "Paris", + "state_province": "Arkansas", + "postal_code": "72855-5853", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7075025544", + "website_url": "http://prestonrose.squarespace.com", + "state": "Arkansas", + "street": "201 Saint Louis Valley Rd" + }, + { + "id": "af17e34e-10da-4da5-bcb7-9ec68a5c16cf", + "name": "Pretentious Barrel House", + "brewery_type": "micro", + "address_1": "745 Taylor Ave", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43219-2526", + "country": "United States", + "longitude": -82.960769, + "latitude": 39.981855, + "phone": "6148877687", + "website_url": "http://www.pretentiousbarrelhouse.com", + "state": "Ohio", + "street": "745 Taylor Ave" + }, + { + "id": "b7168e48-b946-4939-96b9-31415250ff51", + "name": "Pretentious Beer Co", + "brewery_type": "micro", + "address_1": "131 S Central St", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37902", + "country": "United States", + "longitude": -83.91814044, + "latitude": 35.96939844, + "phone": "8658517693", + "website_url": "http://www.pretentiousbeerco.com", + "state": "Tennessee", + "street": "131 S Central St" + }, + { + "id": "ba1b921c-0f94-44aa-88b1-9bb31fb1776e", + "name": "Pretoria Fields Collective", + "brewery_type": "micro", + "address_1": "120 Pine Ave", + "address_2": null, + "address_3": null, + "city": "Albany", + "state_province": "Georgia", + "postal_code": "31701-2529", + "country": "United States", + "longitude": -84.149593, + "latitude": 31.57858294, + "phone": "2295181770", + "website_url": "http://www.pretoriafields.com", + "state": "Georgia", + "street": "120 Pine Ave" + }, + { + "id": "21dd64a1-c254-4c35-a7b7-f909b88c8d10", + "name": "Preyer Brewing Company", + "brewery_type": "micro", + "address_1": "600 A-B Battleground Ave", + "address_2": null, + "address_3": null, + "city": "Greensboro", + "state_province": "North Carolina", + "postal_code": "27401-2015", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3362569450", + "website_url": "http://www.preyerbrewing.com", + "state": "North Carolina", + "street": "600 A-B Battleground Ave" + }, + { + "id": "a317edad-2ea2-4516-8dc7-5ec18b47df07", + "name": "Prickly Moses", + "brewery_type": "micro", + "address_1": "10 Hoveys Road", + "address_2": null, + "address_3": null, + "city": "Barongarook", + "state_province": "VIC", + "postal_code": "3249", + "country": "Australia", + "longitude": 143.5644836, + "latitude": -38.4439392, + "phone": "+61 3 5233 8400", + "website_url": "https://otwayestate.com.au/", + "state": "VIC", + "street": "10 Hoveys Road" + }, + { + "id": "7281326b-9a0e-413c-86b4-36ebf5034e3a", + "name": "Priest Lake Brewing", + "brewery_type": "micro", + "address_1": "28392 ID-57", + "address_2": null, + "address_3": null, + "city": "Priest Lake", + "state_province": "Idaho", + "postal_code": "83856-9701", + "country": "United States", + "longitude": -116.935511, + "latitude": 48.5218798, + "phone": "2084430900", + "website_url": "https://priestlakebrewing.wordpress.com/", + "state": "Idaho", + "street": "28392 ID-57" + }, + { + "id": "041933ef-caad-429f-84eb-2fe597d09c3b", + "name": "Primal Brewery", + "brewery_type": "micro", + "address_1": "16432 Old Statesville Rd", + "address_2": null, + "address_3": null, + "city": "Huntersville", + "state_province": "North Carolina", + "postal_code": "28078-7245", + "country": "United States", + "longitude": -80.84384068, + "latitude": 35.43603236, + "phone": "7049472920", + "website_url": "http://www.primalbrewery.com", + "state": "North Carolina", + "street": "16432 Old Statesville Rd" + }, + { + "id": "fa2495b5-598e-4353-9fb7-3a678a77d0c9", + "name": "Primitive Beer LLC", + "brewery_type": "micro", + "address_1": "2025 Ionosphere St Unit 101", + "address_2": null, + "address_3": null, + "city": "Longmont", + "state_province": "Colorado", + "postal_code": "80504-7439", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9142557436", + "website_url": "http://www.Primitive.beer", + "state": "Colorado", + "street": "2025 Ionosphere St Unit 101" + }, + { + "id": "dda7fdcc-84dd-47d4-af4c-8b9b1fd5b292", + "name": "Principle Brewing", + "brewery_type": "micro", + "address_1": "103 Princes Highway", + "address_2": null, + "address_3": null, + "city": "Fairy Meadow", + "state_province": "NSW", + "postal_code": "2519", + "country": "Australia", + "longitude": 150.8914838, + "latitude": -34.4001801, + "phone": "+61 406 200 549", + "website_url": "http://www.principlebrewing.com.au/", + "state": "NSW", + "street": "103 Princes Highway" + }, + { + "id": "dbb4c0fa-b513-42bb-be51-53de04f58d8b", + "name": "Printer's Ale Manufacturing Co.", + "brewery_type": "micro", + "address_1": "940 Columbia Dr", + "address_2": null, + "address_3": null, + "city": "Carrollton", + "state_province": "Georgia", + "postal_code": "30117-8780", + "country": "United States", + "longitude": -85.10249657, + "latitude": 33.61138945, + "phone": "7708364253", + "website_url": "http://www.printers-ale.com", + "state": "Georgia", + "street": "940 Columbia Dr" + }, + { + "id": "2ca6d9b6-4a8e-4358-a4f3-38fd59edf479", + "name": "Printshop Beer Co", + "brewery_type": "micro", + "address_1": "1532 Island Home Ave", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37920", + "country": "United States", + "longitude": -83.8972435, + "latitude": 35.9607605, + "phone": "8654749591", + "website_url": null, + "state": "Tennessee", + "street": "1532 Island Home Ave" + }, + { + "id": "196c769f-4df9-4bea-bee4-41399bfc8d7f", + "name": "Priory Brewing", + "brewery_type": "micro", + "address_1": "Unit 5, Tallaght Enterprise Centre", + "address_2": "Main Road", + "address_3": "Dublin 24", + "city": "Tallaght", + "state_province": "Dublin", + "postal_code": "D24 TYX9", + "country": "Ireland", + "longitude": -6.3538952, + "latitude": 53.2872173, + "phone": "35314685300", + "website_url": "https://www.priorybrewing.ie/", + "state": "Dublin", + "street": "Unit 5, Tallaght Enterprise Centre" + }, + { + "id": "6e63e61e-d792-4cf6-ab67-6dfafe3ac8ee", + "name": "Prison Brews", + "brewery_type": "brewpub", + "address_1": "305 Ash St", + "address_2": null, + "address_3": null, + "city": "Jefferson City", + "state_province": "Missouri", + "postal_code": "65101-4002", + "country": "United States", + "longitude": -92.1616013, + "latitude": 38.5687256, + "phone": "5736350678", + "website_url": "http://www.prisonbrews.com", + "state": "Missouri", + "street": "305 Ash St" + }, + { + "id": "596f4926-ba58-48f6-92bf-b773df67aac2", + "name": "Prison City Brewing", + "brewery_type": "brewpub", + "address_1": "28 State St", + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "New York", + "postal_code": "13021-3625", + "country": "United States", + "longitude": -76.5682427, + "latitude": 42.9317672, + "phone": "9177272477", + "website_url": "http://www.prisoncitybrewing.com", + "state": "New York", + "street": "28 State St" + }, + { + "id": "0c9c1cb2-6f27-4325-9166-a34a991c573d", + "name": "Prison Hill Brewing Co", + "brewery_type": "brewpub", + "address_1": "278 S Main St", + "address_2": null, + "address_3": null, + "city": "Yuma", + "state_province": "Arizona", + "postal_code": "85364-1425", + "country": "United States", + "longitude": -114.6181995, + "latitude": 32.7229185, + "phone": "9282764001", + "website_url": null, + "state": "Arizona", + "street": "278 S Main St" + }, + { + "id": "44e1daec-9053-413d-84bf-34d2d7e6a58f", + "name": "Pro Re Nata Brewery", + "brewery_type": "micro", + "address_1": "6135 Rockfish Gap Tpke", + "address_2": null, + "address_3": null, + "city": "Crozet", + "state_province": "Virginia", + "postal_code": "22932-3325", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4348234878", + "website_url": "http://www.prnbrewery.com", + "state": "Virginia", + "street": "6135 Rockfish Gap Tpke" + }, + { + "id": "3a56defa-55f4-47b9-8237-b3f98bf1064a", + "name": "Proclamation Ale Company", + "brewery_type": "micro", + "address_1": "298 Kilvert St", + "address_2": null, + "address_3": null, + "city": "Warwick", + "state_province": "Rhode Island", + "postal_code": "02886", + "country": "United States", + "longitude": -71.445959, + "latitude": 41.730117, + "phone": "4017876450", + "website_url": "http://www.proclamationaleco.com", + "state": "Rhode Island", + "street": "298 Kilvert St" + }, + { + "id": "9431a008-3c97-40d5-baaf-7ba4b05acf64", + "name": "Prodigal Son Brewery and Pub, The", + "brewery_type": "brewpub", + "address_1": "230 SE Court Ave", + "address_2": null, + "address_3": null, + "city": "Pendleton", + "state_province": "Oregon", + "postal_code": "97801-2349", + "country": "United States", + "longitude": -118.7848215, + "latitude": 45.6733148, + "phone": "5412766090", + "website_url": "http://www.prodigalsonbrewery.com", + "state": "Oregon", + "street": "230 SE Court Ave" + }, + { + "id": "6aff3c96-8d81-4d57-b427-9651c95bb6bf", + "name": "Progress Brewing", + "brewery_type": "micro", + "address_1": "1822 Chico Ave", + "address_2": null, + "address_3": null, + "city": "South El Monte", + "state_province": "California", + "postal_code": "91733-2944", + "country": "United States", + "longitude": -118.0598847, + "latitude": 34.04935718, + "phone": "6265529603", + "website_url": "http://progress-brewing.com", + "state": "California", + "street": "1822 Chico Ave" + }, + { + "id": "448b1c20-2757-4084-8dc2-700824b6b3ff", + "name": "Prohibition Brewing", + "brewery_type": "brewpub", + "address_1": "2004 E Vista Way", + "address_2": null, + "address_3": null, + "city": "Vista", + "state_province": "California", + "postal_code": "92084-3321", + "country": "United States", + "longitude": -117.226841, + "latitude": 33.230457, + "phone": "7602953525", + "website_url": "http://www.prohibitionbrewingcompany.com", + "state": "California", + "street": "2004 E Vista Way" + }, + { + "id": "0753cb2a-dcab-4b00-a941-b2a1af31cb42", + "name": "Prohibition Pig", + "brewery_type": "brewpub", + "address_1": "23 S Main St Ste 1", + "address_2": null, + "address_3": null, + "city": "Waterbury", + "state_province": "Vermont", + "postal_code": "05676-1863", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8022444120", + "website_url": "http://www.prohibitionpig.com", + "state": "Vermont", + "street": "23 S Main St Ste 1" + }, + { + "id": "79c3efb7-c8a0-4171-8734-ab6d1d3d32f0", + "name": "Proof Brewing Co", + "brewery_type": "micro", + "address_1": "644 McDonnell Dr", + "address_2": null, + "address_3": null, + "city": "Tallahassee", + "state_province": "Florida", + "postal_code": "32310-4808", + "country": "United States", + "longitude": -84.29116011, + "latitude": 30.43293512, + "phone": null, + "website_url": "http://www.proofbrewingco.com", + "state": "Florida", + "street": "644 McDonnell Dr" + }, + { + "id": "a9dbe836-f39c-466c-8776-21caac8d433e", + "name": "Propagation LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63104-2425", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.propagation.us", + "state": "Missouri", + "street": null + }, + { + "id": "30de6826-44e6-410d-bc9f-f91e684babcd", + "name": "Proper Brewing Co", + "brewery_type": "micro", + "address_1": "857 S Main St", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84111", + "country": "United States", + "longitude": -111.8906741, + "latitude": 40.7505505, + "phone": "8019531707", + "website_url": "http://www.properbrewingco.com", + "state": "Utah", + "street": "857 S Main St" + }, + { + "id": "f50b650c-b23f-4c28-aaf0-e41b540df87b", + "name": "Propolis Brewing LLC", + "brewery_type": "micro", + "address_1": "2457 Jefferson St", + "address_2": null, + "address_3": null, + "city": "Port Townsend", + "state_province": "Washington", + "postal_code": "98368-4634", + "country": "United States", + "longitude": -122.7734441, + "latitude": 48.10915193, + "phone": "7652155850", + "website_url": "http://www.propolisbrewing.com", + "state": "Washington", + "street": "2457 Jefferson St" + }, + { + "id": "2cd4b108-518b-491d-8716-ef275c5d743b", + "name": "Props Brewery and Grill", + "brewery_type": "brewpub", + "address_1": "125 Lovejoy Rd", + "address_2": null, + "address_3": null, + "city": "Fort Walton Beach", + "state_province": "Florida", + "postal_code": "32548", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8505867117", + "website_url": "http://www.propsbrewery.com", + "state": "Florida", + "street": "125 Lovejoy Rd" + }, + { + "id": "5a129cf3-6e47-4244-ac3a-473028cd577e", + "name": "Props Craft Brewery Taproom", + "brewery_type": "micro", + "address_1": "125 Lovejoy Rd NW", + "address_2": null, + "address_3": null, + "city": "Fort Walton Beach", + "state_province": "Florida", + "postal_code": "32548-3418", + "country": "United States", + "longitude": -86.64962237, + "latitude": 30.42411689, + "phone": "8505867117", + "website_url": "http://www.propsbrewery.com", + "state": "Florida", + "street": "125 Lovejoy Rd NW" + }, + { + "id": "c720c16f-37c4-49ac-ab31-d410ff491f81", + "name": "Prost Brewing", + "brewery_type": "micro", + "address_1": "2540 19th St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80211-3910", + "country": "United States", + "longitude": -105.0067758, + "latitude": 39.761363, + "phone": "3037291175", + "website_url": "http://www.prostbrewing.com", + "state": "Colorado", + "street": "2540 19th St" + }, + { + "id": "0676073b-a116-400c-a65a-7101daefc68b", + "name": "Prost Brewing - Highlands Ranch", + "brewery_type": "micro", + "address_1": "53 Centennial Blvd", + "address_2": null, + "address_3": null, + "city": "Highlands Ranch", + "state_province": "Colorado", + "postal_code": "80129", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7206790505", + "website_url": "https://www.prostbrewing.com/", + "state": "Colorado", + "street": "53 Centennial Blvd" + }, + { + "id": "fe7b2d32-800c-456c-b969-b9b2def948ed", + "name": "Protector Brewery", + "brewery_type": "micro", + "address_1": "8680 Miralani Dr Ste 128", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92126-6392", + "country": "United States", + "longitude": -117.137429, + "latitude": 32.896584, + "phone": "8587579160", + "website_url": "http://www.protectorbrewery.com", + "state": "California", + "street": "8680 Miralani Dr Ste 128" + }, + { + "id": "0c115e76-1940-4b64-ba13-c903d95f0aed", + "name": "Providence Brewing Company", + "brewery_type": "micro", + "address_1": "10 Sims Ave Unit 110", + "address_2": null, + "address_3": null, + "city": "Providence", + "state_province": "Rhode Island", + "postal_code": "02909-1165", + "country": "United States", + "longitude": -71.4335016, + "latitude": 41.8270445, + "phone": "4013491260", + "website_url": "https://providencebrewingcompany.com", + "state": "Rhode Island", + "street": "10 Sims Ave Unit 110" + }, + { + "id": "1243a0bb-ddff-44a2-8257-05a597432665", + "name": "Pryes Brewing Company", + "brewery_type": "micro", + "address_1": "1401 W River Rd # N", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55411-3436", + "country": "United States", + "longitude": -93.2763222, + "latitude": 44.9935022, + "phone": "6127877937", + "website_url": "http://www.pryesbrewing.com", + "state": "Minnesota", + "street": "1401 W River Rd # N" + }, + { + "id": "aeca61b4-309b-4bae-95d1-35b577fd3027", + "name": "Psycho Suzie’s Brewing", + "brewery_type": "micro", + "address_1": "79 Fitzroy Street", + "address_2": null, + "address_3": null, + "city": "Warwick", + "state_province": "QLD", + "postal_code": "4370", + "country": "Australia", + "longitude": 152.0338675, + "latitude": -28.2138441, + "phone": "+61 7 4661 8267", + "website_url": "http://www.psychosuziesbrewing.com.au/", + "state": "QLD", + "street": "79 Fitzroy Street" + }, + { + "id": "d0963852-764a-4acd-b1b4-34af406036dd", + "name": "PT's Brewing Co.", + "brewery_type": "micro", + "address_1": "3101 N Tenaya Way", + "address_2": null, + "address_3": null, + "city": "Las Vegas", + "state_province": "Nevada", + "postal_code": "89128-0437", + "country": "United States", + "longitude": -115.2509527, + "latitude": 36.1739188, + "phone": null, + "website_url": null, + "state": "Nevada", + "street": "3101 N Tenaya Way" + }, + { + "id": "f66e0f8c-af6d-4f0b-a2f0-53f279062189", + "name": "Pub Craught", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Baton Rouge", + "state_province": "Louisiana", + "postal_code": "70809-2228", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Louisiana", + "street": null + }, + { + "id": "2c797daa-c0a9-4a75-86b0-ed59a6a78b52", + "name": "Pub Dog Brewing Company", + "brewery_type": "micro", + "address_1": "1203 New Windsor Rd", + "address_2": null, + "address_3": null, + "city": "Westminster", + "state_province": "Maryland", + "postal_code": "21158-6704", + "country": "United States", + "longitude": -77.05229796, + "latitude": 39.55045197, + "phone": "4108483993", + "website_url": "http://www.pubdog.com", + "state": "Maryland", + "street": "1203 New Windsor Rd" + }, + { + "id": "87961052-082b-4070-a77d-044a353c4e53", + "name": "Public Brewhouse", + "brewery_type": "micro", + "address_1": "209 N Hoff Ave", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85705-8537", + "country": "United States", + "longitude": -110.9648848, + "latitude": 32.22401718, + "phone": "5207752337", + "website_url": "http://www.publicbrewhouse.com", + "state": "Arizona", + "street": "209 N Hoff Ave" + }, + { + "id": "23009018-e5ab-4747-bd83-04665b226ea0", + "name": "Public Coast Brewing", + "brewery_type": "brewpub", + "address_1": "264 E 3rd Ave", + "address_2": null, + "address_3": null, + "city": "Cannon Beach", + "state_province": "Oregon", + "postal_code": "97110-2008", + "country": "United States", + "longitude": -123.9590737, + "latitude": 45.90084068, + "phone": "5034360285", + "website_url": "http://www.publiccoastbrewing.com", + "state": "Oregon", + "street": "264 E 3rd Ave" + }, + { + "id": "32630107-81cf-4045-a0c3-5eb8f7b0ea63", + "name": "Public Craft Brewing Co", + "brewery_type": "micro", + "address_1": "716 58th St", + "address_2": null, + "address_3": null, + "city": "Kenosha", + "state_province": "Wisconsin", + "postal_code": "53140-4137", + "country": "United States", + "longitude": -87.81975091, + "latitude": 42.58315424, + "phone": "2626522739", + "website_url": "http://www.publiccraftbrewing.com", + "state": "Wisconsin", + "street": "716 58th St" + }, + { + "id": "fa88cd5f-0c7d-495a-a4db-1ef89e1c1b7a", + "name": "Public House Brewing Co", + "brewery_type": "micro", + "address_1": "551 State Route B", + "address_2": null, + "address_3": null, + "city": "Saint James", + "state_province": "Missouri", + "postal_code": "65559-1055", + "country": "United States", + "longitude": -91.609275, + "latitude": 38.01608, + "phone": "5732613333", + "website_url": "http://www.publichousebrewery.com", + "state": "Missouri", + "street": "551 State Route B" + }, + { + "id": "7c04768b-0adb-46eb-844b-c7f150a45831", + "name": "Public House Brewing Company", + "brewery_type": "micro", + "address_1": "600 N Rolla St Ste B", + "address_2": null, + "address_3": null, + "city": "Rolla", + "state_province": "Missouri", + "postal_code": "65401-3111", + "country": "United States", + "longitude": -91.77201, + "latitude": 37.954113, + "phone": "5734262337", + "website_url": "http://www.publichousebrewery.com", + "state": "Missouri", + "street": "600 N Rolla St Ste B" + }, + { + "id": "a8d0eaec-038a-4812-8771-8bd32b8c7bb6", + "name": "Public House Kitchen and Brewery", + "brewery_type": "brewpub", + "address_1": "9406 Battle St", + "address_2": null, + "address_3": null, + "city": "Manassas", + "state_province": "Virginia", + "postal_code": "20110-5431", + "country": "United States", + "longitude": -77.4726206, + "latitude": 38.7513396, + "phone": "5712921427", + "website_url": "http://www.badwolfpublichouse.com", + "state": "Virginia", + "street": "9406 Battle St" + }, + { + "id": "1194e820-846b-47be-a99b-fe9cbdbf6df8", + "name": "Pubstomper Brewing Company", + "brewery_type": "proprietor", + "address_1": "132 Tower Ln", + "address_2": null, + "address_3": null, + "city": "Westover", + "state_province": "West Virginia", + "postal_code": "26501-4506", + "country": "United States", + "longitude": -79.96183033, + "latitude": 39.63624754, + "phone": "3046850996", + "website_url": "http://www.pubstomperbrewing.com", + "state": "West Virginia", + "street": "132 Tower Ln" + }, + { + "id": "e8797224-010f-4448-9b2a-a7455f8a768f", + "name": "Pueblo Vida Brewing Co", + "brewery_type": "micro", + "address_1": "115 E Broadway Blvd", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85701-2011", + "country": "United States", + "longitude": -110.9451764, + "latitude": 32.2214274, + "phone": "5206237168", + "website_url": "http://www.pueblovidabrewing.com", + "state": "Arizona", + "street": "115 E Broadway Blvd" + }, + { + "id": "14929b86-bff4-421a-bc03-be80a56572f8", + "name": "Pug Ryan's Brewing Company", + "brewery_type": "brewpub", + "address_1": "104 Village Pl", + "address_2": null, + "address_3": null, + "city": "Dillon", + "state_province": "Colorado", + "postal_code": "80435-2515", + "country": "United States", + "longitude": -106.0467598, + "latitude": 39.62832675, + "phone": "9704682145", + "website_url": "http://www.pugryans.com", + "state": "Colorado", + "street": "104 Village Pl" + }, + { + "id": "50b1e05a-9230-43af-8fba-f04386753196", + "name": "Pull Brewing Co", + "brewery_type": "contract", + "address_1": "317 Springtown Rd", + "address_2": null, + "address_3": null, + "city": "New Paltz", + "state_province": "New York", + "postal_code": "12561-3020", + "country": "United States", + "longitude": -74.097562, + "latitude": 41.760486, + "phone": null, + "website_url": "http://www.pullbrewing.com", + "state": "New York", + "street": "317 Springtown Rd" + }, + { + "id": "9119c101-09bb-4ac0-a3fe-da23442b96b7", + "name": "Pulpit Rock Brewing Co.", + "brewery_type": "micro", + "address_1": "207 College Dr", + "address_2": null, + "address_3": null, + "city": "Decorah", + "state_province": "Iowa", + "postal_code": "52101-1304", + "country": "United States", + "longitude": -91.7962545, + "latitude": 43.30654024, + "phone": "5633803610", + "website_url": "http://www.pulpitrockbrewing.net", + "state": "Iowa", + "street": "207 College Dr" + }, + { + "id": "0cb99662-37d0-4a67-8fd4-8298f9179051", + "name": "Pumphouse Brewery and Restaurant", + "brewery_type": "brewpub", + "address_1": "540 Main St", + "address_2": null, + "address_3": null, + "city": "Longmont", + "state_province": "Colorado", + "postal_code": "80501-5537", + "country": "United States", + "longitude": -105.1020999, + "latitude": 40.1687619, + "phone": "3037020881", + "website_url": "http://www.pumphousebrewery.com", + "state": "Colorado", + "street": "540 Main St" + }, + { + "id": "56758247-521c-4219-afa2-0665c48c50ef", + "name": "Puntigamer Brauerei (Heineken)", + "brewery_type": "large", + "address_1": "Triester Str. 361", + "address_2": null, + "address_3": null, + "city": "Graz", + "state_province": "Steiermark", + "postal_code": "8055", + "country": "Austria", + "longitude": 15.432570096538, + "latitude": 47.029627917575, + "phone": "+4331629710013", + "website_url": "https://www.puntigamer.at", + "state": "Steiermark", + "street": "Triester Str. 361" + }, + { + "id": "d0dd6285-194e-4a7e-b260-1304a482c335", + "name": "Pure Order Brewing Co", + "brewery_type": "micro", + "address_1": "410 N Quarantina St", + "address_2": null, + "address_3": null, + "city": "Santa Barbara", + "state_province": "California", + "postal_code": "93103-3119", + "country": "United States", + "longitude": -119.6864979, + "latitude": 34.42351207, + "phone": "8059662881", + "website_url": "http://www.pureorderbrewing.com", + "state": "California", + "street": "410 N Quarantina St" + }, + { + "id": "7f1de675-59d2-4c2f-992a-9a3092084b33", + "name": "Pure Project", + "brewery_type": "micro", + "address_1": "9030 Kenamar Dr Ste 308", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92121-2432", + "country": "United States", + "longitude": -117.1555351, + "latitude": 32.88830151, + "phone": "8582526143", + "website_url": "http://www.purebrewing.org", + "state": "California", + "street": "9030 Kenamar Dr Ste 308" + }, + { + "id": "2fc1f3e1-43bf-4e50-9877-cc80a600de29", + "name": "Purgatory Beer Co, LLC", + "brewery_type": "micro", + "address_1": "670 Linwood Ave Bldg C", + "address_2": null, + "address_3": null, + "city": "Whitinsville", + "state_province": "Massachusetts", + "postal_code": "01588-2068", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7745450243", + "website_url": "http://www.purgatorybeer.com", + "state": "Massachusetts", + "street": "670 Linwood Ave Bldg C" + }, + { + "id": "2a22f461-fb7f-4347-87f7-e6316274fcd9", + "name": "Puritan Brew Company", + "brewery_type": "contract", + "address_1": "205 W Dickson St", + "address_2": null, + "address_3": null, + "city": "Fayetteville", + "state_province": "Arkansas", + "postal_code": "72701-5222", + "country": "United States", + "longitude": -94.1620702, + "latitude": 36.066188, + "phone": "4793012365", + "website_url": "http://www.puritanbrewcompany.com", + "state": "Arkansas", + "street": "205 W Dickson St" + }, + { + "id": "b8e7517b-317b-4e4d-9d3d-4f7a35200908", + "name": "Purpose Brewing and Cellars", + "brewery_type": "micro", + "address_1": "4025 S Mason St Unit C", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80525-5953", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9703774107", + "website_url": "http://www.purposebrewing.com", + "state": "Colorado", + "street": "4025 S Mason St Unit C" + }, + { + "id": "c522a9cc-0865-4764-8447-d733d4a7046f", + "name": "Put-In-Bay Brewing Co", + "brewery_type": "brewpub", + "address_1": "441 Catawba Ave", + "address_2": null, + "address_3": null, + "city": "Put In Bay", + "state_province": "Ohio", + "postal_code": "43456-6536", + "country": "United States", + "longitude": -82.81996476, + "latitude": 41.65188956, + "phone": "4192854677", + "website_url": "http://www.putinbaybrewery.com", + "state": "Ohio", + "street": "441 Catawba Ave" + }, + { + "id": "64ef6c86-1c4e-41aa-983f-3a380b552973", + "name": "Puyallup River Brewing Co", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Puyallup", + "state_province": "Washington", + "postal_code": "98375-6923", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2535908219", + "website_url": "http://www.puyallupriverbrewing.com", + "state": "Washington", + "street": null + }, + { + "id": "07b5c626-a59e-4b2c-894e-e940ec87d094", + "name": "Pyramid Breweries / North American Breweries", + "brewery_type": "brewpub", + "address_1": "1201 1st Ave S", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98134-1238", + "country": "United States", + "longitude": -122.33477, + "latitude": 47.5920086, + "phone": "2066823377", + "website_url": "http://www.pyramidbrew.com", + "state": "Washington", + "street": "1201 1st Ave S" + }, + { + "id": "4073c00b-a6c5-4b1f-b9fd-3671fc10cff9", + "name": "Q-wa Bar Yakitori", + "brewery_type": "bar", + "address_1": "39 East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "428756", + "country": "Singapore", + "longitude": 1.3049374192657, + "latitude": 103.9029166, + "phone": "+65 6348 9938", + "website_url": null, + "state": "Singapore", + "street": "39 East Coast Road" + }, + { + "id": "30f16fe6-539b-4238-affb-1ad6604de275", + "name": "Quaff On Brewing", + "brewery_type": "micro", + "address_1": "1934 State Road 135 N", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Indiana", + "postal_code": "47448-8418", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8129886006", + "website_url": "http://www.quaffon.com", + "state": "Indiana", + "street": "1934 State Road 135 N" + }, + { + "id": "9ea909e7-6392-4241-a9a3-b5a11932fb7a", + "name": "QUAKE! Brewing Company", + "brewery_type": "closed", + "address_1": "1540 N Shoreline Dr", + "address_2": null, + "address_3": null, + "city": "Wasilla", + "state_province": "Alaska", + "postal_code": "99654", + "country": "United States", + "longitude": -149.340342, + "latitude": 61.596646, + "phone": "4048340997", + "website_url": "http://www.quakebrewingcompany.com", + "state": "Alaska", + "street": "1540 N Shoreline Dr" + }, + { + "id": "ac19d512-0d7c-4821-a198-1bc0dec4e9cc", + "name": "Quantum Brewing Co", + "brewery_type": "micro", + "address_1": "5375 Kearny Villa Rd Ste 116", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92123-1422", + "country": "United States", + "longitude": -117.1170304, + "latitude": 32.8901624, + "phone": "8582546481", + "website_url": "http://www.quantumbrewingsd.com", + "state": "California", + "street": "5375 Kearny Villa Rd Ste 116" + }, + { + "id": "c7367015-8da6-4abb-a8e8-dc7ab974b7bd", + "name": "Quarry Brewing", + "brewery_type": "micro", + "address_1": "124 W Broadway St", + "address_2": null, + "address_3": null, + "city": "Butte", + "state_province": "Montana", + "postal_code": "59701-9224", + "country": "United States", + "longitude": -112.5390009, + "latitude": 46.01335466, + "phone": "4067230245", + "website_url": "http://www.wedigbeer.com", + "state": "Montana", + "street": "124 W Broadway St" + }, + { + "id": "2b5180bb-1de5-4961-af08-6a227d1cb37c", + "name": "Quarter Barrel Arcade", + "brewery_type": "brewpub", + "address_1": "616 2nd Ave SE", + "address_2": null, + "address_3": null, + "city": "Cedar Rapids", + "state_province": "Iowa", + "postal_code": "52401-1306", + "country": "United States", + "longitude": -91.66318094, + "latitude": 41.98062533, + "phone": "3196211836", + "website_url": "http://www.thequarterbarrel.com", + "state": "Iowa", + "street": "616 2nd Ave SE" + }, + { + "id": "8c192935-c685-444f-abc2-5a5e637f8b8d", + "name": "Quarter Barrel Brewery", + "brewery_type": "brewpub", + "address_1": "107 E Church St", + "address_2": null, + "address_3": null, + "city": "Oxford", + "state_province": "Ohio", + "postal_code": "45056-1317", + "country": "United States", + "longitude": -84.74045186, + "latitude": 39.51142737, + "phone": "5135232525", + "website_url": null, + "state": "Ohio", + "street": "107 E Church St" + }, + { + "id": "8c1536cc-c630-465c-9694-85490c0c13b6", + "name": "Quarter Barrel Brewery and Pub", + "brewery_type": "brewpub", + "address_1": "103 Main St", + "address_2": null, + "address_3": null, + "city": "Hamilton", + "state_province": "Ohio", + "postal_code": "45013", + "country": "United States", + "longitude": -84.3556606, + "latitude": 39.1246414, + "phone": "5135552525", + "website_url": null, + "state": "Ohio", + "street": "103 Main St" + }, + { + "id": "9faf7b68-73ee-4252-aafa-b903c7376a12", + "name": "Quarter Celtic Brewpub", + "brewery_type": "brewpub", + "address_1": "1100 San Mateo Blvd NE Ste 50", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87110-6473", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5055031387", + "website_url": "http://www.quartercelticbrewery.com", + "state": "New Mexico", + "street": "1100 San Mateo Blvd NE Ste 50" + }, + { + "id": "79a8d058-2314-4b8b-b1ce-e125ca04e45b", + "name": "Quartzite Brewing Company", + "brewery_type": "micro", + "address_1": "105 W Main Ave", + "address_2": null, + "address_3": null, + "city": "Chewelah", + "state_province": "Washington", + "postal_code": "99109-9257", + "country": "United States", + "longitude": -117.71646, + "latitude": 48.27618, + "phone": "5099363686", + "website_url": "https://quartzitebrewco.business.site", + "state": "Washington", + "street": "105 W Main Ave" + }, + { + "id": "9452153d-ec17-4f40-8801-1652436c1d51", + "name": "Quattro Goombas Brewery", + "brewery_type": "brewpub", + "address_1": "22860 James Monroe Hwy", + "address_2": null, + "address_3": null, + "city": "Aldie", + "state_province": "Virginia", + "postal_code": "20105-1916", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7035091332", + "website_url": "http://www.goombabrewery.com", + "state": "Virginia", + "street": "22860 James Monroe Hwy" + }, + { + "id": "4dfeb9cd-7b63-46e6-ac77-76a97d86daeb", + "name": "Queen City Brewery of Cincinnati", + "brewery_type": "micro", + "address_1": "11253 Williamson Rd", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45241-2230", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": "11253 Williamson Rd" + }, + { + "id": "fbba8bc4-e368-44a0-8526-3c792d164ab1", + "name": "Queen City Brewery, LLC", + "brewery_type": "micro", + "address_1": "703 Pine St", + "address_2": null, + "address_3": null, + "city": "Burlington", + "state_province": "Vermont", + "postal_code": "05401-4921", + "country": "United States", + "longitude": -73.21483275, + "latitude": 44.4594977, + "phone": "8025400280", + "website_url": "http://www.queencitybrewery.com", + "state": "Vermont", + "street": "703 Pine St" + }, + { + "id": "b443f794-3038-4669-837a-3140a2251d6a", + "name": "Queen City Brewing", + "brewery_type": "micro", + "address_1": "834 Spring Hill Rd", + "address_2": null, + "address_3": null, + "city": "Staunton", + "state_province": "Virginia", + "postal_code": "24401-2865", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5402138014", + "website_url": "http://www.queencitybrewing.com", + "state": "Virginia", + "street": "834 Spring Hill Rd" + }, + { + "id": "f0112fde-2dd4-4ab0-99cb-5266c55628b6", + "name": "Queens Brewery", + "brewery_type": "proprietor", + "address_1": "1539 Covert St", + "address_2": null, + "address_3": null, + "city": "Ridgewood", + "state_province": "New York", + "postal_code": "11385-5356", + "country": "United States", + "longitude": -73.90428508, + "latitude": 40.6949116, + "phone": "6462652049", + "website_url": "http://www.queensbrewery.com", + "state": "New York", + "street": "1539 Covert St" + }, + { + "id": "393eb2eb-c37c-4009-b50b-a7b1d2ebfc66", + "name": "Quest Brewing Company", + "brewery_type": "micro", + "address_1": "55 Airview Dr", + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "South Carolina", + "postal_code": "29607-2632", + "country": "United States", + "longitude": -82.34515691, + "latitude": 34.8465767, + "phone": "8642726232", + "website_url": "http://www.questbrewing.com", + "state": "South Carolina", + "street": "55 Airview Dr" + }, + { + "id": "105764ab-27f9-4bd0-8d62-2a2c61e5ec8d", + "name": "Quick Trigger Brewing Company", + "brewery_type": "brewpub", + "address_1": "118 Main St W", + "address_2": null, + "address_3": null, + "city": "Ahoskie", + "state_province": "North Carolina", + "postal_code": "27910-3302", + "country": "United States", + "longitude": -76.9863065, + "latitude": 36.2857593, + "phone": "2523326844", + "website_url": "http://www.quicktriggerbrewing.com", + "state": "North Carolina", + "street": "118 Main St W" + }, + { + "id": "70d18ff8-cc1d-4a3a-8524-e37a200a0ab2", + "name": "Quigley's Pint and Plate", + "brewery_type": "brewpub", + "address_1": "257 Willbrook Blvd", + "address_2": null, + "address_3": null, + "city": "Pawleys Island", + "state_province": "South Carolina", + "postal_code": "29585-7789", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8432377010", + "website_url": null, + "state": "South Carolina", + "street": "257 Willbrook Blvd" + }, + { + "id": "03118499-a3d0-4c22-860d-4529509ae095", + "name": "Quilbilly's Restaurant and Taproom", + "brewery_type": "brewpub", + "address_1": "294793 US Highway 101", + "address_2": null, + "address_3": null, + "city": "Quilcene", + "state_province": "Washington", + "postal_code": "98376-9000", + "country": "United States", + "longitude": -122.8755823, + "latitude": 47.82347577, + "phone": "3607656485", + "website_url": "https://www.quilbillys.com", + "state": "Washington", + "street": "294793 US Highway 101" + }, + { + "id": "d88f3979-3660-40cd-820c-f0da9cf4ce22", + "name": "Quinn Brewing Company", + "brewery_type": "micro", + "address_1": "3000 Commerce Loop Ste 3200", + "address_2": null, + "address_3": null, + "city": "Irwin", + "state_province": "Pennsylvania", + "postal_code": "15642-8112", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7245905916", + "website_url": "http://www.quinnbrewing.com", + "state": "Pennsylvania", + "street": "3000 Commerce Loop Ste 3200" + }, + { + "id": "5185fd8b-4369-4613-a595-5e9c06f624b6", + "name": "Quirk Brewing", + "brewery_type": "micro", + "address_1": "425 B St", + "address_2": null, + "address_3": null, + "city": "Walla Walla", + "state_province": "Washington", + "postal_code": "99362-2265", + "country": "United States", + "longitude": -118.2755318, + "latitude": 46.0913886, + "phone": null, + "website_url": null, + "state": "Washington", + "street": "425 B St" + }, + { + "id": "9b9418e4-8a71-4e97-9403-2b787aace83a", + "name": "R.S. Taylor & Sons Brewery", + "brewery_type": "brewpub", + "address_1": "3602 County Route 30", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "New York", + "postal_code": "12865-4702", + "country": "United States", + "longitude": -73.360912, + "latitude": 43.175335, + "phone": "5182090474", + "website_url": "http://www.rstaylorbrewing.com", + "state": "New York", + "street": "3602 County Route 30" + }, + { + "id": "d6fde152-fd90-463c-9eec-7c25da6278f4", + "name": "R.Shea Brewing", + "brewery_type": "micro", + "address_1": "1662 Merriman Rd", + "address_2": null, + "address_3": null, + "city": "Akron", + "state_province": "Ohio", + "postal_code": "44313-9000", + "country": "United States", + "longitude": -81.55341503, + "latitude": 41.13489995, + "phone": "3307945654", + "website_url": "http://www.rsheabrewing.com", + "state": "Ohio", + "street": "1662 Merriman Rd" + }, + { + "id": "bff7304d-177d-44ed-bbb1-c5d2b19783aa", + "name": "Rabbit Hole Brewing", + "brewery_type": "micro", + "address_1": "106 E 6th", + "address_2": null, + "address_3": null, + "city": "Justin", + "state_province": "Texas", + "postal_code": "76247-4635", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9404413528", + "website_url": "http://www.rabbitholebrewing.com", + "state": "Texas", + "street": "106 E 6th" + }, + { + "id": "128677f2-1463-4619-be91-9d0077e78ffd", + "name": "Rabble-Rouser Brewing Company", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mcallen", + "state_province": "Texas", + "postal_code": "78501", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9563290100", + "website_url": "http://www.therabble-rousers.com", + "state": "Texas", + "street": null + }, + { + "id": "f1f86e50-2558-4f60-9d6d-f9dd8301a26f", + "name": "Rabid Brewing, LLC", + "brewery_type": "micro", + "address_1": "17559 Bretz Dr", + "address_2": null, + "address_3": null, + "city": "Homewood", + "state_province": "Illinois", + "postal_code": "60430", + "country": "United States", + "longitude": -87.6330234, + "latitude": 41.5647232, + "phone": "7089603193", + "website_url": "http://www.rabidbrewing.com", + "state": "Illinois", + "street": "17559 Bretz Dr" + }, + { + "id": "391a35c6-e0b6-4a79-a95b-e6469a674107", + "name": "Race Street Brew Works", + "brewery_type": "brewpub", + "address_1": "511 Spruce St Ste 2", + "address_2": null, + "address_3": null, + "city": "Clearfield", + "state_province": "Pennsylvania", + "postal_code": "16830-1923", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8142054052", + "website_url": "http://www.racestreetbrew.com", + "state": "Pennsylvania", + "street": "511 Spruce St Ste 2" + }, + { + "id": "3830bd5c-0997-4a3c-b2d5-9f56386cdc21", + "name": "Racine Brewing Co", + "brewery_type": "micro", + "address_1": "303 Main St", + "address_2": null, + "address_3": null, + "city": "Racine", + "state_province": "Wisconsin", + "postal_code": "53403", + "country": "United States", + "longitude": -87.78339257, + "latitude": 42.73050741, + "phone": "2626310670", + "website_url": "http://www.racinebrewingcompany.com", + "state": "Wisconsin", + "street": "303 Main St" + }, + { + "id": "911ff443-97e8-4769-80d9-b7efe3b7a9a0", + "name": "Racing City Brewing Company", + "brewery_type": "micro", + "address_1": "250 Excelsior Ave", + "address_2": null, + "address_3": null, + "city": "Saratoga Springs", + "state_province": "New York", + "postal_code": "12866-8532", + "country": "United States", + "longitude": -73.7769944, + "latitude": 43.0888891, + "phone": "5183504515", + "website_url": "http://www.racingcitybrewingcompany.com", + "state": "New York", + "street": "250 Excelsior Ave" + }, + { + "id": "8d1600f2-6526-4bdb-8992-bb0fdb286005", + "name": "Radiant Pig Craft Beers", + "brewery_type": "contract", + "address_1": "122 W 27th St Fl 10", + "address_2": null, + "address_3": null, + "city": "New York", + "state_province": "New York", + "postal_code": "10001-6227", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New York", + "street": "122 W 27th St Fl 10" + }, + { + "id": "7c73edeb-85e0-4a8c-9f34-33834ce70cd8", + "name": "Radicle Effect Brewerks", + "brewery_type": "micro", + "address_1": "1340 31st St", + "address_2": null, + "address_3": null, + "city": "Rock Island", + "state_province": "Illinois", + "postal_code": "61201-2949", + "country": "United States", + "longitude": -90.55595294, + "latitude": 41.49803483, + "phone": "3092837605", + "website_url": "http://www.rebrewerks.com", + "state": "Illinois", + "street": "1340 31st St" + }, + { + "id": "d9ca812a-80a6-4665-a243-3552f3b0563b", + "name": "Radio Brewing Company", + "brewery_type": "brewpub", + "address_1": "319 Main St", + "address_2": null, + "address_3": null, + "city": "Kellogg", + "state_province": "Idaho", + "postal_code": "83837", + "country": "United States", + "longitude": -116.1225116, + "latitude": 47.53391643, + "phone": "2087866633", + "website_url": "http://www.radiobrewingcompany.com", + "state": "Idaho", + "street": "319 Main St" + }, + { + "id": "eea07160-746d-48bd-82cf-29f8de4e6915", + "name": "Radium City Brewing", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Ottawa", + "state_province": "Illinois", + "postal_code": "61350", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.radiumcitybrewing.com", + "state": "Illinois", + "street": null + }, + { + "id": "633070e8-f61d-4e78-82ce-54d4d229f58e", + "name": "Radius Brewing Company", + "brewery_type": "micro", + "address_1": "610 Merchant St", + "address_2": null, + "address_3": null, + "city": "Emporia", + "state_province": "Kansas", + "postal_code": "66801-2859", + "country": "United States", + "longitude": -96.18130706, + "latitude": 38.40521996, + "phone": "6202084677", + "website_url": "http://radiusbrewing@yahoo.com", + "state": "Kansas", + "street": "610 Merchant St" + }, + { + "id": "8295ba7b-4f06-4370-995d-ebacaffea398", + "name": "Ragged Island Brewing Company", + "brewery_type": "micro", + "address_1": "54 Bristol Ferry Rd", + "address_2": null, + "address_3": null, + "city": "Portsmouth", + "state_province": "Rhode Island", + "postal_code": "02871", + "country": "United States", + "longitude": -71.25695, + "latitude": 41.616314, + "phone": "4013182991", + "website_url": "http://www.raggedislandbrewing.com", + "state": "Rhode Island", + "street": "54 Bristol Ferry Rd" + }, + { + "id": "d91cbdb4-443b-43e6-8005-02616b3c3e80", + "name": "Ragtime Tavern Seafood and Grill", + "brewery_type": "brewpub", + "address_1": "207 Atlantic Blvd", + "address_2": null, + "address_3": null, + "city": "Atlantic Beach", + "state_province": "Florida", + "postal_code": "32233-5273", + "country": "United States", + "longitude": -81.3964898, + "latitude": 30.3247964, + "phone": "9042417877", + "website_url": "http://www.ragtimetavern.com", + "state": "Florida", + "street": "207 Atlantic Blvd" + }, + { + "id": "eb13cc36-c81f-4518-9b84-24e7ea268d85", + "name": "Rahr and Sons Brewing Co", + "brewery_type": "regional", + "address_1": "701 Galveston Ave", + "address_2": null, + "address_3": null, + "city": "Fort Worth", + "state_province": "Texas", + "postal_code": "76104-3355", + "country": "United States", + "longitude": -97.327292, + "latitude": 32.7371, + "phone": "8178109266", + "website_url": "http://www.rahrbrewing.com", + "state": "Texas", + "street": "701 Galveston Ave" + }, + { + "id": "e24adb1a-11ab-4db3-8e5f-93c14a8c7a09", + "name": "Rahr Technical Center LLC", + "brewery_type": "micro", + "address_1": "800 1st Ave W", + "address_2": null, + "address_3": null, + "city": "Shakopee", + "state_province": "Minnesota", + "postal_code": "55379-1148", + "country": "United States", + "longitude": -93.5365005, + "latitude": 44.7968103, + "phone": "9524650585", + "website_url": null, + "state": "Minnesota", + "street": "800 1st Ave W" + }, + { + "id": "512eb241-55cf-47bf-b949-824cc7fd7449", + "name": "Raices Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80204", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2024237060", + "website_url": "http://www.raicesbrewing.com", + "state": "Colorado", + "street": null + }, + { + "id": "5a8a414d-d2a5-4ca8-b436-27d5571bd56c", + "name": "Rail Hop'n Brewing Co", + "brewery_type": "micro", + "address_1": "122 W Main St Ste 101B", + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "Washington", + "postal_code": "98001-4924", + "country": "United States", + "longitude": -122.2290885, + "latitude": 47.3120419, + "phone": "2532176800", + "website_url": "http://www.railhopn.com", + "state": "Washington", + "street": "122 W Main St Ste 101B" + }, + { + "id": "e433ddf5-de9b-4306-88c8-dea56bbf8d4b", + "name": "Rail Line Brewing", + "brewery_type": "brewpub", + "address_1": "301 N Main St", + "address_2": null, + "address_3": null, + "city": "Simpsonville", + "state_province": "South Carolina", + "postal_code": "29681-2311", + "country": "United States", + "longitude": -82.25782481, + "latitude": 34.7414657, + "phone": "8645939722", + "website_url": "http://www.raillinebrewing.com", + "state": "South Carolina", + "street": "301 N Main St" + }, + { + "id": "03701616-c339-41c3-ac31-9ba74e82745e", + "name": "Railhead Brewing Company", + "brewery_type": "brewpub", + "address_1": "40 Park Dr", + "address_2": null, + "address_3": null, + "city": "Hornell", + "state_province": "New York", + "postal_code": "14843-2213", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6073243286", + "website_url": "http://www.railheadbrewing.com", + "state": "New York", + "street": "40 Park Dr" + }, + { + "id": "a7e1db73-8d89-46f7-b3a5-7f186529e972", + "name": "Railhouse Brewery", + "brewery_type": "micro", + "address_1": "105 E South St Unit C", + "address_2": null, + "address_3": null, + "city": "Aberdeen", + "state_province": "North Carolina", + "postal_code": "28315-", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9107835280", + "website_url": "http://www.railhousebrewery.com", + "state": "North Carolina", + "street": "105 E South St Unit C" + }, + { + "id": "4b15db52-05ef-4a27-8d0f-12572da07b9b", + "name": "Railhouse Restaurant and Brewery", + "brewery_type": "brewpub", + "address_1": "2029 Old Peshtigo Ct", + "address_2": null, + "address_3": null, + "city": "Marinette", + "state_province": "Wisconsin", + "postal_code": "54143-1066", + "country": "United States", + "longitude": -87.6543602, + "latitude": 45.085149, + "phone": "7157324646", + "website_url": "http://www.railhousebrewpub.com", + "state": "Wisconsin", + "street": "2029 Old Peshtigo Ct" + }, + { + "id": "330a7167-f217-4419-b66a-d12cb04f647d", + "name": "Railport Brewing Company", + "brewery_type": "micro", + "address_1": "405 W Madison St", + "address_2": null, + "address_3": null, + "city": "Waxahachie", + "state_province": "Texas", + "postal_code": "75165-3666", + "country": "United States", + "longitude": -96.85141051, + "latitude": 32.38463715, + "phone": "4693605383", + "website_url": "http://www.railportbrewing.com", + "state": "Texas", + "street": "405 W Madison St" + }, + { + "id": "52dc49dc-14c6-426f-821c-a52f9d5552b3", + "name": "Railroad Brewing Company", + "brewery_type": "micro", + "address_1": "1010 Center Rd", + "address_2": null, + "address_3": null, + "city": "Avon", + "state_province": "Ohio", + "postal_code": "44011-1206", + "country": "United States", + "longitude": -82.01953725, + "latitude": 41.4754617, + "phone": "4407238234", + "website_url": "http://www.railroadbrewingcompany.com", + "state": "Ohio", + "street": "1010 Center Rd" + }, + { + "id": "aefe68ce-6f3c-45f7-9d3f-c7af686cd8c8", + "name": "Railroad City Brewing Company", + "brewery_type": "brewpub", + "address_1": "1415 11th Ave Ste 1", + "address_2": null, + "address_3": null, + "city": "Altoona", + "state_province": "Pennsylvania", + "postal_code": "16601-3303", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8142012827", + "website_url": "http://www.railroadcitybrewing.com", + "state": "Pennsylvania", + "street": "1415 11th Ave Ste 1" + }, + { + "id": "d90fdac6-8658-44a1-8e97-f6f22b74ef3a", + "name": "Railroad Seafood Station & Brewing Co.", + "brewery_type": "brewpub", + "address_1": "1214 N Chaparral St", + "address_2": null, + "address_3": null, + "city": "Corpus Christi", + "state_province": "Texas", + "postal_code": "78401-1503", + "country": "United States", + "longitude": -97.39433962, + "latitude": 27.8027685, + "phone": "3618836200", + "website_url": "http://www.railroadseafood.com", + "state": "Texas", + "street": "1214 N Chaparral St" + }, + { + "id": "6789f741-4866-4838-bff5-6dceef7d5341", + "name": "Rails End Beer Company", + "brewery_type": "micro", + "address_1": "11625 Reed Ct", + "address_2": null, + "address_3": null, + "city": "Broomfield", + "state_province": "Colorado", + "postal_code": "80020-2834", + "country": "United States", + "longitude": -105.0750302, + "latitude": 39.9084879, + "phone": "3033538121", + "website_url": "http://www.railsendbeerco.com", + "state": "Colorado", + "street": "11625 Reed Ct" + }, + { + "id": "d370a13b-1914-4da8-a6c9-253d6406e0bb", + "name": "Railside Brewing", + "brewery_type": "micro", + "address_1": "309 NE 76th St", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98665-8210", + "country": "United States", + "longitude": -122.66809623083, + "latitude": 45.677013281557, + "phone": "3609078582", + "website_url": "http://www.railsidebrewing.com", + "state": "Washington", + "street": "309 NE 76th St" + }, + { + "id": "3af17697-4c50-47bb-9b31-dfb2b5518ea5", + "name": "Railtown Brewing Co", + "brewery_type": "micro", + "address_1": "3595 68th St SE", + "address_2": null, + "address_3": null, + "city": "Dutton", + "state_province": "Michigan", + "postal_code": "49316-8503", + "country": "United States", + "longitude": -85.57833065, + "latitude": 42.84118888, + "phone": "6168812364", + "website_url": "http://www.railtownbrewing.com", + "state": "Michigan", + "street": "3595 68th St SE" + }, + { + "id": "3d2a2d0f-e13a-48d3-a1f3-8158d1538ab9", + "name": "Raintree Brewing Company", + "brewery_type": "micro", + "address_1": "500 Church Street", + "address_2": null, + "address_3": null, + "city": "New Harmony", + "state_province": "Indiana", + "postal_code": "47631", + "country": "United States", + "longitude": -87.9348109, + "latitude": 38.1299262, + "phone": null, + "website_url": "http://www.raintreebrewing.com", + "state": "Indiana", + "street": "500 Church Street" + }, + { + "id": "9e119744-6668-4d12-9105-2e9236bb614e", + "name": "Rainy Daze Brewing", + "brewery_type": "micro", + "address_1": "650 NW BOVELA LN SUITE 3", + "address_2": null, + "address_3": null, + "city": "Poulsbo", + "state_province": "Washington", + "postal_code": "98370", + "country": "United States", + "longitude": -122.65739500193, + "latitude": 47.73993326175, + "phone": "3606921858", + "website_url": "http://www.rainydazebrewing.com", + "state": "Washington", + "street": "650 NW BOVELA LN SUITE 3" + }, + { + "id": "d8572428-9a8a-4087-8b6a-d815d63698f4", + "name": "Raised Grain Brewing Company", + "brewery_type": "brewpub", + "address_1": "2244 W Bluemound Rd Ste E", + "address_2": null, + "address_3": null, + "city": "Waukesha", + "state_province": "Wisconsin", + "postal_code": "53186-2921", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Wisconsin", + "street": "2244 W Bluemound Rd Ste E" + }, + { + "id": "cd1f1a39-af96-4e8a-a863-93e5ae52624b", + "name": "Raleigh Brewing Company", + "brewery_type": "micro", + "address_1": "3709 Neil St", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27607-5415", + "country": "United States", + "longitude": -78.6875149, + "latitude": 35.7931167, + "phone": "9194009086", + "website_url": "http://www.raleighbrewingcompany.com", + "state": "North Carolina", + "street": "3709 Neil St" + }, + { + "id": "5806ef06-a300-4a88-820e-f14e0c290794", + "name": "Rally King Brewing", + "brewery_type": "micro", + "address_1": "1624 S Lemay Ave Unit 4", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80525-1188", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9705688936", + "website_url": "http://www.rallykingbrewing.com", + "state": "Colorado", + "street": "1624 S Lemay Ave Unit 4" + }, + { + "id": "7a59af26-0bfc-451f-8606-40e2653944bd", + "name": "RAM Restaurant and Brewery - Boise", + "brewery_type": "brewpub", + "address_1": "709 E Park Blvd", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83712-7715", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2083452929", + "website_url": "http://www.theram.com", + "state": "Idaho", + "street": "709 E Park Blvd" + }, + { + "id": "a12fde89-9b18-4f5b-8347-93709903231e", + "name": "RAM Restaurant and Brewery - Clackamas", + "brewery_type": "brewpub", + "address_1": "9073 SE Sunnyside Rd", + "address_2": null, + "address_3": null, + "city": "Clackamas", + "state_province": "Oregon", + "postal_code": "97015-9759", + "country": "United States", + "longitude": -122.5715994, + "latitude": 45.43365785, + "phone": "5036591282", + "website_url": null, + "state": "Oregon", + "street": "9073 SE Sunnyside Rd" + }, + { + "id": "429297ab-f39b-40ee-a033-dbb560da0b3e", + "name": "RAM Restaurant and Brewery - Indianapolis", + "brewery_type": "brewpub", + "address_1": "140 S Illinois St", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46204", + "country": "United States", + "longitude": -86.16050947, + "latitude": 39.76475755, + "phone": "3179559900", + "website_url": "http://www.theram.com", + "state": "Indiana", + "street": "140 S Illinois St" + }, + { + "id": "f20913bd-86c4-4771-b1ab-4a5252573efb", + "name": "RAM Restaurant and Brewery - Lakewood", + "brewery_type": "brewpub", + "address_1": "10019 59th Ave SW", + "address_2": null, + "address_3": null, + "city": "Lakewood", + "state_province": "Washington", + "postal_code": "98499-2757", + "country": "United States", + "longitude": -122.5156132, + "latitude": 47.16601043, + "phone": "2535843191", + "website_url": "http://www.theram.com", + "state": "Washington", + "street": "10019 59th Ave SW" + }, + { + "id": "0fbec903-d1d0-4d45-85b8-8d792c63600e", + "name": "RAM Restaurant and Brewery - Medford", + "brewery_type": "brewpub", + "address_1": "165 Rossanley Dr", + "address_2": null, + "address_3": null, + "city": "Medford", + "state_province": "Oregon", + "postal_code": "97501-1777", + "country": "United States", + "longitude": -122.8832971, + "latitude": 42.343116, + "phone": "4582259816", + "website_url": null, + "state": "Oregon", + "street": "165 Rossanley Dr" + }, + { + "id": "38f79ca2-6c0d-4e65-948c-53829daa2f6a", + "name": "RAM Restaurant and Brewery - Production", + "brewery_type": "micro", + "address_1": "5001 S Washington St", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98409-2828", + "country": "United States", + "longitude": -122.48489, + "latitude": 47.211482, + "phone": "2534747465", + "website_url": "http://www.theram.com", + "state": "Washington", + "street": "5001 S Washington St" + }, + { + "id": "f4db78ff-2256-477c-bce3-fe41d215a66e", + "name": "RAM Restaurant and Brewery - Puyallup South Hill", + "brewery_type": "brewpub", + "address_1": "103 35th Ave SE", + "address_2": null, + "address_3": null, + "city": "Puyallup", + "state_province": "Washington", + "postal_code": "98374-1231", + "country": "United States", + "longitude": -122.292785, + "latitude": 47.15857071, + "phone": "2538413317", + "website_url": "http://www.theram.com", + "state": "Washington", + "street": "103 35th Ave SE" + }, + { + "id": "f37404d3-d3b1-4ace-b273-8c25620e8276", + "name": "RAM Restaurant and Brewery - Salem", + "brewery_type": "brewpub", + "address_1": "515 12th St SE", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "Oregon", + "postal_code": "97301-4034", + "country": "United States", + "longitude": -123.0292121, + "latitude": 44.932777, + "phone": "5033631904", + "website_url": "http://www.theram.com", + "state": "Oregon", + "street": "515 12th St SE" + }, + { + "id": "3d1df8eb-6d29-4228-9d0c-75e1a2b8b6de", + "name": "RAM Restaurant and Brewery - Schaumburg", + "brewery_type": "brewpub", + "address_1": "1901 McConnor Pkwy", + "address_2": null, + "address_3": null, + "city": "Schaumburg", + "state_province": "Illinois", + "postal_code": "60173-4389", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8475178791", + "website_url": "http://www.theram.com", + "state": "Illinois", + "street": "1901 McConnor Pkwy" + }, + { + "id": "2ad22e5f-66ea-4213-a8a5-cceaaae97f04", + "name": "RAM Restaurant and Brewery - Seattle", + "brewery_type": "brewpub", + "address_1": "2650 NE University Village St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98105-5023", + "country": "United States", + "longitude": -122.2980609, + "latitude": 47.6641459, + "phone": "2065253565", + "website_url": "http://www.theram.com", + "state": "Washington", + "street": "2650 NE University Village St" + }, + { + "id": "34f9330a-5f6e-487b-8328-4642ab980625", + "name": "RAM Restaurant and Brewery - Tacoma", + "brewery_type": "brewpub", + "address_1": "3001 Ruston Way", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98402-5306", + "country": "United States", + "longitude": -122.474793, + "latitude": 47.2797382, + "phone": "2537567886", + "website_url": "http://www.theram.com", + "state": "Washington", + "street": "3001 Ruston Way" + }, + { + "id": "e8b9b8b7-b7b7-4cce-a440-e774f4a5c90f", + "name": "RAM Restaurant and Brewery - Wheeling", + "brewery_type": "brewpub", + "address_1": "700 N Milwaukee Ave", + "address_2": null, + "address_3": null, + "city": "Wheeling", + "state_province": "Illinois", + "postal_code": "60090-3026", + "country": "United States", + "longitude": -87.9155543, + "latitude": 42.1541156, + "phone": "8475201222", + "website_url": "http://www.theram.com", + "state": "Illinois", + "street": "700 N Milwaukee Ave" + }, + { + "id": "8d25dc57-b983-42f7-9829-9db8481ac10e", + "name": "RAM Restaurant and Brewery- Northgate", + "brewery_type": "closed", + "address_1": "401 NE Northgate Way Spc 1102", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98125-8538", + "country": "United States", + "longitude": -122.32671368844, + "latitude": 47.707607904203, + "phone": "2063648000", + "website_url": "http://www.theram.com", + "state": "Washington", + "street": "401 NE Northgate Way Spc 1102" + }, + { + "id": "422281a2-7f59-4338-99db-a4490358113f", + "name": "Ramblers Ale Works", + "brewery_type": "micro", + "address_1": "96 Riversdale Road", + "address_2": null, + "address_3": null, + "city": "Hawthorn", + "state_province": "VIC", + "postal_code": "3122", + "country": "Australia", + "longitude": 145.0346325, + "latitude": -37.8289324, + "phone": "+61 406 260 073", + "website_url": "http://www.ramblers.beer/", + "state": "VIC", + "street": "96 Riversdale Road" + }, + { + "id": "5517b5d0-3406-4ce2-9a6e-af552695dfc0", + "name": "Ramblin Reds Brewing Company", + "brewery_type": "brewpub", + "address_1": "1493 N Shoop Ave Unit A", + "address_2": null, + "address_3": null, + "city": "Wauseon", + "state_province": "Ohio", + "postal_code": "43567-2801", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4193352000", + "website_url": "http://www.northriverbrewingco.com", + "state": "Ohio", + "street": "1493 N Shoop Ave Unit A" + }, + { + "id": "a2479685-7402-413d-8398-357db4a5aed8", + "name": "Ramskeller", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80523-0001", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9704911055", + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "9e9b2679-fc12-4095-b401-198f4a444525", + "name": "Rancho De Lomi Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Laporte", + "state_province": "Colorado", + "postal_code": "80535-3021", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4156067246", + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "644312ac-6c8f-4cbb-b712-03f54f1223c3", + "name": "Randolph Beer Dumbo", + "brewery_type": "brewpub", + "address_1": "77 Sands St", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11201-1431", + "country": "United States", + "longitude": -73.987503, + "latitude": 40.70005509, + "phone": "7182983331", + "website_url": "http://www.randolphbeer.com", + "state": "New York", + "street": "77 Sands St" + }, + { + "id": "7a0e79f9-4cb5-4225-8742-46689b054269", + "name": "Random Precision Brewing Company", + "brewery_type": "micro", + "address_1": "2365 W Dublin Granville Rd", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43235-2700", + "country": "United States", + "longitude": -83.05232, + "latitude": 40.090144, + "phone": "6143893864", + "website_url": "http://www.randomprecisionbrewing.com", + "state": "Ohio", + "street": "2365 W Dublin Granville Rd" + }, + { + "id": "e62e68b4-43bb-473c-a79e-cc0e68e51b50", + "name": "Random Row Brewing Co.", + "brewery_type": "micro", + "address_1": "608 Preston Ave", + "address_2": null, + "address_3": null, + "city": "Charlottesville", + "state_province": "Virginia", + "postal_code": "22903-4566", + "country": "United States", + "longitude": -78.48712033, + "latitude": 38.03470505, + "phone": "4342848466", + "website_url": "http://www.randomrow.com", + "state": "Virginia", + "street": "608 Preston Ave" + }, + { + "id": "b3ffcb37-d39e-4294-a09e-0dcd8130725c", + "name": "Raney Cellars", + "brewery_type": "brewpub", + "address_1": "11 Manor Ave", + "address_2": null, + "address_3": null, + "city": "Millersville", + "state_province": "Pennsylvania", + "postal_code": "17551", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7175845085", + "website_url": "http://raneycellarsbrewing.com", + "state": "Pennsylvania", + "street": "11 Manor Ave" + }, + { + "id": "459e430e-604b-4a3b-b6d8-bb8806761c75", + "name": "Range Brewing", + "brewery_type": "micro", + "address_1": "4 Byres Street", + "address_2": null, + "address_3": null, + "city": "Newstead", + "state_province": "QLD", + "postal_code": "4006", + "country": "Australia", + "longitude": 153.0436885, + "latitude": -27.4480845, + "phone": "+61 7 3113 9058", + "website_url": "http://www.rangebrewing.com/", + "state": "QLD", + "street": "4 Byres Street" + }, + { + "id": "9e8c2604-e9ac-4348-9f3b-3c83f7fa3599", + "name": "Ranger Creek Brewery", + "brewery_type": "micro", + "address_1": "4834 Whirlwind Dr Ste 2", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78217-3740", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8329693800", + "website_url": "http://www.drinkrangercreek.com", + "state": "Texas", + "street": "4834 Whirlwind Dr Ste 2" + }, + { + "id": "fa812afd-8652-4cd9-b5d5-af26b115dfdd", + "name": "R’Noggin Brewing", + "brewery_type": "micro", + "address_1": "6521 120th Ave", + "address_2": null, + "address_3": null, + "city": "Kenosha", + "state_province": "Wisconsin", + "postal_code": "53142", + "country": "United States", + "longitude": -87.9532178, + "latitude": 42.57624125, + "phone": "2629601298", + "website_url": "http://www.rnogginbrewing.com", + "state": "Wisconsin", + "street": "6521 120th Ave" + }, + { + "id": "d8a3c95b-24ae-4c7b-bb11-511ef1814c38", + "name": "Rants And Raves Brewery", + "brewery_type": "brewpub", + "address_1": "308 N Jackson St", + "address_2": null, + "address_3": null, + "city": "Moscow", + "state_province": "Idaho", + "postal_code": "83843-2065", + "country": "United States", + "longitude": -117.0027808, + "latitude": 46.7344955, + "phone": "2085964061", + "website_url": "https://www.rantsravesbrewery.com", + "state": "Idaho", + "street": "308 N Jackson St" + }, + { + "id": "df8f790d-c35b-4564-8aa0-d03f1c7594f7", + "name": "Rapp Brewing Company", + "brewery_type": "micro", + "address_1": "10930 Endeavour Way Ste C", + "address_2": null, + "address_3": null, + "city": "Seminole", + "state_province": "Florida", + "postal_code": "33777-1632", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7276927912", + "website_url": "http://www.rapp.beer", + "state": "Florida", + "street": "10930 Endeavour Way Ste C" + }, + { + "id": "85466615-ba76-4f5b-830d-d1ee300bf38a", + "name": "Rapp's Barren Brewing Company", + "brewery_type": "micro", + "address_1": "1343 E 9th St", + "address_2": null, + "address_3": null, + "city": "Mountain Home", + "state_province": "Arkansas", + "postal_code": "72653-5050", + "country": "United States", + "longitude": -92.3599724, + "latitude": 36.3326432, + "phone": "8704247288", + "website_url": "http://www.rappsbarrenbrewing.com", + "state": "Arkansas", + "street": "1343 E 9th St" + }, + { + "id": "1084cdaa-c536-42c0-a2c6-20c9f0253aed", + "name": "Rapscallion Ales", + "brewery_type": "micro", + "address_1": "5 Strawberry Hill Rd", + "address_2": null, + "address_3": null, + "city": "Acton", + "state_province": "Massachusetts", + "postal_code": "01720-5706", + "country": "United States", + "longitude": -71.41585461, + "latitude": 42.4919605, + "phone": "5083477500", + "website_url": "http://www.drinkrapscallion.com", + "state": "Massachusetts", + "street": "5 Strawberry Hill Rd" + }, + { + "id": "7ceade71-eaf6-412e-9dcb-11ef623dc26d", + "name": "Raquette River Brewing", + "brewery_type": "micro", + "address_1": "11 Balsam St # 2", + "address_2": null, + "address_3": null, + "city": "Tupper Lake", + "state_province": "New York", + "postal_code": "12986-1033", + "country": "United States", + "longitude": -74.48652145, + "latitude": 44.24347376, + "phone": "5183595219", + "website_url": "http://www.raquetteriverbrewing.com", + "state": "New York", + "street": "11 Balsam St # 2" + }, + { + "id": "9d404fb4-ccce-4f36-80f1-abcb08db1c7a", + "name": "RAR Brewing", + "brewery_type": "proprietor", + "address_1": "504 Poplar St", + "address_2": null, + "address_3": null, + "city": "Cambridge", + "state_province": "Maryland", + "postal_code": "21613-1834", + "country": "United States", + "longitude": -76.0774552, + "latitude": 38.5702289, + "phone": "4107257922", + "website_url": "http://www.rarbrewing.com", + "state": "Maryland", + "street": "504 Poplar St" + }, + { + "id": "305b584c-df57-4c6f-98d2-491736bbe7e9", + "name": "Rare Bird Brewpub", + "brewery_type": "brewpub", + "address_1": "229 Lake Ave", + "address_2": null, + "address_3": null, + "city": "Traverse City", + "state_province": "Michigan", + "postal_code": "49684-2532", + "country": "United States", + "longitude": -85.61932337, + "latitude": 44.75978039, + "phone": "2319432053", + "website_url": "http://rarebirdbrewpub.com", + "state": "Michigan", + "street": "229 Lake Ave" + }, + { + "id": "42e70445-725e-464b-9ab5-68ae743cc256", + "name": "RARE by Grist Brewing", + "brewery_type": "closed", + "address_1": "9535 Park Meadows Dr Ste F", + "address_2": null, + "address_3": null, + "city": "Lone Tree", + "state_province": "Colorado", + "postal_code": "80124", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3037289394", + "website_url": null, + "state": "Colorado", + "street": "9535 Park Meadows Dr Ste F" + }, + { + "id": "a9b86c63-e7f6-42c6-b2a4-5e508b93da49", + "name": "Rare Form Brewing", + "brewery_type": "micro", + "address_1": "90 Congress St", + "address_2": null, + "address_3": null, + "city": "Troy", + "state_province": "New York", + "postal_code": "12180-4123", + "country": "United States", + "longitude": -73.6899808, + "latitude": 42.7286018, + "phone": "5183264303", + "website_url": "http://www.rareformbrewing.com", + "state": "New York", + "street": "90 Congress St" + }, + { + "id": "a54bd706-4656-404b-91a2-b95d0f939741", + "name": "Raritan Bay Brewing, LLC", + "brewery_type": "micro", + "address_1": "32 Church Street", + "address_2": null, + "address_3": null, + "city": "Keansburg", + "state_province": "New Jersey", + "postal_code": "07734", + "country": "United States", + "longitude": -74.131668, + "latitude": 40.441664, + "phone": null, + "website_url": "http://raritanbaybrewing.com", + "state": "New Jersey", + "street": "32 Church Street" + }, + { + "id": "59be3ba3-38aa-4ec0-9d2f-97256dca012e", + "name": "Rascals Brewing Company", + "brewery_type": "brewpub", + "address_1": "Goldenbridge Estate", + "address_2": "Tyrconnell Rd", + "address_3": null, + "city": "Inchicore", + "state_province": "Dublin", + "postal_code": "D08 HF68", + "country": "Ireland", + "longitude": -6.3262538, + "latitude": 53.3361014, + "phone": "35315382051", + "website_url": "https://rascalsbrewing.com/", + "state": "Dublin", + "street": "Goldenbridge Estate" + }, + { + "id": "948ff9bf-8703-448e-897e-51ca8dc71d5a", + "name": "Ratchet Brewery Salem", + "brewery_type": "brewpub", + "address_1": "2701 22nd St SE", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "Oregon", + "postal_code": "97302-1553", + "country": "United States", + "longitude": -123.0173762, + "latitude": 44.91418158, + "phone": "5035809864", + "website_url": "https://ratchetbrewery.com", + "state": "Oregon", + "street": "2701 22nd St SE" + }, + { + "id": "5316786e-711d-485c-a179-40106341c9d5", + "name": "Ratchet Brewery Silverton", + "brewery_type": "brewpub", + "address_1": "990 North First Street", + "address_2": null, + "address_3": null, + "city": "Silverton", + "state_province": "Oregon", + "postal_code": "97381", + "country": "United States", + "longitude": -122.7845824, + "latitude": 45.01410457, + "phone": "5038744677", + "website_url": "https://ratchetbrewery.com", + "state": "Oregon", + "street": "990 North First Street" + }, + { + "id": "90ea24ab-7f6b-4961-95ee-496ba24e62f3", + "name": "Ratio Beerworks", + "brewery_type": "micro", + "address_1": "2920 Larimer St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80205-2309", + "country": "United States", + "longitude": -104.9812181, + "latitude": 39.7615104, + "phone": "3102669264", + "website_url": "http://ratiobeerworks.com", + "state": "Colorado", + "street": "2920 Larimer St" + }, + { + "id": "d58fc03d-9801-45da-8df3-1e884402c2a8", + "name": "Rattlesnake Mountain Brewery / Kimo's Restaurant", + "brewery_type": "brewpub", + "address_1": "1250 Columbia Center Blvd", + "address_2": null, + "address_3": null, + "city": "Richland", + "state_province": "Washington", + "postal_code": "99352-4839", + "country": "United States", + "longitude": -119.2234822, + "latitude": 46.22504543, + "phone": "5097835747", + "website_url": "http://www.rattlesnakemountainbrewery.com", + "state": "Washington", + "street": "1250 Columbia Center Blvd" + }, + { + "id": "07411ff4-acb5-43d5-a079-9541b41d9793", + "name": "Ravenna Brewing Company", + "brewery_type": "micro", + "address_1": "5408 26th Ave NE", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98105-3137", + "country": "United States", + "longitude": -122.299162, + "latitude": 47.6682272, + "phone": "2067438450", + "website_url": "http://www.ravennabrewing.com", + "state": "Washington", + "street": "5408 26th Ave NE" + }, + { + "id": "f1f6a6cd-33f5-4675-9d9d-21ed6c823eab", + "name": "Ravenous Brewing Company", + "brewery_type": "micro", + "address_1": "10 Industrial Rd", + "address_2": null, + "address_3": null, + "city": "Cumberland", + "state_province": "Rhode Island", + "postal_code": "02864", + "country": "United States", + "longitude": -71.401044, + "latitude": 41.953531, + "phone": "4012165331", + "website_url": "http://www.ravenousbrew.com", + "state": "Rhode Island", + "street": "10 Industrial Rd" + }, + { + "id": "1ffcb6b0-1702-4b14-ad9a-6d1342719fd7", + "name": "Ravinia Brewing Company", + "brewery_type": "proprietor", + "address_1": "957 Judson Ave", + "address_2": null, + "address_3": null, + "city": "Highland Park", + "state_province": "Illinois", + "postal_code": "60035-4728", + "country": "United States", + "longitude": -87.784735, + "latitude": 42.169955, + "phone": "8472178403", + "website_url": "http://www.raviniabrewing.com", + "state": "Illinois", + "street": "957 Judson Ave" + }, + { + "id": "e7e2bd8c-995b-4268-bb5b-4b733127b9f0", + "name": "Raw Deal", + "brewery_type": "brewpub", + "address_1": "603 Broadway St S", + "address_2": null, + "address_3": null, + "city": "Menomonie", + "state_province": "Wisconsin", + "postal_code": "54751-2457", + "country": "United States", + "longitude": -91.9298545, + "latitude": 44.8773142, + "phone": "7152313255", + "website_url": "http://www.rawdealwi.weebly.com", + "state": "Wisconsin", + "street": "603 Broadway St S" + }, + { + "id": "471962d2-01aa-46e4-aea7-fa635a2ae107", + "name": "Reach Break Brewing", + "brewery_type": "micro", + "address_1": "1343 Duane St", + "address_2": null, + "address_3": null, + "city": "Astoria", + "state_province": "Oregon", + "postal_code": "97103-3917", + "country": "United States", + "longitude": -123.8289931, + "latitude": 46.18836741, + "phone": "5034680743", + "website_url": null, + "state": "Oregon", + "street": "1343 Duane St" + }, + { + "id": "c960bed4-d36d-4f6c-b41b-c7483f70cece", + "name": "Reads Landing Brewing Co", + "brewery_type": "brewpub", + "address_1": "70555 202nd Ave", + "address_2": null, + "address_3": null, + "city": "Reads Landing", + "state_province": "Minnesota", + "postal_code": "55968-6842", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6515604777", + "website_url": "http://www.rlbrewingco.com", + "state": "Minnesota", + "street": "70555 202nd Ave" + }, + { + "id": "1f8b4200-5b3d-4b9f-b6a9-e10f29aec438", + "name": "Real Ale Brewing Co", + "brewery_type": "regional", + "address_1": "231 San Saba Ct", + "address_2": null, + "address_3": null, + "city": "Blanco", + "state_province": "Texas", + "postal_code": "78606-4810", + "country": "United States", + "longitude": -98.4128525, + "latitude": 30.113319, + "phone": "8308332534", + "website_url": "http://www.realalebrewing.com", + "state": "Texas", + "street": "231 San Saba Ct" + }, + { + "id": "35abe7a1-e899-427e-9aef-57ac4438a30b", + "name": "Real McCoy Beer Co.", + "brewery_type": "micro", + "address_1": "20 Hallwood Rd Unit C", + "address_2": null, + "address_3": null, + "city": "Delmar", + "state_province": "New York", + "postal_code": "12054-1925", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5186989082", + "website_url": "http://www.therealmccoybeerco.com", + "state": "New York", + "street": "20 Hallwood Rd Unit C" + }, + { + "id": "ad7033af-1756-451e-a858-e5d5f19e701f", + "name": "Reason Beer", + "brewery_type": "micro", + "address_1": "1180 Seminole Trl Ste 290", + "address_2": null, + "address_3": null, + "city": "Charlottesville", + "state_province": "Virginia", + "postal_code": "22901-5713", + "country": "United States", + "longitude": -78.486033, + "latitude": 38.06792831, + "phone": "4342494572", + "website_url": "http://www.reasonbeer.com", + "state": "Virginia", + "street": "1180 Seminole Trl Ste 290" + }, + { + "id": "b5a6d620-d22d-4e5a-ab9e-33cc7d66b5a8", + "name": "Reaver Beach Brewing Co", + "brewery_type": "micro", + "address_1": "1505 Taylor Farm Rd", + "address_2": null, + "address_3": null, + "city": "Virginia Beach", + "state_province": "Virginia", + "postal_code": "23453-3099", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7575632337", + "website_url": "http://www.reaverbeach.com", + "state": "Virginia", + "street": "1505 Taylor Farm Rd" + }, + { + "id": "02ce2fc9-5898-4c7e-a1df-a91100842068", + "name": "Rebel Kettle Brewing Company", + "brewery_type": "brewpub", + "address_1": "822 E 6th St", + "address_2": null, + "address_3": null, + "city": "Little Rock", + "state_province": "Arkansas", + "postal_code": "72202-2606", + "country": "United States", + "longitude": -92.26209196, + "latitude": 34.74211127, + "phone": "5013742791", + "website_url": "http://www.rebelkettle.com", + "state": "Arkansas", + "street": "822 E 6th St" + }, + { + "id": "a4e94650-bbd6-45f5-ba67-b59f9ac661d8", + "name": "Rebel Toad Brewing Co", + "brewery_type": "micro", + "address_1": "425 William St", + "address_2": null, + "address_3": null, + "city": "Corpus Christi", + "state_province": "Texas", + "postal_code": "78401-2538", + "country": "United States", + "longitude": -97.3960541, + "latitude": 27.7946329, + "phone": "5122211267", + "website_url": "http://www.rebeltoadbrewing.com", + "state": "Texas", + "street": "425 William St" + }, + { + "id": "03fb287c-df2c-4d22-8e9f-2ab34dd74219", + "name": "Rebelle Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Noblesville", + "state_province": "Indiana", + "postal_code": "46060", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Indiana", + "street": null + }, + { + "id": "8dba45dc-c9dc-494d-b559-8b1cd104a790", + "name": "Rebellion Brewing (O’Brien Brewing)", + "brewery_type": "micro", + "address_1": "36 Gregory Street West", + "address_2": null, + "address_3": null, + "city": "Wendouree", + "state_province": "VIC", + "postal_code": "3355", + "country": "Australia", + "longitude": 143.8109293, + "latitude": -37.5408059, + "phone": "+61 1300 432 337", + "website_url": "https://www.rebellionbrewing.com.au/", + "state": "VIC", + "street": "36 Gregory Street West" + }, + { + "id": "37b81531-269f-4642-b251-ad9bb9d8f441", + "name": "Recess Brewing", + "brewery_type": "micro", + "address_1": "307 N Main St", + "address_2": null, + "address_3": null, + "city": "Edwardsville", + "state_province": "Illinois", + "postal_code": "62025-1615", + "country": "United States", + "longitude": -89.9590501, + "latitude": 38.81422443, + "phone": "6186925101", + "website_url": "http://www.recessbrewing.com", + "state": "Illinois", + "street": "307 N Main St" + }, + { + "id": "cbb640d1-ccb7-4cf2-9407-0b5e4d9d880f", + "name": "Reckless Brewing", + "brewery_type": "micro", + "address_1": "2A Piper Street", + "address_2": null, + "address_3": null, + "city": "Bathurst", + "state_province": "NSW", + "postal_code": "2795", + "country": "Australia", + "longitude": 149.5812066, + "latitude": -33.4276799, + "phone": "+61 497 913 635", + "website_url": "http://www.recklessbrewingco.com.au/", + "state": "NSW", + "street": "2A Piper Street" + }, + { + "id": "6cae09df-22e6-45dd-a704-3c7802a1a811", + "name": "Reckless Brewing Co.", + "brewery_type": "micro", + "address_1": "2A Piper Street", + "address_2": null, + "address_3": null, + "city": "Bathurst", + "state_province": "NSW", + "postal_code": "2795", + "country": "Australia", + "longitude": 149.5812066, + "latitude": -33.4276799, + "phone": "+61 497 913 635", + "website_url": "http://www.recklessbrewingco.com.au/", + "state": "NSW", + "street": "2A Piper Street" + }, + { + "id": "f0adad3f-a28d-403c-ac19-e4e6cb2bcaa0", + "name": "Reclaimed Rails Brewing Company", + "brewery_type": "micro", + "address_1": "101 Main St. SE", + "address_2": null, + "address_3": null, + "city": "Bondurant", + "state_province": "Iowa", + "postal_code": "50035-7722", + "country": "United States", + "longitude": -93.461872, + "latitude": 41.699717, + "phone": null, + "website_url": "http://www.reclaimedrailsbrewing.com", + "state": "Iowa", + "street": "101 Main St. SE" + }, + { + "id": "7e8e9910-3454-4905-a1c2-0b2e5702f195", + "name": "Reclamation Brewing Company", + "brewery_type": "brewpub", + "address_1": "221 S Main St", + "address_2": null, + "address_3": null, + "city": "Butler", + "state_province": "Pennsylvania", + "postal_code": "16001-5908", + "country": "United States", + "longitude": -79.89543627, + "latitude": 40.85876516, + "phone": "7242820831", + "website_url": "http://www.reclamationbrewing.com", + "state": "Pennsylvania", + "street": "221 S Main St" + }, + { + "id": "2d146fa4-968d-452b-b925-a4684094d2e8", + "name": "Recon Brewing", + "brewery_type": "brewpub", + "address_1": "1747 N Main St Ext", + "address_2": null, + "address_3": null, + "city": "Butler", + "state_province": "Pennsylvania", + "postal_code": "16001-1327", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7242568747", + "website_url": "http://www.reconbrewing.com", + "state": "Pennsylvania", + "street": "1747 N Main St Ext" + }, + { + "id": "b4440f12-2d59-4dc7-bdec-19df793f27b4", + "name": "Rectory Ales Ltd", + "brewery_type": "micro", + "address_1": "Streat Hill", + "address_2": null, + "address_3": null, + "city": "Hassocks", + "state_province": "West Sussex", + "postal_code": "BN6 8RP", + "country": "England", + "longitude": -0.080361, + "latitude": 50.895782, + "phone": "1273890570", + "website_url": null, + "state": "West Sussex", + "street": "Streat Hill" + }, + { + "id": "ce8288fb-5db6-443d-a55c-4a22d5c9cb2d", + "name": "Red Barn Brewing", + "brewery_type": "micro", + "address_1": "2170 Oneida Rd", + "address_2": null, + "address_3": null, + "city": "Danville", + "state_province": "Vermont", + "postal_code": "05828-", + "country": "United States", + "longitude": -72.17748576, + "latitude": 44.39460429, + "phone": "8026849749", + "website_url": "http://www.redbarnbrewingvt.com", + "state": "Vermont", + "street": "2170 Oneida Rd" + }, + { + "id": "80ebf698-3075-4896-b205-cde24a5a2b91", + "name": "Red Bear Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "District of Columbia", + "postal_code": "20002-3406", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2062997485", + "website_url": "http://www.redbear.beer", + "state": "District of Columbia", + "street": null + }, + { + "id": "f8dad557-f4a4-4ca0-ae18-b8b4411ca6ff", + "name": "Red Bird", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Waltham", + "state_province": "Massachusetts", + "postal_code": "02453-5208", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7818915486", + "website_url": "http://www.redbirdwaltham.com", + "state": "Massachusetts", + "street": null + }, + { + "id": "cc45c9bd-f7ff-43c4-bb2c-abc7cda31aec", + "name": "Red Branch Brewing Company / Rabbits Foot Meadery", + "brewery_type": "micro", + "address_1": "1246 Birchwood Dr", + "address_2": null, + "address_3": null, + "city": "Sunnyvale", + "state_province": "California", + "postal_code": "94089-2205", + "country": "United States", + "longitude": -121.9920827, + "latitude": 37.40446295, + "phone": "4087470770", + "website_url": "http://www.redbranchcider.com", + "state": "California", + "street": "1246 Birchwood Dr" + }, + { + "id": "d658726b-aedc-4e15-be17-ebaec8b162b9", + "name": "Red Brick Brewing Co / Atlanta Brewing Co", + "brewery_type": "micro", + "address_1": "2323 Defoor Hills Rd NW", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30318-2207", + "country": "United States", + "longitude": -84.43454138, + "latitude": 33.81830375, + "phone": "4043555558", + "website_url": "http://www.atlantabrewing.com", + "state": "Georgia", + "street": "2323 Defoor Hills Rd NW" + }, + { + "id": "cd59775b-b065-43ef-bde8-cc7ac5dbab30", + "name": "Red Bridge Brewing Company", + "brewery_type": "micro", + "address_1": "5 Noble Street", + "address_2": "Knysna Industrial", + "address_3": null, + "city": "Knysna", + "state_province": "Western Cape", + "postal_code": "6571", + "country": "South Africa", + "longitude": 23.0645, + "latitude": -34.0412, + "phone": "+27 82 552 9491", + "website_url": "https://redbridgebrewing.co.za/", + "state": "Western Cape", + "street": "5 Noble Street" + }, + { + "id": "5379e6e8-6ea8-42eb-83d8-31a290e1420d", + "name": "Red Bus Brewing Company", + "brewery_type": "micro", + "address_1": "802 Reading St Ste A", + "address_2": null, + "address_3": null, + "city": "Folsom", + "state_province": "California", + "postal_code": "95630-3061", + "country": "United States", + "longitude": -121.1760242, + "latitude": 38.67092319, + "phone": "9169857299", + "website_url": "http://www.redbusbrew.com", + "state": "California", + "street": "802 Reading St Ste A" + }, + { + "id": "f151a98d-1f85-4cc8-93c1-d58ffaa3f1d0", + "name": "Red Car Brewery and Restaurant", + "brewery_type": "brewpub", + "address_1": "1266 Sartori Ave", + "address_2": null, + "address_3": null, + "city": "Torrance", + "state_province": "California", + "postal_code": "90501-2717", + "country": "United States", + "longitude": -118.3161274, + "latitude": 33.83534411, + "phone": "3107820222", + "website_url": "http://www.redcarbrewery.com", + "state": "California", + "street": "1266 Sartori Ave" + }, + { + "id": "2f29e159-a768-4404-a2b7-63ef157397bc", + "name": "Red Clay Brewing Company", + "brewery_type": "micro", + "address_1": "704 N Railroad Ave", + "address_2": null, + "address_3": null, + "city": "Opelika", + "state_province": "Alabama", + "postal_code": "36801-4344", + "country": "United States", + "longitude": -85.37875418, + "latitude": 32.64939542, + "phone": "3347375409", + "website_url": "http://www.redclaybrewingcompany.com", + "state": "Alabama", + "street": "704 N Railroad Ave" + }, + { + "id": "91b1bfea-a4e2-487f-b290-b234c582ee0c", + "name": "Red Crow Brewing Company", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Olathe", + "state_province": "Kansas", + "postal_code": "66062", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9132473641", + "website_url": "http://www.redcrowbrew.com", + "state": "Kansas", + "street": null + }, + { + "id": "eb2a453b-7104-4863-8631-6aa540f1f27e", + "name": "Red Cypress Brewery", + "brewery_type": "micro", + "address_1": "855 E SR 434", + "address_2": null, + "address_3": null, + "city": "Winter Springs", + "state_province": "Florida", + "postal_code": "32708-2704", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.redcypressbrewery.com", + "state": "Florida", + "street": "855 E SR 434" + }, + { + "id": "92cd0320-bce3-42e4-babb-1192bd8bf678", + "name": "Red Dirt Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Oklahoma City", + "state_province": "Oklahoma", + "postal_code": "73120-5133", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4058231632", + "website_url": null, + "state": "Oklahoma", + "street": null + }, + { + "id": "88888d5b-1553-4773-806c-4b844a34b996", + "name": "Red Dog Brewery", + "brewery_type": "micro", + "address_1": "16 Carl Street", + "address_2": null, + "address_3": null, + "city": "Rural View", + "state_province": "QLD", + "postal_code": "4740", + "country": "Australia", + "longitude": 149.1611451, + "latitude": -21.0621985, + "phone": "+61 457 827 878", + "website_url": "https://m.facebook.com/RedDogBrewery/", + "state": "QLD", + "street": "16 Carl Street" + }, + { + "id": "a1daf057-072c-4295-ab5c-ea8a668d0bc6", + "name": "Red Door Brewing Co", + "brewery_type": "micro", + "address_1": "1001 Candelaria Rd NE", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87107-2115", + "country": "United States", + "longitude": -106.5864617, + "latitude": 35.1165072, + "phone": "5056336675", + "website_url": "http://www.reddoorbrewing.com", + "state": "New Mexico", + "street": "1001 Candelaria Rd NE" + }, + { + "id": "9bde954f-21f8-4382-960b-302b52411dbb", + "name": "Red Dragon Brewery", + "brewery_type": "micro", + "address_1": "1419 Princess Anne St", + "address_2": null, + "address_3": null, + "city": "Fredericksburg", + "state_province": "Virginia", + "postal_code": "22401-3638", + "country": "United States", + "longitude": -77.46312137, + "latitude": 38.30737927, + "phone": null, + "website_url": "http://www.reddragonbrewery.com", + "state": "Virginia", + "street": "1419 Princess Anne St" + }, + { + "id": "c4f46e22-5527-4998-8e4c-639b0c8dd51e", + "name": "Red Eye Brewing Co", + "brewery_type": "brewpub", + "address_1": "612 Washington St", + "address_2": null, + "address_3": null, + "city": "Wausau", + "state_province": "Wisconsin", + "postal_code": "54403-5439", + "country": "United States", + "longitude": -89.6228425, + "latitude": 44.9588496, + "phone": "7158437334", + "website_url": "http://www.redeyebrewing.com", + "state": "Wisconsin", + "street": "612 Washington St" + }, + { + "id": "f844c251-07b6-48ee-935e-b30c36f12d88", + "name": "Red Gap Brewing", + "brewery_type": "micro", + "address_1": "712 Conrad Hilton Blvd", + "address_2": null, + "address_3": null, + "city": "Cisco", + "state_province": "Texas", + "postal_code": "76437-3140", + "country": "United States", + "longitude": -98.97952884, + "latitude": 32.38826259, + "phone": "2544334993", + "website_url": "http://redgapbrewing.com", + "state": "Texas", + "street": "712 Conrad Hilton Blvd" + }, + { + "id": "9e5331e9-d870-4e23-b41d-d2c18f2228f7", + "name": "Red Hare Brewing Company", + "brewery_type": "micro", + "address_1": "1998 Delk Industrial Blvd SE", + "address_2": null, + "address_3": null, + "city": "Marietta", + "state_province": "Georgia", + "postal_code": "30067-8904", + "country": "United States", + "longitude": -84.4957563, + "latitude": 33.92440825, + "phone": "6784010600", + "website_url": "http://www.redharebrewing.com", + "state": "Georgia", + "street": "1998 Delk Industrial Blvd SE" + }, + { + "id": "df013da2-85d9-44ad-a6ae-1ba6273caa65", + "name": "Red Hawk Brewing", + "brewery_type": "micro", + "address_1": "4504 Bussey Rd", + "address_2": null, + "address_3": null, + "city": "Syracuse", + "state_province": "New York", + "postal_code": "13215-8783", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3154915158", + "website_url": "http://www.redhawkbrewing.com", + "state": "New York", + "street": "4504 Bussey Rd" + }, + { + "id": "5b0fdc42-401a-4af1-af91-cfbb45794c28", + "name": "Red Hill Brewery", + "brewery_type": "micro", + "address_1": "88 Shoreham Road", + "address_2": null, + "address_3": null, + "city": "Red Hill South", + "state_province": "VIC", + "postal_code": "3937", + "country": "Australia", + "longitude": 145.0181808, + "latitude": -38.3917703, + "phone": "+61 3 5989 2959", + "website_url": "http://www.redhillbrewery.com.au/", + "state": "VIC", + "street": "88 Shoreham Road" + }, + { + "id": "0ea7eb38-71d2-4166-98e3-827be3878d92", + "name": "Red Hill Brewing Co", + "brewery_type": "micro", + "address_1": "21 Union St S", + "address_2": null, + "address_3": null, + "city": "Concord", + "state_province": "North Carolina", + "postal_code": "28025-5009", + "country": "United States", + "longitude": -80.5806658, + "latitude": 35.41030435, + "phone": "7047842337", + "website_url": "http://www.redhillbrewing.com", + "state": "North Carolina", + "street": "21 Union St S" + }, + { + "id": "38944523-1c18-43bd-85fe-176d06f9dd5b", + "name": "Red Hills Brewing Co", + "brewery_type": "micro", + "address_1": "2823 Central Ave Ste 107", + "address_2": null, + "address_3": null, + "city": "Birmingham", + "state_province": "Alabama", + "postal_code": "35209-2581", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2055822897", + "website_url": "http://www.redhillsbrew.com", + "state": "Alabama", + "street": "2823 Central Ave Ste 107" + }, + { + "id": "363cbc24-65e7-4124-9885-4aeb6e40a67f", + "name": "Red Horn Brewing Co.", + "brewery_type": "brewpub", + "address_1": "13010 W Parmer Ln Ste 800", + "address_2": null, + "address_3": null, + "city": "Cedar Park", + "state_province": "Texas", + "postal_code": "78613-7369", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5125896152", + "website_url": "http://www.redhornbrew.com", + "state": "Texas", + "street": "13010 W Parmer Ln Ste 800" + }, + { + "id": "c0a352b5-37a4-4131-9e41-dc49df52747f", + "name": "Red Iron Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lincoln", + "state_province": "Nebraska", + "postal_code": "68501", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4028126242", + "website_url": "http://redironbrewing.com", + "state": "Nebraska", + "street": null + }, + { + "id": "153f0d04-5f71-4096-ab07-6255c3563b4e", + "name": "Red Jacket Brewing at Michigan House Cafe", + "brewery_type": "brewpub", + "address_1": "300 6th St", + "address_2": null, + "address_3": null, + "city": "Calumet", + "state_province": "Michigan", + "postal_code": "49913-1508", + "country": "United States", + "longitude": -88.4535254, + "latitude": 47.2464521, + "phone": "9063371910", + "website_url": "http://www.michiganhousecafe.com/brewpub.html", + "state": "Michigan", + "street": "300 6th St" + }, + { + "id": "cec54270-d377-44b4-8ca8-d847c204b637", + "name": "Red Leg Brewing Company", + "brewery_type": "micro", + "address_1": "4630 Forge Rd Ste B", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80907-3556", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7195983776", + "website_url": "http://www.redlegbrewingco.com", + "state": "Colorado", + "street": "4630 Forge Rd Ste B" + }, + { + "id": "4f92d7f1-e3da-4f0d-b4e6-c87c58ba37ea", + "name": "Red Lodge Ales Brewing Co", + "brewery_type": "micro", + "address_1": "1445 N Broadway Ave", + "address_2": null, + "address_3": null, + "city": "Red Lodge", + "state_province": "Montana", + "postal_code": "59068-9383", + "country": "United States", + "longitude": -109.2465393, + "latitude": 45.19727053, + "phone": "4064464607", + "website_url": "http://www.redlodgeales.net", + "state": "Montana", + "street": "1445 N Broadway Ave" + }, + { + "id": "3cc2a24c-bf59-42c0-8f83-371c19d049e9", + "name": "Red Mountain Brewing", + "brewery_type": "brewpub", + "address_1": "400 Main St", + "address_2": null, + "address_3": null, + "city": "Ouray", + "state_province": "Colorado", + "postal_code": "81427", + "country": "United States", + "longitude": -107.671615, + "latitude": 38.020713, + "phone": "9703259858", + "website_url": "http://www.redmountainbrewingouray.com", + "state": "Colorado", + "street": "400 Main St" + }, + { + "id": "1b22d595-585c-4818-8e8d-6e62b5ca1d2c", + "name": "Red Oak Brewing Co", + "brewery_type": "regional", + "address_1": "6901 Konica Dr", + "address_2": null, + "address_3": null, + "city": "Whitsett", + "state_province": "North Carolina", + "postal_code": "27377-9787", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3362993649", + "website_url": "http://www.redoakbrewery.com", + "state": "North Carolina", + "street": "6901 Konica Dr" + }, + { + "id": "76487dbc-aa7e-45d0-b20a-f8f8642f49f9", + "name": "Red River Brewing Co", + "brewery_type": "micro", + "address_1": "1200 Marshall St Ste 500", + "address_2": null, + "address_3": null, + "city": "Shreveport", + "state_province": "Louisiana", + "postal_code": "71101-3936", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3183174110", + "website_url": "http://www.redriverbeer.com", + "state": "Louisiana", + "street": "1200 Marshall St Ste 500" + }, + { + "id": "98ed229d-aac1-48b0-a562-d954e5f742ec", + "name": "Red River Brewing Company", + "brewery_type": "brewpub", + "address_1": "217 W Main St", + "address_2": null, + "address_3": null, + "city": "Red River", + "state_province": "New Mexico", + "postal_code": "87558", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5757702519", + "website_url": "http://www.redriverbrewing.com", + "state": "New Mexico", + "street": "217 W Main St" + }, + { + "id": "b83a91e0-b33b-40df-97cc-1c1df6da08aa", + "name": "Red Rock Brewing Co", + "brewery_type": "brewpub", + "address_1": "254 S 200 W", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84101-1801", + "country": "United States", + "longitude": -111.89671, + "latitude": 40.77487847, + "phone": "8015217446", + "website_url": "http://www.redrockbrewing.com", + "state": "Utah", + "street": "254 S 200 W" + }, + { + "id": "ded0fdf2-f42b-4aa8-b807-83c9f6fa1b58", + "name": "Red Rock Brewing Co - Production", + "brewery_type": "micro", + "address_1": "443 N 400 W", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84103-1230", + "country": "United States", + "longitude": -111.9029539, + "latitude": 40.77956659, + "phone": "8015217446", + "website_url": null, + "state": "Utah", + "street": "443 N 400 W" + }, + { + "id": "491bbd2f-da16-42f3-a4a3-b422d5b324b6", + "name": "Red Shed Brewing Company", + "brewery_type": "micro", + "address_1": "817 Butter Bowl Rd", + "address_2": null, + "address_3": null, + "city": "Cherry Valley", + "state_province": "New York", + "postal_code": "13320-3106", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6077316454", + "website_url": "http://www.redshedbrewing.com", + "state": "New York", + "street": "817 Butter Bowl Rd" + }, + { + "id": "82f5632c-93f4-43b4-b98b-b33462688c31", + "name": "Red Shedman Farm Brewery", + "brewery_type": "micro", + "address_1": "13601 Glissans Mill Rd", + "address_2": null, + "address_3": null, + "city": "Mount Airy", + "state_province": "Maryland", + "postal_code": "21771-8507", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3018315889", + "website_url": "http://www.redshedman.com", + "state": "Maryland", + "street": "13601 Glissans Mill Rd" + }, + { + "id": "da6cbd77-a827-4940-8c9c-bc037368f708", + "name": "Red Silo Brewing Co", + "brewery_type": "micro", + "address_1": "118 W 1st St", + "address_2": null, + "address_3": null, + "city": "Cookeville", + "state_province": "Tennessee", + "postal_code": "38501-2490", + "country": "United States", + "longitude": -85.50860106, + "latitude": 36.16535501, + "phone": "9316512333", + "website_url": "http://www.redsilo.beer", + "state": "Tennessee", + "street": "118 W 1st St" + }, + { + "id": "17c75b0f-f416-4ab8-a55f-27eed2cffcce", + "name": "Red Tandem Brewery", + "brewery_type": "micro", + "address_1": "1009 Harbor Blvd", + "address_2": null, + "address_3": null, + "city": "Oxnard", + "state_province": "California", + "postal_code": "93035-1131", + "country": "United States", + "longitude": -119.2474328, + "latitude": 34.2068743, + "phone": "8058324023", + "website_url": "http://www.redtandembrewery.com", + "state": "California", + "street": "1009 Harbor Blvd" + }, + { + "id": "f3fbeb9f-9f53-4d88-b137-44d3472f7af6", + "name": "Red Truck Beer Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80216-3612", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "78f72432-7c43-4f4b-9eb9-6abadb3e7a07", + "name": "Red Truck Beer Company Ltd.", + "brewery_type": "micro", + "address_1": "1020 E Lincoln Ave", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80524-2509", + "country": "United States", + "longitude": -105.0584895, + "latitude": 40.58916845, + "phone": "6046824733", + "website_url": null, + "state": "Colorado", + "street": "1020 E Lincoln Ave" + }, + { + "id": "6ee9898b-1de5-4cd0-8c9e-066b4391ba06", + "name": "Red Wing Brewing Company", + "brewery_type": "brewpub", + "address_1": "1411 Old West Main St", + "address_2": null, + "address_3": null, + "city": "Red Wing", + "state_province": "Minnesota", + "postal_code": "55066-2162", + "country": "United States", + "longitude": -92.54698396, + "latitude": 44.56271063, + "phone": "6513272200", + "website_url": "http://www.redwingbrewing.com", + "state": "Minnesota", + "street": "1411 Old West Main St" + }, + { + "id": "8f85238c-bf90-4c54-b8a8-1469cb5b08a9", + "name": "Redbeard Brewing Co", + "brewery_type": "micro", + "address_1": "120 S Lewis St", + "address_2": null, + "address_3": null, + "city": "Staunton", + "state_province": "Virginia", + "postal_code": "24401-4256", + "country": "United States", + "longitude": -79.074515, + "latitude": 38.147407, + "phone": "5404303532", + "website_url": "http://redbeardbrews.com", + "state": "Virginia", + "street": "120 S Lewis St" + }, + { + "id": "243a4b48-c47d-405e-bffb-2a2a10d30b04", + "name": "Redemption Alewerks", + "brewery_type": "brewpub", + "address_1": "7035 E 96th St Ste K", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46250-3303", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3173483330", + "website_url": "http://www.redemptionalewerks.com", + "state": "Indiana", + "street": "7035 E 96th St Ste K" + }, + { + "id": "7afa7b01-585a-45e5-9d68-843617aa592e", + "name": "Redgarden Brewery", + "brewery_type": "brewpub", + "address_1": "1700 Dogwood St", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Colorado", + "postal_code": "80027-1102", + "country": "United States", + "longitude": -105.1138827, + "latitude": 39.9674475, + "phone": "3036199601", + "website_url": "http://www.redgardenbrewery.com", + "state": "Colorado", + "street": "1700 Dogwood St" + }, + { + "id": "cd9739f8-8782-4827-91c8-fcfefdc212fb", + "name": "Redhook - Cataqua Public House", + "brewery_type": "closed", + "address_1": "35 Corporate Dr", + "address_2": null, + "address_3": null, + "city": "Portsmouth", + "state_province": "New Hampshire", + "postal_code": "03801", + "country": "United States", + "longitude": -70.80233269, + "latitude": 43.08582951, + "phone": "6034308600", + "website_url": "http://www.redhook.com", + "state": "New Hampshire", + "street": "35 Corporate Dr" + }, + { + "id": "8a15b08c-cf17-45ad-aff1-a07804e26e36", + "name": "Redhook Brewery", + "brewery_type": "regional", + "address_1": "714 E Pike St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98122-4697", + "country": "United States", + "longitude": -122.3227119, + "latitude": 47.6144468, + "phone": "4254833232", + "website_url": "http://www.redhook.com", + "state": "Washington", + "street": "714 E Pike St" + }, + { + "id": "f6774aa1-f73e-42d5-bf3b-3f2e3e81b3a6", + "name": "Redifer Brewing Co", + "brewery_type": "micro", + "address_1": "123 E Yakima Ave", + "address_2": null, + "address_3": null, + "city": "Yakima", + "state_province": "Washington", + "postal_code": "98901-2696", + "country": "United States", + "longitude": -120.5057229, + "latitude": 46.60240198, + "phone": "5094243400", + "website_url": "http://www.rediferbrewing.com", + "state": "Washington", + "street": "123 E Yakima Ave" + }, + { + "id": "572a822f-eb09-4d2d-b701-0e179fc91713", + "name": "Redlight Redlight Beer Parlour and Brewery", + "brewery_type": "micro", + "address_1": "2810 Corrine Dr", + "address_2": null, + "address_3": null, + "city": "Orlando", + "state_province": "Florida", + "postal_code": "32803-2226", + "country": "United States", + "longitude": -81.34851757, + "latitude": 28.567899, + "phone": "4078939832", + "website_url": "http://www.redlightredlightbeerparlour.com", + "state": "Florida", + "street": "2810 Corrine Dr" + }, + { + "id": "396f0a00-1910-4667-a65d-79ce19556af7", + "name": "Redline Brewing Company", + "brewery_type": "micro", + "address_1": "5470 Lapeer Rd", + "address_2": null, + "address_3": null, + "city": "Burton", + "state_province": "Michigan", + "postal_code": "48509-2235", + "country": "United States", + "longitude": -83.59795244, + "latitude": 43.01100775, + "phone": "8102592009", + "website_url": "http://redlinebrewingcompany.com", + "state": "Michigan", + "street": "5470 Lapeer Rd" + }, + { + "id": "e49ba3e7-02bf-4a50-aa0a-dd7c64ee3eea", + "name": "Redrock Brewing Company", + "brewery_type": "micro", + "address_1": "599 Fan-Fan Street", + "address_2": "Garsfontein", + "address_3": null, + "city": "Pretoria", + "state_province": "Gauteng", + "postal_code": "0081", + "country": "South Africa", + "longitude": 28.3039, + "latitude": -25.7958, + "phone": "+27 82 337 4478", + "website_url": "https://redrockbrewing.co.za/", + "state": "Gauteng", + "street": "599 Fan-Fan Street" + }, + { + "id": "cdc826d3-05d0-42b1-85c8-3c12724c1ac0", + "name": "Redwood Brewing Co", + "brewery_type": "brewpub", + "address_1": "5304 Gateway Ctr", + "address_2": null, + "address_3": null, + "city": "Flint", + "state_province": "Michigan", + "postal_code": "48507-3930", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8102338000", + "website_url": "http://www.redwoodbrewingco.com", + "state": "Michigan", + "street": "5304 Gateway Ctr" + }, + { + "id": "71ea6d50-e621-4f6e-b986-dda5fb564167", + "name": "Redwood Curtain Brewing Co", + "brewery_type": "micro", + "address_1": "550 S G St Ste 6", + "address_2": null, + "address_3": null, + "city": "Arcata", + "state_province": "California", + "postal_code": "95521-6683", + "country": "United States", + "longitude": -124.0894667, + "latitude": 40.85730505, + "phone": "7078267222", + "website_url": "http://www.redwoodcurtainbrewing.com", + "state": "California", + "street": "550 S G St Ste 6" + }, + { + "id": "10ae1611-0e26-4195-9a07-9bd852278260", + "name": "Redwood Curtain Brewing Co", + "brewery_type": "micro", + "address_1": "1595 Myrtle Avenue Ste B", + "address_2": null, + "address_3": null, + "city": "Eureka", + "state_province": "California", + "postal_code": "95501", + "country": "United States", + "longitude": -124.1363598, + "latitude": 40.79546264, + "phone": "7072697143", + "website_url": "http://www.redwoodcurtainbrewing.com", + "state": "California", + "street": "1595 Myrtle Avenue Ste B" + }, + { + "id": "cfc4d4d4-7f70-4648-b744-9f397f782dad", + "name": "Reed City Brewing Company", + "brewery_type": "brewpub", + "address_1": "141 W Upton Ave", + "address_2": null, + "address_3": null, + "city": "Reed City", + "state_province": "Michigan", + "postal_code": "49677-1129", + "country": "United States", + "longitude": -85.51071976, + "latitude": 43.875879, + "phone": "2314654222", + "website_url": null, + "state": "Michigan", + "street": "141 W Upton Ave" + }, + { + "id": "a8a965c8-b4d8-4699-b418-ad6cf8d9133e", + "name": "Reel Brew Co", + "brewery_type": "closed", + "address_1": "7037 Laurel Canyon Boulevard", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "91605", + "country": "United States", + "longitude": -118.3973933, + "latitude": 34.19896605, + "phone": null, + "website_url": null, + "state": "California", + "street": "7037 Laurel Canyon Boulevard" + }, + { + "id": "e5a098bc-3a39-415c-b78d-73eca850b43b", + "name": "Reel Deel Brewery", + "brewery_type": "micro", + "address_1": "Unit 1 Ind Park", + "address_2": "Knockalegan", + "address_3": null, + "city": "Crossmolina", + "state_province": "Mayo", + "postal_code": "F26 FA09", + "country": "Ireland", + "longitude": -9.312703, + "latitude": 54.1008129, + "phone": "353860779391", + "website_url": "http://reeldeelbrewery.ie/", + "state": "Mayo", + "street": "Unit 1 Ind Park" + }, + { + "id": "e92e0af6-5653-4bbc-ab68-1f25ec0c3155", + "name": "Refined Ale Brewery", + "brewery_type": "micro", + "address_1": "2221 S Cedar St", + "address_2": null, + "address_3": null, + "city": "Little Rock", + "state_province": "Arkansas", + "postal_code": "72204-5452", + "country": "United States", + "longitude": -92.3184697, + "latitude": 34.73083447, + "phone": "5012800556", + "website_url": "http://www.refinedale.com", + "state": "Arkansas", + "street": "2221 S Cedar St" + }, + { + "id": "fa38e7a1-3cbe-4dd4-a3c0-5830257c1427", + "name": "Reformation Brewery", + "brewery_type": "micro", + "address_1": "500 Arnold Mill Way Ste A", + "address_2": null, + "address_3": null, + "city": "Woodstock", + "state_province": "Georgia", + "postal_code": "30188-6842", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6783410828", + "website_url": "http://www.reformationbrewery.com", + "state": "Georgia", + "street": "500 Arnold Mill Way Ste A" + }, + { + "id": "56378cd6-a68b-4a17-8ed9-fdea030f9a1f", + "name": "Refuge Brewery, Inc.", + "brewery_type": "micro", + "address_1": "43040 Rancho Way Ste 200", + "address_2": null, + "address_3": null, + "city": "Temecula", + "state_province": "California", + "postal_code": "92590-5400", + "country": "United States", + "longitude": -117.1587817, + "latitude": 33.50442958, + "phone": "9515060609", + "website_url": "http://www.refugebrew.com", + "state": "California", + "street": "43040 Rancho Way Ste 200" + }, + { + "id": "1a7a4909-e241-43d6-bba6-8631d36a9c78", + "name": "Reinvention Brewing Co.", + "brewery_type": "micro", + "address_1": "9 N Main St PO Box 57", + "address_2": null, + "address_3": null, + "city": "Manchester", + "state_province": "New York", + "postal_code": "14504-9713", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5852897309", + "website_url": "http://www.reinventionbrewing.com", + "state": "New York", + "street": "9 N Main St PO Box 57" + }, + { + "id": "4a65c3de-531c-4190-a9d8-d61612593d13", + "name": "Rek-Lis Brewing Company", + "brewery_type": "micro", + "address_1": "2085 Main Street", + "address_2": null, + "address_3": null, + "city": "Bethlehem", + "state_province": "New Hampshire", + "postal_code": "03574", + "country": "United States", + "longitude": -71.687376, + "latitude": 44.28042825, + "phone": "6033701932", + "website_url": "http://tbd", + "state": "New Hampshire", + "street": "2085 Main Street" + }, + { + "id": "72a60ed2-ef24-4327-9d59-b1b50973be35", + "name": "Relentless Brewing Co", + "brewery_type": "micro", + "address_1": "42030 Avenida Alvarado Ste F", + "address_2": null, + "address_3": null, + "city": "Temecula", + "state_province": "California", + "postal_code": "92590-3404", + "country": "United States", + "longitude": -117.1680654, + "latitude": 33.51260913, + "phone": "9512969400", + "website_url": "http://www.relentlessbrewing.com", + "state": "California", + "street": "42030 Avenida Alvarado Ste F" + }, + { + "id": "c6e4a5e5-5b10-40ed-9621-11bf1e73fd1a", + "name": "Relic Brewing", + "brewery_type": "micro", + "address_1": "95 Whiting St Unit B", + "address_2": null, + "address_3": null, + "city": "Plainville", + "state_province": "Connecticut", + "postal_code": "06062-2842", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Connecticut", + "street": "95 Whiting St Unit B" + }, + { + "id": "317c75e5-7628-4d17-b683-d734c225349c", + "name": "Remedy Brewing Company", + "brewery_type": "micro", + "address_1": "401 E 8th St #120", + "address_2": null, + "address_3": null, + "city": "Sioux Falls", + "state_province": "South Dakota", + "postal_code": "57103-7012", + "country": "United States", + "longitude": -96.72223225, + "latitude": 43.54791493, + "phone": "6052716193", + "website_url": "http://www.remedybrewco.com", + "state": "South Dakota", + "street": "401 E 8th St #120" + }, + { + "id": "8fe6ed9e-872b-46dd-a33d-1a2661bb1fbf", + "name": "Remnant Brewing", + "brewery_type": "micro", + "address_1": "2 Bow Market Way", + "address_2": null, + "address_3": null, + "city": "Somerville", + "state_province": "Massachusetts", + "postal_code": "02143", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.remnantsomerville.com", + "state": "Massachusetts", + "street": "2 Bow Market Way" + }, + { + "id": "20e23a04-49d8-4e74-afd6-f6f03e10489a", + "name": "Renaissance Brewing Co", + "brewery_type": "micro", + "address_1": "1147 S Lewis Ave", + "address_2": null, + "address_3": null, + "city": "Tulsa", + "state_province": "Oklahoma", + "postal_code": "74104-3905", + "country": "United States", + "longitude": -95.9578601, + "latitude": 36.0617778, + "phone": "9184090551", + "website_url": "http://www.renaissancebeer.com", + "state": "Oklahoma", + "street": "1147 S Lewis Ave" + }, + { + "id": "72bfaaf5-2542-45ea-912a-b0b2ed340f06", + "name": "Rendezvous Junction Brewing Company", + "brewery_type": "micro", + "address_1": "2001 S Bellview Rd Ste 2", + "address_2": null, + "address_3": null, + "city": "Rogers", + "state_province": "Arkansas", + "postal_code": "72758-4050", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4793817501", + "website_url": "http://www.rendezvousjunction.com", + "state": "Arkansas", + "street": "2001 S Bellview Rd Ste 2" + }, + { + "id": "c7fb56c0-daf1-42d7-a6dd-5b75953838c9", + "name": "Renegade Brewing Company", + "brewery_type": "micro", + "address_1": "918 W 1st Ave", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80223-1534", + "country": "United States", + "longitude": -104.9992637, + "latitude": 39.71831392, + "phone": "3035345407", + "website_url": "http://renegadebrewing.com", + "state": "Colorado", + "street": "918 W 1st Ave" + }, + { + "id": "3881ce7f-1556-4ef0-aef7-ed55283678d8", + "name": "Renegade Brewing Company - Production", + "brewery_type": "micro", + "address_1": "918 W 1st Ave", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80223-1534", + "country": "United States", + "longitude": -104.9992637, + "latitude": 39.71831392, + "phone": "7204014089", + "website_url": "http://www.renegadebrewing.com", + "state": "Colorado", + "street": "918 W 1st Ave" + }, + { + "id": "66f14e6f-3988-4600-876f-c3ee155541ea", + "name": "Reno Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89502-1807", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7756360014", + "website_url": "http://www.renobrewery.com", + "state": "Nevada", + "street": null + }, + { + "id": "659f76a6-3c54-489f-92ec-39b31760822c", + "name": "Rentsch Brewery", + "brewery_type": "micro", + "address_1": "2500 NE Inner Loop Unit 3105", + "address_2": null, + "address_3": null, + "city": "Georgetown", + "state_province": "Texas", + "postal_code": "78626-4444", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5126885046", + "website_url": "http://www.rentschbrewery.com", + "state": "Texas", + "street": "2500 NE Inner Loop Unit 3105" + }, + { + "id": "516b9dac-9a0b-4c40-ad2d-2feb2170c938", + "name": "Republic Brewing Co", + "brewery_type": "brewpub", + "address_1": "26 Clark Avenue", + "address_2": null, + "address_3": null, + "city": "Republic", + "state_province": "Washington", + "postal_code": "99166-0096", + "country": "United States", + "longitude": -118.73765981539, + "latitude": 48.648184914814, + "phone": "5097752700", + "website_url": "https://www.republicbrew.com", + "state": "Washington", + "street": "26 Clark Avenue" + }, + { + "id": "70d250b8-6079-4a34-b873-c51123071bc4", + "name": "Republic Brewing Company", + "brewery_type": "brewpub", + "address_1": "72 Old Granite St", + "address_2": null, + "address_3": null, + "city": "Manchester", + "state_province": "New Hampshire", + "postal_code": "03101", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6038363188", + "website_url": "https://republicbrewingcompany.com/", + "state": "New Hampshire", + "street": "72 Old Granite St" + }, + { + "id": "065986cc-cd6a-4f1b-82bf-5784118af18f", + "name": "Rescue Brewing Co", + "brewery_type": "micro", + "address_1": "167 N 2nd Ave", + "address_2": null, + "address_3": null, + "city": "Upland", + "state_province": "California", + "postal_code": "91786-6019", + "country": "United States", + "longitude": -117.6485203, + "latitude": 34.09582106, + "phone": "9095362739", + "website_url": "http://www.rescuebrewingco.com", + "state": "California", + "street": "167 N 2nd Ave" + }, + { + "id": "d02410fa-2ca6-461d-8879-6c11270a1390", + "name": "Resident Brewing", + "brewery_type": "micro", + "address_1": "411 C St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92101-5105", + "country": "United States", + "longitude": -117.1608785, + "latitude": 32.71667995, + "phone": "6197176622", + "website_url": "http://www.residentbrewing.com", + "state": "California", + "street": "411 C St" + }, + { + "id": "c9815e98-046a-4e4e-bbd2-80d265b62747", + "name": "Resident Culture Brewing Company LLC", + "brewery_type": "micro", + "address_1": "2101 Central Ave", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28205-5203", + "country": "United States", + "longitude": -80.80542365, + "latitude": 35.21995586, + "phone": "7043331862", + "website_url": "http://www.residentculturebrewing.com", + "state": "North Carolina", + "street": "2101 Central Ave" + }, + { + "id": "581f4005-1088-4fdf-b2f2-dd71151c88f6", + "name": "Resignation Brewery", + "brewery_type": "contract", + "address_1": "98 San Jacinto Blvd Ste 160", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78701-4640", + "country": "United States", + "longitude": -97.742323, + "latitude": 30.262322, + "phone": "4254833232", + "website_url": "http://www.kccobrewery.com", + "state": "Texas", + "street": "98 San Jacinto Blvd Ste 160" + }, + { + "id": "6b1c3f0c-1e2b-4dfd-a8d1-79de7179efc3", + "name": "Resin Brewing", + "brewery_type": "micro", + "address_1": "8 Station Street", + "address_2": null, + "address_3": null, + "city": "Bulli", + "state_province": "NSW", + "postal_code": "2516", + "country": "Australia", + "longitude": 150.9139035, + "latitude": -34.335138, + "phone": "+61 2 4284 1210", + "website_url": "https://www.resinbrewing.com.au/", + "state": "NSW", + "street": "8 Station Street" + }, + { + "id": "562b5a37-32a6-4acd-9f2e-ad781e310618", + "name": "Resolute Brewing Company", + "brewery_type": "micro", + "address_1": "7286 S Yosemite St Ste 110", + "address_2": null, + "address_3": null, + "city": "Centennial", + "state_province": "Colorado", + "postal_code": "80112-2204", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7207221238", + "website_url": "http://www.resolutebrewingco.com", + "state": "Colorado", + "street": "7286 S Yosemite St Ste 110" + }, + { + "id": "002ffa9d-8549-4fe5-a883-8f6fe197d55e", + "name": "Resolution Brewing Company", + "brewery_type": "brewpub", + "address_1": "3024 Mountain View Dr Ste 105", + "address_2": null, + "address_3": null, + "city": "Anchorage", + "state_province": "Alaska", + "postal_code": "99501-3141", + "country": "United States", + "longitude": -149.823091, + "latitude": 61.21997889, + "phone": "9073304523", + "website_url": "http://www.resolutionbeer.com", + "state": "Alaska", + "street": "3024 Mountain View Dr Ste 105" + }, + { + "id": "551c4a45-2563-4d1d-b6dc-651218ebd690", + "name": "Resonate Brewery + Pizzeria", + "brewery_type": "brewpub", + "address_1": "5606 119th Ave SE", + "address_2": null, + "address_3": null, + "city": "Bellevue", + "state_province": "Washington", + "postal_code": "98006-3754", + "country": "United States", + "longitude": -122.1774828, + "latitude": 47.5523206, + "phone": "4256443164", + "website_url": "http://www.resonatebrewery.com", + "state": "Washington", + "street": "5606 119th Ave SE" + }, + { + "id": "94f81f73-7ee4-413d-a2a9-4f8de7ad18b9", + "name": "Restless Moons Brewing", + "brewery_type": "micro", + "address_1": "120 W Wolfe St", + "address_2": null, + "address_3": null, + "city": "Harrisonburg", + "state_province": "Virginia", + "postal_code": "22802-3815", + "country": "United States", + "longitude": -78.87084726, + "latitude": 38.45189522, + "phone": "5402172726", + "website_url": "http://www.restlessmoons.com", + "state": "Virginia", + "street": "120 W Wolfe St" + }, + { + "id": "bbdbbaa0-4f65-4c35-80b2-8d6be878806f", + "name": "Restoration Brew Worx", + "brewery_type": "brewpub", + "address_1": "25 N Sandusky St", + "address_2": null, + "address_3": null, + "city": "Delaware", + "state_province": "Ohio", + "postal_code": "43015-1901", + "country": "United States", + "longitude": -83.0677272, + "latitude": 40.30056202, + "phone": null, + "website_url": "http://www.restorationbrewworx.com", + "state": "Ohio", + "street": "25 N Sandusky St" + }, + { + "id": "8446b88b-3980-4633-8e9f-7696a1c6ac49", + "name": "Resurgence Brewing Company", + "brewery_type": "brewpub", + "address_1": "1250 Niagara St", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14213-1502", + "country": "United States", + "longitude": -78.89959956, + "latitude": 42.91822725, + "phone": "7163819868", + "website_url": "http://www.resurgencebrewing.com", + "state": "New York", + "street": "1250 Niagara St" + }, + { + "id": "8151a672-5d19-422f-91ec-cfaa02e24c08", + "name": "Reub Goldberg Brewing Machine", + "brewery_type": "micro", + "address_1": "81 Meadow Street", + "address_2": null, + "address_3": null, + "city": "Tarrawanna", + "state_province": "NSW", + "postal_code": "2518", + "country": "Australia", + "longitude": 150.8882424, + "latitude": -34.3815854, + "phone": "+61 482 176 520", + "website_url": "http://www.rgbm.beer/", + "state": "NSW", + "street": "81 Meadow Street" + }, + { + "id": "781c0940-c556-433d-8ca2-202fc631629d", + "name": "Reuben's Brews", + "brewery_type": "micro", + "address_1": "1133 NW 51st St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98107-5126", + "country": "United States", + "longitude": -122.3721641, + "latitude": 47.6655088, + "phone": "2067842859", + "website_url": "http://www.reubensbrews.com", + "state": "Washington", + "street": "1133 NW 51st St" + }, + { + "id": "262002b9-b5bd-4de4-92b2-266a1f21fbdf", + "name": "Reuben's Brews Taproom", + "brewery_type": "micro", + "address_1": "5010 14th Ave NW", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98107-5113", + "country": "United States", + "longitude": -122.3732468, + "latitude": 47.6654087, + "phone": "2067842859", + "website_url": "http://www.reubensbrews.com", + "state": "Washington", + "street": "5010 14th Ave NW" + }, + { + "id": "9cfaca46-16e6-4531-abf8-d5120f2666e5", + "name": "ReUnion Brewery", + "brewery_type": "brewpub", + "address_1": "516 2nd St", + "address_2": null, + "address_3": null, + "city": "Coralville", + "state_province": "Iowa", + "postal_code": "52241-2614", + "country": "United States", + "longitude": -91.57498607, + "latitude": 41.67171431, + "phone": "3193373000", + "website_url": "http://www.reunionbrewery.com", + "state": "Iowa", + "street": "516 2nd St" + }, + { + "id": "c96b6e9a-b2ab-4061-bd7a-2ff9de8eafe1", + "name": "Revel Brewing Co", + "brewery_type": "micro", + "address_1": "82 Colmslie Road", + "address_2": null, + "address_3": null, + "city": "Morningside", + "state_province": "QLD", + "postal_code": "4170", + "country": "Australia", + "longitude": 153.0886648, + "latitude": -27.451412, + "phone": "+61 7 3262 0075", + "website_url": "https://revelbrewingco.com.au/", + "state": "QLD", + "street": "82 Colmslie Road" + }, + { + "id": "a02e68b8-c779-4980-9dfe-5438fa7a7fe5", + "name": "Revel Brewing Co.", + "brewery_type": "micro", + "address_1": "82 Colmslie Road", + "address_2": null, + "address_3": null, + "city": "Morningside", + "state_province": "QLD", + "postal_code": "4170", + "country": "Australia", + "longitude": 153.0886648, + "latitude": -27.451412, + "phone": "+61 7 3262 0075", + "website_url": "https://revelbrewingco.com.au/", + "state": "QLD", + "street": "82 Colmslie Road" + }, + { + "id": "bc178419-2cae-4a48-8315-21bdc97954d3", + "name": "Revel Urban Winery / Revel OTR", + "brewery_type": "brewpub", + "address_1": "111 E 12th St", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45202", + "country": "United States", + "longitude": -84.5126641, + "latitude": 39.1085275, + "phone": "5135799463", + "website_url": "http://www.revelotr.com", + "state": "Ohio", + "street": "111 E 12th St" + }, + { + "id": "e8dd8302-d33a-4710-ba06-d0d96905d4b9", + "name": "Revelation Ale Works", + "brewery_type": "micro", + "address_1": "146 S Atlantic Ave", + "address_2": null, + "address_3": null, + "city": "Hallock", + "state_province": "Minnesota", + "postal_code": "56728", + "country": "United States", + "longitude": -96.94649456, + "latitude": 48.77482789, + "phone": "2185100001", + "website_url": "http://www.revales.com", + "state": "Minnesota", + "street": "146 S Atlantic Ave" + }, + { + "id": "069e101a-7372-4392-a872-ef6a7ff9f31c", + "name": "Revelation Craft Brewing Co", + "brewery_type": "micro", + "address_1": "19841 Central Ave", + "address_2": null, + "address_3": null, + "city": "Rehoboth Beach", + "state_province": "Delaware", + "postal_code": "19971-1112", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3022125674", + "website_url": "http://Www.revbeer.com", + "state": "Delaware", + "street": "19841 Central Ave" + }, + { + "id": "2811559d-9e1f-4507-8635-6fedbfde5a52", + "name": "Revelry Brewing Co.", + "brewery_type": "micro", + "address_1": "10 Conroy St", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "South Carolina", + "postal_code": "29403-3815", + "country": "United States", + "longitude": -79.9439382, + "latitude": 32.80728239, + "phone": "8432036194", + "website_url": "http://www.revelrybrewingco.com", + "state": "South Carolina", + "street": "10 Conroy St" + }, + { + "id": "ec12a82b-0ef5-411e-8c74-a1111ddaa2ca", + "name": "Reverie Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Newtown", + "state_province": "Connecticut", + "postal_code": "06470", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://reveriebrewing.com", + "state": "Connecticut", + "street": null + }, + { + "id": "2b0138e9-f65f-4231-9db9-086d79976024", + "name": "Revision Brewing Company", + "brewery_type": "micro", + "address_1": "380 S Rock Blvd", + "address_2": null, + "address_3": null, + "city": "Sparks", + "state_province": "Nevada", + "postal_code": "89431-5545", + "country": "United States", + "longitude": -119.762654, + "latitude": 39.511243, + "phone": "7753312739", + "website_url": "http://www.revisionbrewing.com", + "state": "Nevada", + "street": "380 S Rock Blvd" + }, + { + "id": "717f5bb4-5c1c-4096-a1e4-366754c455be", + "name": "Revival Brewing", + "brewery_type": "proprietor", + "address_1": "505 Atwood Ave", + "address_2": null, + "address_3": null, + "city": "Cranston", + "state_province": "Rhode Island", + "postal_code": "02920-5327", + "country": "United States", + "longitude": -71.47169613, + "latitude": 41.78983825, + "phone": "4013727009", + "website_url": "http://www.revivalbrewing.com", + "state": "Rhode Island", + "street": "505 Atwood Ave" + }, + { + "id": "1db452cf-edd7-4eed-bba1-6f92e000da67", + "name": "Revolution Brewing", + "brewery_type": "regional", + "address_1": "3340 N Kedzie Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60618-5722", + "country": "United States", + "longitude": -87.707534, + "latitude": 41.9289777, + "phone": "7735882267", + "website_url": "http://www.revbrew.com", + "state": "Illinois", + "street": "3340 N Kedzie Ave" + }, + { + "id": "078e3dba-53a7-4d26-b6a5-e43588a234f2", + "name": "Revolution Brewing - Brewpub", + "brewery_type": "brewpub", + "address_1": "2323 N Milwaukee Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60647-2924", + "country": "United States", + "longitude": -87.6981447, + "latitude": 41.923586, + "phone": "7732272739", + "website_url": "http://www.revbrew.com", + "state": "Illinois", + "street": "2323 N Milwaukee Ave" + }, + { + "id": "7675c62e-c161-46dc-ac96-fdf9f934054f", + "name": "Revolver Brewing", + "brewery_type": "large", + "address_1": "5650 Matlock Rd", + "address_2": null, + "address_3": null, + "city": "Granbury", + "state_province": "Texas", + "postal_code": "76049-5347", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8177368034", + "website_url": "http://www.revolverbrewing.com", + "state": "Texas", + "street": "5650 Matlock Rd" + }, + { + "id": "ce15d565-16a3-4292-a00f-5285788158ea", + "name": "RG Brewery / Five Sons Winery", + "brewery_type": "micro", + "address_1": "1360 W Sweden Rd", + "address_2": null, + "address_3": null, + "city": "Brockport", + "state_province": "New York", + "postal_code": "14420-", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5853913569", + "website_url": "http://www.rgbrewery.com", + "state": "New York", + "street": "1360 W Sweden Rd" + }, + { + "id": "6e5f19f9-b0cb-424d-ac2a-828ea580bddd", + "name": "Rhinegeist Brewery", + "brewery_type": "regional", + "address_1": "1910 Elm St", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45202-7751", + "country": "United States", + "longitude": -84.51992076, + "latitude": 39.1172, + "phone": "5133811356", + "website_url": "http://www.rhinegeist.com", + "state": "Ohio", + "street": "1910 Elm St" + }, + { + "id": "b360441e-a145-4059-a49c-92b6c47e95ff", + "name": "Rhinelander Brewing Co", + "brewery_type": "contract", + "address_1": "59 S Brown St", + "address_2": null, + "address_3": null, + "city": "Rhinelander", + "state_province": "Wisconsin", + "postal_code": "54501-3450", + "country": "United States", + "longitude": -89.41264622, + "latitude": 45.63733288, + "phone": "7155502337", + "website_url": "http://www.rhinelanderbrewery.com", + "state": "Wisconsin", + "street": "59 S Brown St" + }, + { + "id": "5917501f-0771-4345-8d0f-b1bb591bc319", + "name": "Rhombus Guys Brewing Co", + "brewery_type": "brewpub", + "address_1": "116 S 3rd St", + "address_2": null, + "address_3": null, + "city": "Grand Forks", + "state_province": "North Dakota", + "postal_code": "58201-4784", + "country": "United States", + "longitude": -97.0286822, + "latitude": 47.923923, + "phone": "7017570598", + "website_url": "http://www.rhombusguysbrewing.com", + "state": "North Dakota", + "street": "116 S 3rd St" + }, + { + "id": "78afc551-cb96-427b-972f-61840aa2636c", + "name": "Rhythm River Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Longmont", + "state_province": "Colorado", + "postal_code": "80504-2226", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.rhythmriverbrewing.com", + "state": "Colorado", + "street": null + }, + { + "id": "60c3cc1d-7647-4325-ac74-e2c6f40cd2b5", + "name": "Richbrau Brewing", + "brewery_type": "micro", + "address_1": "5 S 20th St", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23223", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8046214100", + "website_url": "https://www.richbraubrewing.com/", + "state": "Virginia", + "street": "5 S 20th St" + }, + { + "id": "5723b764-d8ff-4eda-a31d-19c70c8c4445", + "name": "Richmond Hill Brewing Company", + "brewery_type": "brewpub", + "address_1": "2 Alabaster Street", + "address_2": "Baakens Valley", + "address_3": null, + "city": "Gqeberha", + "state_province": "Eastern Cape", + "postal_code": "6001", + "country": "South Africa", + "longitude": 25.6171, + "latitude": -33.9678, + "phone": "+27 63 353 3523", + "website_url": "https://www.rhbc.co.za/", + "state": "Eastern Cape", + "street": "2 Alabaster Street" + }, + { + "id": "536187da-6f21-4ccd-89f1-33a0c47516cb", + "name": "Richter Aleworks", + "brewery_type": "micro", + "address_1": "8279 W Lake Pleasant Pkwy Ste 110", + "address_2": null, + "address_3": null, + "city": "Peoria", + "state_province": "Arizona", + "postal_code": "85382-7434", + "country": "United States", + "longitude": -112.2380541, + "latitude": 33.6687745, + "phone": "6029086553", + "website_url": "http://www.richteraleworks.com", + "state": "Arizona", + "street": "8279 W Lake Pleasant Pkwy Ste 110" + }, + { + "id": "f473913e-7ac7-4da3-8257-896ededee890", + "name": "Rick Tanner's Grille & Bar/Cherry Street Brewing Cooperative", + "brewery_type": "brewpub", + "address_1": "5810 Bond St # E-2", + "address_2": null, + "address_3": null, + "city": "Cumming", + "state_province": "Georgia", + "postal_code": "30040-0301", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7702055512", + "website_url": "http://www.rtanners.com", + "state": "Georgia", + "street": "5810 Bond St # E-2" + }, + { + "id": "4dc524ab-af98-4f2d-828e-e6df7078ad9f", + "name": "Rickety Cricket Brewing", + "brewery_type": "brewpub", + "address_1": "312 E Beale St", + "address_2": null, + "address_3": null, + "city": "Kingman", + "state_province": "Arizona", + "postal_code": "86401-5832", + "country": "United States", + "longitude": -114.0614981, + "latitude": 35.19028906, + "phone": "9287532337", + "website_url": "http://www.ricketycricketbrewing.com", + "state": "Arizona", + "street": "312 E Beale St" + }, + { + "id": "46a30b10-a4bb-43f1-9219-d0e6ffbde56f", + "name": "Ridge Runner Brewing LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Wauseon", + "state_province": "Ohio", + "postal_code": "43567-9294", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": null + }, + { + "id": "8c73e22d-9012-4515-b769-94cd608c90a5", + "name": "Ridgefield Craft Brewing Co Taphouse", + "brewery_type": "micro", + "address_1": "120 N 3rd Ave", + "address_2": null, + "address_3": null, + "city": "Ridgefield", + "state_province": "Washington", + "postal_code": "98642-3805", + "country": "United States", + "longitude": -122.74474767316, + "latitude": 45.816050857669, + "phone": "3607273046", + "website_url": "https://ridgefieldcraftbrewing.com", + "state": "Washington", + "street": "120 N 3rd Ave" + }, + { + "id": "e1c59d70-ad1b-435a-ba5d-f4c682d0e323", + "name": "Ridgewalker Brewing", + "brewery_type": "brewpub", + "address_1": "1921 21st Ave", + "address_2": null, + "address_3": null, + "city": "Forest Grove", + "state_province": "Oregon", + "postal_code": "97116-1637", + "country": "United States", + "longitude": -123.1129966, + "latitude": 45.52115845, + "phone": "5038671634", + "website_url": null, + "state": "Oregon", + "street": "1921 21st Ave" + }, + { + "id": "a35ee2c4-d008-466c-b071-5d7f97041c13", + "name": "Riepstines Pub", + "brewery_type": "brewpub", + "address_1": "913 Arch St", + "address_2": null, + "address_3": null, + "city": "Williamsport", + "state_province": "Pennsylvania", + "postal_code": "17701-5630", + "country": "United States", + "longitude": -77.05299603, + "latitude": 41.23997285, + "phone": "5703292739", + "website_url": "http://www.riepstinespub.com", + "state": "Pennsylvania", + "street": "913 Arch St" + }, + { + "id": "bf79bd79-aca0-4f04-8e49-316917becaaf", + "name": "Riff Raff Brewing", + "brewery_type": "brewpub", + "address_1": "274 Pagosa St", + "address_2": null, + "address_3": null, + "city": "Pagosa Springs", + "state_province": "Colorado", + "postal_code": "81147", + "country": "United States", + "longitude": -107.0081546, + "latitude": 37.26874006, + "phone": "9702644677", + "website_url": "http://www.riffraffbrewing.com", + "state": "Colorado", + "street": "274 Pagosa St" + }, + { + "id": "ea79f476-a0cb-4f50-a88d-3412ba6776ce", + "name": "Riggs Beer Company", + "brewery_type": "micro", + "address_1": "1901 S High Cross Rd", + "address_2": null, + "address_3": null, + "city": "Urbana", + "state_province": "Illinois", + "postal_code": "61802-7843", + "country": "United States", + "longitude": -88.16245188, + "latitude": 40.09367288, + "phone": "2177185345", + "website_url": "http://www.riggsbeer.com", + "state": "Illinois", + "street": "1901 S High Cross Rd" + }, + { + "id": "b08522ec-5b52-4510-90a7-e82dc1d8f5a7", + "name": "Right Around The Corner", + "brewery_type": "micro", + "address_1": "2244 Central Ave", + "address_2": null, + "address_3": null, + "city": "Saint Petersburg", + "state_province": "Florida", + "postal_code": "33712", + "country": "United States", + "longitude": -82.66369394, + "latitude": 27.77095137, + "phone": "7273319395", + "website_url": null, + "state": "Florida", + "street": "2244 Central Ave" + }, + { + "id": "a1867f65-c945-46c3-90df-68b176d61d2a", + "name": "Right Brain Brewery", + "brewery_type": "micro", + "address_1": "225 E Sixteenth St Ste A", + "address_2": null, + "address_3": null, + "city": "Traverse City", + "state_province": "Michigan", + "postal_code": "49684-4190", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2319441239", + "website_url": "http://www.rightbrainbrewery.com", + "state": "Michigan", + "street": "225 E Sixteenth St Ste A" + }, + { + "id": "3cd77720-c957-416f-aa4a-ee76c4c435ce", + "name": "Right Eye Brewing Co", + "brewery_type": "micro", + "address_1": "301 Spring St", + "address_2": null, + "address_3": null, + "city": "Suisun City", + "state_province": "California", + "postal_code": "94585", + "country": "United States", + "longitude": -122.041544, + "latitude": 38.242484, + "phone": "7074161347", + "website_url": "http://www.righteyebrewing.com", + "state": "California", + "street": "301 Spring St" + }, + { + "id": "7cc98456-1649-45d4-8860-a6e1a83019b1", + "name": "Right Mind Brewing", + "brewery_type": "brewpub", + "address_1": "1410 S Main St", + "address_2": null, + "address_3": null, + "city": "Blacksburg", + "state_province": "Virginia", + "postal_code": "24060-5528", + "country": "United States", + "longitude": -80.4010083, + "latitude": 37.2152422, + "phone": "5405527000", + "website_url": "http://www.rightmindbrewing.com", + "state": "Virginia", + "street": "1410 S Main St" + }, + { + "id": "477df372-74d7-4555-a942-1258a05a4c73", + "name": "Right Proper Brewing Company", + "brewery_type": "micro", + "address_1": "920 Girard St NE", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "District of Columbia", + "postal_code": "20017-3424", + "country": "United States", + "longitude": -76.99307078, + "latitude": 38.9267988, + "phone": "2026072337", + "website_url": "http://www.rightproperbrewing.com", + "state": "District of Columbia", + "street": "920 Girard St NE" + }, + { + "id": "72ed4fa8-abbe-4e03-bed3-ed13798b2528", + "name": "Right Proper Brewing Company", + "brewery_type": "brewpub", + "address_1": "624 T St NW", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "District of Columbia", + "postal_code": "20001-5119", + "country": "United States", + "longitude": -77.0213751, + "latitude": 38.9154119, + "phone": "2026072337", + "website_url": "http://www.rightproperbrewery.com", + "state": "District of Columbia", + "street": "624 T St NW" + }, + { + "id": "bb99377f-b0f7-4f40-b10d-9be58c9426b5", + "name": "Right Turn, Clyde Brewing Company", + "brewery_type": "micro", + "address_1": "300 Main St", + "address_2": null, + "address_3": null, + "city": "Narrows", + "state_province": "Virginia", + "postal_code": "24124-1317", + "country": "United States", + "longitude": -80.807605, + "latitude": 37.330026, + "phone": "5409217283", + "website_url": "http://www.rtcbrewing.com", + "state": "Virginia", + "street": "300 Main St" + }, + { + "id": "6b3a0238-51d5-4ff3-a8cc-7751adde4349", + "name": "Rightbank Brewing Society", + "brewery_type": "micro", + "address_1": "58C Darlot Street", + "address_2": null, + "address_3": null, + "city": "Horsham", + "state_province": "VIC", + "postal_code": "3400", + "country": "Australia", + "longitude": 142.1962725, + "latitude": -36.7173466, + "phone": "+61 417 532 114", + "website_url": "https://www.rightbankbrewingsociety.com.au/", + "state": "VIC", + "street": "58C Darlot Street" + }, + { + "id": "b33bd5fc-16a9-49c7-8096-a01d2ac8f0c5", + "name": "Riip Beer Company", + "brewery_type": "micro", + "address_1": "17216 Pacific Coast Hwy", + "address_2": null, + "address_3": null, + "city": "Huntington Beach", + "state_province": "California", + "postal_code": "92649-4116", + "country": "United States", + "longitude": -117.9872302, + "latitude": 33.6480028, + "phone": "7142486710", + "website_url": "http://www.riipbeer.com", + "state": "California", + "street": "17216 Pacific Coast Hwy" + }, + { + "id": "e9406c68-9114-4dc5-8d0a-d29595a7ae15", + "name": "Riley's Brew Pub", + "brewery_type": "brewpub", + "address_1": "2674 Owens Mountain Pkwy Ste 104", + "address_2": null, + "address_3": null, + "city": "Clovis", + "state_province": "California", + "postal_code": "93611-9588", + "country": "United States", + "longitude": -119.6452626, + "latitude": 36.855494, + "phone": "5598622925", + "website_url": "http://rileysbrew.pub", + "state": "California", + "street": "2674 Owens Mountain Pkwy Ste 104" + }, + { + "id": "8191369a-6f5c-4a6e-ba33-d6bc65abe913", + "name": "Riley's Brewing Co", + "brewery_type": "micro", + "address_1": "28777 Avenue 15 1/2", + "address_2": null, + "address_3": null, + "city": "Madera", + "state_province": "California", + "postal_code": "93638-2316", + "country": "United States", + "longitude": -120.0206226, + "latitude": 36.97445553, + "phone": "5596738021", + "website_url": "http://www.rileysbrewing.us", + "state": "California", + "street": "28777 Avenue 15 1/2" + }, + { + "id": "32a93d07-2b80-4078-8493-cb27f3613eb1", + "name": "Rincon Brewery", + "brewery_type": "brewpub", + "address_1": "5065 Carpinteria Ave", + "address_2": null, + "address_3": null, + "city": "Carpinteria", + "state_province": "California", + "postal_code": "93013-2046", + "country": "United States", + "longitude": -119.5178586, + "latitude": 34.39834, + "phone": "8056846044", + "website_url": "http://www.rinconbrewery.com", + "state": "California", + "street": "5065 Carpinteria Ave" + }, + { + "id": "c97eae38-c4a8-437d-ace0-6a0c5eeb1539", + "name": "Rinn Duin Brewing", + "brewery_type": "micro", + "address_1": "1540 Route 37 W", + "address_2": null, + "address_3": null, + "city": "Toms River", + "state_province": "New Jersey", + "postal_code": "08755-5055", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7325693261", + "website_url": "http://www.rinnduinbrewing.com", + "state": "New Jersey", + "street": "1540 Route 37 W" + }, + { + "id": "ef794faa-d294-40fd-82c2-ed36b366a0c3", + "name": "Rio Bravo Brewing Company", + "brewery_type": "brewpub", + "address_1": "1912 2nd Street NW", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87102", + "country": "United States", + "longitude": -106.6454774, + "latitude": 35.10343814, + "phone": "5059003909", + "website_url": "http://www.riobravobrewing.com", + "state": "New Mexico", + "street": "1912 2nd Street NW" + }, + { + "id": "e5eeb341-f557-498b-bee8-23ef2acceca9", + "name": "Rip Current Brewery", + "brewery_type": "micro", + "address_1": "1325 Grand Ave Ste 100", + "address_2": null, + "address_3": null, + "city": "San Marcos", + "state_province": "California", + "postal_code": "92078-2451", + "country": "United States", + "longitude": -117.1924461, + "latitude": 33.14309526, + "phone": "7604813141", + "website_url": "http://www.ripcurrentbrewing.com", + "state": "California", + "street": "1325 Grand Ave Ste 100" + }, + { + "id": "89976434-a6fd-4f51-bc94-54a7cc72a49d", + "name": "Rip Current Brewing North Park", + "brewery_type": "brewpub", + "address_1": "4101 30th St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92104-1905", + "country": "United States", + "longitude": -117.129808, + "latitude": 32.752388, + "phone": "7604813141", + "website_url": "http://www.ripcurrentbrewing.com", + "state": "California", + "street": "4101 30th St" + }, + { + "id": "b5cba653-66c1-48df-b466-18747f2aa478", + "name": "Rip Rap Brewing Company", + "brewery_type": "micro", + "address_1": "116 E 25th St", + "address_2": null, + "address_3": null, + "city": "Norfolk", + "state_province": "Virginia", + "postal_code": "23517-1408", + "country": "United States", + "longitude": -76.28310937, + "latitude": 36.8703271, + "phone": null, + "website_url": "http://www.riprapbrewing.com", + "state": "Virginia", + "street": "116 E 25th St" + }, + { + "id": "7bbdd581-c041-4afd-8819-8ae19b1afc97", + "name": "Rip Van Winkle Brewing Co.", + "brewery_type": "brewpub", + "address_1": "4545 Route 32", + "address_2": null, + "address_3": null, + "city": "Catskill", + "state_province": "New York", + "postal_code": "12414-6623", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5186789275", + "website_url": "http://www.ripvanwinklebrewingco.com", + "state": "New York", + "street": "4545 Route 32" + }, + { + "id": "65781162-e6bc-4aa7-a98e-fbf609fc2a79", + "name": "Rippon Brewing Company", + "brewery_type": "micro", + "address_1": "2153 Berryville Pike", + "address_2": null, + "address_3": null, + "city": "Rippon", + "state_province": "West Virginia", + "postal_code": "25441", + "country": "United States", + "longitude": -77.905289, + "latitude": 39.21862, + "phone": "3048392263", + "website_url": "http://www.ripponbrewing.com", + "state": "West Virginia", + "street": "2153 Berryville Pike" + }, + { + "id": "0d3ae8be-740a-47f8-b76c-1e1f871e79de", + "name": "Riptide Brewing Company", + "brewery_type": "micro", + "address_1": "987 3rd Ave N", + "address_2": null, + "address_3": null, + "city": "Naples", + "state_province": "Florida", + "postal_code": "34102-5810", + "country": "United States", + "longitude": -81.7949268, + "latitude": 26.15088596, + "phone": "2392286533", + "website_url": "http://www.riptidebrewingcompany.com", + "state": "Florida", + "street": "987 3rd Ave N" + }, + { + "id": "a4eff54c-48b6-4f39-950c-75b7ecd13019", + "name": "Rising Silo Brewery", + "brewery_type": "brewpub", + "address_1": "2351 Glade Rd", + "address_2": null, + "address_3": null, + "city": "Blacksburg", + "state_province": "Virginia", + "postal_code": "24060-1928", + "country": "United States", + "longitude": -80.4630874, + "latitude": 37.2361304, + "phone": "5407500796", + "website_url": "http://www.risingsilobrewery.com", + "state": "Virginia", + "street": "2351 Glade Rd" + }, + { + "id": "5907fe0d-00b1-4e2d-a5b9-e082af0e42a1", + "name": "Rising Sons Brewery", + "brewery_type": "micro", + "address_1": "Cornmarket St", + "address_2": null, + "address_3": null, + "city": "Cork", + "state_province": "Cork", + "postal_code": "T12 WK27", + "country": "Ireland", + "longitude": -8.4787177, + "latitude": 51.8995943, + "phone": "353212414764", + "website_url": "http://www.risingsonsbrewery.com/", + "state": "Cork", + "street": "Cornmarket St" + }, + { + "id": "52639e4f-8a95-4c65-b241-a3cc1b3afb3c", + "name": "Rising Tide Brewing Co", + "brewery_type": "micro", + "address_1": "103 Fox St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04101-2539", + "country": "United States", + "longitude": -70.2570974, + "latitude": 43.6655545, + "phone": "2073702337", + "website_url": "http://www.risingtidebrewing.com", + "state": "Maine", + "street": "103 Fox St" + }, + { + "id": "98952c82-f47d-437b-9a54-871736d5b9dc", + "name": "Ritt Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60634-2319", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8475618203", + "website_url": null, + "state": "Illinois", + "street": null + }, + { + "id": "d5b0b7ee-23a6-4a1c-aca6-1df93bb9f65e", + "name": "Ritter Brewing Company LLC", + "brewery_type": "micro", + "address_1": "449 Gino Merli Dr", + "address_2": null, + "address_3": null, + "city": "Peckville", + "state_province": "Pennsylvania", + "postal_code": "18452-1631", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.Ritterbrewing.com", + "state": "Pennsylvania", + "street": "449 Gino Merli Dr" + }, + { + "id": "b31957a1-12ef-4544-b7b8-790dc7e9136d", + "name": "Ritual Brewing Co", + "brewery_type": "micro", + "address_1": "1315 Research Dr", + "address_2": null, + "address_3": null, + "city": "Redlands", + "state_province": "California", + "postal_code": "92374-4583", + "country": "United States", + "longitude": -117.2369995, + "latitude": 34.0705986, + "phone": "9094787800", + "website_url": "http://www.ritualbrewing.com", + "state": "California", + "street": "1315 Research Dr" + }, + { + "id": "50f46329-bc95-4781-b109-dd71958479b0", + "name": "Rivals Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "middleburg hts", + "state_province": "Ohio", + "postal_code": "44130", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3306316700", + "website_url": "https://www.facebook.com/RivalsBrewingCo/", + "state": "Ohio", + "street": null + }, + { + "id": "7104bc4a-20af-46c5-9f5f-eca71eddbf9e", + "name": "Rivals Sports Grille", + "brewery_type": "contract", + "address_1": "6710 Smith Rd", + "address_2": null, + "address_3": null, + "city": "Middleburg Heights", + "state_province": "Ohio", + "postal_code": "44130-2656", + "country": "United States", + "longitude": -81.80433472, + "latitude": 41.38531549, + "phone": "2162670005", + "website_url": "http://www.rivalscleveland.com", + "state": "Ohio", + "street": "6710 Smith Rd" + }, + { + "id": "7a724ea4-eab4-434c-ac98-25b39a1c8b05", + "name": "River Barge Brewing", + "brewery_type": "brewpub", + "address_1": "71 Grovedale Ln", + "address_2": null, + "address_3": null, + "city": "Wyalusing", + "state_province": "Pennsylvania", + "postal_code": "18853-7854", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5707461400", + "website_url": "http://www.riverbargebrewing.com", + "state": "Pennsylvania", + "street": "71 Grovedale Ln" + }, + { + "id": "aede08a5-8286-46f7-b426-90a21ba259cb", + "name": "River Bend Brewing", + "brewery_type": "closed", + "address_1": "113 River Bend Rd", + "address_2": null, + "address_3": null, + "city": "Hailey", + "state_province": "Idaho", + "postal_code": "83333-", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2087888087", + "website_url": null, + "state": "Idaho", + "street": "113 River Bend Rd" + }, + { + "id": "49d641f4-8390-4ba4-bfe1-ee5f7a16d220", + "name": "River Bend Hop Farm And Brewery", + "brewery_type": "micro", + "address_1": "1800 Lower Bailey Rd", + "address_2": null, + "address_3": null, + "city": "Newport", + "state_province": "Pennsylvania", + "postal_code": "17074-7622", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7173156764", + "website_url": "http://www.riverbendhopfarmandbrewery.com", + "state": "Pennsylvania", + "street": "1800 Lower Bailey Rd" + }, + { + "id": "f292442b-c5ce-457d-bb84-371e4189d687", + "name": "River Bluff Brewing", + "brewery_type": "micro", + "address_1": "1224 Frederick Ave", + "address_2": null, + "address_3": null, + "city": "St Joseph", + "state_province": "Missouri", + "postal_code": "64501-2334", + "country": "United States", + "longitude": -94.844399, + "latitude": 39.770343, + "phone": "8162595339", + "website_url": "http://www.riverbluffbrew.com", + "state": "Missouri", + "street": "1224 Frederick Ave" + }, + { + "id": "8b916006-84bf-455e-8aa8-7590e4c72bc8", + "name": "River Bottoms Brewing Company", + "brewery_type": "brewpub", + "address_1": "12 W Benton St", + "address_2": null, + "address_3": null, + "city": "Carrollton", + "state_province": "Missouri", + "postal_code": "64633", + "country": "United States", + "longitude": -93.497006, + "latitude": 39.405185, + "phone": "6603226110", + "website_url": "http://www.riverbottomsbrewing.com", + "state": "Missouri", + "street": "12 W Benton St" + }, + { + "id": "431908ce-6f85-4d24-bf4a-da70495754a5", + "name": "River City Brewing", + "brewery_type": "micro", + "address_1": "121 S Cedar St", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99201-6500", + "country": "United States", + "longitude": -117.4323508, + "latitude": 47.65605308, + "phone": "9043982299", + "website_url": "http://www.rivercitybrew.com", + "state": "Washington", + "street": "121 S Cedar St" + }, + { + "id": "a3c97ac8-ab6b-4812-b918-b5485ab461cb", + "name": "River City Brewing Co", + "brewery_type": "brewpub", + "address_1": "150 N Mosley St", + "address_2": null, + "address_3": null, + "city": "Wichita", + "state_province": "Kansas", + "postal_code": "67202-2804", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3162632739", + "website_url": "http://rivercitybrewingco.com", + "state": "Kansas", + "street": "150 N Mosley St" + }, + { + "id": "fcc98f37-d0d3-459f-8e38-85bf9d9367f0", + "name": "River City Brewing Co", + "brewery_type": "brewpub", + "address_1": "835 Museum Cir", + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Florida", + "postal_code": "32207-9003", + "country": "United States", + "longitude": -81.66111727, + "latitude": 30.31862639, + "phone": "9043982299", + "website_url": "http://www.rivercitybrewing.com", + "state": "Florida", + "street": "835 Museum Cir" + }, + { + "id": "db09f911-a566-463c-b6de-a42d540f4dd1", + "name": "River City Brewing Co", + "brewery_type": "brewpub", + "address_1": "6241 Fair Oaks Blvd Ste G", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95814-3338", + "country": "United States", + "longitude": -121.3297812, + "latitude": 38.61512607, + "phone": "9165505093", + "website_url": "http://www.rivercitybrewing.net", + "state": "California", + "street": "6241 Fair Oaks Blvd Ste G" + }, + { + "id": "a14fa9cd-bfe0-4c80-a928-0e8d97547e02", + "name": "River Company Restaurant & Brewery Inc, The", + "brewery_type": "brewpub", + "address_1": "6633 Viscoe Rd", + "address_2": null, + "address_3": null, + "city": "Fairlawn", + "state_province": "Virginia", + "postal_code": "24141-6903", + "country": "United States", + "longitude": -80.54498015, + "latitude": 37.1460358, + "phone": "5406333940", + "website_url": "http://www.therivercompanybrewery.com", + "state": "Virginia", + "street": "6633 Viscoe Rd" + }, + { + "id": "d6dbff7d-aba1-4ff4-8c87-4aa479bbb8fb", + "name": "River Dog Brewing Co", + "brewery_type": "micro", + "address_1": "591 Browns Cove Rd Unit H", + "address_2": null, + "address_3": null, + "city": "Ridgeland", + "state_province": "South Carolina", + "postal_code": "29936-7281", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8436452302", + "website_url": "http://www.riverdogbrewing.com", + "state": "South Carolina", + "street": "591 Browns Cove Rd Unit H" + }, + { + "id": "3120822f-e867-44e5-b293-241fb32dcca7", + "name": "River Hawk Brewing", + "brewery_type": "micro", + "address_1": "24735 W Eames St", + "address_2": null, + "address_3": null, + "city": "Channahon", + "state_province": "Illinois", + "postal_code": "60410-8705", + "country": "United States", + "longitude": -88.21732025, + "latitude": 41.43542539, + "phone": "8152552202", + "website_url": "http://www.riverhawkbrewing.com", + "state": "Illinois", + "street": "24735 W Eames St" + }, + { + "id": "fc966601-8786-44df-a2f0-3dc4c1ff566f", + "name": "River Horse Brewing Company", + "brewery_type": "micro", + "address_1": "2 Graphics Dr", + "address_2": null, + "address_3": null, + "city": "Ewing", + "state_province": "New Jersey", + "postal_code": "08628-1546", + "country": "United States", + "longitude": -74.79656178, + "latitude": 40.2765378, + "phone": "6098830890", + "website_url": "http://www.riverhorse.com", + "state": "New Jersey", + "street": "2 Graphics Dr" + }, + { + "id": "e8c5b1f3-a823-485f-8f68-050c88adbe12", + "name": "River Mile 38 Brewing Co", + "brewery_type": "micro", + "address_1": "285 3rd St", + "address_2": null, + "address_3": null, + "city": "Cathlamet", + "state_province": "Washington", + "postal_code": "98612-9561", + "country": "United States", + "longitude": -123.3853742, + "latitude": 46.2054338, + "phone": "3603554662", + "website_url": "http://www.rivermile38.com", + "state": "Washington", + "street": "285 3rd St" + }, + { + "id": "cbdb28e4-633a-4b27-95f9-f8383c53298c", + "name": "River North Brewery", + "brewery_type": "micro", + "address_1": "6021 Washington St Unit A", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80216-1153", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7858656057", + "website_url": "http://www.rivernorthbrewery.com", + "state": "Colorado", + "street": "6021 Washington St Unit A" + }, + { + "id": "48f9049b-e240-4e4f-80ae-d6e2ec181912", + "name": "River North Brewery - RiNo", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80205-2440", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7858656057", + "website_url": "http://www.rivernorthbrewery.com", + "state": "Colorado", + "street": null + }, + { + "id": "faf0e458-0f8c-4ad0-990a-e803c574a1e2", + "name": "River of No Return Brewing Co", + "brewery_type": "closed", + "address_1": "810 S Hwy 93", + "address_2": null, + "address_3": null, + "city": "Challis", + "state_province": "Idaho", + "postal_code": "83226", + "country": "United States", + "longitude": -114.224139, + "latitude": 44.50008, + "phone": "2088797667", + "website_url": null, + "state": "Idaho", + "street": "810 S Hwy 93" + }, + { + "id": "b2800c76-3e90-4b98-8f0c-dc5d58a240dc", + "name": "River Rat Brewery", + "brewery_type": "brewpub", + "address_1": "1231 Shop Rd", + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "South Carolina", + "postal_code": "29201-4744", + "country": "United States", + "longitude": -81.01125386, + "latitude": 33.97325589, + "phone": "8037245712", + "website_url": "http://www.riverratbrewery.com", + "state": "South Carolina", + "street": "1231 Shop Rd" + }, + { + "id": "49867107-1f94-468e-9a6f-4e5505b6ce9e", + "name": "River Ridge Brewing", + "brewery_type": "micro", + "address_1": "303 S Riverview St", + "address_2": null, + "address_3": null, + "city": "Bellevue", + "state_province": "Iowa", + "postal_code": "52031-1353", + "country": "United States", + "longitude": -90.4223409, + "latitude": 42.2567622, + "phone": "5632310299", + "website_url": "http://www.riverridgebrewing.com", + "state": "Iowa", + "street": "303 S Riverview St" + }, + { + "id": "52b27681-158d-47d2-97cf-92fd88623177", + "name": "River Road Beer Co.", + "brewery_type": "micro", + "address_1": "167 Henty Street", + "address_2": null, + "address_3": null, + "city": "Reservoir", + "state_province": "VIC", + "postal_code": "3073", + "country": "Australia", + "longitude": 144.9848051, + "latitude": -37.718126, + "phone": "+61 3 9462 0650", + "website_url": null, + "state": "VIC", + "street": "167 Henty Street" + }, + { + "id": "ccc58e3b-3eb4-4932-a843-afe6593ab96d", + "name": "River Rock Brewery", + "brewery_type": "micro", + "address_1": "807 C St", + "address_2": null, + "address_3": null, + "city": "Galt", + "state_province": "California", + "postal_code": "95632-1706", + "country": "United States", + "longitude": -121.3004126, + "latitude": 38.2532789, + "phone": "2093316071", + "website_url": "http://riverrockbrewery.com", + "state": "California", + "street": "807 C St" + }, + { + "id": "3bcfdd00-3126-4d97-8a75-7236d477b6cf", + "name": "River Roost Brewery", + "brewery_type": "micro", + "address_1": "230 S Main St", + "address_2": null, + "address_3": null, + "city": "White River Junction", + "state_province": "Vermont", + "postal_code": "05001-7204", + "country": "United States", + "longitude": -72.31821547, + "latitude": 43.64560685, + "phone": null, + "website_url": "http://www.riverroostbrewery.com", + "state": "Vermont", + "street": "230 S Main St" + }, + { + "id": "dd8e7ee8-f9d4-4f2b-8b74-dc76d840264e", + "name": "River Rouge Brewing Company", + "brewery_type": "micro", + "address_1": "406 E 4th St", + "address_2": null, + "address_3": null, + "city": "Royal Oak", + "state_province": "Michigan", + "postal_code": "48067-2757", + "country": "United States", + "longitude": -83.14059587, + "latitude": 42.48726531, + "phone": "2488020555", + "website_url": "http://www.riverrougebrew.com", + "state": "Michigan", + "street": "406 E 4th St" + }, + { + "id": "f3aeb883-5ed4-41c2-a4da-0ca55516affd", + "name": "River Styx Brewing", + "brewery_type": "micro", + "address_1": "166 Boulder Dr Ste 112", + "address_2": null, + "address_3": null, + "city": "Fitchburg", + "state_province": "Massachusetts", + "postal_code": "01420-3168", + "country": "United States", + "longitude": -71.7946112, + "latitude": 42.5817291, + "phone": "9786965176", + "website_url": "http://www.riverstyxbrewing.com", + "state": "Massachusetts", + "street": "166 Boulder Dr Ste 112" + }, + { + "id": "9d9082d8-b3f1-47c4-b068-b3b8a272b2b5", + "name": "River Time Brewing", + "brewery_type": "brewpub", + "address_1": "650 Emens Ave S", + "address_2": null, + "address_3": null, + "city": "Darrington", + "state_province": "Washington", + "postal_code": "98241", + "country": "United States", + "longitude": -121.6020402, + "latitude": 48.24905291, + "phone": "2674837411", + "website_url": "http://www.rivertimebrewing.com", + "state": "Washington", + "street": "650 Emens Ave S" + }, + { + "id": "cad4e26e-fb01-4cda-be91-070fc3503e23", + "name": "River's Edge Brewing Co", + "brewery_type": "brewpub", + "address_1": "125 S Main St Ste 400", + "address_2": null, + "address_3": null, + "city": "Milford", + "state_province": "Michigan", + "postal_code": "48381-1976", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2486851625", + "website_url": "http://www.riversedgebrew.com", + "state": "Michigan", + "street": "125 S Main St Ste 400" + }, + { + "id": "d2f56aea-e533-4819-872d-f5ae1f7289f6", + "name": "RiverBend Brewing Pub", + "brewery_type": "closed", + "address_1": "2650 NE Division St", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97703-3569", + "country": "United States", + "longitude": -121.3051834, + "latitude": 44.0760099, + "phone": "5415507550", + "website_url": "http://www.riverbendbrewing.com", + "state": "Oregon", + "street": "2650 NE Division St" + }, + { + "id": "5e7a1229-c739-4d88-8b72-b4b9fcb98ba0", + "name": "Riverlands Brewing Company", + "brewery_type": "micro", + "address_1": "1860 Dean St St Unit A", + "address_2": null, + "address_3": null, + "city": "Saint Charles", + "state_province": "Illinois", + "postal_code": "60174-4591", + "country": "United States", + "longitude": -88.337804389199, + "latitude": 41.918785953533, + "phone": "6305496293", + "website_url": "http://www.riverlandsbrewing.com", + "state": "Illinois", + "street": "1860 Dean St St Unit A" + }, + { + "id": "302a399c-c230-4e4d-a906-c438f006d953", + "name": "Rivermen Brewing Co", + "brewery_type": "brewpub", + "address_1": "1500 River Dr", + "address_2": null, + "address_3": null, + "city": "Belmont", + "state_province": "North Carolina", + "postal_code": "28012-3586", + "country": "United States", + "longitude": -81.015546, + "latitude": 35.240249, + "phone": "7043634698", + "website_url": "http://www.rivermenbrewingcompany.com", + "state": "North Carolina", + "street": "1500 River Dr" + }, + { + "id": "bce76e42-8b32-4f50-a8fd-81e718747856", + "name": "Riverport Brewing Co", + "brewery_type": "micro", + "address_1": "150 9th St Ste B", + "address_2": null, + "address_3": null, + "city": "Clarkston", + "state_province": "Washington", + "postal_code": "99403-1856", + "country": "United States", + "longitude": -117.04981946759, + "latitude": 46.424885379979, + "phone": "5097588889", + "website_url": "http://www.riverportbrewing.com", + "state": "Washington", + "street": "150 9th St Ste B" + }, + { + "id": "81de27d4-0ccb-4810-b0b8-074f30983f3c", + "name": "Riverside Brewery & Restaurant", + "brewery_type": "brewpub", + "address_1": "255 S Main St", + "address_2": null, + "address_3": null, + "city": "West Bend", + "state_province": "Wisconsin", + "postal_code": "53095-3323", + "country": "United States", + "longitude": -88.18128088, + "latitude": 43.42164792, + "phone": "2623342739", + "website_url": null, + "state": "Wisconsin", + "street": "255 S Main St" + }, + { + "id": "d3c7a0a8-b5a1-4bdd-b682-87e513f65b2a", + "name": "Riverside Brewing Co", + "brewery_type": "micro", + "address_1": "2 North Rocks Road", + "address_2": "3", + "address_3": null, + "city": "North Parramatta", + "state_province": "NSW", + "postal_code": "2151", + "country": "Australia", + "longitude": 151.000823, + "latitude": -33.792947, + "phone": "+61 2 9890 7007", + "website_url": "http://www.riversidebrewing.com.au/", + "state": "NSW", + "street": "2 North Rocks Road" + }, + { + "id": "4413789e-c56c-4c2b-935e-de2e5e334cb2", + "name": "Riverside Brewing Ltd", + "brewery_type": "micro", + "address_1": "Shoreham Road", + "address_2": null, + "address_3": null, + "city": "Steyning", + "state_province": "West Sussex", + "postal_code": "BN44 3TN", + "country": "England", + "longitude": -0.300906, + "latitude": 50.877797, + "phone": "1903898030", + "website_url": "http://www.riversidebreweryltd.co.uk/", + "state": "West Sussex", + "street": "Shoreham Road" + }, + { + "id": "973a0067-bd17-472b-a30b-a8228921f6e0", + "name": "Rivertown Brewing Co - Monroe Barrel House", + "brewery_type": "micro", + "address_1": "6550 Hamilton Lebanon Rd", + "address_2": null, + "address_3": null, + "city": "Monroe", + "state_province": "Ohio", + "postal_code": "45044-9285", + "country": "United States", + "longitude": -84.41215417, + "latitude": 39.44575612, + "phone": "5133607839", + "website_url": "http://www.rivertownbrewery.com", + "state": "Ohio", + "street": "6550 Hamilton Lebanon Rd" + }, + { + "id": "f9a0e0bf-2306-4319-991c-cb5327807ddb", + "name": "Rivertowne Brewery - Production Facility", + "brewery_type": "micro", + "address_1": "5578 Old William Penn Hwy", + "address_2": null, + "address_3": null, + "city": "Export", + "state_province": "Pennsylvania", + "postal_code": "15632-9303", + "country": "United States", + "longitude": -79.6373888, + "latitude": 40.42147373, + "phone": "7245192145", + "website_url": "http://www.myrivertowne.com", + "state": "Pennsylvania", + "street": "5578 Old William Penn Hwy" + }, + { + "id": "13f854d3-ef7a-4933-b22b-02a13df51bb6", + "name": "Rivertowne Pour House", + "brewery_type": "micro", + "address_1": "312 Center Rd", + "address_2": null, + "address_3": null, + "city": "Monroeville", + "state_province": "Pennsylvania", + "postal_code": "15146-1322", + "country": "United States", + "longitude": -79.76389793, + "latitude": 40.44745731, + "phone": "4123728199", + "website_url": "http://www.myrivertowne.com", + "state": "Pennsylvania", + "street": "312 Center Rd" + }, + { + "id": "b3ff8d79-69ef-41d5-b907-1f154bd5fe7a", + "name": "Riverwalk Brewing Co.", + "brewery_type": "micro", + "address_1": "40 Parker St", + "address_2": null, + "address_3": null, + "city": "Newburyport", + "state_province": "Massachusetts", + "postal_code": "01950-4056", + "country": "United States", + "longitude": -70.86726727, + "latitude": 42.79921535, + "phone": "9784992337", + "website_url": "http://www.riverwalkbrewing.com", + "state": "Massachusetts", + "street": "40 Parker St" + }, + { + "id": "ebc2635f-d48f-4a50-ba77-7e4057453142", + "name": "Riverwatch Brewery", + "brewery_type": "micro", + "address_1": "1150 5th St Bldg 61", + "address_2": null, + "address_3": null, + "city": "Augusta", + "state_province": "Georgia", + "postal_code": "30901-5861", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7064217177", + "website_url": "http://www.riverwatchbrewery.com", + "state": "Georgia", + "street": "1150 5th St Bldg 61" + }, + { + "id": "3464a881-e543-4563-937a-944e6e6c85e6", + "name": "RJ Rockers Brewing Co", + "brewery_type": "micro", + "address_1": "226 W Main St Ste A", + "address_2": null, + "address_3": null, + "city": "Spartanburg", + "state_province": "South Carolina", + "postal_code": "29306-2308", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8645871435", + "website_url": "http://www.rjrockers.com", + "state": "South Carolina", + "street": "226 W Main St Ste A" + }, + { + "id": "cb835f7c-7f61-4e0e-a4ab-913fd06d78ea", + "name": "Roadhouse Brewing Company", + "brewery_type": "micro", + "address_1": "1225 Gregory Ln", + "address_2": null, + "address_3": null, + "city": "Jackson", + "state_province": "Wyoming", + "postal_code": "83001-9433", + "country": "United States", + "longitude": -110.7963199, + "latitude": 43.46346041, + "phone": "3072641900", + "website_url": "http://www.roadhousebrewery.com", + "state": "Wyoming", + "street": "1225 Gregory Ln" + }, + { + "id": "ab5908c7-1c68-40e7-9540-815a79af730b", + "name": "Roadhouse Pub and Eatery", + "brewery_type": "brewpub", + "address_1": "20 E Broadway Ave", + "address_2": null, + "address_3": null, + "city": "Jackson Hole", + "state_province": "Wyoming", + "postal_code": "83001-8630", + "country": "United States", + "longitude": -110.76149959764, + "latitude": 43.480682791836, + "phone": "3077390700", + "website_url": "http://www.roadhousebrewery.com", + "state": "Wyoming", + "street": "20 E Broadway Ave" + }, + { + "id": "579678d2-7826-419b-9fe0-b3d8cfdcf574", + "name": "Roadmap Brewing Co", + "brewery_type": "micro", + "address_1": "723 N Alamo St", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78215-1812", + "country": "United States", + "longitude": -98.4842435, + "latitude": 29.4318109, + "phone": null, + "website_url": "http://www.roadmapbrewing.com", + "state": "Texas", + "street": "723 N Alamo St" + }, + { + "id": "be7ced94-d8cd-47c2-8789-31a4010490bf", + "name": "Roadrunner Abbey Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Chandler", + "state_province": "Arizona", + "postal_code": "85249-4724", + "country": "United States", + "longitude": -111.8408489, + "latitude": 33.3067132, + "phone": "4805708283", + "website_url": null, + "state": "Arizona", + "street": null + }, + { + "id": "5771cc53-3ba2-49c0-9517-b8f7b218eefc", + "name": "Roak Brewing Co.", + "brewery_type": "micro", + "address_1": "330 E Lincoln Ave", + "address_2": null, + "address_3": null, + "city": "Royal Oak", + "state_province": "Michigan", + "postal_code": "48067-2700", + "country": "United States", + "longitude": -83.14209914, + "latitude": 42.48342093, + "phone": "2482688780", + "website_url": "http://www.roakbrewing.com", + "state": "Michigan", + "street": "330 E Lincoln Ave" + }, + { + "id": "5dbdf6bc-f0c5-43b4-8ce6-29a3eddf2142", + "name": "Roaring Fork Beer Company", + "brewery_type": "proprietor", + "address_1": "1941 Dolores Way", + "address_2": null, + "address_3": null, + "city": "Carbondale", + "state_province": "Colorado", + "postal_code": "81623-2235", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9705105934", + "website_url": "http://www.roaringforkbeerco.com", + "state": "Colorado", + "street": "1941 Dolores Way" + }, + { + "id": "9482402b-aafe-409b-a54c-13d101e1ee97", + "name": "Roaring Table Brewing", + "brewery_type": "micro", + "address_1": "739 W IL 22", + "address_2": null, + "address_3": null, + "city": "Lake Zurich", + "state_province": "Illinois", + "postal_code": "60047", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2246624562", + "website_url": "http://www.roaringtable.com", + "state": "Illinois", + "street": "739 W IL 22" + }, + { + "id": "7c7a35d4-dfbb-4802-9756-c3264782e566", + "name": "Robe Town Brewery", + "brewery_type": "micro", + "address_1": "10 White Street", + "address_2": null, + "address_3": null, + "city": "Robe", + "state_province": "SA", + "postal_code": "5276", + "country": "Australia", + "longitude": 139.7595541, + "latitude": -37.1744326, + "phone": "+61 415 993 693", + "website_url": "http://www.robetownbrewery.com/", + "state": "SA", + "street": "10 White Street" + }, + { + "id": "b4ed6ece-d462-46ed-bf31-3c2c9b240230", + "name": "Robertson Brewery", + "brewery_type": "micro", + "address_1": "5 Voortrekker Street", + "address_2": null, + "address_3": null, + "city": "Robertson", + "state_province": "Western Cape", + "postal_code": "6705", + "country": "South Africa", + "longitude": 19.8821, + "latitude": -33.8033, + "phone": "+27 23 626 3288", + "website_url": "https://robertsonbrewery.co.za/", + "state": "Western Cape", + "street": "5 Voortrekker Street" + }, + { + "id": "971a1d10-0d75-4152-8107-ecdb6904534d", + "name": "Robin Hood Brewing Co", + "brewery_type": "brewpub", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Bellefonte", + "state_province": "Pennsylvania", + "postal_code": "16823", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8143578399", + "website_url": "http://www.robinhoodbrewingco.com", + "state": "Pennsylvania", + "street": null + }, + { + "id": "9a0fc9c0-88c8-4f0a-8b1e-a083302c6f91", + "name": "Robson’s Real Beer", + "brewery_type": "micro", + "address_1": "72 Clairwood Road", + "address_2": " Umhlangane", + "address_3": null, + "city": "Durban", + "state_province": "KwaZulu-Natal", + "postal_code": "4051", + "country": "South Africa", + "longitude": 31.0207, + "latitude": -29.7905, + "phone": "+27 31 569 6552", + "website_url": "https://robsonsrealbeer.com/", + "state": "KwaZulu-Natal", + "street": "72 Clairwood Road" + }, + { + "id": "66573e06-6aee-4f97-898b-8e51d75da152", + "name": "Roc Brewing Co", + "brewery_type": "brewpub", + "address_1": "56 S Union St", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "New York", + "postal_code": "14607-1839", + "country": "United States", + "longitude": -77.59793317, + "latitude": 43.15337067, + "phone": "5857949798", + "website_url": "http://www.rocbrewingco.com", + "state": "New York", + "street": "56 S Union St" + }, + { + "id": "7fab3d6d-5621-42d7-ba8c-7bac81bd4df9", + "name": "Rochester Mills Beer Co", + "brewery_type": "brewpub", + "address_1": "400 Water St Ste 101", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "Michigan", + "postal_code": "48307-2089", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2486505080", + "website_url": "http://www.beercos.com", + "state": "Michigan", + "street": "400 Water St Ste 101" + }, + { + "id": "54dbff86-41fe-421c-937e-2903bac3c9f7", + "name": "Rochester Mills Production Brewery", + "brewery_type": "micro", + "address_1": "3275 Lapeer W Rd", + "address_2": null, + "address_3": null, + "city": "Auburn Hills", + "state_province": "Michigan", + "postal_code": "48326-1723", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2483773130", + "website_url": "http://www.beercos.com", + "state": "Michigan", + "street": "3275 Lapeer W Rd" + }, + { + "id": "e0d50b38-4604-42b9-90e1-d5ba4fe83b34", + "name": "Rock & Ranges Brewing Co-Op", + "brewery_type": "micro", + "address_1": "272 Johnston Street", + "address_2": null, + "address_3": null, + "city": "Abbotsford", + "state_province": "VIC", + "postal_code": "3067", + "country": "Australia", + "longitude": 144.994069, + "latitude": -37.799771, + "phone": null, + "website_url": "http://www.rangebrewing.com/", + "state": "VIC", + "street": "272 Johnston Street" + }, + { + "id": "147c0123-232a-448a-b689-3ae78d34d66f", + "name": "Rock & Run Brewery", + "brewery_type": "closed", + "address_1": "110 E Kansas St", + "address_2": null, + "address_3": null, + "city": "Liberty", + "state_province": "Missouri", + "postal_code": "64068-2374", + "country": "United States", + "longitude": -94.4190247, + "latitude": 39.2461993, + "phone": "8164152337", + "website_url": "http://www.rockandrunbrewery.com", + "state": "Missouri", + "street": "110 E Kansas St" + }, + { + "id": "e754c609-31df-4357-9d69-2751c57e4737", + "name": "Rock Art Brewery", + "brewery_type": "micro", + "address_1": "632 Laporte Rd", + "address_2": null, + "address_3": null, + "city": "Morrisville", + "state_province": "Vermont", + "postal_code": "05661-8322", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8028889400", + "website_url": "http://www.rockartbrewery.com", + "state": "Vermont", + "street": "632 Laporte Rd" + }, + { + "id": "b13f6378-84b6-40c6-b2a1-784aba2cfcc3", + "name": "Rock Bottom Brewery", + "brewery_type": "brewpub", + "address_1": "1864 Victory Cir Bldg K", + "address_2": null, + "address_3": null, + "city": "Daytona Beach", + "state_province": "Florida", + "postal_code": "32114", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3865168322", + "website_url": null, + "state": "Florida", + "street": "1864 Victory Cir Bldg K" + }, + { + "id": "3a26e910-305e-445b-8d44-2d2b4993bf01", + "name": "Rock Bottom Brewery - Arrowhead", + "brewery_type": "brewpub", + "address_1": "7640 W Bell Rd", + "address_2": null, + "address_3": null, + "city": "Glendale", + "state_province": "Arizona", + "postal_code": "85308-8619", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6238788822", + "website_url": "http://www.rockbottom.com", + "state": "Arizona", + "street": "7640 W Bell Rd" + }, + { + "id": "871fd4b2-cd72-4883-86d1-d9b99e632b29", + "name": "Rock Bottom Brewery - Bethesda", + "brewery_type": "brewpub", + "address_1": "7900 Norfolk Ave", + "address_2": null, + "address_3": null, + "city": "Bethesda", + "state_province": "Maryland", + "postal_code": "20814-2502", + "country": "United States", + "longitude": -77.0976716, + "latitude": 38.9890033, + "phone": "3016521311", + "website_url": "http://www.rockbottom.com", + "state": "Maryland", + "street": "7900 Norfolk Ave" + }, + { + "id": "edd508e5-ef5e-4a5a-9724-9e41bbaedc23", + "name": "Rock Bottom Brewery - Centerra Promenade", + "brewery_type": "brewpub", + "address_1": "6025 Sky Pond Dr", + "address_2": null, + "address_3": null, + "city": "Loveland", + "state_province": "Colorado", + "postal_code": "80538-9013", + "country": "United States", + "longitude": -104.990385, + "latitude": 40.418114, + "phone": "9706222077", + "website_url": "http://www.rockbottom.com", + "state": "Colorado", + "street": "6025 Sky Pond Dr" + }, + { + "id": "a9e63cc7-cc4e-4993-a3ed-2f5cb791666e", + "name": "Rock Bottom Brewery - Chicago", + "brewery_type": "brewpub", + "address_1": "1 W Grand Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60654-4806", + "country": "United States", + "longitude": -87.62839238, + "latitude": 41.8913983, + "phone": "3127559339", + "website_url": "http://www.rockbottom.com", + "state": "Illinois", + "street": "1 W Grand Ave" + }, + { + "id": "ef644d34-4eef-4ab0-8b2f-92ce400e2eb0", + "name": "Rock Bottom Brewery - Cincinnati", + "brewery_type": "brewpub", + "address_1": "10 Fountain Square Plz", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45202-3102", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5136211588", + "website_url": "http://www.rockbottom.com", + "state": "Ohio", + "street": "10 Fountain Square Plz" + }, + { + "id": "a68d7446-e2e5-4e6c-a4f9-6dc0fd8e3205", + "name": "Rock Bottom Brewery - Colorado Springs", + "brewery_type": "brewpub", + "address_1": "3316 Cinema Point Dr", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80922", + "country": "United States", + "longitude": -104.718194, + "latitude": 38.8811909, + "phone": "7195503586", + "website_url": "http://www.rockbottom.com", + "state": "Colorado", + "street": "3316 Cinema Point Dr" + }, + { + "id": "24e86b2b-be63-4abc-ba2b-f1ec7bcb827a", + "name": "Rock Bottom Brewery - Denver", + "brewery_type": "brewpub", + "address_1": "1001 16th St Ste 100", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80265-0100", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3035347616", + "website_url": "http://www.rockbottom.com", + "state": "Colorado", + "street": "1001 16th St Ste 100" + }, + { + "id": "ce9dbd76-619c-4474-ba27-7ca4e37c2cbe", + "name": "Rock Bottom Brewery - Englewood", + "brewery_type": "brewpub", + "address_1": "9627 E County Line Rd", + "address_2": null, + "address_3": null, + "city": "Englewood", + "state_province": "Colorado", + "postal_code": "80112-3502", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3037929090", + "website_url": "http://www.rockbottom.com", + "state": "Colorado", + "street": "9627 E County Line Rd" + }, + { + "id": "ef8e2e3a-4c8d-40f7-a33d-4659d0fa45d9", + "name": "Rock Bottom Brewery - Highlands Ranch", + "brewery_type": "brewpub", + "address_1": "1505 Park Central Dr", + "address_2": null, + "address_3": null, + "city": "Highlands Ranch", + "state_province": "Colorado", + "postal_code": "80129-6686", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "1505 Park Central Dr" + }, + { + "id": "ac70c288-4edc-400f-8f52-42cc3ba4fff9", + "name": "Rock Bottom Brewery - Indianapolis", + "brewery_type": "brewpub", + "address_1": "10 W Washington St", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46204-3402", + "country": "United States", + "longitude": -86.1584705, + "latitude": 39.76717025, + "phone": "3176818180", + "website_url": "http://www.rockbottom.com", + "state": "Indiana", + "street": "10 W Washington St" + }, + { + "id": "a6426255-23dc-405e-80b4-5e1a9e6dcfba", + "name": "Rock Bottom Brewery - La Jolla", + "brewery_type": "brewpub", + "address_1": "8980 Villa La Jolla Dr", + "address_2": null, + "address_3": null, + "city": "La Jolla", + "state_province": "California", + "postal_code": "92037-1701", + "country": "United States", + "longitude": -117.23519, + "latitude": 32.870929, + "phone": "8584509277", + "website_url": "http://www.rockbottom.com", + "state": "California", + "street": "8980 Villa La Jolla Dr" + }, + { + "id": "1ec80be3-149d-4e9f-b1c1-d419463f745e", + "name": "Rock Bottom Brewery - Long Beach", + "brewery_type": "brewpub", + "address_1": "1 Pine Ave", + "address_2": null, + "address_3": null, + "city": "Long Beach", + "state_province": "California", + "postal_code": "90802-4759", + "country": "United States", + "longitude": -118.192482, + "latitude": 33.767797, + "phone": "5623082255", + "website_url": "http://www.rockbottom.com", + "state": "California", + "street": "1 Pine Ave" + }, + { + "id": "862e1ac8-fd6a-4d8f-9f12-4938206da0cc", + "name": "Rock Bottom Brewery - Milwaukee", + "brewery_type": "brewpub", + "address_1": "740 N Plankinton Ave Fl 1", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53203-2403", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4142763030", + "website_url": "http://www.rockbottom.com", + "state": "Wisconsin", + "street": "740 N Plankinton Ave Fl 1" + }, + { + "id": "db07e9cc-5c84-419e-aa9a-149b068b945f", + "name": "Rock Bottom Brewery - Minneapolis", + "brewery_type": "brewpub", + "address_1": "800 Lasalle Ave", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55402-2006", + "country": "United States", + "longitude": -93.274687, + "latitude": 44.976427, + "phone": "6123322739", + "website_url": "http://www.rockbottom.com", + "state": "Minnesota", + "street": "800 Lasalle Ave" + }, + { + "id": "d80c64ff-d17f-4dc8-9c80-0f1414167132", + "name": "Rock Bottom Brewery - Nashville", + "brewery_type": "brewpub", + "address_1": "111 Broadway", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37201-2117", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6152514677", + "website_url": "http://www.bigrivergrille.com", + "state": "Tennessee", + "street": "111 Broadway" + }, + { + "id": "a4f2d628-e1bf-45d0-b887-c2547fef25ec", + "name": "Rock Bottom Brewery - Orchard Cntr", + "brewery_type": "brewpub", + "address_1": "14694 Orchard Pkwy Unit 400", + "address_2": null, + "address_3": null, + "city": "Westminster", + "state_province": "Colorado", + "postal_code": "80023-9198", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3032551625", + "website_url": "http://www.rockbottom.com", + "state": "Colorado", + "street": "14694 Orchard Pkwy Unit 400" + }, + { + "id": "e5417f6a-b6a4-48ee-9bca-99a58cea0bb7", + "name": "Rock Bottom Brewery - Orland Park", + "brewery_type": "brewpub", + "address_1": "16156 S La Grange Rd", + "address_2": null, + "address_3": null, + "city": "Orland Park", + "state_province": "Illinois", + "postal_code": "60467-5614", + "country": "United States", + "longitude": -87.85275979, + "latitude": 41.59402293, + "phone": "7082260021", + "website_url": "http://www.rockbottom.com", + "state": "Illinois", + "street": "16156 S La Grange Rd" + }, + { + "id": "d87d4744-0108-4647-8c84-b33cabf736d3", + "name": "Rock Bottom Brewery - Pittsburgh", + "brewery_type": "brewpub", + "address_1": "171 E Bridge St", + "address_2": null, + "address_3": null, + "city": "Homestead", + "state_province": "Pennsylvania", + "postal_code": "15120", + "country": "United States", + "longitude": -79.9149542, + "latitude": 40.4093329, + "phone": "4124622739", + "website_url": "http://www.rockbottom.com", + "state": "Pennsylvania", + "street": "171 E Bridge St" + }, + { + "id": "4e405356-a2d1-4bb2-aeb5-6fd64e1a04a5", + "name": "Rock Bottom Brewery - Portland", + "brewery_type": "brewpub", + "address_1": "206 SW Morrison St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97204-3107", + "country": "United States", + "longitude": -122.6749783, + "latitude": 45.5178662, + "phone": "5037962739", + "website_url": "http://www.rockbottom.com", + "state": "Oregon", + "street": "206 SW Morrison St" + }, + { + "id": "d99212a5-95f0-45eb-8e95-ddf1828ac86e", + "name": "Rock Bottom Brewery - San Jose", + "brewery_type": "brewpub", + "address_1": "1875 S Bascom Ave Ste 700", + "address_2": null, + "address_3": null, + "city": "Campbell", + "state_province": "California", + "postal_code": "95008-2310", + "country": "United States", + "longitude": -121.9342507, + "latitude": 37.28907802, + "phone": "4083770707", + "website_url": "http://www.rockbottom.com", + "state": "California", + "street": "1875 S Bascom Ave Ste 700" + }, + { + "id": "c217bb0b-a315-4ac5-a2ed-bba6ca87e5fe", + "name": "Rock Bottom Brewery - Warrenville", + "brewery_type": "brewpub", + "address_1": "28256 Diehl Rd", + "address_2": null, + "address_3": null, + "city": "Warrenville", + "state_province": "Illinois", + "postal_code": "60555-3835", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6308361380", + "website_url": "http://www.rockbottom.com", + "state": "Illinois", + "street": "28256 Diehl Rd" + }, + { + "id": "e98fe064-5731-4f25-a970-b9621e3b5de5", + "name": "Rock Bottom Brewery - Westminster", + "brewery_type": "brewpub", + "address_1": "10633 Westminster Blvd Unit 900", + "address_2": null, + "address_3": null, + "city": "Westminster", + "state_province": "Colorado", + "postal_code": "80020-4176", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7205660198", + "website_url": "http://www.rockbottom.com", + "state": "Colorado", + "street": "10633 Westminster Blvd Unit 900" + }, + { + "id": "4f278d3a-4792-453e-82b8-03304f61d6a4", + "name": "Rock Bottom Brewery - Yorktown", + "brewery_type": "brewpub", + "address_1": "94 Yorktown Ctr", + "address_2": null, + "address_3": null, + "city": "Lombard", + "state_province": "Illinois", + "postal_code": "60148-5529", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6304241550", + "website_url": "http://www.rockbottom.com", + "state": "Illinois", + "street": "94 Yorktown Ctr" + }, + { + "id": "fcff8513-53a1-4550-91a4-cb71fc0a4753", + "name": "Rock Bottom Brewery -Short Pump", + "brewery_type": "brewpub", + "address_1": "11800 W Broad St Ste 2098", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23233-7909", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8042371684", + "website_url": "https://rockbottom.com/locations/richmond/", + "state": "Virginia", + "street": "11800 W Broad St Ste 2098" + }, + { + "id": "4cdbfe24-ad60-4972-b9c0-9808b3dcb2ec", + "name": "Rock Bottom Brewery- Charlotte", + "brewery_type": "brewpub", + "address_1": "401 N Tryon St Ste 100", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28202-2108", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7043342739", + "website_url": null, + "state": "North Carolina", + "street": "401 N Tryon St Ste 100" + }, + { + "id": "44077c53-4222-4274-920b-67acc073a101", + "name": "Rock County Brewing Company", + "brewery_type": "micro", + "address_1": "10 N Parker Dr", + "address_2": null, + "address_3": null, + "city": "Janesville", + "state_province": "Wisconsin", + "postal_code": "53545-", + "country": "United States", + "longitude": -89.02177314, + "latitude": 42.68354565, + "phone": "6085318120", + "website_url": "http://www.rockcounty.beer", + "state": "Wisconsin", + "street": "10 N Parker Dr" + }, + { + "id": "6f35def1-f9b1-4712-9510-1c0b5b172b76", + "name": "Rock Cut Brewing Company", + "brewery_type": "micro", + "address_1": "390 W Riverside Dr", + "address_2": null, + "address_3": null, + "city": "Estes Park", + "state_province": "Colorado", + "postal_code": "80517", + "country": "United States", + "longitude": -105.5232105, + "latitude": 40.37237825, + "phone": "9705867300", + "website_url": "http://www.rockcutbrewing.com", + "state": "Colorado", + "street": "390 W Riverside Dr" + }, + { + "id": "32ea9e78-433e-44ee-9be2-9ce878cb1a23", + "name": "Rock God Brewing Company", + "brewery_type": "micro", + "address_1": "459 Rooney Ave", + "address_2": null, + "address_3": null, + "city": "Danville", + "state_province": "Pennsylvania", + "postal_code": "17821-1897", + "country": "United States", + "longitude": -76.618447, + "latitude": 40.962031, + "phone": "5702844096", + "website_url": "http://rockgodbeer.com", + "state": "Pennsylvania", + "street": "459 Rooney Ave" + }, + { + "id": "213a3276-bfc0-4b98-a47a-c46ce1584545", + "name": "Rock Harbor Brewing Co.", + "brewery_type": "micro", + "address_1": "5 Payne Ave", + "address_2": null, + "address_3": null, + "city": "Rockland", + "state_province": "Maine", + "postal_code": "04841", + "country": "United States", + "longitude": -69.127326, + "latitude": 44.100544, + "phone": "2077017811", + "website_url": "http://www.rockharborbrewing.com", + "state": "Maine", + "street": "5 Payne Ave" + }, + { + "id": "b5dc01f5-90a9-414f-97a0-a6fd189da07b", + "name": "Rock Harbor Pub & Brewery", + "brewery_type": "brewpub", + "address_1": "416 Main St", + "address_2": null, + "address_3": null, + "city": "Rockland", + "state_province": "Maine", + "postal_code": "04841-3345", + "country": "United States", + "longitude": -69.10907557, + "latitude": 44.1049557, + "phone": "2075937488", + "website_url": null, + "state": "Maine", + "street": "416 Main St" + }, + { + "id": "84fb6c47-0080-4500-8b15-a4fa2e33dd31", + "name": "Rock House Brewing", + "brewery_type": "micro", + "address_1": "119 Luigart Ct", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "Kentucky", + "postal_code": "40508-1686", + "country": "United States", + "longitude": -84.48229841, + "latitude": 38.05652337, + "phone": "8593687064", + "website_url": "http://www.rockhousebrewing.com", + "state": "Kentucky", + "street": "119 Luigart Ct" + }, + { + "id": "2e2e99bd-649c-48f9-aacf-5cf98b61c44f", + "name": "Rock Wood Fired Pizza / Keep Rockin' LLC", + "brewery_type": "contract", + "address_1": "14209 29th St E Ste 102", + "address_2": null, + "address_3": null, + "city": "Sumner", + "state_province": "Washington", + "postal_code": "98390-9689", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2539875479", + "website_url": null, + "state": "Washington", + "street": "14209 29th St E Ste 102" + }, + { + "id": "27fb789b-d906-4472-9632-92be3bb4f3ad", + "name": "Rock Wood Fired Pizza & Brewery - Auburn", + "brewery_type": "contract", + "address_1": "1408 Lake Tapps Pkwy SE # E", + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "Washington", + "postal_code": "98092-8158", + "country": "United States", + "longitude": -122.2095415, + "latitude": 47.2448314, + "phone": "2538337887", + "website_url": "http://www.therockwfp.com", + "state": "Washington", + "street": "1408 Lake Tapps Pkwy SE # E" + }, + { + "id": "db570962-38c9-42b5-a055-f1cd30bd1359", + "name": "Rock Wood Fired Pizza and Brewery - Lynnwood", + "brewery_type": "contract", + "address_1": "4010 196th St SW", + "address_2": null, + "address_3": null, + "city": "Lynnwood", + "state_province": "Washington", + "postal_code": "98036-6715", + "country": "United States", + "longitude": -122.2876416, + "latitude": 47.82048455, + "phone": "4256976007", + "website_url": "http://www.therockwfp.com", + "state": "Washington", + "street": "4010 196th St SW" + }, + { + "id": "56ef5319-3298-4ad2-9a3a-fb8b4fe3d0c5", + "name": "Rock Wood Fired Pizza and Brewery - Tacoma", + "brewery_type": "contract", + "address_1": "1920 Jefferson Ave", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98402-1608", + "country": "United States", + "longitude": -122.4392853, + "latitude": 47.24409495, + "phone": "2532721221", + "website_url": "http://www.therockwfp.com", + "state": "Washington", + "street": "1920 Jefferson Ave" + }, + { + "id": "82e2e95c-e46d-4f70-a656-deb90413d906", + "name": "Rockaway Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Arverne", + "state_province": "New York", + "postal_code": "11692-1044", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7184826528", + "website_url": "http://www.rockawaybrewco.com", + "state": "New York", + "street": null + }, + { + "id": "fefaf311-800c-46e3-b48e-d27b73ff4151", + "name": "Rockaway Brewing Company", + "brewery_type": "micro", + "address_1": "4601 5th St", + "address_2": null, + "address_3": null, + "city": "Long Island City", + "state_province": "New York", + "postal_code": "11101-5369", + "country": "United States", + "longitude": -73.9573397, + "latitude": 40.7404088, + "phone": "7184826528", + "website_url": "http://www.rockawaybrewco.com", + "state": "New York", + "street": "4601 5th St" + }, + { + "id": "47780fac-1e74-42f8-ba32-bcba2efe0b48", + "name": "Rocket Frog Brewing Company", + "brewery_type": "micro", + "address_1": "22560 Glenn Dr Ste 103", + "address_2": null, + "address_3": null, + "city": "Sterling", + "state_province": "Virginia", + "postal_code": "20164-7143", + "country": "United States", + "longitude": -77.4292242, + "latitude": 38.9992947, + "phone": "7032445711", + "website_url": "http://www.rocketfrogbeer.com", + "state": "Virginia", + "street": "22560 Glenn Dr Ste 103" + }, + { + "id": "7ea9525f-94f5-4e6e-99f9-70b9a35659e0", + "name": "Rocket Republic Brewing Company", + "brewery_type": "micro", + "address_1": "289 Production Ave", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Alabama", + "postal_code": "35758-8991", + "country": "United States", + "longitude": -86.77401733, + "latitude": 34.6728014, + "phone": "2563254677", + "website_url": "http://www.rocketrepublicbrewing.com", + "state": "Alabama", + "street": "289 Production Ave" + }, + { + "id": "94de03d1-716f-4c18-a2f4-9fff96851648", + "name": "Rockford Brewing Company", + "brewery_type": "brewpub", + "address_1": "12 E Bridge St", + "address_2": null, + "address_3": null, + "city": "Rockford", + "state_province": "Michigan", + "postal_code": "49341-1265", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6169514677", + "website_url": "http://www.RockfordBrewing.com", + "state": "Michigan", + "street": "12 E Bridge St" + }, + { + "id": "978b9a41-bade-4d32-9944-b05894afffde", + "name": "Rockhound Brewing Co", + "brewery_type": "brewpub", + "address_1": "444 S Park St", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Wisconsin", + "postal_code": "53715-1618", + "country": "United States", + "longitude": -89.40064641, + "latitude": 43.06238355, + "phone": "6082859023", + "website_url": "http://www.rockhoundbrewing.com", + "state": "Wisconsin", + "street": "444 S Park St" + }, + { + "id": "61cdc5d9-7649-48e7-b3df-c5a78bd42756", + "name": "Rockingham Brewing Company", + "brewery_type": "brewpub", + "address_1": "1 Corporate Park Dr Unit 1", + "address_2": null, + "address_3": null, + "city": "Derry", + "state_province": "New Hampshire", + "postal_code": "03038-2276", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6032162324", + "website_url": "http://www.rockinghambrewing.com", + "state": "New Hampshire", + "street": "1 Corporate Park Dr Unit 1" + }, + { + "id": "059fb0da-8330-4660-aeba-aa9a1c41288c", + "name": "Rockmill Brewing Co", + "brewery_type": "micro", + "address_1": "5705 Lithopolis Rd NW", + "address_2": null, + "address_3": null, + "city": "Lancaster", + "state_province": "Ohio", + "postal_code": "43130-9515", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7402058076", + "website_url": "http://www.rockmillbrewery.com", + "state": "Ohio", + "street": "5705 Lithopolis Rd NW" + }, + { + "id": "c6b4c5c8-5a02-4a51-84a2-29bb0e70930e", + "name": "RockPit Brewing", + "brewery_type": "micro", + "address_1": "10 West Illiana St", + "address_2": null, + "address_3": null, + "city": "Orlando", + "state_province": "Florida", + "postal_code": "32806", + "country": "United States", + "longitude": -81.37882592, + "latitude": 28.51101657, + "phone": "4076906612", + "website_url": "http://www.rockpitbrewing.com", + "state": "Florida", + "street": "10 West Illiana St" + }, + { + "id": "1dd045db-a58a-4e59-b55b-43dbfa7d3fb9", + "name": "Rocks Brewing Co", + "brewery_type": "micro", + "address_1": "12 Henderson Road", + "address_2": null, + "address_3": null, + "city": "Alexandria", + "state_province": "NSW", + "postal_code": "2015", + "country": "Australia", + "longitude": 151.1985989, + "latitude": -33.896993, + "phone": null, + "website_url": null, + "state": "NSW", + "street": "12 Henderson Road" + }, + { + "id": "9e585fa0-aaba-46cb-b291-a4d4b273f975", + "name": "Rockslide Brewing Co", + "brewery_type": "brewpub", + "address_1": "401 Main St", + "address_2": null, + "address_3": null, + "city": "Grand Junction", + "state_province": "Colorado", + "postal_code": "81501-2511", + "country": "United States", + "longitude": -108.5659153, + "latitude": 39.0670106, + "phone": "9702419311", + "website_url": "http://www.rockslidebrewpub.com", + "state": "Colorado", + "street": "401 Main St" + }, + { + "id": "1d3d77bb-f54c-43cf-81cd-e5a763db1d3b", + "name": "Rocksteady Brewing Co.", + "brewery_type": "brewpub", + "address_1": "611 Escobar St", + "address_2": null, + "address_3": null, + "city": "Martinez", + "state_province": "California", + "postal_code": "94553-1111", + "country": "United States", + "longitude": -122.1378119, + "latitude": 38.0177998, + "phone": "9252288787", + "website_url": "http://www.creekmonkey.com", + "state": "California", + "street": "611 Escobar St" + }, + { + "id": "c4099a64-9be0-4e03-9f24-218c35acd747", + "name": "Rockwell Beer Company", + "brewery_type": "regional", + "address_1": "1320 S Vandeventer Ave", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63110", + "country": "United States", + "longitude": -90.251576, + "latitude": 38.625572, + "phone": "3142561657", + "website_url": "http://www.rockwellbeer.com", + "state": "Missouri", + "street": "1320 S Vandeventer Ave" + }, + { + "id": "a97cece8-723b-47c3-8962-dd9b9cfe57e0", + "name": "Rockwell Brewery", + "brewery_type": "micro", + "address_1": "880 N East St Unit 201", + "address_2": null, + "address_3": null, + "city": "Frederick", + "state_province": "Maryland", + "postal_code": "21701-5045", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3017324880", + "website_url": "http://www.rockwellbrewery.com", + "state": "Maryland", + "street": "880 N East St Unit 201" + }, + { + "id": "42dc47f9-440c-403a-a2e3-f4ec523f72fd", + "name": "Rocky Coulee Brewing", + "brewery_type": "micro", + "address_1": "205 E 1st Ave", + "address_2": null, + "address_3": null, + "city": "Odessa", + "state_province": "Washington", + "postal_code": "99159-9865", + "country": "United States", + "longitude": -118.6867465, + "latitude": 47.33319739, + "phone": "5093452216", + "website_url": "http://www.rockycouleebrewingco.com", + "state": "Washington", + "street": "205 E 1st Ave" + }, + { + "id": "05f75b27-914a-45e3-9e99-883ed97572bd", + "name": "Rocky Hill Brewing", + "brewery_type": "closed", + "address_1": "20147 Avenue 306", + "address_2": null, + "address_3": null, + "city": "Exeter", + "state_province": "California", + "postal_code": "93221-9763", + "country": "United States", + "longitude": -119.1223301, + "latitude": 36.34389838, + "phone": "5595924594", + "website_url": null, + "state": "California", + "street": "20147 Avenue 306" + }, + { + "id": "f8ccbe29-ac88-4570-841f-acf582e394e6", + "name": "Rocky Mountain Brewery", + "brewery_type": "micro", + "address_1": "625 Paonia St", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80915-3727", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7195281651", + "website_url": "http://www.rockymountainbrews.com", + "state": "Colorado", + "street": "625 Paonia St" + }, + { + "id": "92a662f6-a983-4ca3-ac45-f81d33481378", + "name": "Rocky Mountain Taphouse, LLC", + "brewery_type": "micro", + "address_1": "3050 67th Ave Ste 104", + "address_2": null, + "address_3": null, + "city": "Greeley", + "state_province": "Colorado", + "postal_code": "80634-9604", + "country": "United States", + "longitude": -104.7859342, + "latitude": 40.387892, + "phone": "9703026551", + "website_url": "http://www.rockymountaintaphouse.com", + "state": "Colorado", + "street": "3050 67th Ave Ste 104" + }, + { + "id": "ba7654e4-beda-472c-a033-d223edae00bc", + "name": "Rocky Point Artisan Ales", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Rocky Point", + "state_province": "New York", + "postal_code": "11778", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6318482261", + "website_url": "http://www.rockypointartisanbeer.com", + "state": "New York", + "street": null + }, + { + "id": "c79e3446-b800-42b8-bd42-e12eb4dbd285", + "name": "Rocky Reef Brewing Company", + "brewery_type": "micro", + "address_1": "1101 1st Ave", + "address_2": null, + "address_3": null, + "city": "Woodruff", + "state_province": "Wisconsin", + "postal_code": "54568-0615", + "country": "United States", + "longitude": -89.695183, + "latitude": 45.895883, + "phone": "2623391230", + "website_url": "http://www.rockyreefbrewing.com", + "state": "Wisconsin", + "street": "1101 1st Ave" + }, + { + "id": "e930cc25-07a6-49ec-9122-b26820b1af87", + "name": "Rocky Ridge Brewing", + "brewery_type": "micro", + "address_1": "130 Barkly Street", + "address_2": null, + "address_3": null, + "city": "Brunswick", + "state_province": "VIC", + "postal_code": "3057", + "country": "Australia", + "longitude": 144.9702085, + "latitude": -37.7773023, + "phone": "+61 487 687 382", + "website_url": "http://rocky.beer/", + "state": "VIC", + "street": "130 Barkly Street" + }, + { + "id": "b3278c57-cb96-472d-a25e-18afebe917dd", + "name": "Rocky Ridge Brewing Co", + "brewery_type": "micro", + "address_1": "130 Barkly Street", + "address_2": null, + "address_3": null, + "city": "Brunswick", + "state_province": "VIC", + "postal_code": "3057", + "country": "Australia", + "longitude": 144.9702085, + "latitude": -37.7773023, + "phone": "+61 487 687 382", + "website_url": "http://rocky.beer/", + "state": "VIC", + "street": "130 Barkly Street" + }, + { + "id": "e40910db-618b-46fc-9804-6bf8a0164902", + "name": "Rocky River Brewing Co", + "brewery_type": "brewpub", + "address_1": "21290 Center Ridge Rd", + "address_2": null, + "address_3": null, + "city": "Rocky River", + "state_province": "Ohio", + "postal_code": "44116-3204", + "country": "United States", + "longitude": -81.8553198, + "latitude": 41.46100065, + "phone": "4408952739", + "website_url": "http://www.rockyriverbrewco.com", + "state": "Ohio", + "street": "21290 Center Ridge Rd" + }, + { + "id": "32874d30-c936-40df-a94f-ac8ad84aecdc", + "name": "Rockyard Brewing Company", + "brewery_type": "brewpub", + "address_1": "880 Castleton Rd", + "address_2": null, + "address_3": null, + "city": "Castle Rock", + "state_province": "Colorado", + "postal_code": "80109-7512", + "country": "United States", + "longitude": -104.8723394, + "latitude": 39.4096188, + "phone": "3038149273", + "website_url": "http://www.rockyard.com", + "state": "Colorado", + "street": "880 Castleton Rd" + }, + { + "id": "e7cc0814-0f87-494d-9e9f-810f23df05f6", + "name": "Rocland Beverage Co", + "brewery_type": "contract", + "address_1": "1601 Airport Rd", + "address_2": null, + "address_3": null, + "city": "Ukiah", + "state_province": "California", + "postal_code": "95482-6456", + "country": "United States", + "longitude": -123.199573, + "latitude": 39.126287, + "phone": "7076577721", + "website_url": "http://www.asskisserales.com", + "state": "California", + "street": "1601 Airport Rd" + }, + { + "id": "f4f4549f-99e9-4bbe-9966-61ac9ecaf0f4", + "name": "Rod n Reel Hotel & Brewery", + "brewery_type": "micro", + "address_1": "103 River Street", + "address_2": "99", + "address_3": null, + "city": "Woodburn", + "state_province": "NSW", + "postal_code": "2472", + "country": "Australia", + "longitude": 153.3431249, + "latitude": -29.0718559, + "phone": "+61 2 6682 2406", + "website_url": "http://www.rodnreel.com.au/", + "state": "NSW", + "street": "103 River Street" + }, + { + "id": "330e829d-53ca-4d79-b13a-ba4f36356458", + "name": "Roets Jordan Brewery Co.", + "brewery_type": "brewpub", + "address_1": "230 Broadway St S", + "address_2": null, + "address_3": null, + "city": "Jordan", + "state_province": "Minnesota", + "postal_code": "55352-1508", + "country": "United States", + "longitude": -93.62618368, + "latitude": 44.665938, + "phone": "9524068865", + "website_url": "http://www.roetsjordanbrewery.com", + "state": "Minnesota", + "street": "230 Broadway St S" + }, + { + "id": "7e433321-e973-4c14-bd87-62c1c92cca3c", + "name": "Rogan Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Duquesne", + "state_province": "Pennsylvania", + "postal_code": "15110-1525", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4125455400", + "website_url": "http://www.roganbrewing.com", + "state": "Pennsylvania", + "street": null + }, + { + "id": "776ca50f-749a-46e2-b914-59c709aec1a6", + "name": "Rogers Beer", + "brewery_type": "contract", + "address_1": "23 Woodline Dr", + "address_2": null, + "address_3": null, + "city": "Penfield", + "state_province": "New York", + "postal_code": "14526-2413", + "country": "United States", + "longitude": -77.46723818, + "latitude": 43.12868768, + "phone": "5852980483", + "website_url": "http://www.rogersbeer.com", + "state": "New York", + "street": "23 Woodline Dr" + }, + { + "id": "12d83cb7-1e03-493e-805e-dad7ee012c3f", + "name": "Rogue Ales Brewery", + "brewery_type": "regional", + "address_1": "2320 SE Osu Dr", + "address_2": null, + "address_3": null, + "city": "Newport", + "state_province": "Oregon", + "postal_code": "97365-5261", + "country": "United States", + "longitude": -124.0564639, + "latitude": 44.62865838, + "phone": "5032413800", + "website_url": "http://rogue.com", + "state": "Oregon", + "street": "2320 SE Osu Dr" + }, + { + "id": "94a076ed-9499-402b-bc89-14635349322e", + "name": "Rogue Ales Issaquah Brewhouse", + "brewery_type": "closed", + "address_1": "35 W Sunset Way Ste C", + "address_2": null, + "address_3": null, + "city": "Issaquah", + "state_province": "Washington", + "postal_code": "98027-3843", + "country": "United States", + "longitude": -122.03724000194, + "latitude": 47.530207242057, + "phone": "4255571911", + "website_url": "http://www.rogue.com", + "state": "Washington", + "street": "35 W Sunset Way Ste C" + }, + { + "id": "37ae8b8a-e16c-44c0-a558-8178c0b61c26", + "name": "Rogue East Side Pub & Pilot Brewery", + "brewery_type": "micro", + "address_1": "909 SE Yamhill St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97214-2533", + "country": "United States", + "longitude": -122.656467, + "latitude": 45.51586884, + "phone": "5032413800", + "website_url": "http://www.buckmanbrewing.com", + "state": "Oregon", + "street": "909 SE Yamhill St" + }, + { + "id": "3a491d3a-269c-4b39-8bb7-0a75dc8f41b9", + "name": "RoHa Brewing Project", + "brewery_type": "micro", + "address_1": "30 E Kensington Ave Ste 150", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84115-1679", + "country": "United States", + "longitude": -111.890097, + "latitude": 40.736469, + "phone": "3852278982", + "website_url": "http://www.rohabrewing.com", + "state": "Utah", + "street": "30 E Kensington Ave Ste 150" + }, + { + "id": "6b09ca79-b303-440a-a5d6-23e51bd5ebce", + "name": "Rohrbach Brewing Company", + "brewery_type": "brewpub", + "address_1": "97 Railroad St", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "New York", + "postal_code": "14609-6039", + "country": "United States", + "longitude": -77.586694, + "latitude": 43.163275, + "phone": "5855468020", + "website_url": "http://www.rohrbachs.com", + "state": "New York", + "street": "97 Railroad St" + }, + { + "id": "4c259862-b595-4d64-8d95-aa54eb3a7387", + "name": "Rohrbach's Railroad St Brewery", + "brewery_type": "micro", + "address_1": "97 Railroad St", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "New York", + "postal_code": "14609-6039", + "country": "United States", + "longitude": -77.586694, + "latitude": 43.163275, + "phone": "5855468020", + "website_url": "http://www.rohrbachs.com", + "state": "New York", + "street": "97 Railroad St" + }, + { + "id": "8257f37a-f991-4474-b93b-989af92e55d1", + "name": "Rohrer Brewing Company, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Cookeville", + "state_province": "Tennessee", + "postal_code": "38506-5601", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6155859700", + "website_url": "http://rohrerbrewing.com", + "state": "Tennessee", + "street": null + }, + { + "id": "d57d3036-d848-4346-9aad-acad5a5b7a10", + "name": "Rok House Brewing Co., LLC", + "brewery_type": "micro", + "address_1": "1939 W 11th St Ste A", + "address_2": null, + "address_3": null, + "city": "Upland", + "state_province": "California", + "postal_code": "91786-3559", + "country": "United States", + "longitude": -117.6883192, + "latitude": 34.10445102, + "phone": "9099810020", + "website_url": "http://www.rokhousebrewing.com", + "state": "California", + "street": "1939 W 11th St Ste A" + }, + { + "id": "478a266e-5d00-486e-90ca-7ded72d202b6", + "name": "Rolling Meadows Farm Brewery", + "brewery_type": "micro", + "address_1": "3954 Central Point Rd", + "address_2": null, + "address_3": null, + "city": "Cantrall", + "state_province": "Illinois", + "postal_code": "62625-8803", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2177252492", + "website_url": "http://www.rollingmeadowsbrewery.com", + "state": "Illinois", + "street": "3954 Central Point Rd" + }, + { + "id": "d27dd56e-9f41-4789-a2a0-ece0209dcac0", + "name": "Rolling Mill Brewing Company", + "brewery_type": "micro", + "address_1": "916 1st Ave", + "address_2": null, + "address_3": null, + "city": "Middletown", + "state_province": "Ohio", + "postal_code": "45044-8217", + "country": "United States", + "longitude": -84.40683123, + "latitude": 39.51616686, + "phone": "5132174444", + "website_url": "http://www.rollingmillbc.com", + "state": "Ohio", + "street": "916 1st Ave" + }, + { + "id": "bbc83a19-c5a5-44f1-bf6f-969f209cdfc0", + "name": "Rolling Oak Brewing Co", + "brewery_type": "micro", + "address_1": "509 Norway St", + "address_2": null, + "address_3": null, + "city": "Grayling", + "state_province": "Michigan", + "postal_code": "49738-1719", + "country": "United States", + "longitude": -84.716671, + "latitude": 44.661765, + "phone": "9897456280", + "website_url": "http://rollingoakbrewing.com", + "state": "Michigan", + "street": "509 Norway St" + }, + { + "id": "f331a8eb-748a-4a84-ac4e-bc0e0307dfa1", + "name": "Roma Brewery", + "brewery_type": "brewpub", + "address_1": "310 Stillwater Rd", + "address_2": null, + "address_3": null, + "city": "Willernie", + "state_province": "Minnesota", + "postal_code": "55090-4400", + "country": "United States", + "longitude": -92.957644, + "latitude": 45.057136, + "phone": "6516534733", + "website_url": "http://www.roman-market.com", + "state": "Minnesota", + "street": "310 Stillwater Rd" + }, + { + "id": "3ecb3ca8-fa11-484b-8471-8aa857cb9b3d", + "name": "Rome City Brewing Co", + "brewery_type": "brewpub", + "address_1": "325 Broad St", + "address_2": null, + "address_3": null, + "city": "Rome", + "state_province": "Georgia", + "postal_code": "30161-3005", + "country": "United States", + "longitude": -85.17262231, + "latitude": 34.25410398, + "phone": "7062048474", + "website_url": "http://www.romebrewhouse.com", + "state": "Georgia", + "street": "325 Broad St" + }, + { + "id": "cc6614a4-dcc4-4b2d-8d32-b737ba0503a3", + "name": "Roobrew", + "brewery_type": "contract", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Akron", + "state_province": "Ohio", + "postal_code": "44311-1051", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3307033947", + "website_url": "http://www.roobrew.com", + "state": "Ohio", + "street": null + }, + { + "id": "8f43b379-f20d-43f5-bdfa-9db963fb7bb1", + "name": "Rooftop Brewing Co", + "brewery_type": "micro", + "address_1": "1220 W Nickerson St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98119-1325", + "country": "United States", + "longitude": -122.3732188, + "latitude": 47.6557532, + "phone": "2064578598", + "website_url": "http://www.rooftopbrewco.com", + "state": "Washington", + "street": "1220 W Nickerson St" + }, + { + "id": "26fd9259-8023-42d7-88c8-2566791b5ae9", + "name": "Rooney's Beer Company", + "brewery_type": "micro", + "address_1": "800 Vinial St Ste B204", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15212-5151", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4122515995", + "website_url": "http://rooneysbeer.com", + "state": "Pennsylvania", + "street": "800 Vinial St Ste B204" + }, + { + "id": "54204c13-3e22-44fe-8ac0-b0d72022b584", + "name": "Roosevelt Brewing Company", + "brewery_type": "brewpub", + "address_1": "201 S Main Ave", + "address_2": null, + "address_3": null, + "city": "Portales", + "state_province": "New Mexico", + "postal_code": "88130-6216", + "country": "United States", + "longitude": -103.335715, + "latitude": 34.185293, + "phone": "5752262739", + "website_url": "http://www.rooseveltbrewing.com", + "state": "New Mexico", + "street": "201 S Main Ave" + }, + { + "id": "75cf13cc-96d4-4432-b86f-ceb64bd11765", + "name": "Rooster Brewing", + "brewery_type": "micro", + "address_1": "609 Main St", + "address_2": null, + "address_3": null, + "city": "Paris", + "state_province": "Kentucky", + "postal_code": "40361-1816", + "country": "United States", + "longitude": -84.25166366, + "latitude": 38.21039483, + "phone": "8597073436", + "website_url": "http://www.roosterbrew.com", + "state": "Kentucky", + "street": "609 Main St" + }, + { + "id": "6d95be92-78fd-4ea6-9584-5ff77345f84b", + "name": "RoosterBragh Brewing Company, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Tallahassee", + "state_province": "Florida", + "postal_code": "32312-8000", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8507924458", + "website_url": "http://www.roosterbragh.com", + "state": "Florida", + "street": null + }, + { + "id": "c6a1d03d-59bd-4f88-be57-d2704d4de2c7", + "name": "Roosterfish Brewing Co.", + "brewery_type": "brewpub", + "address_1": "301 N Franklin St", + "address_2": null, + "address_3": null, + "city": "Watkins Glen", + "state_province": "New York", + "postal_code": "14891-1202", + "country": "United States", + "longitude": -76.87362, + "latitude": 42.38063, + "phone": "6075359797", + "website_url": "http://www.roosterfishbrewing.com", + "state": "New York", + "street": "301 N Franklin St" + }, + { + "id": "e27d1ab2-65b8-498e-913a-5ab0dcdfaeb8", + "name": "Roosters Brewing Co (#1)", + "brewery_type": "micro", + "address_1": "253 Historic 25th St", + "address_2": null, + "address_3": null, + "city": "Ogden", + "state_province": "Utah", + "postal_code": "84401-2301", + "country": "United States", + "longitude": -111.974503, + "latitude": 41.220497, + "phone": "8016276171", + "website_url": "https://www.roostersbrewingco.com", + "state": "Utah", + "street": "253 Historic 25th St" + }, + { + "id": "2055cc0d-8751-4be1-ac8f-eb5965857a51", + "name": "Roosters Brewing Co (#2)", + "brewery_type": "micro", + "address_1": "748 Heritage Park Blvd Ste 101", + "address_2": null, + "address_3": null, + "city": "Layton", + "state_province": "Utah", + "postal_code": "84041-5724", + "country": "United States", + "longitude": -111.9793389, + "latitude": 41.08320878, + "phone": "8017749330", + "website_url": "http://www.roostersbrewingco.com", + "state": "Utah", + "street": "748 Heritage Park Blvd Ste 101" + }, + { + "id": "d5aae77c-019d-41b0-ac59-5c3ca2b0ff18", + "name": "Root Down Brewing Company", + "brewery_type": "brewpub", + "address_1": "1 N Main St", + "address_2": null, + "address_3": null, + "city": "Phoenixville", + "state_province": "Pennsylvania", + "postal_code": "19460-3419", + "country": "United States", + "longitude": -75.515616, + "latitude": 40.137147, + "phone": "4843932337", + "website_url": "http://www.rootdownbrewing.com", + "state": "Pennsylvania", + "street": "1 N Main St" + }, + { + "id": "b7989d83-fd97-425e-9191-1695321239c8", + "name": "Roots Brewing Company", + "brewery_type": "brewpub", + "address_1": "175 Main St", + "address_2": null, + "address_3": null, + "city": "Oneonta", + "state_province": "New York", + "postal_code": "13820-2501", + "country": "United States", + "longitude": -75.0630461, + "latitude": 42.45318, + "phone": "6074332925", + "website_url": "http://www.rootsbrewingcompany.com", + "state": "New York", + "street": "175 Main St" + }, + { + "id": "1bb69d7e-fb45-44bd-8ac7-709c4117b765", + "name": "Roscoe Brewing Company", + "brewery_type": "micro", + "address_1": "145 Rockland Rd", + "address_2": null, + "address_3": null, + "city": "Roscoe", + "state_province": "New York", + "postal_code": "12776-6418", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6072905002", + "website_url": "http://www.roscoebeercompany.com", + "state": "New York", + "street": "145 Rockland Rd" + }, + { + "id": "8a384697-2d0f-4677-94d5-a2eea2b7a0ca", + "name": "Rosehill Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Tomball", + "state_province": "Texas", + "postal_code": "77377-3534", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "3624a637-94b2-4d6d-95f2-b04c5f7c815a", + "name": "Rosenstadt Brewery LLC", + "brewery_type": "micro", + "address_1": "4110 SE Hawthorne Blvd # 735", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97214-5246", + "country": "United States", + "longitude": -122.6199321, + "latitude": 45.5118679, + "phone": null, + "website_url": "http://www.rosenstadtbrewery.com", + "state": "Oregon", + "street": "4110 SE Hawthorne Blvd # 735" + }, + { + "id": "9b1a8816-da90-40c5-8203-9c23b14945ea", + "name": "Roses' Taproom", + "brewery_type": "micro", + "address_1": "4930 Telegraph Ave", + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94609-2012", + "country": "United States", + "longitude": -122.2683709, + "latitude": 37.8143551, + "phone": "5108583969", + "website_url": "http://www.rosestaproom.com", + "state": "California", + "street": "4930 Telegraph Ave" + }, + { + "id": "a53b6d53-11ba-4af9-bb8a-863548d73b51", + "name": "Roslyn Brewing Co", + "brewery_type": "micro", + "address_1": "208 W Pennsylvania Ave", + "address_2": null, + "address_3": null, + "city": "Roslyn", + "state_province": "Washington", + "postal_code": "98941-0024", + "country": "United States", + "longitude": -120.9947248, + "latitude": 47.2222871, + "phone": "5096492232", + "website_url": "http://www.roslynbrewng.com", + "state": "Washington", + "street": "208 W Pennsylvania Ave" + }, + { + "id": "9050ae3d-ebea-4be6-9e0d-8c1805dff9de", + "name": "Rother Valley Brewing Company", + "brewery_type": "micro", + "address_1": "Station Road", + "address_2": null, + "address_3": null, + "city": "Rye", + "state_province": "East Sussex", + "postal_code": "TN31 6QT", + "country": "England", + "longitude": 0.613983, + "latitude": 51.008565, + "phone": "1797252922", + "website_url": "http://www.rothervalleybrewery.co.uk", + "state": "East Sussex", + "street": "Station Road" + }, + { + "id": "9f5002ff-ed74-4f51-8336-adea12e4ce81", + "name": "Rotunda Brewing", + "brewery_type": "brewpub", + "address_1": "245 W Main St", + "address_2": null, + "address_3": null, + "city": "Annville", + "state_province": "Pennsylvania", + "postal_code": "17003-1326", + "country": "United States", + "longitude": -76.520098, + "latitude": 40.32856075, + "phone": "7178672337", + "website_url": "http://www.batdorfrestaurant.com/rbc", + "state": "Pennsylvania", + "street": "245 W Main St" + }, + { + "id": "9c52348e-1343-4233-843f-fc29ac896ca5", + "name": "Rough Diamond Brewery", + "brewery_type": "micro", + "address_1": "101 Kendalia Cir", + "address_2": null, + "address_3": null, + "city": "Spring Branch", + "state_province": "Texas", + "postal_code": "78070-6621", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8308856616", + "website_url": "http://rdbrewery.com", + "state": "Texas", + "street": "101 Kendalia Cir" + }, + { + "id": "47dc6ef6-fb3a-445a-9051-36aab7679744", + "name": "Rough Draft Brewing", + "brewery_type": "micro", + "address_1": "8830 Rehco Rd Ste D", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92121-3263", + "country": "United States", + "longitude": -117.1716977, + "latitude": 32.88370283, + "phone": "8584537238", + "website_url": "http://www.roughdraftbrew.com", + "state": "California", + "street": "8830 Rehco Rd Ste D" + }, + { + "id": "c2c034ea-4967-4b4c-bf1c-e3bd75cd16f0", + "name": "Roughtail Brewing", + "brewery_type": "micro", + "address_1": "320 W Memorial Rd", + "address_2": null, + "address_3": null, + "city": "Oklahoma City", + "state_province": "Oklahoma", + "postal_code": "73114", + "country": "United States", + "longitude": -97.5192442, + "latitude": 35.6087575, + "phone": "4057716517", + "website_url": "http://www.roughtailbeer.com", + "state": "Oklahoma", + "street": "320 W Memorial Rd" + }, + { + "id": "7500e370-f58a-40a6-87b6-005b0f1469e3", + "name": "RoughWoods Inn", + "brewery_type": "brewpub", + "address_1": "623 North A St", + "address_2": null, + "address_3": null, + "city": "Nenana", + "state_province": "Alaska", + "postal_code": "99760-9999", + "country": "United States", + "longitude": -149.096237, + "latitude": 64.56274, + "phone": "9078325299", + "website_url": "http://www.roughwoodsinn.biz", + "state": "Alaska", + "street": "623 North A St" + }, + { + "id": "d44fbd3a-f3e0-4d93-a8b6-a274d208811d", + "name": "Rouleur Brewing Company", + "brewery_type": "micro", + "address_1": "5840 El Camino Real Ste 101", + "address_2": null, + "address_3": null, + "city": "Carlsbad", + "state_province": "California", + "postal_code": "92008-8804", + "country": "United States", + "longitude": -117.269558, + "latitude": 33.133904, + "phone": "4422445111", + "website_url": "http://www.rouleurbrewing.com", + "state": "California", + "street": "5840 El Camino Real Ste 101" + }, + { + "id": "eb65fa0c-3e45-41cb-bcc3-de1a1060b67e", + "name": "Round Barn Brewery / Round Barn Winery", + "brewery_type": "micro", + "address_1": "10983 Hills Rd", + "address_2": null, + "address_3": null, + "city": "Baroda", + "state_province": "Michigan", + "postal_code": "49101-8742", + "country": "United States", + "longitude": -86.479395, + "latitude": 41.950161, + "phone": "8007169463", + "website_url": "http://www.roundbarnwinery.com", + "state": "Michigan", + "street": "10983 Hills Rd" + }, + { + "id": "0654ac67-ff7f-4b63-a876-bbd24a31fb57", + "name": "Round Barn Brewery & Public House", + "brewery_type": "micro", + "address_1": "9151 First St", + "address_2": null, + "address_3": null, + "city": "Baroda", + "state_province": "Michigan", + "postal_code": "49101-8927", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2693267059", + "website_url": "http://www.roundbarnbrewery.com", + "state": "Michigan", + "street": "9151 First St" + }, + { + "id": "134c9a7a-fee3-4a1c-8914-785a9d7c04ea", + "name": "Round Guys Brewing Co", + "brewery_type": "brewpub", + "address_1": "324 W Main St", + "address_2": null, + "address_3": null, + "city": "Lansdale", + "state_province": "Pennsylvania", + "postal_code": "19446-2006", + "country": "United States", + "longitude": -75.28630882, + "latitude": 40.24337843, + "phone": "6107151512", + "website_url": "http://www.roundguysbrewery.com", + "state": "Pennsylvania", + "street": "324 W Main St" + }, + { + "id": "24fa73f1-2413-485e-8230-e8572837784a", + "name": "Round Town Brewery", + "brewery_type": "micro", + "address_1": "950 S White River Pky West Dr Ste 100", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46221-1373", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3174931375", + "website_url": "http://www.roundtownbrewery.com", + "state": "Indiana", + "street": "950 S White River Pky West Dr Ste 100" + }, + { + "id": "24c0c343-7f4d-43d4-8a2c-e554e5c0d6fc", + "name": "Roundabout Brewery", + "brewery_type": "micro", + "address_1": "4901 Butler St", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15201-2718", + "country": "United States", + "longitude": -79.956943, + "latitude": 40.477161, + "phone": "4126210540", + "website_url": "http://roundaboutbeer.com", + "state": "Pennsylvania", + "street": "4901 Butler St" + }, + { + "id": "c0217206-0b34-4205-8164-a587a1c6653a", + "name": "Roundback Brewery LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Danville", + "state_province": "Pennsylvania", + "postal_code": "17821-7746", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5708548067", + "website_url": "http://roundbackbrewery.com", + "state": "Pennsylvania", + "street": null + }, + { + "id": "43731cc4-87d3-47e7-9ca1-ff0be7b481f2", + "name": "Roundhouse Brewery", + "brewery_type": "micro", + "address_1": "1551 Northern Pacific Rd", + "address_2": null, + "address_3": null, + "city": "Brainerd", + "state_province": "Minnesota", + "postal_code": "56401-2687", + "country": "United States", + "longitude": -94.1870055, + "latitude": 46.3572831, + "phone": "2184542739", + "website_url": "http://roundhousebrew.com", + "state": "Minnesota", + "street": "1551 Northern Pacific Rd" + }, + { + "id": "f765f05b-b755-45a8-844d-bc48962c6a52", + "name": "Roundhouse Depot Brewing", + "brewery_type": "micro", + "address_1": "217 W Chillicothe Ave", + "address_2": null, + "address_3": null, + "city": "Bellefontaine", + "state_province": "Ohio", + "postal_code": "43311", + "country": "United States", + "longitude": -83.76289625, + "latitude": 40.35981532, + "phone": "5403231295", + "website_url": null, + "state": "Ohio", + "street": "217 W Chillicothe Ave" + }, + { + "id": "1857e7ae-9362-4b5a-96a8-385641bae67d", + "name": "Route 30 Brewing Company", + "brewery_type": "micro", + "address_1": "9860 Indiana Ave Ste 19", + "address_2": null, + "address_3": null, + "city": "Riverside", + "state_province": "California", + "postal_code": "92503-5515", + "country": "United States", + "longitude": -117.4472297, + "latitude": 33.90998597, + "phone": "9517767083", + "website_url": null, + "state": "California", + "street": "9860 Indiana Ave Ste 19" + }, + { + "id": "689f6739-8faa-4c9f-977e-52220e4404db", + "name": "Route 6 Tap House/ Putnam Brewery", + "brewery_type": "brewpub", + "address_1": "728 US-6", + "address_2": null, + "address_3": null, + "city": "Mahopac", + "state_province": "New York", + "postal_code": "10541", + "country": "United States", + "longitude": -73.72642406, + "latitude": 41.37750571, + "phone": "8456287302", + "website_url": "http://www.facebook.com/Putnam-Brewery-165364887155377/", + "state": "New York", + "street": "728 US-6" + }, + { + "id": "87740a12-4392-41e7-b244-8f013503d567", + "name": "Route 66 Junkyard Brewery", + "brewery_type": "brewpub", + "address_1": "1634 E Hwy 66", + "address_2": null, + "address_3": null, + "city": "Grants", + "state_province": "New Mexico", + "postal_code": "87020", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5052855000", + "website_url": "http://www.facebook.com/Route66JunkyardBrewery/", + "state": "New Mexico", + "street": "1634 E Hwy 66" + }, + { + "id": "4190d57d-5198-4093-b718-db4d4552efe1", + "name": "Route 96 Brewery", + "brewery_type": "brewpub", + "address_1": "Plot 299 Donkerhoek", + "address_2": null, + "address_3": null, + "city": "Hartbeespoort", + "state_province": "North West", + "postal_code": "0250", + "country": "South Africa", + "longitude": 27.7656, + "latitude": -25.8089, + "phone": "+27 82 851 5175", + "website_url": "https://www.route96brewery.co.za/", + "state": "North West", + "street": "Plot 299 Donkerhoek" + }, + { + "id": "375c3fae-a1f7-4121-906a-ba1ea56b51f3", + "name": "Rowdy's Brewing Company", + "brewery_type": "micro", + "address_1": "10002 6th St Ste A", + "address_2": null, + "address_3": null, + "city": "Rancho Cucamonga", + "state_province": "California", + "postal_code": "91730-5784", + "country": "United States", + "longitude": -117.5879009, + "latitude": 34.08513212, + "phone": "9099292722", + "website_url": "http://rowdysbrewco.com", + "state": "California", + "street": "10002 6th St Ste A" + }, + { + "id": "555fcbb9-7fc4-4a03-b04f-5ac0ada488c9", + "name": "Rowlands Calumet Brewery Co", + "brewery_type": "micro", + "address_1": "25 N Madison St", + "address_2": null, + "address_3": null, + "city": "Chilton", + "state_province": "Wisconsin", + "postal_code": "53014-1451", + "country": "United States", + "longitude": -88.1632129, + "latitude": 44.0293888, + "phone": "9208492534", + "website_url": null, + "state": "Wisconsin", + "street": "25 N Madison St" + }, + { + "id": "6e59f361-2d17-4beb-ac3b-92d2a4d437d0", + "name": "Rowlands Calumet Brewery Co (#2)", + "brewery_type": "micro", + "address_1": "57 School St", + "address_2": null, + "address_3": null, + "city": "Chilton", + "state_province": "Wisconsin", + "postal_code": "53014-", + "country": "United States", + "longitude": -88.16401327, + "latitude": 44.0291831, + "phone": "9208492534", + "website_url": null, + "state": "Wisconsin", + "street": "57 School St" + }, + { + "id": "641c91ad-d21c-44f3-b66b-993457ee9fae", + "name": "Rowley Farmhouse Ales", + "brewery_type": "brewpub", + "address_1": "1405 MacLovia St", + "address_2": null, + "address_3": null, + "city": "Santa Fe", + "state_province": "New Mexico", + "postal_code": "87505-3244", + "country": "United States", + "longitude": -105.9836551, + "latitude": 35.66076999, + "phone": "5054280719", + "website_url": "http://rowleyfarmhouse.com", + "state": "New Mexico", + "street": "1405 MacLovia St" + }, + { + "id": "a35206a2-4fc6-471c-8b39-a31b0bbb6c23", + "name": "Roy Pitz Brewing Co", + "brewery_type": "brewpub", + "address_1": "301 Roy Pitz Ave Ste 3", + "address_2": null, + "address_3": null, + "city": "Chambersburg", + "state_province": "Pennsylvania", + "postal_code": "17201-1668", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7174968753", + "website_url": "http://www.roypitz.com", + "state": "Pennsylvania", + "street": "301 Roy Pitz Ave Ste 3" + }, + { + "id": "d1bf7018-393e-4cd5-856e-8ee560e3585a", + "name": "Royal Bavaria Brewhouse, Restaurant and Biergarten", + "brewery_type": "brewpub", + "address_1": "3401 S Sooner Rd", + "address_2": null, + "address_3": null, + "city": "Moore", + "state_province": "Oklahoma", + "postal_code": "73165-7218", + "country": "United States", + "longitude": -97.4235998, + "latitude": 35.3148295, + "phone": "4057997666", + "website_url": "http://royal-bavaria.com", + "state": "Oklahoma", + "street": "3401 S Sooner Rd" + }, + { + "id": "5d6cbdd3-2315-469c-a97f-e87ee1cbbd35", + "name": "Royal Brewery", + "brewery_type": "micro", + "address_1": "7366 Townsend Pl Ste B", + "address_2": null, + "address_3": null, + "city": "New Orleans", + "state_province": "Louisiana", + "postal_code": "70126-1138", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5044158444", + "website_url": "http://WWW.royalbrewerynola.com", + "state": "Louisiana", + "street": "7366 Townsend Pl Ste B" + }, + { + "id": "485f4ed6-a9ae-42c7-9d66-c39540651709", + "name": "Royal Docks Brewhouse and Cannery", + "brewery_type": "micro", + "address_1": "5646 Wales Ave NW", + "address_2": null, + "address_3": null, + "city": "Massillon", + "state_province": "Ohio", + "postal_code": "44646", + "country": "United States", + "longitude": -81.498326, + "latitude": 40.844016, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": "5646 Wales Ave NW" + }, + { + "id": "a6f89f70-e00a-43a3-9779-f70e71393ae9", + "name": "Royal Docks Brewing Company", + "brewery_type": "contract", + "address_1": "7162 Fulton Dr NW", + "address_2": null, + "address_3": null, + "city": "Canton", + "state_province": "Ohio", + "postal_code": "44718-1523", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3303539103", + "website_url": "http://www.docks.beer", + "state": "Ohio", + "street": "7162 Fulton Dr NW" + }, + { + "id": "f9e69ba6-fe3b-4cba-bb26-94fea1fe7592", + "name": "Royal Gorge Brew Pub", + "brewery_type": "brewpub", + "address_1": "413 Main St", + "address_2": null, + "address_3": null, + "city": "Canon City", + "state_province": "Colorado", + "postal_code": "81212-3733", + "country": "United States", + "longitude": -105.2418113, + "latitude": 38.44010539, + "phone": "7193454141", + "website_url": "http://www.royalgorgebrewing.com", + "state": "Colorado", + "street": "413 Main St" + }, + { + "id": "6d3ba99f-057a-446b-925a-50ae1c284df5", + "name": "Royal Oak Brewery", + "brewery_type": "brewpub", + "address_1": "215 E 4th St", + "address_2": null, + "address_3": null, + "city": "Royal Oak", + "state_province": "Michigan", + "postal_code": "48067-2606", + "country": "United States", + "longitude": -83.14271229, + "latitude": 42.48739557, + "phone": "2485441141", + "website_url": "http://www.royaloakbrewery.com", + "state": "Michigan", + "street": "215 E 4th St" + }, + { + "id": "5c9afad5-0cf3-4f3d-9918-0c4e9a002968", + "name": "Royal Palm Brewing Company", + "brewery_type": "brewpub", + "address_1": "543 N State Road 7 Ste 103", + "address_2": null, + "address_3": null, + "city": "Royal Palm Beach", + "state_province": "Florida", + "postal_code": "33411-3516", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4079600128", + "website_url": "http://www.facebook.com/royalpalmbrewingcompany/", + "state": "Florida", + "street": "543 N State Road 7 Ste 103" + }, + { + "id": "72e76612-589c-4844-a3c6-7189bcdad638", + "name": "Royale Brewing Company", + "brewery_type": "closed", + "address_1": "55 NE Farragut St Ste 6", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97211-2245", + "country": "United States", + "longitude": -122.6656145, + "latitude": 45.57960681, + "phone": "9712795587", + "website_url": "http://www.royalebeer.com", + "state": "Oregon", + "street": "55 NE Farragut St Ste 6" + }, + { + "id": "a19a3824-1bde-4652-a6ed-49e584d0d7d0", + "name": "Ruba Brewing", + "brewery_type": "micro", + "address_1": "3310 Buttercup St", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77063", + "country": "United States", + "longitude": -95.51694859, + "latitude": 29.72879669, + "phone": null, + "website_url": "https://untappd.com/Ruba_Brewing", + "state": "Texas", + "street": "3310 Buttercup St" + }, + { + "id": "e58f1b87-85b0-4adb-8fb1-d6e1eaa833a6", + "name": "Rubber Soul Brewing", + "brewery_type": "micro", + "address_1": "1930 Northwood Dr", + "address_2": null, + "address_3": null, + "city": "Salisbury", + "state_province": "Maryland", + "postal_code": "21801-7824", + "country": "United States", + "longitude": -75.58418801, + "latitude": 38.39109674, + "phone": "4433047685", + "website_url": "http://www.rubbersoulbrewing.com", + "state": "Maryland", + "street": "1930 Northwood Dr" + }, + { + "id": "7383363f-2d98-45c7-8719-8236e869aa8d", + "name": "Ruby Mountain Brewing Co", + "brewery_type": "micro", + "address_1": "HC 60 Box 100", + "address_2": null, + "address_3": null, + "city": "Wells", + "state_province": "Nevada", + "postal_code": "89835-9802", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7757522337", + "website_url": "http://www.rubymountainbrewing.com", + "state": "Nevada", + "street": "HC 60 Box 100" + }, + { + "id": "87f8af23-34eb-446a-9f6e-207e0bafc5a8", + "name": "Ruby River Steak House and Brewery", + "brewery_type": "brewpub", + "address_1": "4286 Riverdale Rd", + "address_2": null, + "address_3": null, + "city": "Ogden", + "state_province": "Utah", + "postal_code": "84405-3512", + "country": "United States", + "longitude": -111.9883755, + "latitude": 41.18405234, + "phone": "8016222320", + "website_url": "http://www.sizzlingplatter.com", + "state": "Utah", + "street": "4286 Riverdale Rd" + }, + { + "id": "e5395eb7-b076-4046-ad78-98debacc0550", + "name": "Ruby Valley Brew", + "brewery_type": "micro", + "address_1": "111 S Main St", + "address_2": null, + "address_3": null, + "city": "Sheridan", + "state_province": "Montana", + "postal_code": "59749-7742", + "country": "United States", + "longitude": -104.559298, + "latitude": 48.77363753, + "phone": "4068425977", + "website_url": "http://www.rubyvalleybrew.com", + "state": "Montana", + "street": "111 S Main St" + }, + { + "id": "4cc38bef-f05b-42ce-8323-ca7458415621", + "name": "Ruckus Brewing Co", + "brewery_type": "contract", + "address_1": "261 W 35th St Ste 1002", + "address_2": null, + "address_3": null, + "city": "New York", + "state_province": "New York", + "postal_code": "10001-1902", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6467105098", + "website_url": "http://www.ruckusbrewing.com", + "state": "New York", + "street": "261 W 35th St Ste 1002" + }, + { + "id": "a2479c24-2ed6-42b6-9432-2b306558b0ae", + "name": "Rudbeckia Farm", + "brewery_type": "micro", + "address_1": "3379 Lake Grove Rd", + "address_2": null, + "address_3": null, + "city": "Petoskey", + "state_province": "Michigan", + "postal_code": "49770-9751", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2316224173", + "website_url": "http://www.rudbeckiafarm.com", + "state": "Michigan", + "street": "3379 Lake Grove Rd" + }, + { + "id": "3f21deb3-122f-44c3-87c2-9e729a40955b", + "name": "Ruddy Duck Brewery and Grill", + "brewery_type": "brewpub", + "address_1": "13200 Dowell Rd", + "address_2": null, + "address_3": null, + "city": "Dowell", + "state_province": "Maryland", + "postal_code": "20629", + "country": "United States", + "longitude": -76.45795, + "latitude": 38.350501, + "phone": "4103943825", + "website_url": "http://www.ruddyduckbrewery.com", + "state": "Maryland", + "street": "13200 Dowell Rd" + }, + { + "id": "2545723c-f71f-454c-847a-d4c524132e3a", + "name": "Rugged Coast Brewing", + "brewery_type": "closed", + "address_1": "817 Piner Ave", + "address_2": null, + "address_3": null, + "city": "Santa Rosa", + "state_province": "California", + "postal_code": "95403", + "country": "United States", + "longitude": -122.7334692, + "latitude": 38.47262977, + "phone": "4156027272", + "website_url": "http://www.ruggedcoastbrewing.com", + "state": "California", + "street": "817 Piner Ave" + }, + { + "id": "4935e78e-47a1-479c-b613-88c319065314", + "name": "Ruggedman Brewing Company", + "brewery_type": "micro", + "address_1": "7600 Old Bastrop Rd", + "address_2": null, + "address_3": null, + "city": "New Braunfels", + "state_province": "Texas", + "postal_code": "78130", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8306322104", + "website_url": "http://www.drinkthedamnbeer.com", + "state": "Texas", + "street": "7600 Old Bastrop Rd" + }, + { + "id": "646f5ed7-b512-4652-aa67-b981d3cfc266", + "name": "Ruhlman Brewery/Our Ales", + "brewery_type": "micro", + "address_1": "2300 Harvey Gummel Rd", + "address_2": null, + "address_3": null, + "city": "Hampstead", + "state_province": "Maryland", + "postal_code": "21074-1033", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Maryland", + "street": "2300 Harvey Gummel Rd" + }, + { + "id": "4e7fcced-ba7b-4b66-b611-e2d8e10e3010", + "name": "Ruhstaller Beer", + "brewery_type": "micro", + "address_1": "800 Business Park Drive, Suite G", + "address_2": null, + "address_3": null, + "city": "Dixon", + "state_province": "California", + "postal_code": "95620", + "country": "United States", + "longitude": -121.8196403, + "latitude": 38.45364691, + "phone": "5306018240", + "website_url": null, + "state": "California", + "street": "800 Business Park Drive, Suite G" + }, + { + "id": "e8fc3db0-8353-4962-9885-c796966ca78a", + "name": "Ruhstaller Beer", + "brewery_type": "micro", + "address_1": "726 K St", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95814-3403", + "country": "United States", + "longitude": -121.497428, + "latitude": 38.58004528, + "phone": "9169195691", + "website_url": "http://www.ruhstallerbeer.com", + "state": "California", + "street": "726 K St" + }, + { + "id": "2dfdff97-4d69-4638-b297-eb19a8d182f2", + "name": "Rule105 Brewing", + "brewery_type": "micro", + "address_1": "4731 W 10th St", + "address_2": null, + "address_3": null, + "city": "Greeley", + "state_province": "Colorado", + "postal_code": "80634", + "country": "United States", + "longitude": -104.7576182, + "latitude": 40.421957, + "phone": "9703014575", + "website_url": "http://www.rule105brewing.com/", + "state": "Colorado", + "street": "4731 W 10th St" + }, + { + "id": "b70e163a-8e4d-4b02-93fa-8b4f45732cc9", + "name": "Rumspringa Brewing Co", + "brewery_type": "micro", + "address_1": "3174 Old Philadelphia Pike", + "address_2": null, + "address_3": null, + "city": "Bird In Hand", + "state_province": "Pennsylvania", + "postal_code": "17505-9727", + "country": "United States", + "longitude": -76.18731, + "latitude": 40.038905, + "phone": "7177687194", + "website_url": null, + "state": "Pennsylvania", + "street": "3174 Old Philadelphia Pike" + }, + { + "id": "689e4378-f742-4443-bb82-778d19036512", + "name": "Run of the Mill Public House & Brewery", + "brewery_type": "brewpub", + "address_1": "100 Main St", + "address_2": null, + "address_3": null, + "city": "Saco", + "state_province": "Maine", + "postal_code": "04072-3500", + "country": "United States", + "longitude": -70.442601, + "latitude": 43.501374, + "phone": "2075719648", + "website_url": "http://www.therunofthemill.net", + "state": "Maine", + "street": "100 Main St" + }, + { + "id": "0759476d-8fed-46cc-abec-1cb02cbca0d6", + "name": "Running Dogs Brewery", + "brewery_type": "proprietor", + "address_1": "291 S 1st St,St.", + "address_2": null, + "address_3": null, + "city": "Saint Helens", + "state_province": "Oregon", + "postal_code": "97051", + "country": "United States", + "longitude": -122.7980095, + "latitude": 45.86251169, + "phone": "5033971103", + "website_url": "http://www.runningdogsbrewery.com", + "state": "Oregon", + "street": "291 S 1st St,St." + }, + { + "id": "6e516bce-6396-4f42-9dd0-e60a520eb651", + "name": "Running Walker Brewery & Braman Winery", + "brewery_type": "micro", + "address_1": "3421 FM 359 Rd", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Texas", + "postal_code": "77406-7855", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": "3421 FM 359 Rd" + }, + { + "id": "c6ce0996-25fa-4abd-b2f2-ed8c30bc9b5e", + "name": "Running With Thieves", + "brewery_type": "micro", + "address_1": "218 Marine Terrace", + "address_2": null, + "address_3": null, + "city": "South Fremantle", + "state_province": "WA", + "postal_code": "6162", + "country": "Australia", + "longitude": 115.7521218, + "latitude": -32.0722022, + "phone": "+61 8 5122 4390", + "website_url": "https://runningwiththieves.com/", + "state": "WA", + "street": "218 Marine Terrace" + }, + { + "id": "969a6832-1577-487f-a325-fd5350678dbe", + "name": "Rupert's Brew House", + "brewery_type": "micro", + "address_1": "773 W Michigan Ave", + "address_2": null, + "address_3": null, + "city": "Kalamazoo", + "state_province": "Michigan", + "postal_code": "49007-4518", + "country": "United States", + "longitude": -85.5941774, + "latitude": 42.29072325, + "phone": "2693379911", + "website_url": "http://www.rupertsbrewhouse.com", + "state": "Michigan", + "street": "773 W Michigan Ave" + }, + { + "id": "dd223433-1a97-435a-9b7d-995390ffb806", + "name": "Rural Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sturgeon Bay", + "state_province": "Wisconsin", + "postal_code": "53590", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.ruralbrewingcompany.com", + "state": "Wisconsin", + "street": null + }, + { + "id": "f2472289-d2d3-4a02-8b98-10c88b8e9da3", + "name": "Ruse Brewing, LLC.", + "brewery_type": "proprietor", + "address_1": "4784 SE 17th Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97202", + "country": "United States", + "longitude": -122.6470059, + "latitude": 45.4593922, + "phone": "5036628325", + "website_url": "http://www.rusebrewing.com", + "state": "Oregon", + "street": "4784 SE 17th Ave" + }, + { + "id": "73fdad85-48d2-4cc0-92bb-358ada1a5c59", + "name": "Rush River Brewing Co", + "brewery_type": "micro", + "address_1": "990 Antler Ct", + "address_2": null, + "address_3": null, + "city": "River Falls", + "state_province": "Wisconsin", + "postal_code": "54022-4880", + "country": "United States", + "longitude": -92.63861533, + "latitude": 44.8911208, + "phone": "7154262054", + "website_url": "http://www.rushriverbeer.com", + "state": "Wisconsin", + "street": "990 Antler Ct" + }, + { + "id": "1fd1cefa-9157-4071-8345-bad0be6d4a5a", + "name": "Rushing Duck Brewing Co", + "brewery_type": "micro", + "address_1": "1 Battiato Ln", + "address_2": null, + "address_3": null, + "city": "Chester", + "state_province": "New York", + "postal_code": "10918-1283", + "country": "United States", + "longitude": -74.270801, + "latitude": 41.362221, + "phone": "8456105440", + "website_url": "http://www.rushingduck.com", + "state": "New York", + "street": "1 Battiato Ln" + }, + { + "id": "33645666-10c9-4704-956e-ae006c29abb2", + "name": "Russian River Brewing Co", + "brewery_type": "regional", + "address_1": "725 4th St", + "address_2": null, + "address_3": null, + "city": "Santa Rosa", + "state_province": "California", + "postal_code": "95404-4407", + "country": "United States", + "longitude": -122.7116607, + "latitude": 38.4418139, + "phone": "7075452337", + "website_url": "http://www.russianriverbrewing.com", + "state": "California", + "street": "725 4th St" + }, + { + "id": "51d49909-8dc5-48b9-bc92-79bf6f4b5cb3", + "name": "Russian River Brewing Co - Production", + "brewery_type": "micro", + "address_1": "1812 Ferdinand Ct", + "address_2": null, + "address_3": null, + "city": "Santa Rosa", + "state_province": "California", + "postal_code": "95404-5968", + "country": "United States", + "longitude": -122.7094385, + "latitude": 38.4216577, + "phone": null, + "website_url": "http://www.russianriverbrewing.com", + "state": "California", + "street": "1812 Ferdinand Ct" + }, + { + "id": "cea10be6-618c-4188-9f35-3fde4a5b1080", + "name": "Rustic Brew", + "brewery_type": "brewpub", + "address_1": "117 1st St NW", + "address_2": null, + "address_3": null, + "city": "Hampton", + "state_province": "Iowa", + "postal_code": "50441-1701", + "country": "United States", + "longitude": -93.20855984, + "latitude": 42.74298149, + "phone": "6414562141", + "website_url": "http://www.rusticbrew.com", + "state": "Iowa", + "street": "117 1st St NW" + }, + { + "id": "5bc03c91-fce7-4e14-9aeb-05303d7e6bbb", + "name": "Rustic Leaf Brewing Company", + "brewery_type": "micro", + "address_1": "7200 Highland Rd", + "address_2": null, + "address_3": null, + "city": "Waterford", + "state_province": "Michigan", + "postal_code": "48327-1506", + "country": "United States", + "longitude": -83.4048664, + "latitude": 42.659901, + "phone": "2485999933", + "website_url": "http://www.rusticleafbrewingcompany.com", + "state": "Michigan", + "street": "7200 Highland Rd" + }, + { + "id": "c33a13bf-bb83-4374-b4cc-1a4b43623ae5", + "name": "Rustic Road Brewing Co", + "brewery_type": "micro", + "address_1": "5706 6th Ave", + "address_2": null, + "address_3": null, + "city": "Kenosha", + "state_province": "Wisconsin", + "postal_code": "53140-4104", + "country": "United States", + "longitude": -87.81848261, + "latitude": 42.58399215, + "phone": "2623207623", + "website_url": "http://www.rusticbrewing.com", + "state": "Wisconsin", + "street": "5706 6th Ave" + }, + { + "id": "2e475c21-a1f0-4ff8-8ba2-8c01cb7751ef", + "name": "Rustica Brewing Company", + "brewery_type": "micro", + "address_1": "2370 S Kalamath St Unit A", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80223-4248", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7203979682", + "website_url": "http://www.rusticabrewery.com", + "state": "Colorado", + "street": "2370 S Kalamath St Unit A" + }, + { + "id": "c226d829-6805-4dbc-9a59-d0c274c2544a", + "name": "Rusty Bull Brewing Company", + "brewery_type": "brewpub", + "address_1": "3005 W Montague Ave Ste 110", + "address_2": null, + "address_3": null, + "city": "North Charleston", + "state_province": "South Carolina", + "postal_code": "29418-7908", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8432258600", + "website_url": "http://Www.rustybullbrewing.com", + "state": "South Carolina", + "street": "3005 W Montague Ave Ste 110" + }, + { + "id": "2d5e000a-9439-4789-9263-b11a9c7b29ae", + "name": "Rusty Gold Brewing", + "brewery_type": "micro", + "address_1": "43 W Pike St", + "address_2": null, + "address_3": null, + "city": "Canonsburg", + "state_province": "Pennsylvania", + "postal_code": "15317", + "country": "United States", + "longitude": -80.18750486, + "latitude": 40.25856457, + "phone": "7244852332", + "website_url": null, + "state": "Pennsylvania", + "street": "43 W Pike St" + }, + { + "id": "5b104c23-134e-46d5-9777-e59c98ab83d3", + "name": "Rusty Nickel Brewing Co.", + "brewery_type": "brewpub", + "address_1": "4350 Seneca St", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14224-3169", + "country": "United States", + "longitude": -78.851031, + "latitude": 42.876243, + "phone": "7166086155", + "website_url": "http://www.rustynickelbrewing.com", + "state": "New York", + "street": "4350 Seneca St" + }, + { + "id": "beb4c41b-2dc0-4402-99c5-bcf350ea1895", + "name": "Rusty Penny Brewing", + "brewery_type": "micro", + "address_1": "137 Coreen Avenue", + "address_2": "4", + "address_3": null, + "city": "Penrith", + "state_province": "NSW", + "postal_code": "2750", + "country": "Australia", + "longitude": 150.6956875, + "latitude": -33.7432903, + "phone": "+61 2 4703 9990", + "website_url": "http://rustypennybrewing.com.au/", + "state": "NSW", + "street": "137 Coreen Avenue" + }, + { + "id": "b6ae47ee-790a-4490-b8be-574d08ee76be", + "name": "Rusty Rail Brewing", + "brewery_type": "brewpub", + "address_1": "5 N 8th St Ste 1", + "address_2": null, + "address_3": null, + "city": "Mifflinburg", + "state_province": "Pennsylvania", + "postal_code": "17844-1003", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5709667878", + "website_url": "http://www.rustyrailbrewing.com", + "state": "Pennsylvania", + "street": "5 N 8th St Ste 1" + }, + { + "id": "3d0e7cf3-6778-46dd-9907-1bd3370bb52b", + "name": "Rusty Truck Brewing Company", + "brewery_type": "brewpub", + "address_1": "4649 SW Highway 101", + "address_2": null, + "address_3": null, + "city": "Lincoln City", + "state_province": "Oregon", + "postal_code": "97367-1557", + "country": "United States", + "longitude": -124.0209913, + "latitude": 44.93273319, + "phone": "5419947729", + "website_url": "http://www.rustytruckbrewing.com", + "state": "Oregon", + "street": "4649 SW Highway 101" + }, + { + "id": "b0ffaff1-21a3-47a5-bbd3-073cd3ec1678", + "name": "Ryan Brewing Company", + "brewery_type": "micro", + "address_1": "5312 Williams Dr", + "address_2": null, + "address_3": null, + "city": "Roscoe", + "state_province": "Illinois", + "postal_code": "61073", + "country": "United States", + "longitude": -89.01015782, + "latitude": 42.4211214, + "phone": "8152701223", + "website_url": "http://www.ryanbrewingcompany.com", + "state": "Illinois", + "street": "5312 Williams Dr" + }, + { + "id": "9e0bf529-9a78-4899-8404-61b00d8c13ec", + "name": "Rye River Brewing Company", + "brewery_type": "micro", + "address_1": "Donaghcumper", + "address_2": "Dublin Rd", + "address_3": null, + "city": "Celbridge", + "state_province": "Kildare", + "postal_code": "W23 AX07", + "country": "Ireland", + "longitude": -6.5246196, + "latitude": 53.3409641, + "phone": "35316287255", + "website_url": "https://www.ryeriverbrewingco.com/", + "state": "Kildare", + "street": "Donaghcumper" + }, + { + "id": "c63a3d08-74de-48c4-a413-4105bec41837", + "name": "S & S Farm Brewery", + "brewery_type": "micro", + "address_1": "174 Middle Rd", + "address_2": null, + "address_3": null, + "city": "Nassau", + "state_province": "New York", + "postal_code": "12123", + "country": "United States", + "longitude": -73.57263982, + "latitude": 42.49050535, + "phone": "5183360766", + "website_url": "http://www.sandsbrewery.com", + "state": "New York", + "street": "174 Middle Rd" + }, + { + "id": "bf893977-4cd2-4fb2-bf23-087cf9da7d60", + "name": "Sabbath Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30316", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Georgia", + "street": null + }, + { + "id": "6e49945b-64fc-4925-90ca-decb714d99e0", + "name": "Sabbatical Brewing Co", + "brewery_type": "brewpub", + "address_1": "835 S 29th St", + "address_2": null, + "address_3": null, + "city": "Manitowoc", + "state_province": "Wisconsin", + "postal_code": "54220", + "country": "United States", + "longitude": -87.6838074, + "latitude": 44.0912299, + "phone": "9209013282", + "website_url": "https://www.sabbaticalbrewingco.com", + "state": "Wisconsin", + "street": "835 S 29th St" + }, + { + "id": "7fc86759-8361-4426-a1fe-36bfa708c498", + "name": "Sabie Brewing Company", + "brewery_type": "brewpub", + "address_1": "17 Main Road", + "address_2": null, + "address_3": null, + "city": "Sabie", + "state_province": "Mpumalanga", + "postal_code": "1260", + "country": "South Africa", + "longitude": 30.7928, + "latitude": -25.0976, + "phone": "+27 13 764 1005", + "website_url": "https://www.sabiebrewery.com/", + "state": "Mpumalanga", + "street": "17 Main Road" + }, + { + "id": "f83e7244-ddf1-4e86-b6a7-ac288b38c71e", + "name": "Sackbut Brewing and Barrelwerks", + "brewery_type": "micro", + "address_1": "3153 E Huntington Blvd", + "address_2": null, + "address_3": null, + "city": "Fresno", + "state_province": "California", + "postal_code": "93702-3215", + "country": "United States", + "longitude": -119.7715206, + "latitude": 36.73946658, + "phone": null, + "website_url": "http://www.sackbutbrewing.com", + "state": "California", + "street": "3153 E Huntington Blvd" + }, + { + "id": "c209ebea-b190-4b09-8ea5-ebc422eb1e10", + "name": "Sackets Harbor Brewing Co", + "brewery_type": "brewpub", + "address_1": "212 W Main St", + "address_2": null, + "address_3": null, + "city": "Sackets Harbor", + "state_province": "New York", + "postal_code": "13685-3183", + "country": "United States", + "longitude": -76.12164821, + "latitude": 43.94796085, + "phone": "3156462739", + "website_url": "http://www.sacketsharborbrewpub.com", + "state": "New York", + "street": "212 W Main St" + }, + { + "id": "b80b3ac2-b5a3-45e9-b38d-b6492f928767", + "name": "Saco River Brewing", + "brewery_type": "brewpub", + "address_1": "2686 S Main St Suite 3", + "address_2": null, + "address_3": null, + "city": "North Conway", + "state_province": "New Hampshire", + "postal_code": "03860", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6033560457", + "website_url": null, + "state": "New Hampshire", + "street": "2686 S Main St Suite 3" + }, + { + "id": "403dbaa0-4494-48ac-896d-29752895b876", + "name": "Saco River Brewing", + "brewery_type": "micro", + "address_1": "10 Jockey Cap Ln", + "address_2": null, + "address_3": null, + "city": "Fryeburg", + "state_province": "Maine", + "postal_code": "04037-1428", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2072563028", + "website_url": "http://www.facebook.com/sacoriverbrewing", + "state": "Maine", + "street": "10 Jockey Cap Ln" + }, + { + "id": "4cae6ee1-6a28-4961-a3fc-169b5c2d5d2d", + "name": "Sacrament Brewing", + "brewery_type": "micro", + "address_1": "1616 J st.", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95814", + "country": "United States", + "longitude": -121.4849275, + "latitude": 38.57794927, + "phone": "3102592158", + "website_url": "http://www.sacramentbrewing.com", + "state": "California", + "street": "1616 J st." + }, + { + "id": "cc9bb9b0-bdea-4c49-b437-711d7f3a4612", + "name": "Sacred Lake Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Herrin", + "state_province": "Illinois", + "postal_code": "62948-6349", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Illinois", + "street": null + }, + { + "id": "f8ca57ef-0c93-41f3-a2dd-a309b7e046cc", + "name": "Sacred Waters Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Kalispell", + "state_province": "Montana", + "postal_code": "59901-6641", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4062530746", + "website_url": "http://www.sacredwatersbrewing.com", + "state": "Montana", + "street": null + }, + { + "id": "698cefc8-464f-4d3e-9953-63b7fcfebb7d", + "name": "Sacrilege Brewing Project", + "brewery_type": "brewpub", + "address_1": "730 Main St", + "address_2": null, + "address_3": null, + "city": "Half Moon Bay", + "state_province": "California", + "postal_code": "94019-1925", + "country": "United States", + "longitude": -122.4299132, + "latitude": 37.460938, + "phone": "6502767029", + "website_url": null, + "state": "California", + "street": "730 Main St" + }, + { + "id": "2a94fbb0-2e87-4063-b496-09a4be6c6126", + "name": "Saddle Mountain Brewing Company", + "brewery_type": "brewpub", + "address_1": "15651 W Roosevelt St", + "address_2": null, + "address_3": null, + "city": "Goodyear", + "state_province": "Arizona", + "postal_code": "85338-9309", + "country": "United States", + "longitude": -112.3970112, + "latitude": 33.4572737, + "phone": "6239809524", + "website_url": null, + "state": "Arizona", + "street": "15651 W Roosevelt St" + }, + { + "id": "31eef285-74df-4f42-8ac1-b50212996148", + "name": "Saddle Rock Pub & Brewery", + "brewery_type": "brewpub", + "address_1": "25 N Wenatchee Ave Ste 107", + "address_2": null, + "address_3": null, + "city": "Wenatchee", + "state_province": "Washington", + "postal_code": "98801-2201", + "country": "United States", + "longitude": -120.31186858845, + "latitude": 47.426017658389, + "phone": "5098884790", + "website_url": "http://www.saddlerockbrewery.com", + "state": "Washington", + "street": "25 N Wenatchee Ave Ste 107" + }, + { + "id": "21fa52e0-8144-41bf-a181-2509d40d4d7d", + "name": "Saddlebock Brewery", + "brewery_type": "micro", + "address_1": "16600 Saddlebock Lane", + "address_2": null, + "address_3": null, + "city": "Springdale", + "state_province": "Arkansas", + "postal_code": "72764-7582", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4794221797", + "website_url": "http://www.saddlebock.com", + "state": "Arkansas", + "street": "16600 Saddlebock Lane" + }, + { + "id": "2d16cfa0-c07b-4f6b-927f-597833014c26", + "name": "Sager Beer Works", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "New York", + "postal_code": "14607-1669", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5857520613", + "website_url": "http://www.sagerbeerworks.com", + "state": "New York", + "street": null + }, + { + "id": "986a59ff-6361-4e31-b616-5ff65310d47e", + "name": "Saggy Stone Brewing Company", + "brewery_type": "brewpub", + "address_1": "Amandalia Farm", + "address_2": "Agtervinkrivier", + "address_3": null, + "city": "Robertson", + "state_province": "Western Cape", + "postal_code": "6705", + "country": "South Africa", + "longitude": 19.6738, + "latitude": -33.8324, + "phone": "+27 83 453 3526", + "website_url": "https://saggystone.co.za/", + "state": "Western Cape", + "street": "Amandalia Farm" + }, + { + "id": "2cb6340e-0e01-4f87-8456-dbbefdbf158f", + "name": "Sahm Brewing Company", + "brewery_type": "micro", + "address_1": "203 S Salina St", + "address_2": null, + "address_3": null, + "city": "Syracuse", + "state_province": "New York", + "postal_code": "13202", + "country": "United States", + "longitude": -76.15209318, + "latitude": 43.04945059, + "phone": "3158777246", + "website_url": "http://www.facebook.com/SahmBrewCo/", + "state": "New York", + "street": "203 S Salina St" + }, + { + "id": "34011fb5-ccda-4f99-b21a-62953b9b6128", + "name": "Sailfish Brewing Company, llc", + "brewery_type": "micro", + "address_1": "130 N 2nd St", + "address_2": null, + "address_3": null, + "city": "Fort Pierce", + "state_province": "Florida", + "postal_code": "34950-4403", + "country": "United States", + "longitude": -80.32431828, + "latitude": 27.44903854, + "phone": "7725774382", + "website_url": "http://www.sailfishbrewingco.com", + "state": "Florida", + "street": "130 N 2nd St" + }, + { + "id": "e64ebbd4-fda9-4377-82c0-9a0d80d4cd17", + "name": "Sailors Grave Brewing", + "brewery_type": "micro", + "address_1": "85 Marlo Plains Road", + "address_2": null, + "address_3": null, + "city": "Marlo", + "state_province": "VIC", + "postal_code": "3888", + "country": "Australia", + "longitude": 148.6368767, + "latitude": -37.7997632, + "phone": null, + "website_url": "http://www.sailorsgravebrewing.com/", + "state": "VIC", + "street": "85 Marlo Plains Road" + }, + { + "id": "558d16c5-ccf9-4a3b-b644-d6af7c60233e", + "name": "Saint Archer Brewing Company", + "brewery_type": "large", + "address_1": "9550 Distribution Ave", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92121-2306", + "country": "United States", + "longitude": -117.163745, + "latitude": 32.880445, + "phone": "8582252337", + "website_url": "http://www.saintarcherbrewery.com", + "state": "California", + "street": "9550 Distribution Ave" + }, + { + "id": "611a3d39-d0a2-4020-b9ce-87cbc545ad0d", + "name": "Saint Arnold Brewing Co", + "brewery_type": "regional", + "address_1": "2000 Lyons Ave", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77020-2028", + "country": "United States", + "longitude": -95.34846656, + "latitude": 29.77112745, + "phone": "7136869494", + "website_url": "http://www.saintarnold.com", + "state": "Texas", + "street": "2000 Lyons Ave" + }, + { + "id": "7526abe5-393d-461f-b9b6-fb5880167db7", + "name": "Saint Benjamin Brewing Co", + "brewery_type": "micro", + "address_1": "1710 N 5th St", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19122-2909", + "country": "United States", + "longitude": -75.1475016, + "latitude": 39.9562965, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": "1710 N 5th St" + }, + { + "id": "7cfafd1b-9f71-421e-b68a-2a020e3f9540", + "name": "Saint Boniface Craft Brewing Co", + "brewery_type": "brewpub", + "address_1": "1701 W Main St", + "address_2": null, + "address_3": null, + "city": "Ephrata", + "state_province": "Pennsylvania", + "postal_code": "17522-1106", + "country": "United States", + "longitude": -76.205629, + "latitude": 40.200294, + "phone": "7177211744", + "website_url": null, + "state": "Pennsylvania", + "street": "1701 W Main St" + }, + { + "id": "d138f5c2-f5f8-4d68-bcd9-b69a021cae6d", + "name": "Saint Croix Beer Co. DBA Saint Croix Brewing Co.", + "brewery_type": "contract", + "address_1": "363 Webster St", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55102-3651", + "country": "United States", + "longitude": -93.12454994, + "latitude": 44.93128073, + "phone": "6513870708", + "website_url": "http://www.stcroixbeer.com", + "state": "Minnesota", + "street": "363 Webster St" + }, + { + "id": "df62a0f5-73ba-457c-90c9-9d79d495348d", + "name": "Saint Hazards Brewery", + "brewery_type": "brewpub", + "address_1": "1233 Fox Road", + "address_2": null, + "address_3": null, + "city": "Middle Bass Island", + "state_province": "Ohio", + "postal_code": "43446", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4192856121", + "website_url": null, + "state": "Ohio", + "street": "1233 Fox Road" + }, + { + "id": "44dda0d1-ec31-47ce-a4ca-b3fef5161990", + "name": "Saint J Brewery", + "brewery_type": "brewpub", + "address_1": "2002 Memorial Dr", + "address_2": null, + "address_3": null, + "city": "Saint Johnsbury", + "state_province": "Vermont", + "postal_code": "05819-8991", + "country": "United States", + "longitude": -72.01506898, + "latitude": 44.45918219, + "phone": "8024241700", + "website_url": "http://www.saintjbrewery.com", + "state": "Vermont", + "street": "2002 Memorial Dr" + }, + { + "id": "323e6f9e-6e29-4e97-bb59-474d701e48bf", + "name": "Saint James Brewery", + "brewery_type": "micro", + "address_1": "929 Lincoln Ave Ste 11", + "address_2": null, + "address_3": null, + "city": "Holbrook", + "state_province": "New York", + "postal_code": "11741-2256", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6217073192", + "website_url": "http://www.saintjamesbrewery.com", + "state": "New York", + "street": "929 Lincoln Ave Ste 11" + }, + { + "id": "37763ebb-c13e-4de7-b53d-7f12a7f48d9e", + "name": "Saint Patrick's Brewing Company", + "brewery_type": "micro", + "address_1": "2842 W Bowles Ave", + "address_2": null, + "address_3": null, + "city": "Littleton", + "state_province": "Colorado", + "postal_code": "80120-1843", + "country": "United States", + "longitude": -105.024584, + "latitude": 39.6125875, + "phone": "3037187575", + "website_url": "http://www.stpatricksbrewco.com", + "state": "Colorado", + "street": "2842 W Bowles Ave" + }, + { + "id": "05ec470f-09d7-4582-b432-fca4758f146e", + "name": "Saint Somewhere Brewing Co", + "brewery_type": "micro", + "address_1": "312 E Tarpon Ave", + "address_2": null, + "address_3": null, + "city": "Tarpon Springs", + "state_province": "Florida", + "postal_code": "34689-4320", + "country": "United States", + "longitude": -82.75335373, + "latitude": 28.14615551, + "phone": "8135036181", + "website_url": "http://www.saintsomewherebrewing.com", + "state": "Florida", + "street": "312 E Tarpon Ave" + }, + { + "id": "b52a2cbf-4041-43b6-afbb-151883c9900d", + "name": "Saints Row Brewing", + "brewery_type": "micro", + "address_1": "1211 Taft St", + "address_2": null, + "address_3": null, + "city": "Rockville", + "state_province": "Maryland", + "postal_code": "20850-1344", + "country": "United States", + "longitude": -77.13401808, + "latitude": 39.09361715, + "phone": null, + "website_url": "http://www.saintsrowbeer.com", + "state": "Maryland", + "street": "1211 Taft St" + }, + { + "id": "73a9fd49-5bbb-421b-b62e-221eed613881", + "name": "SakeBrooklyn Brewing Co., LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11237-5263", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9294007253", + "website_url": "http://www.sakebrooklyn.com", + "state": "New York", + "street": null + }, + { + "id": "8a639388-c76a-466c-a8f3-80af5ebcf43f", + "name": "Salem Ale Works", + "brewery_type": "micro", + "address_1": "2315 25th St SE", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "Oregon", + "postal_code": "97302-1145", + "country": "United States", + "longitude": -123.0103968, + "latitude": 44.91998888, + "phone": "5039908486", + "website_url": "http://www.aleinsalem.com", + "state": "Oregon", + "street": "2315 25th St SE" + }, + { + "id": "d75ad0e6-7f74-4708-9828-4298ca8b9e46", + "name": "Salem Beer Works", + "brewery_type": "brewpub", + "address_1": "278 Derby St", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "Massachusetts", + "postal_code": "01970-3635", + "country": "United States", + "longitude": -70.8898634, + "latitude": 42.52079262, + "phone": "9787452337", + "website_url": "http://www.beerworks.net", + "state": "Massachusetts", + "street": "278 Derby St" + }, + { + "id": "91a7067e-1832-4b74-b319-3fefb1b291be", + "name": "Salish Sea Brewing Company", + "brewery_type": "brewpub", + "address_1": "518 Dayton St Ste 104", + "address_2": null, + "address_3": null, + "city": "Edmonds", + "state_province": "Washington", + "postal_code": "98020-", + "country": "United States", + "longitude": -122.37685979708, + "latitude": 47.809891675096, + "phone": "2062953116", + "website_url": "http://www.salishbrewing.com", + "state": "Washington", + "street": "518 Dayton St Ste 104" + }, + { + "id": "0534dcda-ed55-4104-915b-e95e7ec5a7a5", + "name": "Salmon River Brewery", + "brewery_type": "brewpub", + "address_1": "411 Railroad Ave", + "address_2": null, + "address_3": null, + "city": "McCall", + "state_province": "Idaho", + "postal_code": "83638-4132", + "country": "United States", + "longitude": -116.097682, + "latitude": 44.911663, + "phone": "2086344772", + "website_url": "http://www.salmonriverbrewery.com", + "state": "Idaho", + "street": "411 Railroad Ave" + }, + { + "id": "a904f795-1ac5-40e1-a7fa-4eff2ad5882b", + "name": "Saloon Door Brewing Co", + "brewery_type": "brewpub", + "address_1": "105 Magellan Cir Ste A", + "address_2": null, + "address_3": null, + "city": "Webster", + "state_province": "Texas", + "postal_code": "77598-2033", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4099393992", + "website_url": "http://www.saloondoorbrewing.com", + "state": "Texas", + "street": "105 Magellan Cir Ste A" + }, + { + "id": "736a78a7-5cca-4bff-83c2-858a7402026d", + "name": "Salt Brewing Co.", + "brewery_type": "micro", + "address_1": "45 Great Ocean Road", + "address_2": null, + "address_3": null, + "city": "Aireys Inlet", + "state_province": "VIC", + "postal_code": "3231", + "country": "Australia", + "longitude": 144.1048638, + "latitude": -38.4609259, + "phone": "+61 3 5289 6804", + "website_url": "https://www.saltbrewing.co/", + "state": "VIC", + "street": "45 Great Ocean Road" + }, + { + "id": "979a9377-27e4-436c-938e-fddea2d87888", + "name": "Salt City Brewing", + "brewery_type": "micro", + "address_1": "514 N Main Street", + "address_2": null, + "address_3": null, + "city": "Hutchinson", + "state_province": "Kansas", + "postal_code": "67501", + "country": "United States", + "longitude": -97.93175306, + "latitude": 38.05869143, + "phone": "6209606210", + "website_url": null, + "state": "Kansas", + "street": "514 N Main Street" + }, + { + "id": "6db95a97-2d83-4952-8a99-7bd8d77c5138", + "name": "Salt Creek Brewery", + "brewery_type": "brewpub", + "address_1": "466 Old State Road 37 N", + "address_2": null, + "address_3": null, + "city": "Bedford", + "state_province": "Indiana", + "postal_code": "47421-8068", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8122778277", + "website_url": "http://www.saltcreeekbrewery.beer", + "state": "Indiana", + "street": "466 Old State Road 37 N" + }, + { + "id": "08945808-d75c-48f5-beed-9c7c9178d2b8", + "name": "Salt Flats Brewery", + "brewery_type": "micro", + "address_1": "2020 W Industrial Cir", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84104-4260", + "country": "United States", + "longitude": -111.9481568, + "latitude": 40.7298237, + "phone": "8018283469", + "website_url": "http://rpmbeer.com", + "state": "Utah", + "street": "2020 W Industrial Cir" + }, + { + "id": "e6cf8a79-37b3-4717-8df8-6acd82b1890a", + "name": "Salt Lake Brewing Co/ Squatters Pub Brewery", + "brewery_type": "micro", + "address_1": "147 W Broadway", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84101-1914", + "country": "United States", + "longitude": -111.895676, + "latitude": 40.762524, + "phone": "8013632739", + "website_url": "http://www.squatters.com", + "state": "Utah", + "street": "147 W Broadway" + }, + { + "id": "150a966d-9635-4389-9280-241e1da8a35c", + "name": "Salt Marsh Brewing", + "brewery_type": "brewpub", + "address_1": "203 Bluffton Rd", + "address_2": null, + "address_3": null, + "city": "Bluffton", + "state_province": "South Carolina", + "postal_code": "29910-6213", + "country": "United States", + "longitude": -80.86048975, + "latitude": 32.2372909, + "phone": "8433219556", + "website_url": "http://www.facebook.com/Saltmarshbrew/", + "state": "South Carolina", + "street": "203 Bluffton Rd" + }, + { + "id": "eaa42613-3192-4867-805e-7e578994c526", + "name": "Salt Point Brewing Co, LLC", + "brewery_type": "brewpub", + "address_1": "2075 East Shore Dr", + "address_2": null, + "address_3": null, + "city": "Lansing", + "state_province": "New York", + "postal_code": "14882", + "country": "United States", + "longitude": -76.50592053, + "latitude": 42.53689005, + "phone": "6075330124", + "website_url": null, + "state": "New York", + "street": "2075 East Shore Dr" + }, + { + "id": "11f843b1-c0af-406a-9324-7abb436817cb", + "name": "Salt Springs Brewery", + "brewery_type": "brewpub", + "address_1": "117 S Ann Arbor St", + "address_2": null, + "address_3": null, + "city": "Saline", + "state_province": "Michigan", + "postal_code": "48176-1320", + "country": "United States", + "longitude": -83.78105412, + "latitude": 42.16646594, + "phone": "7342959191", + "website_url": "http://wwww.saltpsringsbrewery.com", + "state": "Michigan", + "street": "117 S Ann Arbor St" + }, + { + "id": "d2950fc3-0965-4692-90ad-b9d8a8031829", + "name": "Saltbox Brewery", + "brewery_type": "brewpub", + "address_1": "84 Commonwealth Ave", + "address_2": null, + "address_3": null, + "city": "Concord", + "state_province": "Massachusetts", + "postal_code": "01742-2904", + "country": "United States", + "longitude": -71.39468258, + "latitude": 42.45690806, + "phone": "9782123585", + "website_url": "http://www.saltboxkitchen.com", + "state": "Massachusetts", + "street": "84 Commonwealth Ave" + }, + { + "id": "d1fd0d69-4522-4f03-836a-d35960dda89f", + "name": "SaltFire Brewing Co.", + "brewery_type": "micro", + "address_1": "2199 S West Temple", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84115-2529", + "country": "United States", + "longitude": -111.8937514, + "latitude": 40.7227984, + "phone": "3859550504", + "website_url": "https://www.saltfirebrewing.com", + "state": "Utah", + "street": "2199 S West Temple" + }, + { + "id": "7f0a3ebf-1467-4a6c-af59-561fa81ff1d0", + "name": "Saltmarsh Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Foxboro", + "state_province": "Massachusetts", + "postal_code": "02035-2299", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6177996627", + "website_url": "http://adam@saltmarshbrewery.com", + "state": "Massachusetts", + "street": null + }, + { + "id": "efdc475f-8e3c-42f7-8e69-7d5fda684097", + "name": "Saltwater Brewery", + "brewery_type": "micro", + "address_1": "1701 W Atlantic Ave", + "address_2": null, + "address_3": null, + "city": "Delray Beach", + "state_province": "Florida", + "postal_code": "33444-1566", + "country": "United States", + "longitude": -80.0913747, + "latitude": 26.4619509, + "phone": "6092808464", + "website_url": "http://www.saltwaterbrewery.com", + "state": "Florida", + "street": "1701 W Atlantic Ave" + }, + { + "id": "a0cb0659-7da0-4ad1-92bb-36e5a2760408", + "name": "Salty Nut Brewery", + "brewery_type": "micro", + "address_1": "2406 Clinton Ave W", + "address_2": null, + "address_3": null, + "city": "Huntsville", + "state_province": "Alabama", + "postal_code": "35805-3014", + "country": "United States", + "longitude": -86.5932014, + "latitude": 34.7277523, + "phone": "2567138877", + "website_url": "http://www.saltynutbrewery.com", + "state": "Alabama", + "street": "2406 Clinton Ave W" + }, + { + "id": "22b97f6b-cd22-42f9-99cf-01554417b7a2", + "name": "Salty Turtle Beer Company", + "brewery_type": "micro", + "address_1": "103 Triton Ln", + "address_2": null, + "address_3": null, + "city": "Surf City", + "state_province": "North Carolina", + "postal_code": "28445", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9108032019", + "website_url": "http://www.saltyturtlebeer.com", + "state": "North Carolina", + "street": "103 Triton Ln" + }, + { + "id": "7613627e-54af-4cea-9279-9ae4ef452fe1", + "name": "Salud Cerveceria", + "brewery_type": "brewpub", + "address_1": "3306-B N Davidson St", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28205-1036", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7045782941", + "website_url": "http://www.saludbeershop.com", + "state": "North Carolina", + "street": "3306-B N Davidson St" + }, + { + "id": "a37dcce1-fdd5-4651-9415-27070366fb19", + "name": "Sam Bond's Brewing Co", + "brewery_type": "brewpub", + "address_1": "540 E 8th Ave", + "address_2": null, + "address_3": null, + "city": "Eugene", + "state_province": "Oregon", + "postal_code": "97401-3344", + "country": "United States", + "longitude": -123.0843307, + "latitude": 44.05093611, + "phone": "5412468162", + "website_url": "http://www.sambondsbrewing.com", + "state": "Oregon", + "street": "540 E 8th Ave" + }, + { + "id": "a7fd2fe1-0473-4e71-ac50-2c8a9eeed67e", + "name": "Samuel Adams Pennsylvania Brewing Co", + "brewery_type": "regional", + "address_1": "7880 Penn Dr", + "address_2": null, + "address_3": null, + "city": "Breinigsville", + "state_province": "Pennsylvania", + "postal_code": "18031-1508", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6103956811", + "website_url": null, + "state": "Pennsylvania", + "street": "7880 Penn Dr" + }, + { + "id": "7713be83-2ff6-4dc5-a28e-a4f629978402", + "name": "San Diego Brewing Co", + "brewery_type": "brewpub", + "address_1": "10450 Friars Rd Ste L", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92120-2311", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6192842739", + "website_url": "http://www.sandiegobrewing.com", + "state": "California", + "street": "10450 Friars Rd Ste L" + }, + { + "id": "38bb7b37-a035-4e52-bc15-a0ea83eaadce", + "name": "San Fernando Brewing Co.", + "brewery_type": "micro", + "address_1": "425 Park Ave", + "address_2": null, + "address_3": null, + "city": "San Fernando", + "state_province": "California", + "postal_code": "91340-2525", + "country": "United States", + "longitude": -118.4322067, + "latitude": 34.2828803, + "phone": "8187456175", + "website_url": "http://www.sanfernandobrewingcompany.com", + "state": "California", + "street": "425 Park Ave" + }, + { + "id": "6a2f7b58-6a84-4646-8362-13b9627e3f44", + "name": "San Francisco Brewing Co", + "brewery_type": "proprietor", + "address_1": "3150 Polk St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94109", + "country": "United States", + "longitude": -122.4231232, + "latitude": 37.80583356, + "phone": "4154842337", + "website_url": "http://www.sfbrewingco.com", + "state": "California", + "street": "3150 Polk St" + }, + { + "id": "3fa2f628-3f13-49be-a49c-b6177d912497", + "name": "San Gabriel River Brewery Inc", + "brewery_type": "micro", + "address_1": "500 Chaparral Dr", + "address_2": null, + "address_3": null, + "city": "Liberty Hill", + "state_province": "Texas", + "postal_code": "78642-4610", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5126279384", + "website_url": "http://www.sangabrielriverbrewery.com", + "state": "Texas", + "street": "500 Chaparral Dr" + }, + { + "id": "81ab1434-2c88-4803-9cf3-6f1339c785bf", + "name": "San Jacinto Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Montgomery", + "state_province": "Texas", + "postal_code": "77316-9200", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2813808200", + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "7b341956-e6d2-42ac-8bd9-92768a5b3813", + "name": "San Juan Island Brewing Company", + "brewery_type": "brewpub", + "address_1": "410 A St", + "address_2": null, + "address_3": null, + "city": "Friday Harbor", + "state_province": "Washington", + "postal_code": "98250", + "country": "United States", + "longitude": -123.0150233, + "latitude": 48.53276541, + "phone": "3603782017", + "website_url": "http://www.sanjuanbrew.com", + "state": "Washington", + "street": "410 A St" + }, + { + "id": "b700e34a-5e67-416c-8815-af29b022e719", + "name": "San Luis Valley Brewing Co", + "brewery_type": "brewpub", + "address_1": "631 Main St", + "address_2": null, + "address_3": null, + "city": "Alamosa", + "state_province": "Colorado", + "postal_code": "81101-2557", + "country": "United States", + "longitude": -105.8742898, + "latitude": 37.4681813, + "phone": "7195872337", + "website_url": "http://www.slvbrewco.com", + "state": "Colorado", + "street": "631 Main St" + }, + { + "id": "4c2264d2-8a00-45a5-8b96-32afe58d4901", + "name": "San Marcos Brewery and Grill", + "brewery_type": "closed", + "address_1": "1080 W San Marcos Blvd Ste 180", + "address_2": null, + "address_3": null, + "city": "San Marcos", + "state_province": "California", + "postal_code": "92078-4099", + "country": "United States", + "longitude": -117.190881, + "latitude": 33.13459973, + "phone": "7604710050", + "website_url": null, + "state": "California", + "street": "1080 W San Marcos Blvd Ste 180" + }, + { + "id": "c9931839-cd28-466a-8cde-d26a831b71bd", + "name": "San Pedro Brewing Co", + "brewery_type": "brewpub", + "address_1": "331 W 6th St", + "address_2": null, + "address_3": null, + "city": "San Pedro", + "state_province": "California", + "postal_code": "90731-3317", + "country": "United States", + "longitude": -118.2842712, + "latitude": 33.7386421, + "phone": "3108315663", + "website_url": "http://www.sanpedrobrewing.com", + "state": "California", + "street": "331 W 6th St" + }, + { + "id": "c5b7b93b-7ce2-4e53-8515-12ec1bd8475d", + "name": "Sanctuary Brewing Company", + "brewery_type": "micro", + "address_1": "147 1st Ave E", + "address_2": null, + "address_3": null, + "city": "Hendersonville", + "state_province": "North Carolina", + "postal_code": "28792-5191", + "country": "United States", + "longitude": -82.45881412, + "latitude": 35.31453259, + "phone": "8285959956", + "website_url": "http://www.sanctuarybrewco.com", + "state": "North Carolina", + "street": "147 1st Ave E" + }, + { + "id": "b2d75de8-293f-4e95-a6fb-fce2df0d81f8", + "name": "Sanctuary Spirits", + "brewery_type": "micro", + "address_1": "902 E Saginaw Hwy", + "address_2": null, + "address_3": null, + "city": "Grand Ledge", + "state_province": "Michigan", + "postal_code": "48837-9419", + "country": "United States", + "longitude": -84.73453638, + "latitude": 42.7407777, + "phone": "5179251930", + "website_url": "http://www.sanctuaryspirits.com", + "state": "Michigan", + "street": "902 E Saginaw Hwy" + }, + { + "id": "572aab42-ff5c-4136-86ae-82c8f3218f6f", + "name": "Sanctum Alehouse", + "brewery_type": "brewpub", + "address_1": "2638 Main St Ste M", + "address_2": null, + "address_3": null, + "city": "Chula Vista", + "state_province": "California", + "postal_code": "91911", + "country": "United States", + "longitude": -117.0767872, + "latitude": 32.59580926, + "phone": null, + "website_url": null, + "state": "California", + "street": "2638 Main St Ste M" + }, + { + "id": "278660c9-4773-468f-aa9f-19216b762d37", + "name": "Sanctum Brewing Co", + "brewery_type": "closed", + "address_1": "560 E Commercial St Ste 21", + "address_2": null, + "address_3": null, + "city": "Pomona", + "state_province": "California", + "postal_code": "91767-5649", + "country": "United States", + "longitude": -117.7405025, + "latitude": 34.05970244, + "phone": "9093450253", + "website_url": "http://www.sanctumbrewing.com", + "state": "California", + "street": "560 E Commercial St Ste 21" + }, + { + "id": "e99e1b2d-a414-47cb-8dbc-b36fba252fd9", + "name": "Sanctus Brewing Co.", + "brewery_type": "micro", + "address_1": "5 Re Road", + "address_2": null, + "address_3": null, + "city": "Townsend", + "state_province": "NSW", + "postal_code": "2463", + "country": "Australia", + "longitude": 153.2257544, + "latitude": -29.4656501, + "phone": "+61 1300 151 518", + "website_url": "http://sanctusbrewingco.com.au/", + "state": "NSW", + "street": "5 Re Road" + }, + { + "id": "5dbae73d-6b77-43fe-ac8b-034105c154a0", + "name": "Sand City Brewing Co.", + "brewery_type": "micro", + "address_1": "60 Main St", + "address_2": null, + "address_3": null, + "city": "Northport", + "state_province": "New York", + "postal_code": "11768-1722", + "country": "United States", + "longitude": -73.3508587, + "latitude": 40.8998983, + "phone": "9177965672", + "website_url": "http://www.sandcitybeer.com", + "state": "New York", + "street": "60 Main St" + }, + { + "id": "cf190fc8-5842-4e12-8fd3-80b1fda0bf4e", + "name": "Sand Creek Brewing Co", + "brewery_type": "micro", + "address_1": "320 Pierce St", + "address_2": null, + "address_3": null, + "city": "Black River Falls", + "state_province": "Wisconsin", + "postal_code": "54615", + "country": "United States", + "longitude": -90.85115523, + "latitude": 44.29279126, + "phone": "7152847553", + "website_url": "http://www.sandcreekbrewing.com", + "state": "Wisconsin", + "street": "320 Pierce St" + }, + { + "id": "6e944425-d2e8-4005-8d04-2d68bacf6d73", + "name": "Sand Mtn brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Section", + "state_province": "Alabama", + "postal_code": "35771", + "country": "United States", + "longitude": -85.986644, + "latitude": 34.5789747, + "phone": "2564180658", + "website_url": "http://Www.sandmtnbrewery.com", + "state": "Alabama", + "street": null + }, + { + "id": "75b2ab04-6d86-4928-8953-d60c4b1c172e", + "name": "Sandhill Crane Vineyards", + "brewery_type": "micro", + "address_1": "4724 Walz Rd", + "address_2": null, + "address_3": null, + "city": "Jackson", + "state_province": "Michigan", + "postal_code": "49201-9613", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5177640679", + "website_url": "http://www.sandhillcranevineyards.com", + "state": "Michigan", + "street": "4724 Walz Rd" + }, + { + "id": "e6a58a3a-06ff-4f7e-a54d-a025199a176f", + "name": "Sandude Brewing Co", + "brewery_type": "micro", + "address_1": "1401 Freitas Park", + "address_2": null, + "address_3": null, + "city": "Turlock", + "state_province": "California", + "postal_code": "95380-6254", + "country": "United States", + "longitude": -120.859873, + "latitude": 37.479896, + "phone": "2096781547", + "website_url": null, + "state": "California", + "street": "1401 Freitas Park" + }, + { + "id": "1cb033df-d217-475d-8b40-90af3a179934", + "name": "Sandy Springs Brewing Company", + "brewery_type": "brewpub", + "address_1": "232 N Market St", + "address_2": null, + "address_3": null, + "city": "Minerva", + "state_province": "Ohio", + "postal_code": "44657-1616", + "country": "United States", + "longitude": -81.10382014, + "latitude": 40.72956679, + "phone": "3304516926", + "website_url": "http://www.sandyspringsbrewery.com", + "state": "Ohio", + "street": "232 N Market St" + }, + { + "id": "e0e79155-5263-49c9-b001-df29d38fe160", + "name": "Sandy Valley Brewing Co", + "brewery_type": "micro", + "address_1": "3660 Linhorst Rd", + "address_2": null, + "address_3": null, + "city": "Hillsboro", + "state_province": "MIssouri", + "postal_code": "63050", + "country": "United States", + "longitude": -90.476661, + "latitude": 38.30122, + "phone": "6364755008", + "website_url": "http://www.sandyvalleybrewingcompany.com", + "state": "MIssouri", + "street": "3660 Linhorst Rd" + }, + { + "id": "2199b077-5cfa-4a8a-81bb-2be99e73338e", + "name": "Sanford Brewing Company", + "brewery_type": "brewpub", + "address_1": "400 Sanford Ave", + "address_2": null, + "address_3": null, + "city": "Sanford", + "state_province": "Florida", + "postal_code": "32771-1971", + "country": "United States", + "longitude": -81.265044, + "latitude": 28.808877, + "phone": "4077326419", + "website_url": "http://www.sanfordbrewing.com", + "state": "Florida", + "street": "400 Sanford Ave" + }, + { + "id": "59639100-39ec-491e-bbe4-680013452e0b", + "name": "Sanitas Brewing Co", + "brewery_type": "micro", + "address_1": "3550 Frontier Ave Ste A", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301-2430", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2152667762", + "website_url": "http://www.sanitasbrewing.com/", + "state": "Colorado", + "street": "3550 Frontier Ave Ste A" + }, + { + "id": "d8a76528-8e19-4663-8fe1-84b7b9ed11a4", + "name": "Sanitas Brewing Co - Englewood", + "brewery_type": "micro", + "address_1": "200 W Belleview Ave Unit 100", + "address_2": null, + "address_3": null, + "city": "Englewood", + "state_province": "Colorado", + "postal_code": "80110", + "country": "United States", + "longitude": -104.9904986, + "latitude": 39.6236966, + "phone": null, + "website_url": "http://www.sanitasbrewing.com/", + "state": "Colorado", + "street": "200 W Belleview Ave Unit 100" + }, + { + "id": "bdd2577c-fb11-4237-a32a-a9d0f3f680d2", + "name": "Santa Barbara Brewing Co", + "brewery_type": "brewpub", + "address_1": "501 State St", + "address_2": null, + "address_3": null, + "city": "Santa Barbara", + "state_province": "California", + "postal_code": "93101-1601", + "country": "United States", + "longitude": -119.7526684, + "latitude": 34.4404959, + "phone": "8057301040", + "website_url": "http://www.sbbrewco.com", + "state": "California", + "street": "501 State St" + }, + { + "id": "b02f2e1a-349c-40f4-bca2-69aeaf0e3a68", + "name": "Santa Clara Valley Brewing", + "brewery_type": "micro", + "address_1": "101 E Alma Ave", + "address_2": null, + "address_3": null, + "city": "San Jose", + "state_province": "California", + "postal_code": "95112-5944", + "country": "United States", + "longitude": -121.8738718, + "latitude": 37.31635308, + "phone": "4082885181", + "website_url": "http://www.scvbrewing.com", + "state": "California", + "street": "101 E Alma Ave" + }, + { + "id": "c9e0d728-076b-4867-a9d9-a2f20ff24e25", + "name": "Santa Cruz Aleworks", + "brewery_type": "closed", + "address_1": "150 Dubois St Ste E", + "address_2": null, + "address_3": null, + "city": "Santa Cruz", + "state_province": "California", + "postal_code": "95060-2114", + "country": "United States", + "longitude": -122.0385924, + "latitude": 36.98680136, + "phone": "8314251182", + "website_url": "http://www.santacruzaleworks.com", + "state": "California", + "street": "150 Dubois St Ste E" + }, + { + "id": "446040d3-601c-4f9e-be86-ba4280b89b33", + "name": "Santa Cruz Mountain Brewing", + "brewery_type": "brewpub", + "address_1": "402 Ingalls St Ste 27", + "address_2": null, + "address_3": null, + "city": "Santa Cruz", + "state_province": "California", + "postal_code": "95060-5869", + "country": "United States", + "longitude": -122.0481007, + "latitude": 36.95925318, + "phone": null, + "website_url": null, + "state": "California", + "street": "402 Ingalls St Ste 27" + }, + { + "id": "3a366221-e927-47b5-a137-a553b82c3245", + "name": "Santa Fe Brewing Co", + "brewery_type": "regional", + "address_1": "35 Fire Place", + "address_2": null, + "address_3": null, + "city": "Santa Fe", + "state_province": "New Mexico", + "postal_code": "87508-4493", + "country": "United States", + "longitude": -106.0515883, + "latitude": 35.59654205, + "phone": "5054243333", + "website_url": "http://www.santafebrewing.com", + "state": "New Mexico", + "street": "35 Fire Place" + }, + { + "id": "abf360a2-84d7-491c-a372-e6eabc07f4a0", + "name": "Santa Maria Brewing Co", + "brewery_type": "micro", + "address_1": "7935 San Luis Ave", + "address_2": null, + "address_3": null, + "city": "Atascadero", + "state_province": "California", + "postal_code": "93422", + "country": "United States", + "longitude": -120.6576002, + "latitude": 35.47776332, + "phone": "8055457702", + "website_url": "http://www.santamariabrewingco.com", + "state": "California", + "street": "7935 San Luis Ave" + }, + { + "id": "ede87167-b083-49b4-880e-6c8167e1662d", + "name": "Santa Maria Brewing Co", + "brewery_type": "brewpub", + "address_1": "115 Cuyama Ln", + "address_2": null, + "address_3": null, + "city": "Nipomo", + "state_province": "California", + "postal_code": "93444", + "country": "United States", + "longitude": -120.4364431, + "latitude": 34.99599466, + "phone": "8059251555", + "website_url": "http://www.santamariabrewingco.com", + "state": "California", + "street": "115 Cuyama Ln" + }, + { + "id": "05f35e24-25fa-4cd8-9701-4b1ef9d6bc8b", + "name": "Santa Maria Brewing Co", + "brewery_type": "closed", + "address_1": "1451 Fairway Dr", + "address_2": null, + "address_3": null, + "city": "Santa Maria", + "state_province": "California", + "postal_code": "93455-1404", + "country": "United States", + "longitude": -120.4628795, + "latitude": 34.91399145, + "phone": null, + "website_url": "http://www.santamariabrewingco.com", + "state": "California", + "street": "1451 Fairway Dr" + }, + { + "id": "804be063-5e93-4657-a2ee-b89d73f11a00", + "name": "Santa Monica Brew Works", + "brewery_type": "micro", + "address_1": "1920 Colorado Ave Ste C", + "address_2": null, + "address_3": null, + "city": "Santa Monica", + "state_province": "California", + "postal_code": "90404-3414", + "country": "United States", + "longitude": -118.4765129, + "latitude": 34.02565745, + "phone": "3108287629", + "website_url": "http://www.santamonicabrewworks.com", + "state": "California", + "street": "1920 Colorado Ave Ste C" + }, + { + "id": "dd5de877-b112-412e-a58e-5b704fd71f92", + "name": "Santai", + "brewery_type": "bar", + "address_1": "697D East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "459060", + "country": "Singapore", + "longitude": 1.3120292964811, + "latitude": 103.9221119, + "phone": "+65 9732 4742", + "website_url": null, + "state": "Singapore", + "street": "697D East Coast Road" + }, + { + "id": "85619fb4-6a1c-48b5-8280-4962b2eb67df", + "name": "SanTan Brewing Co", + "brewery_type": "regional", + "address_1": "8 S San Marcos Pl", + "address_2": null, + "address_3": null, + "city": "Chandler", + "state_province": "Arizona", + "postal_code": "85225-7862", + "country": "United States", + "longitude": -111.8423459, + "latitude": 33.3032436, + "phone": "4809178700", + "website_url": "http://www.santanbrewing.com", + "state": "Arizona", + "street": "8 S San Marcos Pl" + }, + { + "id": "6b294403-76c6-411c-b991-6d9c853f514f", + "name": "SanTan Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85014-2435", + "country": "United States", + "longitude": -112.0773456, + "latitude": 33.4485866, + "phone": null, + "website_url": null, + "state": "Arizona", + "street": null + }, + { + "id": "a48a79db-2554-4e84-8112-088ceaa4f2ad", + "name": "SanTan Brewing Co - Uptown Chandler", + "brewery_type": "micro", + "address_1": "495 E. Warner Rd.", + "address_2": null, + "address_3": null, + "city": "Chandler", + "state_province": "Arizona", + "postal_code": "85225", + "country": "United States", + "longitude": -111.8384052, + "latitude": 33.3352048, + "phone": "4809178700", + "website_url": null, + "state": "Arizona", + "street": "495 E. Warner Rd." + }, + { + "id": "229523be-7783-46ed-a5cc-ff15ea7f01eb", + "name": "Sante Adairius Rustic Ales", + "brewery_type": "micro", + "address_1": "103 Kennedy Dr", + "address_2": null, + "address_3": null, + "city": "Capitola", + "state_province": "California", + "postal_code": "95010-3641", + "country": "United States", + "longitude": -121.9405748, + "latitude": 36.9822865, + "phone": "8313454867", + "website_url": "http://www.rusticales.com", + "state": "California", + "street": "103 Kennedy Dr" + }, + { + "id": "fcebcda3-2a5d-48a2-8cfb-2e86214550e2", + "name": "Santiam Brewing Co", + "brewery_type": "micro", + "address_1": "2544 19th St SE", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "Oregon", + "postal_code": "97302-1501", + "country": "United States", + "longitude": -123.0209084, + "latitude": 44.91644665, + "phone": "5035075257", + "website_url": "http://www.santiambrewing.com", + "state": "Oregon", + "street": "2544 19th St SE" + }, + { + "id": "b1cb9fee-8488-43dd-9073-5cb426b580fc", + "name": "Sapphire Mountain Brewing Co", + "brewery_type": "contract", + "address_1": "50 Slicers Ave", + "address_2": null, + "address_3": null, + "city": "Sapphire", + "state_province": "North Carolina", + "postal_code": "28774-9405", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8287430220", + "website_url": "http://www.sapphiremountainbrewingcompany.com", + "state": "North Carolina", + "street": "50 Slicers Ave" + }, + { + "id": "a29dd725-49eb-4f82-b7c0-28ae9cdf21b2", + "name": "Sapporo Brewery USA", + "brewery_type": "large", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "La Crosse", + "state_province": "Wisconsin", + "postal_code": "54601", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Wisconsin", + "street": null + }, + { + "id": "9d2d554a-e0e4-49d9-9fc7-617440346398", + "name": "Saranac Brewery / Matt Brewing Co", + "brewery_type": "regional", + "address_1": "811 Edward St", + "address_2": null, + "address_3": null, + "city": "Utica", + "state_province": "New York", + "postal_code": "13502-4001", + "country": "United States", + "longitude": -75.24414622, + "latitude": 43.10355567, + "phone": "3156242400", + "website_url": "http://www.saranac.com", + "state": "New York", + "street": "811 Edward St" + }, + { + "id": "86e2d1b2-4613-441a-a543-e762718d3153", + "name": "Sarasota Brewing Co", + "brewery_type": "brewpub", + "address_1": "6607 Gateway Ave", + "address_2": null, + "address_3": null, + "city": "Sarasota", + "state_province": "Florida", + "postal_code": "34231-5805", + "country": "United States", + "longitude": -82.5163259, + "latitude": 27.26007897, + "phone": "9419252337", + "website_url": "http://www.sarasotabrewing.com", + "state": "Florida", + "street": "6607 Gateway Ave" + }, + { + "id": "e590ffd3-4144-4edb-8a5b-cb24c3d84072", + "name": "Sasquatch Brewery", + "brewery_type": "micro", + "address_1": "2531 NW 30th Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97210-2015", + "country": "United States", + "longitude": -122.7125709, + "latitude": 45.54008922, + "phone": "5038415687", + "website_url": "http://www.sasquatchbrewery.com", + "state": "Oregon", + "street": "2531 NW 30th Ave" + }, + { + "id": "92208a7f-cada-48db-92cd-ecae370557a6", + "name": "Sasquatch Pub", + "brewery_type": "brewpub", + "address_1": "6440 SW Capitol Hwy.", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97239", + "country": "United States", + "longitude": -122.6988132, + "latitude": 45.4776303, + "phone": "5038415687", + "website_url": null, + "state": "Oregon", + "street": "6440 SW Capitol Hwy." + }, + { + "id": "6e9c8574-d73b-4da3-927a-275f91b0bc87", + "name": "Sato Brewpub", + "brewery_type": "brewpub", + "address_1": "110 Pearl St", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14202-4125", + "country": "United States", + "longitude": -78.87693971, + "latitude": 42.88186146, + "phone": "7162481436", + "website_url": "http://www.satobrewpub.com", + "state": "New York", + "street": "110 Pearl St" + }, + { + "id": "c930a583-8540-418a-aaf2-d0042d20f5a6", + "name": "Satulah Mountain Brewing Co", + "brewery_type": "micro", + "address_1": "454 Carolina Way", + "address_2": null, + "address_3": null, + "city": "Highlands", + "state_province": "North Carolina", + "postal_code": "28741", + "country": "United States", + "longitude": -83.19553951, + "latitude": 35.05400622, + "phone": "8284829794", + "website_url": "http://www.satulahmountainbrewing.com", + "state": "North Carolina", + "street": "454 Carolina Way" + }, + { + "id": "8dc3b5df-ec65-4451-a608-0d8a7833769e", + "name": "Sauce Brewing Co", + "brewery_type": "micro", + "address_1": "1a Mitchell Street", + "address_2": null, + "address_3": null, + "city": "Marrickville", + "state_province": "NSW", + "postal_code": "2204", + "country": "Australia", + "longitude": 151.1631248, + "latitude": -33.907559, + "phone": "+61 2 9145 8288", + "website_url": "http://www.sauce.beer/", + "state": "NSW", + "street": "1a Mitchell Street" + }, + { + "id": "62723af7-e8b2-4831-b708-b39756691eeb", + "name": "Sauced BBQ & Spirits", + "brewery_type": "contract", + "address_1": "2300 1st St Ste 120", + "address_2": null, + "address_3": null, + "city": "Livermore", + "state_province": "California", + "postal_code": "94550-3141", + "country": "United States", + "longitude": -121.7679156, + "latitude": 37.68288154, + "phone": "9259611300", + "website_url": "http://www.saucedbbqandspirits.com", + "state": "California", + "street": "2300 1st St Ste 120" + }, + { + "id": "2fa37cd3-a1d8-4a64-a244-f1059f2df9f7", + "name": "Saucony Creek Brewing Company", + "brewery_type": "micro", + "address_1": "15032 Kutztown Rd", + "address_2": null, + "address_3": null, + "city": "Kutztown", + "state_province": "Pennsylvania", + "postal_code": "19530-9275", + "country": "United States", + "longitude": -75.79700353, + "latitude": 40.50149993, + "phone": "6106833128", + "website_url": "http://www.sauconycreekbrewing.com", + "state": "Pennsylvania", + "street": "15032 Kutztown Rd" + }, + { + "id": "6a08ad19-89d0-4c1a-b5ef-1cdb106a5f07", + "name": "Saucy Brew Works", + "brewery_type": "brewpub", + "address_1": "2885 Detroit Ave", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44113-2765", + "country": "United States", + "longitude": -81.7105691, + "latitude": 41.4894793, + "phone": "2166662568", + "website_url": "http://www.saucybrewworks.com", + "state": "Ohio", + "street": "2885 Detroit Ave" + }, + { + "id": "3318789a-72b4-44fd-ba6c-64200fbe52bd", + "name": "Saugatuck Brewing Co", + "brewery_type": "micro", + "address_1": "2948 Blue Star Hwy", + "address_2": null, + "address_3": null, + "city": "Douglas", + "state_province": "Michigan", + "postal_code": "49406-5195", + "country": "United States", + "longitude": -86.2120077, + "latitude": 42.62989386, + "phone": "2698577222", + "website_url": "http://www.saugatuckbrewing.com", + "state": "Michigan", + "street": "2948 Blue Star Hwy" + }, + { + "id": "8276dbc8-8e5c-4df9-a147-2d64241931f6", + "name": "Savage Brewing Company.", + "brewery_type": "micro", + "address_1": "12815 NE 124th St I", + "address_2": null, + "address_3": null, + "city": "Kirkland", + "state_province": "Washington", + "postal_code": "98034-8313", + "country": "United States", + "longitude": -122.1690259, + "latitude": 47.7109552, + "phone": "4252859761", + "website_url": "https://www.savagebrewingcompany.com", + "state": "Washington", + "street": "12815 NE 124th St I" + }, + { + "id": "c098878d-1e3d-4eb0-9d15-df944e2fbdbb", + "name": "Savagewood Brewing Company", + "brewery_type": "micro", + "address_1": "9879 Hibert St Ste F", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92131-1058", + "country": "United States", + "longitude": -117.1130008, + "latitude": 32.91329511, + "phone": "8585770350", + "website_url": "http://www.savagewoodbrewing.com", + "state": "California", + "street": "9879 Hibert St Ste F" + }, + { + "id": "e948ab84-5a33-499b-9e34-203b6820fd3d", + "name": "Savannah Beer Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Savannah", + "state_province": "Georgia", + "postal_code": "31410", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9124140187", + "website_url": null, + "state": "Georgia", + "street": null + }, + { + "id": "60fde094-f45d-4e98-a136-f342a35f7e8d", + "name": "Savannah River Brewing Company", + "brewery_type": "micro", + "address_1": "813 5th St", + "address_2": null, + "address_3": null, + "city": "Augusta", + "state_province": "Georgia", + "postal_code": "30901-2414", + "country": "United States", + "longitude": -81.96288082, + "latitude": 33.46534536, + "phone": "7064268212", + "website_url": "http://www.savannahriverbrew.com", + "state": "Georgia", + "street": "813 5th St" + }, + { + "id": "e72050e0-715e-4333-b2a0-d8b04e2cd0f7", + "name": "Save the World Brewing Co", + "brewery_type": "micro", + "address_1": "1510 Resource Pkwy", + "address_2": null, + "address_3": null, + "city": "Marble Falls", + "state_province": "Texas", + "postal_code": "78654-3983", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8306377654", + "website_url": "http://www.savetheworldbrewing.com", + "state": "Texas", + "street": "1510 Resource Pkwy" + }, + { + "id": "18f65032-7043-4c44-9df9-78a396be1572", + "name": "Sawbriar Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lafayette", + "state_province": "Louisiana", + "postal_code": "70501", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3373403308", + "website_url": "http://www.sawbriarbrewery.com", + "state": "Louisiana", + "street": null + }, + { + "id": "6a5802e9-b70d-425e-bf9e-028ff8efe332", + "name": "Sawmill Brewing Co", + "brewery_type": "micro", + "address_1": "1110 E 10th St", + "address_2": null, + "address_3": null, + "city": "Merrill", + "state_province": "Wisconsin", + "postal_code": "54452-1221", + "country": "United States", + "longitude": -89.6830878, + "latitude": 45.18859223, + "phone": "7157720230", + "website_url": "http://www.sawmillbrewing.net", + "state": "Wisconsin", + "street": "1110 E 10th St" + }, + { + "id": "ecbd9c7e-4207-4b40-a9ca-682fa1bb77fc", + "name": "Sawmill Pizza and Brew Shed", + "brewery_type": "brewpub", + "address_1": "805 30th Ave", + "address_2": null, + "address_3": null, + "city": "Clear Lake", + "state_province": "Wisconsin", + "postal_code": "54005", + "country": "United States", + "longitude": -92.29614, + "latitude": 45.252594, + "phone": null, + "website_url": "http://www.weddingsinechovalley.com", + "state": "Wisconsin", + "street": "805 30th Ave" + }, + { + "id": "32f0c8a3-8dcd-42d1-b442-0bb9daa32b1e", + "name": "Sawtooth Brewery", + "brewery_type": "brewpub", + "address_1": "110 N River St", + "address_2": null, + "address_3": null, + "city": "Hailey", + "state_province": "Idaho", + "postal_code": "83333-7027", + "country": "United States", + "longitude": -114.319764, + "latitude": 43.522311, + "phone": "2087883213", + "website_url": "http://www.sawtoothbrewery.com", + "state": "Idaho", + "street": "110 N River St" + }, + { + "id": "b4425c01-a64b-4017-a203-36c1b55e9875", + "name": "Sawtooth Brewery - Ketchum Public House", + "brewery_type": "brewpub", + "address_1": "631 Warm Springs Rd", + "address_2": null, + "address_3": null, + "city": "Ketchum", + "state_province": "Idaho", + "postal_code": "83340", + "country": "United States", + "longitude": -114.366822, + "latitude": 43.683736, + "phone": "2087266803", + "website_url": "https://www.sawtoothbrewery.com", + "state": "Idaho", + "street": "631 Warm Springs Rd" + }, + { + "id": "daf5e811-f7a2-4056-aa17-aa128febf931", + "name": "Scale House Brewery", + "brewery_type": "brewpub", + "address_1": "5930 State Route 414", + "address_2": null, + "address_3": null, + "city": "Hector", + "state_province": "New York", + "postal_code": "14841-9662", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6075462030", + "website_url": "http://www.scalehousebrews.com", + "state": "New York", + "street": "5930 State Route 414" + }, + { + "id": "0b6d5f3a-a88a-48c1-9666-39f6296cccfd", + "name": "Scale House Brewery & Pub", + "brewery_type": "brewpub", + "address_1": "23 Cinema Dr Ste C", + "address_2": null, + "address_3": null, + "city": "Ithaca", + "state_province": "New York", + "postal_code": "14850-1682", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6072570107", + "website_url": "http://www.scalehousebrewpub.com", + "state": "New York", + "street": "23 Cinema Dr Ste C" + }, + { + "id": "5fcdd943-951a-44ea-8b85-991d5693e870", + "name": "Scamp Brewing Co", + "brewery_type": "micro", + "address_1": "402 16th St NE Ste 107", + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "Washington", + "postal_code": "98002-1600", + "country": "United States", + "longitude": -122.224267, + "latitude": 47.321914, + "phone": null, + "website_url": "http://www.scampbrewing.com", + "state": "Washington", + "street": "402 16th St NE Ste 107" + }, + { + "id": "7f3deb67-f5c3-41d3-87fb-e7cfad259674", + "name": "Scantic River Brewery", + "brewery_type": "micro", + "address_1": "25 Mill Rd", + "address_2": null, + "address_3": null, + "city": "Hampden", + "state_province": "Massachusetts", + "postal_code": "01036-9624", + "country": "United States", + "longitude": -72.58331688, + "latitude": 42.04303611, + "phone": "4132049163", + "website_url": "http://www.scanticriverbrewery.com", + "state": "Massachusetts", + "street": "25 Mill Rd" + }, + { + "id": "e61be9b6-8317-4c42-b706-a01994423e8d", + "name": "Scarborough Harbour Brewing Co.", + "brewery_type": "micro", + "address_1": "21 Bird Opassage Parade", + "address_2": null, + "address_3": null, + "city": "Scarborough", + "state_province": "QLD", + "postal_code": "4020", + "country": "Australia", + "longitude": 153.1083159, + "latitude": -27.1949173, + "phone": "+61 1800 727 104", + "website_url": "https://www.scarboroughharbourbc.com.au/", + "state": "QLD", + "street": "21 Bird Opassage Parade" + }, + { + "id": "f4dfd9ef-1936-4d1a-b0b5-9358543a3ede", + "name": "Scarlet Lane Brewing Company LLC", + "brewery_type": "micro", + "address_1": "7724 Depot St", + "address_2": null, + "address_3": null, + "city": "McCordsville", + "state_province": "Indiana", + "postal_code": "46055-6173", + "country": "United States", + "longitude": -85.92438159, + "latitude": 39.89477286, + "phone": null, + "website_url": "http://www.scarletlanebrew.com", + "state": "Indiana", + "street": "7724 Depot St" + }, + { + "id": "2e2572a7-488b-410b-a5fd-63ec7988306f", + "name": "Scatter Creek Brewing", + "brewery_type": "closed", + "address_1": "237 Sussex Ave W", + "address_2": null, + "address_3": null, + "city": "Tenino", + "state_province": "Washington", + "postal_code": "98589-9360", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3602649463", + "website_url": "http://www.facebook.com/ScatterCreekBrewing/", + "state": "Washington", + "street": "237 Sussex Ave W" + }, + { + "id": "1f876d25-9192-45b7-a71f-3c184d4608e0", + "name": "Schilling Beer Co", + "brewery_type": "brewpub", + "address_1": "18 Mill St", + "address_2": null, + "address_3": null, + "city": "Littleton", + "state_province": "New Hampshire", + "postal_code": "03561-4000", + "country": "United States", + "longitude": -71.77281065, + "latitude": 44.30592045, + "phone": "6034444800", + "website_url": "http://www.schillingbeer.com", + "state": "New Hampshire", + "street": "18 Mill St" + }, + { + "id": "bd3648d3-4497-4f53-ac4f-c267a2c7f938", + "name": "SchillingBridge Winery & Microbrewery", + "brewery_type": "brewpub", + "address_1": "62193 710th Rd", + "address_2": null, + "address_3": null, + "city": "Pawnee City", + "state_province": "Nebraska", + "postal_code": "68420-3584", + "country": "United States", + "longitude": -96.163742, + "latitude": 40.115124, + "phone": "4028522400", + "website_url": "http://www.schillingbridgewinery.com", + "state": "Nebraska", + "street": "62193 710th Rd" + }, + { + "id": "eb82907e-7f0d-4453-b07e-4e00763e1cf6", + "name": "Schladminger Brauerei (Heineken)", + "brewery_type": "large", + "address_1": "Hammerfeldweg 163", + "address_2": null, + "address_3": null, + "city": "Schladming", + "state_province": "Steiermark", + "postal_code": "8970", + "country": "Austria", + "longitude": 13.68504923731, + "latitude": 47.39029733089, + "phone": "+433687225910", + "website_url": "https://www.schladmingerbier.at", + "state": "Steiermark", + "street": "Hammerfeldweg 163" + }, + { + "id": "e918f066-b632-4423-96cf-b46c3aa3cf47", + "name": "Schlafly Beer/The Saint Louis Brewery, LLC", + "brewery_type": "regional", + "address_1": "2100 Locust St", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63103-1616", + "country": "United States", + "longitude": -90.20969425, + "latitude": 38.63298865, + "phone": "3142412337", + "website_url": "http://www.schlafly.com", + "state": "Missouri", + "street": "2100 Locust St" + }, + { + "id": "e1cf911d-240b-4393-9a85-9b70efb965ca", + "name": "Schlafly Bottleworks", + "brewery_type": "regional", + "address_1": "1 Schlafly Plz", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63143-2454", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3142412337", + "website_url": "http://www.schlafly.com", + "state": "Missouri", + "street": "1 Schlafly Plz" + }, + { + "id": "c69231e2-6ff1-4d14-a940-02a8b551d03b", + "name": "Schlafly Bottleworks Maplewood", + "brewery_type": "regional", + "address_1": "7260 Southwest Ave", + "address_2": null, + "address_3": null, + "city": "Maplewood", + "state_province": "Missouri", + "postal_code": "63143", + "country": "United States", + "longitude": -90.314774, + "latitude": 38.613184, + "phone": "3142412337", + "website_url": "http://www.schlafly.com", + "state": "Missouri", + "street": "7260 Southwest Ave" + }, + { + "id": "c88759b6-88d6-4172-bed7-61dec61e50aa", + "name": "Schleppe Brauerei (Heineken)", + "brewery_type": "large", + "address_1": "Schleppe-Platz 1", + "address_2": null, + "address_3": null, + "city": "Klagenfurt am W�rthersee", + "state_province": "K�rnten", + "postal_code": "9020", + "country": "Austria", + "longitude": 14.286632028634, + "latitude": 46.641696659179, + "phone": "+4346342700", + "website_url": "http://www.schleppe.at", + "state": "K�rnten", + "street": "Schleppe-Platz 1" + }, + { + "id": "a239dc38-7483-4766-8ac7-5eace6440bf7", + "name": "Schmohz Brewery", + "brewery_type": "micro", + "address_1": "2600 Patterson Ave SE Ste 1", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49546-6394", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6169490860", + "website_url": "http://www.schmohz.com", + "state": "Michigan", + "street": "2600 Patterson Ave SE Ste 1" + }, + { + "id": "a653b55e-ebee-4ec6-9fa2-c83bf8e28ad6", + "name": "Schnitz Brewery", + "brewery_type": "brewpub", + "address_1": "2031 Newton St", + "address_2": null, + "address_3": null, + "city": "Jasper", + "state_province": "Indiana", + "postal_code": "47546-1600", + "country": "United States", + "longitude": -86.937703, + "latitude": 38.405985, + "phone": "8128482739", + "website_url": "http://www.schnitzbrewery.com", + "state": "Indiana", + "street": "2031 Newton St" + }, + { + "id": "dcc836be-93ad-4da8-a51a-2bcb1d07cb94", + "name": "Scholb Premium Ales", + "brewery_type": "micro", + "address_1": "2964 Columbia St", + "address_2": null, + "address_3": null, + "city": "Torrance", + "state_province": "California", + "postal_code": "90503-3806", + "country": "United States", + "longitude": -118.339288, + "latitude": 33.8431475, + "phone": "4243507303", + "website_url": "http://www.drinkscholb.com", + "state": "California", + "street": "2964 Columbia St" + }, + { + "id": "c8b87f2f-ce4a-4fee-affc-f8015b83ef9d", + "name": "Schooner Exact Brewing Co", + "brewery_type": "micro", + "address_1": "3901 1st Ave S", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98134-2236", + "country": "United States", + "longitude": -122.3354879, + "latitude": 47.5678008, + "phone": "2064329734", + "website_url": null, + "state": "Washington", + "street": "3901 1st Ave S" + }, + { + "id": "1331451d-a64f-49f8-adc1-ea7aac9cf68a", + "name": "Schram Vineyards Winery & Brewery", + "brewery_type": "micro", + "address_1": "8785 Airport Rd", + "address_2": null, + "address_3": null, + "city": "Waconia", + "state_province": "Minnesota", + "postal_code": "55387-9634", + "country": "United States", + "longitude": -93.74364727, + "latitude": 44.84415744, + "phone": "9524425105", + "website_url": "http://SchramVineyards.com", + "state": "Minnesota", + "street": "8785 Airport Rd" + }, + { + "id": "a66c4f44-cf09-494e-90db-e427ef72d578", + "name": "Schubros Brewery", + "brewery_type": "closed", + "address_1": "12893 Alcosta Blvd Ste N", + "address_2": null, + "address_3": null, + "city": "San Ramon", + "state_province": "California", + "postal_code": "94583-1305", + "country": "United States", + "longitude": -121.9631014, + "latitude": 37.7790836, + "phone": "9253270700", + "website_url": "http://www.schubros.com", + "state": "California", + "street": "12893 Alcosta Blvd Ste N" + }, + { + "id": "350717f8-b847-46ff-b577-8599466f7fb6", + "name": "Schulz Brau Brewing Company", + "brewery_type": "micro", + "address_1": "126 Bernard Ave", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37917-7116", + "country": "United States", + "longitude": -83.9273236, + "latitude": 35.97675726, + "phone": "8002459764", + "website_url": "http://www.schulzbraubrewing.com", + "state": "Tennessee", + "street": "126 Bernard Ave" + }, + { + "id": "4c8dff75-fa8c-41ce-9999-1f063b59addb", + "name": "Schwechater Brauerei (Heineken)", + "brewery_type": "large", + "address_1": "Mautner-Markhof-Stra�e 11", + "address_2": null, + "address_3": null, + "city": "Schwechat", + "state_province": "Nieder�sterreich", + "postal_code": "2320", + "country": "Austria", + "longitude": 16.467172715971, + "latitude": 48.144923584392, + "phone": "+431701400", + "website_url": "https://www.schwechater.at", + "state": "Nieder�sterreich", + "street": "Mautner-Markhof-Stra�e 11" + }, + { + "id": "71ded1fd-3d39-42df-b7e3-15aa83ab2d88", + "name": "Science", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85020-5620", + "country": "United States", + "longitude": -112.0773456, + "latitude": 33.4485866, + "phone": null, + "website_url": null, + "state": "Arizona", + "street": null + }, + { + "id": "e0cef7d4-acb0-4097-ac31-a54ea15c5ea6", + "name": "Scissortail Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Bartlesville", + "state_province": "Oklahoma", + "postal_code": "74003-7154", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9186949948", + "website_url": "http://www.scissortailbrew.com", + "state": "Oklahoma", + "street": null + }, + { + "id": "f58d5583-7c68-4fb8-a080-54cfcec66cd7", + "name": "Scofflaw Brewing Co", + "brewery_type": "micro", + "address_1": "1738 Macarthur Blvd NW", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30318-2022", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4049153392", + "website_url": "http://www.scofflawbeer.com", + "state": "Georgia", + "street": "1738 Macarthur Blvd NW" + }, + { + "id": "1d66e2c7-e688-4e8c-9892-cb55efcfd9ab", + "name": "Sconnie Beverage", + "brewery_type": "contract", + "address_1": "1403 N SUMMIT AVE ", + "address_2": null, + "address_3": null, + "city": "Oconomowoc", + "state_province": "Wisconsin", + "postal_code": "53066", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6085563112", + "website_url": "http://www.sconniebeer.com", + "state": "Wisconsin", + "street": "1403 N SUMMIT AVE " + }, + { + "id": "dbe83f45-6248-4232-bac6-8ade9979c56e", + "name": "Scorched Earth Brewing Co.", + "brewery_type": "micro", + "address_1": "203 Berg St", + "address_2": null, + "address_3": null, + "city": "Algonquin", + "state_province": "Illinois", + "postal_code": "60102-3537", + "country": "United States", + "longitude": -88.3039697, + "latitude": 42.17091094, + "phone": "2242098472", + "website_url": "http://scorchedearthbrewing.com", + "state": "Illinois", + "street": "203 Berg St" + }, + { + "id": "068a0a40-a868-4525-9b1f-c895586877aa", + "name": "Scorpion Brewing", + "brewery_type": "micro", + "address_1": "929 Skinners Turn Rd, Suite 100", + "address_2": null, + "address_3": null, + "city": "Owings", + "state_province": "Maryland", + "postal_code": "20736", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7033072400", + "website_url": "http://www.scorpionbrewing.com", + "state": "Maryland", + "street": "929 Skinners Turn Rd, Suite 100" + }, + { + "id": "f15270cc-923b-439a-98de-03634439e101", + "name": "Scottish Bloodline Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lowell", + "state_province": "Massachusetts", + "postal_code": "01851-4638", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9784556163", + "website_url": "http://Www.scottishbloodlinebrewing.com", + "state": "Massachusetts", + "street": null + }, + { + "id": "71b905fe-e308-47aa-a165-0c9f2c658b78", + "name": "Scottsdale Beer Company", + "brewery_type": "brewpub", + "address_1": "8608 E Shea Blvd", + "address_2": null, + "address_3": null, + "city": "Scottsdale", + "state_province": "Arizona", + "postal_code": "85260-6614", + "country": "United States", + "longitude": -111.8951852, + "latitude": 33.5828595, + "phone": "4802191844", + "website_url": "http://www.scottsdalebeercompany.com", + "state": "Arizona", + "street": "8608 E Shea Blvd" + }, + { + "id": "07ef764b-6b3d-458b-b39e-7b352b36dd42", + "name": "Scotty's Bierwerks", + "brewery_type": "micro", + "address_1": "901 E Industrial Cir Unit 1-3", + "address_2": null, + "address_3": null, + "city": "Cape Coral", + "state_province": "Florida", + "postal_code": "33909-7446", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2398885482", + "website_url": "http://www.facebook.com/scottysbierwerks", + "state": "Florida", + "street": "901 E Industrial Cir Unit 1-3" + }, + { + "id": "97776b9a-6d25-4cb8-8574-f4a2c3d3ad0d", + "name": "Scout Beer", + "brewery_type": "micro", + "address_1": "1516 SE 10th Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97214-3585", + "country": "United States", + "longitude": -122.6555905, + "latitude": 45.51201892, + "phone": "5032064735", + "website_url": "http://www.scoutpdx.com", + "state": "Oregon", + "street": "1516 SE 10th Ave" + }, + { + "id": "044daf89-a298-426b-8193-0d8e09ede364", + "name": "Scrappy Punk Brewing", + "brewery_type": "micro", + "address_1": "9029A 112th Dr SE", + "address_2": null, + "address_3": null, + "city": "Snohomish", + "state_province": "Washington", + "postal_code": "98290-", + "country": "United States", + "longitude": -122.0801049, + "latitude": 47.91365567, + "phone": "5038101655", + "website_url": "http://www.facebook.com/scrappypunkbrew", + "state": "Washington", + "street": "9029A 112th Dr SE" + }, + { + "id": "6242defc-11ab-46ad-a435-eddc69d58756", + "name": "Scratch Brewing Company", + "brewery_type": "brewpub", + "address_1": "264 Thompson Rd", + "address_2": null, + "address_3": null, + "city": "Ava", + "state_province": "Illinois", + "postal_code": "62907-2658", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6184261415", + "website_url": "http://www.scratchbeer.com", + "state": "Illinois", + "street": "264 Thompson Rd" + }, + { + "id": "cb1ffe91-e2d8-44fc-81e3-1e8a742a7843", + "name": "Scratchtown Brewing Company", + "brewery_type": "micro", + "address_1": "141 S 16th St", + "address_2": null, + "address_3": null, + "city": "Ord", + "state_province": "Nebraska", + "postal_code": "68862-1415", + "country": "United States", + "longitude": -98.92940309, + "latitude": 41.60253006, + "phone": "3087285050", + "website_url": "http://www.scratchtownbrewingcompany.com", + "state": "Nebraska", + "street": "141 S 16th St" + }, + { + "id": "d5fb9c48-3b06-4de5-8074-cd11808cac23", + "name": "Screamin Hill Brewery", + "brewery_type": "micro", + "address_1": "83 Emleys Hill Rd", + "address_2": null, + "address_3": null, + "city": "Cream Ridge", + "state_province": "New Jersey", + "postal_code": "08514-1617", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.screaminhill.com", + "state": "New Jersey", + "street": "83 Emleys Hill Rd" + }, + { + "id": "f0feae2a-8472-4d11-bceb-c29b4bbeffa4", + "name": "Screech Owl Brewing", + "brewery_type": "micro", + "address_1": "2323 Ralph Livengood Rd", + "address_2": null, + "address_3": null, + "city": "Bruceton Mills", + "state_province": "West Virginia", + "postal_code": "26525-5889", + "country": "United States", + "longitude": -79.5659678, + "latitude": 39.5887952, + "phone": "3043794777", + "website_url": "http://www.screechowlbrewing.com", + "state": "West Virginia", + "street": "2323 Ralph Livengood Rd" + }, + { + "id": "30d98f8f-0014-4fd4-9b6e-fcac439bc151", + "name": "Scriptown Brewing Company", + "brewery_type": "micro", + "address_1": "3922 Farnam St Blackstone District", + "address_2": null, + "address_3": null, + "city": "Omaha", + "state_province": "Nebraska", + "postal_code": "68131-3014", + "country": "United States", + "longitude": -95.972931, + "latitude": 41.257977, + "phone": "4029910506", + "website_url": "http://www.scriptownbrewing.com", + "state": "Nebraska", + "street": "3922 Farnam St Blackstone District" + }, + { + "id": "1ed447e0-fcb5-4026-bc88-2c70814b52f1", + "name": "Scuttlebutt Brewing Co", + "brewery_type": "micro", + "address_1": "3314 Cedar St", + "address_2": null, + "address_3": null, + "city": "Everett", + "state_province": "Washington", + "postal_code": "98201-4518", + "country": "United States", + "longitude": -122.1943218, + "latitude": 47.9736304, + "phone": "4252579316", + "website_url": "http://www.scuttlebuttbrewing.com", + "state": "Washington", + "street": "3314 Cedar St" + }, + { + "id": "189df38b-d6a6-40c0-917e-5b172be8d859", + "name": "Sea Dog Brewing", + "brewery_type": "micro", + "address_1": "1 Main St", + "address_2": null, + "address_3": null, + "city": "Camden", + "state_province": "Maine", + "postal_code": "04843-1703", + "country": "United States", + "longitude": -69.064576, + "latitude": 44.209809, + "phone": null, + "website_url": "http://www.seadogbrewing.com", + "state": "Maine", + "street": "1 Main St" + }, + { + "id": "a573715c-9468-4d3f-b90c-4c5754e87531", + "name": "Sea Dog Brewing Co", + "brewery_type": "brewpub", + "address_1": "1976 White Mountain Hwy #9", + "address_2": null, + "address_3": null, + "city": "Conway", + "state_province": "New Hampshire", + "postal_code": "03860", + "country": "United States", + "longitude": -71.1217669, + "latitude": 44.0333227, + "phone": "6033560590", + "website_url": null, + "state": "New Hampshire", + "street": "1976 White Mountain Hwy #9" + }, + { + "id": "d6accc58-89f9-43fd-bb06-e87a48ed9f2c", + "name": "Sea Dog Brewing Co - Bangor", + "brewery_type": "brewpub", + "address_1": "26 Front St", + "address_2": null, + "address_3": null, + "city": "Bangor", + "state_province": "Maine", + "postal_code": "04401-6418", + "country": "United States", + "longitude": -68.770233, + "latitude": 44.7966948, + "phone": "2079478009", + "website_url": "http://www.seadogbrewing.com", + "state": "Maine", + "street": "26 Front St" + }, + { + "id": "bf3c0dbf-53cf-40d9-906a-baf2a57bc0a6", + "name": "Sea Dog Brewing Co - Clearwater", + "brewery_type": "micro", + "address_1": "26200 US Highway 19 N", + "address_2": null, + "address_3": null, + "city": "Clearwater", + "state_province": "Florida", + "postal_code": "33761-3580", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7274664916", + "website_url": "http://www.seadogbrewing.com", + "state": "Florida", + "street": "26200 US Highway 19 N" + }, + { + "id": "85958926-717c-4fd4-a9b1-b57958058c21", + "name": "Sea Dog Brewing Co - S. Portland", + "brewery_type": "brewpub", + "address_1": "125 Western Ave", + "address_2": null, + "address_3": null, + "city": "S Portland", + "state_province": "Maine", + "postal_code": "04106-2413", + "country": "United States", + "longitude": -70.31903067, + "latitude": 43.63519195, + "phone": "2078717000", + "website_url": "http://www.seadogbrewing.com", + "state": "Maine", + "street": "125 Western Ave" + }, + { + "id": "f7602a9d-bf7e-4e26-8c22-4aff954ad271", + "name": "Sea Drift Ales and Lagers", + "brewery_type": "micro", + "address_1": "521 Commerce Dr", + "address_2": null, + "address_3": null, + "city": "Largo", + "state_province": "Florida", + "postal_code": "33770-1834", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7275847772", + "website_url": "http://www.barleymowbrewingco.com", + "state": "Florida", + "street": "521 Commerce Dr" + }, + { + "id": "4cc7d3b9-b003-4d1d-931d-63c4b7cecc24", + "name": "SeaBreeze Brewing Co", + "brewery_type": "micro", + "address_1": "9 Kalmia Road", + "address_2": null, + "address_3": null, + "city": "Bibra Lake", + "state_province": "WA", + "postal_code": "6163", + "country": "Australia", + "longitude": 115.8143269, + "latitude": -32.1125323, + "phone": "+61 466 061 101", + "website_url": "https://seabreezebrewingco.au/", + "state": "WA", + "street": "9 Kalmia Road" + }, + { + "id": "dde59fe8-b384-4d8e-aaae-9d839bfad135", + "name": "Seabright Brewery", + "brewery_type": "brewpub", + "address_1": "519 Seabright Ave Ste 107", + "address_2": null, + "address_3": null, + "city": "Santa Cruz", + "state_province": "California", + "postal_code": "95062-3482", + "country": "United States", + "longitude": -122.0083656, + "latitude": 36.96771277, + "phone": "8314262739", + "website_url": "http://www.seabrightbrewery.com", + "state": "California", + "street": "519 Seabright Ave Ste 107" + }, + { + "id": "dd5d5286-addb-4b10-86fd-4cc994d05850", + "name": "Sean Patrick's Pub", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "San Marcos", + "state_province": "Texas", + "postal_code": "78666-5590", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "cef54495-bcfb-4672-9335-78da5a59762c", + "name": "Seapine Brewing Company", + "brewery_type": "micro", + "address_1": "2959 Utah Ave S", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98134-1815", + "country": "United States", + "longitude": -122.3355003, + "latitude": 47.5760786, + "phone": "5309028110", + "website_url": "http://www.seapinebrewing.com", + "state": "Washington", + "street": "2959 Utah Ave S" + }, + { + "id": "e42de666-0123-4bb0-a9bd-7fb4617eae11", + "name": "Seaquake Brewing", + "brewery_type": "brewpub", + "address_1": "400 Front St", + "address_2": null, + "address_3": null, + "city": "Crescent City", + "state_province": "California", + "postal_code": "95531-4369", + "country": "United States", + "longitude": -124.200063, + "latitude": 41.749045, + "phone": "7074654444", + "website_url": "http://www.seaquakebrewing.com", + "state": "California", + "street": "400 Front St" + }, + { + "id": "0b81578c-acb4-4b15-b44d-3ea83bed8115", + "name": "Seaside Brewery", + "brewery_type": "brewpub", + "address_1": "851 Broadway St", + "address_2": null, + "address_3": null, + "city": "Seaside", + "state_province": "Oregon", + "postal_code": "97138-6823", + "country": "United States", + "longitude": -123.9223842, + "latitude": 45.99299261, + "phone": "5037175451", + "website_url": "http://www.seasidebrewery.com", + "state": "Oregon", + "street": "851 Broadway St" + }, + { + "id": "693d0204-ed8c-4c03-a842-f385ca0c8a2b", + "name": "Sebago Brewing Co", + "brewery_type": "micro", + "address_1": "48 Sanford Dr", + "address_2": null, + "address_3": null, + "city": "Gorham", + "state_province": "Maine", + "postal_code": "04038-2646", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Maine", + "street": "48 Sanford Dr" + }, + { + "id": "7a5a1362-fd09-4b1d-a98d-766ba4c069bd", + "name": "Sebago Brewing Co", + "brewery_type": "micro", + "address_1": "616 Main St", + "address_2": null, + "address_3": null, + "city": "Gorham", + "state_province": "Maine", + "postal_code": "04038", + "country": "United States", + "longitude": -70.39706723, + "latitude": 43.68956533, + "phone": "2078562537", + "website_url": "http://www.sebagobrewing.com", + "state": "Maine", + "street": "616 Main St" + }, + { + "id": "1337fe4b-0f7d-411f-9d19-05eba5370567", + "name": "Secatogue Brewing Co.", + "brewery_type": "micro", + "address_1": "375 Union Blvd", + "address_2": null, + "address_3": null, + "city": "West Islip", + "state_province": "New York", + "postal_code": "11795-3114", + "country": "United States", + "longitude": -73.30289019, + "latitude": 40.70717835, + "phone": "6318714270", + "website_url": "http://www.secatoguebrewing.com", + "state": "New York", + "street": "375 Union Blvd" + }, + { + "id": "0abde004-c1ab-451f-9cb0-f7b3cce45477", + "name": "Second Chance Beer Company", + "brewery_type": "micro", + "address_1": "15378 Ave of Science Ste 222", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92128-3451", + "country": "United States", + "longitude": -117.082033, + "latitude": 32.994888, + "phone": "8587056250", + "website_url": "http://www.secondchancebeer.com", + "state": "California", + "street": "15378 Ave of Science Ste 222" + }, + { + "id": "4d3e5abf-616d-49eb-87de-4a672d09511a", + "name": "Second District Brewing Co.", + "brewery_type": "brewpub", + "address_1": "1939 S. Bancroft St.", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19145", + "country": "United States", + "longitude": -75.17297324, + "latitude": 39.92679584, + "phone": "2155755900", + "website_url": "http://seconddistrictbrewing.com", + "state": "Pennsylvania", + "street": "1939 S. Bancroft St." + }, + { + "id": "96a8eaad-4862-447e-a4ab-8a2a38bddc12", + "name": "Second Line Brewing", + "brewery_type": "micro", + "address_1": "433 N Bernadotte St", + "address_2": null, + "address_3": null, + "city": "New Orleans", + "state_province": "Louisiana", + "postal_code": "70119-4311", + "country": "United States", + "longitude": -90.1056073, + "latitude": 29.9825676, + "phone": "5042488979", + "website_url": "http://www.secondlinebrewing.com", + "state": "Louisiana", + "street": "433 N Bernadotte St" + }, + { + "id": "4332bd29-a105-493e-807f-351ad41108b9", + "name": "Second Profession Brewing Company", + "brewery_type": "brewpub", + "address_1": "5846 NE Sandy Blvd", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97213-3436", + "country": "United States", + "longitude": -122.498321, + "latitude": 45.5499485, + "phone": "5032885882", + "website_url": "http://www.secondprofessionbrewing.com", + "state": "Oregon", + "street": "5846 NE Sandy Blvd" + }, + { + "id": "5101fa06-b65a-453d-9d94-d1163065633b", + "name": "Second Salem Brewing Company", + "brewery_type": "brewpub", + "address_1": "111 W Whitewater St", + "address_2": null, + "address_3": null, + "city": "Whitewater", + "state_province": "Wisconsin", + "postal_code": "53190-1935", + "country": "United States", + "longitude": -88.73175257, + "latitude": 42.8327499, + "phone": "2624732920", + "website_url": "http://www.secondsalem.com", + "state": "Wisconsin", + "street": "111 W Whitewater St" + }, + { + "id": "3441c0c8-b14d-4dea-8c3f-3034e2acc2b6", + "name": "Second Self Brewing", + "brewery_type": "micro", + "address_1": "1311 Logan Cir NW", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30318-2858", + "country": "United States", + "longitude": -84.43006194, + "latitude": 33.8055922, + "phone": "6789168035", + "website_url": "http://secondselfbeer.com", + "state": "Georgia", + "street": "1311 Logan Cir NW" + }, + { + "id": "755ca0d8-9aa3-4626-8e94-09000e39a0b9", + "name": "Second Son Brews", + "brewery_type": "micro", + "address_1": "12810 Road 38", + "address_2": null, + "address_3": null, + "city": "Madera", + "state_province": "California", + "postal_code": "93636-8671", + "country": "United States", + "longitude": -119.8580965, + "latitude": 36.93416059, + "phone": null, + "website_url": null, + "state": "California", + "street": "12810 Road 38" + }, + { + "id": "7607a45f-3839-41bf-9531-0af896826a2b", + "name": "Second State Brewing Company", + "brewery_type": "micro", + "address_1": "203 State St", + "address_2": null, + "address_3": null, + "city": "Cedar Falls", + "state_province": "Iowa", + "postal_code": "50613-3360", + "country": "United States", + "longitude": -92.4442681, + "latitude": 42.53674424, + "phone": "3192400692", + "website_url": null, + "state": "Iowa", + "street": "203 State St" + }, + { + "id": "332bd2d1-af79-415e-827d-2b6d3d7cd0d4", + "name": "Second Street Brewery", + "brewery_type": "brewpub", + "address_1": "1814 2nd St", + "address_2": null, + "address_3": null, + "city": "Santa Fe", + "state_province": "New Mexico", + "postal_code": "87505-3848", + "country": "United States", + "longitude": -105.9656754, + "latitude": 35.66300492, + "phone": "5059823030", + "website_url": "http://www.secondstreetbrewery.com", + "state": "New Mexico", + "street": "1814 2nd St" + }, + { + "id": "4b2a927f-b6ac-43ed-8bc5-42db70cc46ce", + "name": "Second Street Brewery - Rufina", + "brewery_type": "brewpub", + "address_1": "2920 Rufina St", + "address_2": null, + "address_3": null, + "city": "Santa Fe", + "state_province": "New Mexico", + "postal_code": "87507-2999", + "country": "United States", + "longitude": -105.9909993, + "latitude": 35.65875738, + "phone": "5059823030", + "website_url": "http://www.secondstreetbreweryrufina.com", + "state": "New Mexico", + "street": "2920 Rufina St" + }, + { + "id": "881330a0-bd06-4d83-b003-ae429a44b761", + "name": "Second Wind Brewing Company", + "brewery_type": "micro", + "address_1": "7 Howland St", + "address_2": null, + "address_3": null, + "city": "Plymouth", + "state_province": "Massachusetts", + "postal_code": "02360-3810", + "country": "United States", + "longitude": -70.6665478, + "latitude": 41.9585551, + "phone": "5085915915", + "website_url": "http://www.secondwindbrewing.com", + "state": "Massachusetts", + "street": "7 Howland St" + }, + { + "id": "53e129df-2d65-420c-94b4-0db516c97146", + "name": "Secret Trail Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "132 Meyers St Ste 120", + "address_2": null, + "address_3": null, + "city": "Chico", + "state_province": "California", + "postal_code": "95928-8002", + "country": "United States", + "longitude": -121.817279, + "latitude": 39.71460198, + "phone": "9167094820", + "website_url": "http://www.secrettrailbrewing.com", + "state": "California", + "street": "132 Meyers St Ste 120" + }, + { + "id": "6ac9a5f5-ba57-4e7a-ab50-5be232733a6f", + "name": "Sedgefield Brewery", + "brewery_type": "micro", + "address_1": "Scarab Village", + "address_2": "N2 Highway", + "address_3": null, + "city": "Sedgefield", + "state_province": "Western Cape", + "postal_code": "6573", + "country": "South Africa", + "longitude": 22.8225, + "latitude": -34.0084, + "phone": "+27 82 901 2029", + "website_url": "https://sedgefieldbrewery.co.za/", + "state": "Western Cape", + "street": "Scarab Village" + }, + { + "id": "09173c6a-63d6-435d-893a-d7fb2fff3f2d", + "name": "Sedona Beer Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sedona", + "state_province": "Arizona", + "postal_code": "86336-4170", + "country": "United States", + "longitude": -111.7929891, + "latitude": 34.8657757, + "phone": null, + "website_url": "http://www.sedonabeerco.com", + "state": "Arizona", + "street": null + }, + { + "id": "1df1b2b9-a0bd-40b2-8c24-72f365f5e901", + "name": "Seedstock Brewery", + "brewery_type": "micro", + "address_1": "3610 W Colfax Ave", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80204-1513", + "country": "United States", + "longitude": -105.0348519, + "latitude": 39.74025203, + "phone": "7204767831", + "website_url": "http://www.seedstockbrewery.com", + "state": "Colorado", + "street": "3610 W Colfax Ave" + }, + { + "id": "de2c04b3-1bbf-455f-af59-79beef102d73", + "name": "Seeker Brewing", + "brewery_type": "micro", + "address_1": "1 Industrial Road", + "address_2": "Shop 4", + "address_3": null, + "city": "Unanderra", + "state_province": "NSW", + "postal_code": "2526", + "country": "Australia", + "longitude": 150.8547965, + "latitude": -34.4643626, + "phone": "+61 435 020 318", + "website_url": "http://www.seekerbrewing.com/", + "state": "NSW", + "street": "1 Industrial Road" + }, + { + "id": "dccc67cc-2dce-407a-b18c-2d73f4aa08a0", + "name": "Seguin Brewing Company", + "brewery_type": "micro", + "address_1": "111 W Gonzales St", + "address_2": null, + "address_3": null, + "city": "Seguin", + "state_province": "Texas", + "postal_code": "78155-5630", + "country": "United States", + "longitude": -97.96528378, + "latitude": 29.56957082, + "phone": "2107713913", + "website_url": "http://www.seguinbrewing.com", + "state": "Texas", + "street": "111 W Gonzales St" + }, + { + "id": "f2b7097c-f5ee-48fd-ab4b-a554b17a21c0", + "name": "Seismic Brewing Co", + "brewery_type": "micro", + "address_1": "2932 Dutton Ave", + "address_2": null, + "address_3": null, + "city": "Santa Rosa", + "state_province": "California", + "postal_code": "95407-5711", + "country": "United States", + "longitude": -122.7236203, + "latitude": 38.4042275, + "phone": "7075445996", + "website_url": "http://www.seismicbrewingco.com/", + "state": "California", + "street": "2932 Dutton Ave" + }, + { + "id": "6e69a117-bb47-44d3-b3ac-12b07e5e7e1f", + "name": "Selins Grove Brewing Co", + "brewery_type": "brewpub", + "address_1": "119 N Market St", + "address_2": null, + "address_3": null, + "city": "Selinsgrove", + "state_province": "Pennsylvania", + "postal_code": "17870-1905", + "country": "United States", + "longitude": -76.86152979, + "latitude": 40.80056952, + "phone": "5703747308", + "website_url": "http://www.selinsgrovebrewing.com", + "state": "Pennsylvania", + "street": "119 N Market St" + }, + { + "id": "8555bc10-4f2e-4da7-b952-9adb87dae316", + "name": "Selkirk Abbey Brewing", + "brewery_type": "micro", + "address_1": "6180 E Seltice Way Ste 102", + "address_2": null, + "address_3": null, + "city": "Post Falls", + "state_province": "Idaho", + "postal_code": "83854-5052", + "country": "United States", + "longitude": -116.8684085, + "latitude": 47.70484371, + "phone": "2082924901", + "website_url": "http://www.selkirkabbey.com", + "state": "Idaho", + "street": "6180 E Seltice Way Ste 102" + }, + { + "id": "0d4ebb0f-c5a1-48c9-b1c6-09e9ef9a34bf", + "name": "Selwyn Nicholas Brewing Co.", + "brewery_type": "micro", + "address_1": "365 Woolcock Street", + "address_2": null, + "address_3": null, + "city": "Garbutt", + "state_province": "QLD", + "postal_code": "4814", + "country": "Australia", + "longitude": 146.7663469, + "latitude": -19.2682675, + "phone": null, + "website_url": "https://www.selwynnicholasbrewing.au/", + "state": "QLD", + "street": "365 Woolcock Street" + }, + { + "id": "ce82c6cb-f7ab-416a-882f-2ef0b20fb779", + "name": "Seminar Brewing", + "brewery_type": "brewpub", + "address_1": "551 W Lucas St", + "address_2": null, + "address_3": null, + "city": "Florence", + "state_province": "South Carolina", + "postal_code": "29501-2817", + "country": "United States", + "longitude": -79.78837666, + "latitude": 34.2209957, + "phone": "8436659200", + "website_url": "http://seminarbrewing.com", + "state": "South Carolina", + "street": "551 W Lucas St" + }, + { + "id": "3c06c36d-4955-4728-9eba-a22c6bc5c83f", + "name": "Seneca Lake Brewing Company", + "brewery_type": "micro", + "address_1": "5430 NY-14", + "address_2": null, + "address_3": null, + "city": "Dundee", + "state_province": "New York", + "postal_code": "14837-8838", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6072168369", + "website_url": "http://www.senecalakebrewing.com", + "state": "New York", + "street": "5430 NY-14" + }, + { + "id": "10f41208-26ee-4d28-b3b1-978d3e8a2340", + "name": "Seneca Lodge Craft Brewing At Seneca Lodge", + "brewery_type": "brewpub", + "address_1": "3600 Walnut Rd", + "address_2": null, + "address_3": null, + "city": "Watkins Glen", + "state_province": "New York", + "postal_code": "14891-0272", + "country": "United States", + "longitude": -76.873392, + "latitude": 42.369461, + "phone": "6075352014", + "website_url": "http://www.senecalodge.com", + "state": "New York", + "street": "3600 Walnut Rd" + }, + { + "id": "deec4c7a-9677-436c-ad1e-b54d6a413955", + "name": "Seneca Street Brew Pub", + "brewery_type": "brewpub", + "address_1": "315 E Seneca St Ste 1", + "address_2": null, + "address_3": null, + "city": "Manlius", + "state_province": "New York", + "postal_code": "13104-1860", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3156826968", + "website_url": "http://www.senecastreetbrewpub.com", + "state": "New York", + "street": "315 E Seneca St Ste 1" + }, + { + "id": "01360f98-4f2b-4893-bdb7-d44f75e152a6", + "name": "Sentinel Peak Brewing Company", + "brewery_type": "brewpub", + "address_1": "4746 E Grant Rd", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85712-2703", + "country": "United States", + "longitude": -110.8552229, + "latitude": 32.2505857, + "phone": "5207779456", + "website_url": "http://www.sentinelpeakbrewing.com", + "state": "Arizona", + "street": "4746 E Grant Rd" + }, + { + "id": "ce60ac64-f87c-4687-a362-36245e1fff8e", + "name": "Separatist Beer Project", + "brewery_type": "proprietor", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Emmaus", + "state_province": "Pennsylvania", + "postal_code": "18049", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6103309114", + "website_url": "http://www.soleales.com", + "state": "Pennsylvania", + "street": null + }, + { + "id": "7fe4eeb2-a179-4792-a8ba-e1bb7429a6fc", + "name": "Sequoia Brewing Co - Tower District", + "brewery_type": "brewpub", + "address_1": "777 E Olive Ave", + "address_2": null, + "address_3": null, + "city": "Fresno", + "state_province": "California", + "postal_code": "93728-3350", + "country": "United States", + "longitude": -119.8019622, + "latitude": 36.75774408, + "phone": "5592645521", + "website_url": "http://www.sequoiabrewing.com", + "state": "California", + "street": "777 E Olive Ave" + }, + { + "id": "ba05f051-e0b9-4d33-94a8-a578652175b7", + "name": "Serda Brewing Company", + "brewery_type": "micro", + "address_1": "600 Government St", + "address_2": null, + "address_3": null, + "city": "Mobile", + "state_province": "Alabama", + "postal_code": "36602-1720", + "country": "United States", + "longitude": -88.04938713, + "latitude": 30.6879563, + "phone": "2519299349", + "website_url": "http://www.serdabrewing.com", + "state": "Alabama", + "street": "600 Government St" + }, + { + "id": "b5cfc899-2612-496e-9f79-62915618b2c9", + "name": "Serious Brewing Co.", + "brewery_type": "micro", + "address_1": "116 Caverns Rd", + "address_2": null, + "address_3": null, + "city": "Howes Cave", + "state_province": "New York", + "postal_code": "12092", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5188264050", + "website_url": null, + "state": "New York", + "street": "116 Caverns Rd" + }, + { + "id": "4514373e-a5e0-4974-900e-f92e50d73ca0", + "name": "Service Brewing Company", + "brewery_type": "micro", + "address_1": "574 Indian St", + "address_2": null, + "address_3": null, + "city": "Savannah", + "state_province": "Georgia", + "postal_code": "31401-1121", + "country": "United States", + "longitude": -81.0982783, + "latitude": 32.0839717, + "phone": "8452425355", + "website_url": "http://www.servicebrewing.com", + "state": "Georgia", + "street": "574 Indian St" + }, + { + "id": "7964c7f7-9a89-4360-867d-d6e828c67106", + "name": "Seven Arrows Brewing Co.", + "brewery_type": "micro", + "address_1": "2508 Jefferson Hwy Ste 1", + "address_2": null, + "address_3": null, + "city": "Waynesboro", + "state_province": "Virginia", + "postal_code": "22980-6500", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5402216968", + "website_url": "http://www.sevenarrowsbrewing.com", + "state": "Virginia", + "street": "2508 Jefferson Hwy Ste 1" + }, + { + "id": "4423eef2-22e4-43f8-945b-37dfe91ae63d", + "name": "Seven Brides Brewery", + "brewery_type": "closed", + "address_1": "990 North First Street", + "address_2": null, + "address_3": null, + "city": "Silverton", + "state_province": "Oregon", + "postal_code": "97381", + "country": "United States", + "longitude": -122.7845824, + "latitude": 45.01410457, + "phone": "5038744677", + "website_url": "http://www.sevenbridesbrewing.com", + "state": "Oregon", + "street": "990 North First Street" + }, + { + "id": "8a7ac609-cceb-47f1-8221-8ac257e3caa1", + "name": "Seven Bridges Grille and Brewery", + "brewery_type": "brewpub", + "address_1": "9735 Gate Pkwy N", + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Florida", + "postal_code": "32246-8221", + "country": "United States", + "longitude": -81.55312193, + "latitude": 30.26129582, + "phone": "9049971999", + "website_url": "http://www.7bridgesgrille.com", + "state": "Florida", + "street": "9735 Gate Pkwy N" + }, + { + "id": "625c43c9-7a7d-4434-abb2-fac1028b28ae", + "name": "Seven Jars Products", + "brewery_type": "micro", + "address_1": "6148-B Brookshire Blvd", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28216", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7049190278", + "website_url": "http://sevenjars.com/brewery", + "state": "North Carolina", + "street": "6148-B Brookshire Blvd" + }, + { + "id": "d6165094-2ace-4fc4-bdef-0781065d8056", + "name": "Seven Mile Brewing Co.", + "brewery_type": "micro", + "address_1": "188-202 Southern Cross Drive", + "address_2": null, + "address_3": null, + "city": "Ballina", + "state_province": "NSW", + "postal_code": "2478", + "country": "Australia", + "longitude": 153.5550642, + "latitude": -28.8388139, + "phone": "+61 493 345 537", + "website_url": "http://www.sevenmilebrewing.com.au/", + "state": "NSW", + "street": "188-202 Southern Cross Drive" + }, + { + "id": "6a4851e9-4d90-4cdd-a96b-0b794f93e887", + "name": "Seven Sirens Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Bethlehem", + "state_province": "Pennsylvania", + "postal_code": "18015", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4842396544", + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "b1f636c4-b1b6-44dc-9ea5-637da406d097", + "name": "Seven Stills", + "brewery_type": "micro", + "address_1": "100 Hooper St Ste. 4", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94107", + "country": "United States", + "longitude": -122.3991969, + "latitude": 37.76881492, + "phone": "4157570178", + "website_url": "http://www.sevenstillsofsf.com", + "state": "California", + "street": "100 Hooper St Ste. 4" + }, + { + "id": "cf69d73b-a98d-456a-b50d-e65e88134e20", + "name": "Seven Stills", + "brewery_type": "micro", + "address_1": "3645 Lawton St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94112", + "country": "United States", + "longitude": -122.5022326, + "latitude": 37.75694059, + "phone": "4153403654", + "website_url": "http://www.sevenstillsofsf.com", + "state": "California", + "street": "3645 Lawton St" + }, + { + "id": "efd1757f-4c9f-4bcc-a4b1-0b8dc5ae0326", + "name": "Sevens Brew Pub", + "brewery_type": "brewpub", + "address_1": "5857 Route 96", + "address_2": null, + "address_3": null, + "city": "Farmington", + "state_province": "New York", + "postal_code": "14425", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5959243232", + "website_url": "http://www.fingerlakesgaming.com", + "state": "New York", + "street": "5857 Route 96" + }, + { + "id": "81491cd1-e954-4409-bc3c-b5a7b2dc7c3d", + "name": "Seventh Son Brewing Co", + "brewery_type": "micro", + "address_1": "1101 N 4th St", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43201-3683", + "country": "United States", + "longitude": -83.0019404, + "latitude": 39.985351, + "phone": "6144212337", + "website_url": "http://www.seventhsonbrewing.com", + "state": "Ohio", + "street": "1101 N 4th St" + }, + { + "id": "524df279-0a14-4e66-958e-f67a1e172731", + "name": "Severance Brewing Company", + "brewery_type": "micro", + "address_1": "701 N Phillips Ave", + "address_2": null, + "address_3": null, + "city": "Sioux Falls", + "state_province": "South Dakota", + "postal_code": "57104-1623", + "country": "United States", + "longitude": -96.72724272, + "latitude": 43.5560742, + "phone": "6052715480", + "website_url": "http://severancebeer.com/", + "state": "South Dakota", + "street": "701 N Phillips Ave" + }, + { + "id": "b9f88dc8-a3b6-40b5-9875-b16095b2993c", + "name": "Sew Hop'd Brewery LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Huntley", + "state_province": "Illinois", + "postal_code": "60142", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8476694501", + "website_url": "http://www.sewhopd.com", + "state": "Illinois", + "street": null + }, + { + "id": "b54fad5f-9951-461c-b393-e1993698a69b", + "name": "Seward Brewing", + "brewery_type": "brewpub", + "address_1": "139 4th Ave", + "address_2": null, + "address_3": null, + "city": "Seward", + "state_province": "Alaska", + "postal_code": "99664", + "country": "United States", + "longitude": -149.440886, + "latitude": 60.101258, + "phone": "9074220337", + "website_url": "http://www.sewardbrewingcompany.com", + "state": "Alaska", + "street": "139 4th Ave" + }, + { + "id": "a5252773-86c6-4b69-a224-8c9e07598c75", + "name": "SFLBrewery In Planning", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Weston", + "state_province": "Florida", + "postal_code": "33326-4041", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "83df9a40-1c9b-4854-a84c-86bd9c32f8b2", + "name": "Shacketts Brewing Company", + "brewery_type": "micro", + "address_1": "26 Central Square", + "address_2": null, + "address_3": null, + "city": "Bristol", + "state_province": "New Hampshire", + "postal_code": "03222", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6032177730", + "website_url": null, + "state": "New Hampshire", + "street": "26 Central Square" + }, + { + "id": "bcd9f90c-78cd-4fec-9ff9-608447cf12a9", + "name": "Shackleton Brewing Company", + "brewery_type": "micro", + "address_1": "23 Transvaal Street", + "address_2": "Paarden Eiland", + "address_3": null, + "city": "Cape Town", + "state_province": "Western Cape", + "postal_code": "7405", + "country": "South Africa", + "longitude": 18.4761, + "latitude": -33.9077, + "phone": "+27 71 887 2363", + "website_url": "https://shackletonbrewing.co.za/", + "state": "Western Cape", + "street": "23 Transvaal Street" + }, + { + "id": "02585410-3bdb-41d1-96b9-e44ee53be372", + "name": "Shade Tree Brewing", + "brewery_type": "micro", + "address_1": "19305 Indian Summer Rd", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97702", + "country": "United States", + "longitude": -121.3588559, + "latitude": 43.99269969, + "phone": "5413833730", + "website_url": "http://www.shadetreebrewing.com", + "state": "Oregon", + "street": "19305 Indian Summer Rd" + }, + { + "id": "9d2a7779-6e21-4052-8c9a-a7a14fe70af1", + "name": "Shade Tree Saloon & Grill", + "brewery_type": "brewpub", + "address_1": "13530 Hwy 281 N", + "address_2": null, + "address_3": null, + "city": "Spring Branch", + "state_province": "Texas", + "postal_code": "78070", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8308855550", + "website_url": "http://www.shadetreesaloon.com", + "state": "Texas", + "street": "13530 Hwy 281 N" + }, + { + "id": "23a4fe98-b79e-4031-977a-29a4776e59a2", + "name": "Shades Brewery", + "brewery_type": "micro", + "address_1": "154 W Utopia Ave", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84115-2507", + "country": "United States", + "longitude": -111.895566, + "latitude": 40.7240264, + "phone": "4352003009", + "website_url": "https://www.shadesbrewing.beer", + "state": "Utah", + "street": "154 W Utopia Ave" + }, + { + "id": "ecc1dfba-f441-4798-9749-e7bbdae86b6e", + "name": "Shadow Puppet Brewing Company", + "brewery_type": "brewpub", + "address_1": "4771 Arroyo Vis Ste B", + "address_2": null, + "address_3": null, + "city": "Livermore", + "state_province": "California", + "postal_code": "94551-4847", + "country": "United States", + "longitude": -121.7392687, + "latitude": 37.69918669, + "phone": "9254536498", + "website_url": "http://www.shadowpuppetbrewing.com", + "state": "California", + "street": "4771 Arroyo Vis Ste B" + }, + { + "id": "a9b450fc-d3d8-4437-9b51-1f945243f882", + "name": "ShadowView Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Woodstock", + "state_province": "Illinois", + "postal_code": "60098-6911", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8477779323", + "website_url": "http://www.shadowviewbrewing.com", + "state": "Illinois", + "street": null + }, + { + "id": "20463428-1d27-4391-83f7-3fd7b838c3c0", + "name": "Shady Oak Barrel House", + "brewery_type": "micro", + "address_1": "420 1st St", + "address_2": null, + "address_3": null, + "city": "Santa Rosa", + "state_province": "California", + "postal_code": "95401-6339", + "country": "United States", + "longitude": -122.7154726, + "latitude": 38.43709396, + "phone": "7075958958", + "website_url": "http://shadyoakbarrelhouse.com", + "state": "California", + "street": "420 1st St" + }, + { + "id": "9ec301b9-5b19-4277-9c8c-4b59576ae1c9", + "name": "Shaidzon Beer Company, LLC", + "brewery_type": "micro", + "address_1": "141 Fairgrounds Rd.", + "address_2": null, + "address_3": null, + "city": "West Kingston", + "state_province": "Rhode Island", + "postal_code": "02892", + "country": "United States", + "longitude": -71.56763232, + "latitude": 41.48127985, + "phone": "4013148730", + "website_url": "http://www.shaidzonbeerco.com", + "state": "Rhode Island", + "street": "141 Fairgrounds Rd." + }, + { + "id": "820ff9c7-8083-4573-9f36-e57f7bece0f7", + "name": "Shakopee Brewhall", + "brewery_type": "micro", + "address_1": "124 1st Ave E", + "address_2": null, + "address_3": null, + "city": "Shakopee", + "state_province": "Minnesota", + "postal_code": "55379-1310", + "country": "United States", + "longitude": -93.5258437, + "latitude": 44.7985452, + "phone": "9525824292", + "website_url": "http://www.shakopeebrewhall.com", + "state": "Minnesota", + "street": "124 1st Ave E" + }, + { + "id": "a4459eb6-9f7b-45b2-b060-2aed5d7169d4", + "name": "Shale Brewing Co", + "brewery_type": "micro", + "address_1": "7253 Whipple Ave NW", + "address_2": null, + "address_3": null, + "city": "North Canton", + "state_province": "Ohio", + "postal_code": "44720", + "country": "United States", + "longitude": -81.422424, + "latitude": 40.866706, + "phone": "3307768812", + "website_url": "http://www.shalebrewing.com", + "state": "Ohio", + "street": "7253 Whipple Ave NW" + }, + { + "id": "88ae9756-2243-4da3-80b9-caec4d571d09", + "name": "Shambles Brewery", + "brewery_type": "micro", + "address_1": "222 Elizabeth Street", + "address_2": null, + "address_3": null, + "city": "Hobart", + "state_province": "TAS", + "postal_code": "7000", + "country": "Australia", + "longitude": 147.3203275, + "latitude": -42.8783854, + "phone": "+61 3 6289 5639", + "website_url": "https://shamblesbrewery.com.au/", + "state": "TAS", + "street": "222 Elizabeth Street" + }, + { + "id": "ed8f70f3-466a-49c4-a4f3-ec51ee6093a0", + "name": "Shamrock Brewing Company", + "brewery_type": "brewpub", + "address_1": "108 W 3rd St", + "address_2": null, + "address_3": null, + "city": "Pueblo", + "state_province": "Colorado", + "postal_code": "81003-3225", + "country": "United States", + "longitude": -104.6078644, + "latitude": 38.26965302, + "phone": "7195429974", + "website_url": "http://www.shamrockbrewing.com", + "state": "Colorado", + "street": "108 W 3rd St" + }, + { + "id": "17d0b9b5-8782-4f73-8ca5-d9fc1b1e2b13", + "name": "Shannon Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "818 N Main St", + "address_2": null, + "address_3": null, + "city": "Keller", + "state_province": "Texas", + "postal_code": "76248-3801", + "country": "United States", + "longitude": -97.25396446, + "latitude": 32.94797684, + "phone": "8173379892", + "website_url": "http://www.shannonbrewing.com", + "state": "Texas", + "street": "818 N Main St" + }, + { + "id": "add5d596-7b50-45f2-8b7b-0152e638124d", + "name": "Shanty Irish Brewing Company/Rooney's Irish Pub", + "brewery_type": "closed", + "address_1": "241 S Broadway St", + "address_2": null, + "address_3": null, + "city": "Santa Maria", + "state_province": "California", + "postal_code": "93455-4657", + "country": "United States", + "longitude": -120.4359806, + "latitude": 34.95220575, + "phone": "8059343777", + "website_url": "http://www.rooneysirishpub.net", + "state": "California", + "street": "241 S Broadway St" + }, + { + "id": "1d9847fa-918e-4962-8f11-20748380d85b", + "name": "Shanty Shack Brewing", + "brewery_type": "brewpub", + "address_1": "138 Fern St", + "address_2": null, + "address_3": null, + "city": "Santa Cruz", + "state_province": "California", + "postal_code": "95060-2118", + "country": "United States", + "longitude": -122.030853, + "latitude": 36.9859968, + "phone": "8313160800", + "website_url": "http://shantyshackbrewing.com", + "state": "California", + "street": "138 Fern St" + }, + { + "id": "0aebc4a0-b9a2-4162-aa14-dd3f311a510d", + "name": "Shapeshifter Brewing Co.", + "brewery_type": "micro", + "address_1": "54 Crittenden Road", + "address_2": "Unit 2", + "address_3": null, + "city": "Findon", + "state_province": "SA", + "postal_code": "5023", + "country": "Australia", + "longitude": 138.5425577, + "latitude": -34.9017714, + "phone": "+61 8 7444 5475", + "website_url": "http://www.shapeshifterbrewing.com.au/", + "state": "SA", + "street": "54 Crittenden Road" + }, + { + "id": "0c676482-5235-4212-b9fd-2fb977e56487", + "name": "Shattuck Brewery", + "brewery_type": "micro", + "address_1": "52106 Hwy 8", + "address_2": null, + "address_3": null, + "city": "Elk River", + "state_province": "Idaho", + "postal_code": "83827", + "country": "United States", + "longitude": -116.191962, + "latitude": 46.778848, + "phone": null, + "website_url": "http://www.shattuckbrewery.com", + "state": "Idaho", + "street": "52106 Hwy 8" + }, + { + "id": "6af2107d-649c-4dca-b2de-029a34638dae", + "name": "Shawnee Craft Brewery", + "brewery_type": "brewpub", + "address_1": "1 River Rd", + "address_2": null, + "address_3": null, + "city": "Shawnee on Delaware", + "state_province": "Pennsylvania", + "postal_code": "18356", + "country": "United States", + "longitude": -75.1107249, + "latitude": 41.0118539, + "phone": "5704244000", + "website_url": null, + "state": "Pennsylvania", + "street": "1 River Rd" + }, + { + "id": "a4b896e5-db07-4193-a28b-1ece5ce84e58", + "name": "Shebeen Brewing Company", + "brewery_type": "closed", + "address_1": "1 Wolcott Rd", + "address_2": null, + "address_3": null, + "city": "Wolcott", + "state_province": "Connecticut", + "postal_code": "06716-2611", + "country": "United States", + "longitude": -73.000062, + "latitude": 41.575855, + "phone": "2035142336", + "website_url": "http://www.shebeenbrewing.com", + "state": "Connecticut", + "street": "1 Wolcott Rd" + }, + { + "id": "3e1c4960-e463-448c-9e2c-e18950ba0cc3", + "name": "Shedshaker Brewing", + "brewery_type": "micro", + "address_1": "9 Walker Street", + "address_2": null, + "address_3": null, + "city": "Castlemaine", + "state_province": "VIC", + "postal_code": "3450", + "country": "Australia", + "longitude": 144.2147938, + "latitude": -37.0567335, + "phone": "+61 487 860 060", + "website_url": "https://shedshakerbrewing.com/", + "state": "VIC", + "street": "9 Walker Street" + }, + { + "id": "4c341d27-de9a-4840-8590-dd1b7d7e180f", + "name": "Sheep Mountain Brewery", + "brewery_type": "micro", + "address_1": "85 Meadow Plains Rd", + "address_2": null, + "address_3": null, + "city": "Laramie", + "state_province": "Wyoming", + "postal_code": "82070-8527", + "country": "United States", + "longitude": -106.00943837453, + "latitude": 41.271506208614, + "phone": "3076890220", + "website_url": null, + "state": "Wyoming", + "street": "85 Meadow Plains Rd" + }, + { + "id": "da2a220d-dd8f-455d-ba9e-ab8d512dbefd", + "name": "Sheepscot Valley Brewing Co", + "brewery_type": "micro", + "address_1": "74 Hollywood Blvd", + "address_2": null, + "address_3": null, + "city": "Whitefield", + "state_province": "Maine", + "postal_code": "04353-3729", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2075495530", + "website_url": "http://www.sheepscotbrewing.com", + "state": "Maine", + "street": "74 Hollywood Blvd" + }, + { + "id": "4d81fa09-4fd8-4fd5-817d-eff220156748", + "name": "Shelter Brewing", + "brewery_type": "micro", + "address_1": "11 Foreshore Parade", + "address_2": null, + "address_3": null, + "city": "Busselton", + "state_province": "WA", + "postal_code": "6280", + "country": "Australia", + "longitude": 115.3451934, + "latitude": -33.6451289, + "phone": "+61 8 9754 4444", + "website_url": "https://www.shelterbrewing.com.au/", + "state": "WA", + "street": "11 Foreshore Parade" + }, + { + "id": "b0915552-89e6-437d-ad2e-c9141c3b0ecb", + "name": "Shelter Island Craft Brewery", + "brewery_type": "brewpub", + "address_1": "55 N Ferry Rd", + "address_2": null, + "address_3": null, + "city": "Shelter Island", + "state_province": "New York", + "postal_code": "11964", + "country": "United States", + "longitude": -72.33987616, + "latitude": 41.0714822, + "phone": "6317495977", + "website_url": "http://www.home.shelterislandcraftbrewery.com", + "state": "New York", + "street": "55 N Ferry Rd" + }, + { + "id": "92dd6146-0d7b-489b-8607-76db257492e8", + "name": "Shenandoah Valley Brewing Company", + "brewery_type": "micro", + "address_1": "19 Middlebrook Ave", + "address_2": null, + "address_3": null, + "city": "Staunton", + "state_province": "Virginia", + "postal_code": "24401-4259", + "country": "United States", + "longitude": -79.07377931, + "latitude": 38.1472346, + "phone": "5408872337", + "website_url": "http://www.shenvalbrew.com", + "state": "Virginia", + "street": "19 Middlebrook Ave" + }, + { + "id": "cf8735c7-fb4d-436d-9248-2116b8ed4dce", + "name": "Shene Estate Distillery", + "brewery_type": "micro", + "address_1": "76 Shene Road", + "address_2": null, + "address_3": null, + "city": "Pontville", + "state_province": "TAS", + "postal_code": "7030", + "country": "Australia", + "longitude": 147.2622058, + "latitude": -42.6680507, + "phone": "+61 432 480 250", + "website_url": "http://www.shene.com.au/", + "state": "TAS", + "street": "76 Shene Road" + }, + { + "id": "6772586a-99de-4990-a836-88a5e7c30a5e", + "name": "Shepparton Brewery", + "brewery_type": "micro", + "address_1": "15 Edward Street", + "address_2": null, + "address_3": null, + "city": "Shepparton", + "state_province": "VIC", + "postal_code": "3630", + "country": "Australia", + "longitude": 145.4032299, + "latitude": -36.378185, + "phone": "+61 3 5821 9776", + "website_url": "http://www.sheppartonbrewery.com.au/", + "state": "VIC", + "street": "15 Edward Street" + }, + { + "id": "0fd5b8e5-1941-4bb6-95da-9e2ed09dd6a8", + "name": "Sheridan Brewing company", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sheridan", + "state_province": "Wyoming", + "postal_code": "82801", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3076735333", + "website_url": "https://sheridanbeer.com", + "state": "Wyoming", + "street": null + }, + { + "id": "ce3c744d-ba60-47b2-9260-53593f6af57b", + "name": "Sherpa Brewery Pvt. Ltd.", + "brewery_type": "contract", + "address_1": "1708 W 17th Dr", + "address_2": null, + "address_3": null, + "city": "Golden", + "state_province": "Colorado", + "postal_code": "80401-2507", + "country": "United States", + "longitude": -105.1963424, + "latitude": 39.7443713, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "1708 W 17th Dr" + }, + { + "id": "80300e21-0491-4835-8d5e-660c45fcc2c6", + "name": "Sherwood Brewing Co", + "brewery_type": "brewpub", + "address_1": "45689 Hayes Rd", + "address_2": null, + "address_3": null, + "city": "Shelby Township", + "state_province": "Michigan", + "postal_code": "48315-6214", + "country": "United States", + "longitude": -82.97361414, + "latitude": 42.63202014, + "phone": "5865329669", + "website_url": "http://www.sherwoodbrewing.com", + "state": "Michigan", + "street": "45689 Hayes Rd" + }, + { + "id": "68f64b47-9cae-49ad-a344-66c7a91c2951", + "name": "Shifty Lizard Brewing Co", + "brewery_type": "micro", + "address_1": "33 High Street", + "address_2": null, + "address_3": null, + "city": "Willunga", + "state_province": "SA", + "postal_code": "5172", + "country": "Australia", + "longitude": 138.5570983, + "latitude": -35.2731646, + "phone": "+61 8 7079 2471", + "website_url": "https://www.shiftylizard.com/", + "state": "SA", + "street": "33 High Street" + }, + { + "id": "2efebbef-cc50-428c-a2e5-5a21c5bcf731", + "name": "Shiny Top Brewing", + "brewery_type": "micro", + "address_1": "520 Central Ave", + "address_2": null, + "address_3": null, + "city": "Fort Dodge", + "state_province": "Iowa", + "postal_code": "50501-3810", + "country": "United States", + "longitude": -94.19057896, + "latitude": 42.50474204, + "phone": "5153028055", + "website_url": "http://www.shinytopbrewing.com", + "state": "Iowa", + "street": "520 Central Ave" + }, + { + "id": "f0e43f16-db91-418d-a56a-1f1bcfc32ae1", + "name": "Ship Bottom Brewery", + "brewery_type": "micro", + "address_1": "830 N Bay Ave, Store 23", + "address_2": null, + "address_3": null, + "city": "Beach Haven", + "state_province": "New Jersey", + "postal_code": "08008-2053", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6092076331", + "website_url": "http://www.shipbottombrewery.com", + "state": "New Jersey", + "street": "830 N Bay Ave, Store 23" + }, + { + "id": "d5f30d02-1b70-4254-8535-ff5877cb0406", + "name": "Ship's Wheel Hard Cider", + "brewery_type": "micro", + "address_1": "1033 E Montague Ave", + "address_2": null, + "address_3": null, + "city": "North Charleston", + "state_province": "South Carolina", + "postal_code": "29405", + "country": "United States", + "longitude": -79.97517, + "latitude": 32.88124, + "phone": "8432123153", + "website_url": "https://www.shipswheelhardcider.com/", + "state": "South Carolina", + "street": "1033 E Montague Ave" + }, + { + "id": "b0a53b92-378b-4e92-86b2-904b865837a0", + "name": "Shipwreck Brewing Company", + "brewery_type": "brewpub", + "address_1": "24409 Jefferson Ave", + "address_2": null, + "address_3": null, + "city": "Saint Clair Shores", + "state_province": "Michigan", + "postal_code": "48080-1318", + "country": "United States", + "longitude": -82.88877859, + "latitude": 42.47122231, + "phone": "5869442266", + "website_url": "http://www.shipwreckbrewingcompany.com", + "state": "Michigan", + "street": "24409 Jefferson Ave" + }, + { + "id": "96a20f94-b865-451a-bc62-da10e3a59998", + "name": "Shipwrecked Restaurant and Brewery", + "brewery_type": "brewpub", + "address_1": "7791 Egg Harbor Road ", + "address_2": null, + "address_3": null, + "city": "Egg Harbor", + "state_province": "Wisconsin", + "postal_code": "54209", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9208682767", + "website_url": "http://www.shipwreckedmicrobrew.com", + "state": "Wisconsin", + "street": "7791 Egg Harbor Road " + }, + { + "id": "2d27191c-75fa-4255-a2c1-411366d73527", + "name": "Shipyard Brew Pub Eliot", + "brewery_type": "brewpub", + "address_1": "28 Levesque Dr Ste 4 C/O Eliot Commons", + "address_2": null, + "address_3": null, + "city": "Eliot", + "state_province": "Maine", + "postal_code": "03903-2073", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2076862026", + "website_url": "http://www.shipyard.com", + "state": "Maine", + "street": "28 Levesque Dr Ste 4 C/O Eliot Commons" + }, + { + "id": "136e3e55-0345-4951-96b6-de63339426b5", + "name": "Shipyard Brewing Co", + "brewery_type": "regional", + "address_1": "86 Newbury St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Maine", + "postal_code": "04101-4219", + "country": "United States", + "longitude": -70.24862314, + "latitude": 43.6615851, + "phone": "2077610807", + "website_url": "http://www.shipyard.com", + "state": "Maine", + "street": "86 Newbury St" + }, + { + "id": "84c013fc-1f60-4569-b009-973a48e480dc", + "name": "Shire Breu Hous", + "brewery_type": "brewpub", + "address_1": "63 Flansburg Ave", + "address_2": null, + "address_3": null, + "city": "Dalton", + "state_province": "Massachusetts", + "postal_code": "01226", + "country": "United States", + "longitude": -73.1730985, + "latitude": 42.4745867, + "phone": "4138428313", + "website_url": "http://www.shire.beer", + "state": "Massachusetts", + "street": "63 Flansburg Ave" + }, + { + "id": "471d0089-67db-448f-844f-7821e66d9af2", + "name": "Shire Station Brewing Company", + "brewery_type": "closed", + "address_1": "12913 17th Ave", + "address_2": null, + "address_3": null, + "city": "Lemoore", + "state_province": "California", + "postal_code": "93245-9485", + "country": "United States", + "longitude": -119.7617855, + "latitude": 36.28513704, + "phone": "5592502797", + "website_url": "http://www.shirestation.com", + "state": "California", + "street": "12913 17th Ave" + }, + { + "id": "08ca7ef4-2169-46d6-bc1c-ee4e4c6591db", + "name": "Shmaltz Brewing Co", + "brewery_type": "micro", + "address_1": "6 Fairchild Sq # 1", + "address_2": null, + "address_3": null, + "city": "Clifton Park", + "state_province": "New York", + "postal_code": "12065-1254", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5184065430", + "website_url": "http://www.shmaltzbrewing.com", + "state": "New York", + "street": "6 Fairchild Sq # 1" + }, + { + "id": "303f1b38-dfab-4cd8-83ef-853d4a0c0401", + "name": "Shoe Tree Brewing Co.", + "brewery_type": "micro", + "address_1": "1496 Old Hot Springs Rd", + "address_2": null, + "address_3": null, + "city": "Carson City", + "state_province": "Nevada", + "postal_code": "89706-0627", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7752220108", + "website_url": "http://www.shoetreebrewing.com", + "state": "Nevada", + "street": "1496 Old Hot Springs Rd" + }, + { + "id": "ce303141-1450-4df6-9a83-6214aeabeec7", + "name": "Shoes & Brews", + "brewery_type": "micro", + "address_1": "63 S Pratt Pkwy Unit B", + "address_2": null, + "address_3": null, + "city": "Longmont", + "state_province": "Colorado", + "postal_code": "80501-1702", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7203404290", + "website_url": "http://www.shoesbrews.com", + "state": "Colorado", + "street": "63 S Pratt Pkwy Unit B" + }, + { + "id": "f1c0b05d-9aea-4dbf-991c-b48e652c2fe6", + "name": "Shoreline Brewery", + "brewery_type": "brewpub", + "address_1": "208 Wabash St", + "address_2": null, + "address_3": null, + "city": "Michigan City", + "state_province": "Indiana", + "postal_code": "46360-3244", + "country": "United States", + "longitude": -86.90621968, + "latitude": 41.71931311, + "phone": "2198794677", + "website_url": "http://www.shorelinebrewery.com", + "state": "Indiana", + "street": "208 Wabash St" + }, + { + "id": "782c6620-ce1e-48ff-9f85-271387b63df8", + "name": "Short Fuse Brewing Company", + "brewery_type": "brewpub", + "address_1": "5000 River Rd", + "address_2": null, + "address_3": null, + "city": "Schiller Park", + "state_province": "Illinois", + "postal_code": "60176-1021", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8472605044", + "website_url": "http://www.shortfusebrewing.com", + "state": "Illinois", + "street": "5000 River Rd" + }, + { + "id": "af6eaa73-2763-49d5-86ec-001b84cd8e84", + "name": "Short Story Brewing", + "brewery_type": "brewpub", + "address_1": "5904 Fairmont Rd", + "address_2": null, + "address_3": null, + "city": "Rivesville", + "state_province": "West Virginia", + "postal_code": "26588-8844", + "country": "United States", + "longitude": -80.119282, + "latitude": 39.544687, + "phone": "3049332165", + "website_url": "http://www.shortstorybrewing.com", + "state": "West Virginia", + "street": "5904 Fairmont Rd" + }, + { + "id": "41af66db-d524-43e4-a866-7c4ddefe8752", + "name": "Short's Brewing Co", + "brewery_type": "brewpub", + "address_1": "121 N Bridge St", + "address_2": null, + "address_3": null, + "city": "Bellaire", + "state_province": "Michigan", + "postal_code": "49615-9509", + "country": "United States", + "longitude": -85.21012429, + "latitude": 44.975604, + "phone": "2315336622", + "website_url": "http://www.shortsbrewing.com", + "state": "Michigan", + "street": "121 N Bridge St" + }, + { + "id": "3463ed54-79e2-46ff-8626-acdd29dc08ba", + "name": "Short's Brewing Co - Production Facility", + "brewery_type": "regional", + "address_1": "211 Industrial Park Dr", + "address_2": null, + "address_3": null, + "city": "Elk Rapids", + "state_province": "Michigan", + "postal_code": "49629-9452", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2314982300", + "website_url": "http://www.shortsbrewing.com", + "state": "Michigan", + "street": "211 Industrial Park Dr" + }, + { + "id": "ae444b8a-16f8-425f-a4ca-f3d518667f02", + "name": "Shortway Brewing Company", + "brewery_type": "micro", + "address_1": "230 Chatham Street", + "address_2": null, + "address_3": null, + "city": "Newport", + "state_province": "North Carolina", + "postal_code": "28570", + "country": "United States", + "longitude": -76.85945669, + "latitude": 34.78998841, + "phone": "2527773065", + "website_url": "http://www.shortwaybrewing.com", + "state": "North Carolina", + "street": "230 Chatham Street" + }, + { + "id": "e878354b-798d-4fbc-8626-0c65e0d97420", + "name": "Shoug Brewing Company", + "brewery_type": "micro", + "address_1": "1311 SE Cliffside Dr", + "address_2": null, + "address_3": null, + "city": "Washougal", + "state_province": "Washington", + "postal_code": "98671-8750", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3604870172", + "website_url": "http://www.shougbrewing.com", + "state": "Washington", + "street": "1311 SE Cliffside Dr" + }, + { + "id": "88583b40-20f0-4093-a9be-5436d7c8aaf2", + "name": "Shout Brewing Co.", + "brewery_type": "micro", + "address_1": "22 Clyde Street", + "address_2": null, + "address_3": null, + "city": "Islington", + "state_province": "NSW", + "postal_code": "2296", + "country": "Australia", + "longitude": 151.7416122, + "latitude": -32.9106692, + "phone": "+61 478 657 805", + "website_url": "https://www.shoutbrewing.com.au/", + "state": "NSW", + "street": "22 Clyde Street" + }, + { + "id": "721d8224-c432-47ec-a706-3a888cdb72f2", + "name": "Shovel Town Brewery, Inc.", + "brewery_type": "brewpub", + "address_1": "50 Oliver St Rear", + "address_2": null, + "address_3": null, + "city": "North Easton", + "state_province": "Massachusetts", + "postal_code": "02356-1446", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5082057151", + "website_url": null, + "state": "Massachusetts", + "street": "50 Oliver St Rear" + }, + { + "id": "3e966de2-0bdc-4557-a316-47659974b7ba", + "name": "Shrewd Fox Brewery", + "brewery_type": "micro", + "address_1": "552 NY State Highway 55", + "address_2": null, + "address_3": null, + "city": "Eldred", + "state_province": "New York", + "postal_code": "12732", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8455578255", + "website_url": "http://www.shrewdfoxbrewery.com", + "state": "New York", + "street": "552 NY State Highway 55" + }, + { + "id": "feccbd60-d24e-4536-b0f3-5bcd5ea65d0e", + "name": "Shrub Steppe Smokehouse Brewery", + "brewery_type": "brewpub", + "address_1": "2000 Logston Blvd Ste 122", + "address_2": null, + "address_3": null, + "city": "Richland", + "state_province": "Washington", + "postal_code": "99354-5329", + "country": "United States", + "longitude": -119.2999357, + "latitude": 46.3204119, + "phone": "5093759092", + "website_url": "http://www.shrubsteppebrewing.com", + "state": "Washington", + "street": "2000 Logston Blvd Ste 122" + }, + { + "id": "b65fa2d0-3279-4bfb-a33a-e494e263f874", + "name": "ShuBrew, LLC", + "brewery_type": "brewpub", + "address_1": "210 S Main St", + "address_2": null, + "address_3": null, + "city": "Zelienople", + "state_province": "Pennsylvania", + "postal_code": "16063-1150", + "country": "United States", + "longitude": -80.13635892, + "latitude": 40.79285063, + "phone": "7247664426", + "website_url": null, + "state": "Pennsylvania", + "street": "210 S Main St" + }, + { + "id": "81a899a9-a677-4cd5-9fd8-e7ea45b298fa", + "name": "Shy Bear Brewing", + "brewery_type": "brewpub", + "address_1": "35 Meadowbrook Ln", + "address_2": null, + "address_3": null, + "city": "Lewistown", + "state_province": "Pennsylvania", + "postal_code": "17044-2802", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7174471701", + "website_url": "http://www.shybearbrewing.com", + "state": "Pennsylvania", + "street": "35 Meadowbrook Ln" + }, + { + "id": "b7114432-0efb-4b42-a3f2-40c7035b4215", + "name": "Sibling Revelry Brewing", + "brewery_type": "micro", + "address_1": "29305 Clemens Rd", + "address_2": null, + "address_3": null, + "city": "Westlake", + "state_province": "Ohio", + "postal_code": "44145-1008", + "country": "United States", + "longitude": -81.94620111, + "latitude": 41.47040238, + "phone": "4404718589", + "website_url": "http://www.siblingrevelrybrewing.com", + "state": "Ohio", + "street": "29305 Clemens Rd" + }, + { + "id": "c3851fdf-bb12-4d54-98a0-c7beed22a423", + "name": "Sick N Twisted Brewing Co", + "brewery_type": "brewpub", + "address_1": "692 Main St", + "address_2": null, + "address_3": null, + "city": "Deadwood", + "state_province": "South Dakota", + "postal_code": "57732-1124", + "country": "United States", + "longitude": -103.7310822, + "latitude": 44.37732531, + "phone": "6057176831", + "website_url": "http://www.sickntwistedbrewery.com", + "state": "South Dakota", + "street": "692 Main St" + }, + { + "id": "2e46ffca-3a8c-4bca-86ac-ecc74131e20e", + "name": "Sick N Twisted Brewing Co", + "brewery_type": "brewpub", + "address_1": "23851 Highway 385 Ste A", + "address_2": null, + "address_3": null, + "city": "Hill City", + "state_province": "South Dakota", + "postal_code": "57745-6544", + "country": "United States", + "longitude": -103.5272662, + "latitude": 43.94601735, + "phone": "6055749200", + "website_url": "http://www.sickntwistedbrewery.com", + "state": "South Dakota", + "street": "23851 Highway 385 Ste A" + }, + { + "id": "99526c72-24a9-4027-bad0-a1e42218b60a", + "name": "Side By Each Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "Maine", + "postal_code": "04210-3739", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2073479920", + "website_url": null, + "state": "Maine", + "street": null + }, + { + "id": "a2fedbfd-b74d-4d8b-9292-23f087b2ffae", + "name": "Side Door Brewing Company", + "brewery_type": "micro", + "address_1": "1419 SE Village Green Dr", + "address_2": null, + "address_3": null, + "city": "Port Saint Lucie", + "state_province": "Florida", + "postal_code": "34952-3454", + "country": "United States", + "longitude": -80.3079342, + "latitude": 27.30575664, + "phone": "7726319068", + "website_url": "http://www.sidedoorbrewery.com", + "state": "Florida", + "street": "1419 SE Village Green Dr" + }, + { + "id": "60010f13-de44-4ff3-8f16-9b1feac5a9b8", + "name": "Side Lot Brewery", + "brewery_type": "micro", + "address_1": "110 Slocum Lake Rd", + "address_2": null, + "address_3": null, + "city": "Wauconda", + "state_province": "Illinois", + "postal_code": "60084-1883", + "country": "United States", + "longitude": -88.14526776, + "latitude": 42.26078912, + "phone": "8478650281", + "website_url": "http://www.sidelotbrewing.com", + "state": "Illinois", + "street": "110 Slocum Lake Rd" + }, + { + "id": "c3b74785-b1d3-4e76-9037-7512e99970eb", + "name": "Side Project Brewing", + "brewery_type": "micro", + "address_1": "7458 Manchester Rd", + "address_2": null, + "address_3": null, + "city": "Maplewood", + "state_province": "Missouri", + "postal_code": "63143-3032", + "country": "United States", + "longitude": -90.32221146, + "latitude": 38.61223484, + "phone": "3142245211", + "website_url": "http://www.SideProjectBrewing.com", + "state": "Missouri", + "street": "7458 Manchester Rd" + }, + { + "id": "d7e866fd-2ffb-48d2-9bea-50223c73be5e", + "name": "Sidellis Lake Tahoe", + "brewery_type": "brewpub", + "address_1": "3350 Sandy Way", + "address_2": null, + "address_3": null, + "city": "South Lake Tahoe", + "state_province": "California", + "postal_code": "96150", + "country": "United States", + "longitude": -119.9698679, + "latitude": 38.94472795, + "phone": "5306003999", + "website_url": null, + "state": "California", + "street": "3350 Sandy Way" + }, + { + "id": "55cb0b84-5e32-4a93-85d0-8cc26c00e12e", + "name": "Sideswipe Brewing", + "brewery_type": "micro", + "address_1": "2419 Scioto Harper Dr", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43204-3420", + "country": "United States", + "longitude": -83.06626767, + "latitude": 39.96723751, + "phone": "6147199654", + "website_url": "http://www.sideswipebrewing.com", + "state": "Ohio", + "street": "2419 Scioto Harper Dr" + }, + { + "id": "94b87f1d-ae3f-4d3c-a147-75edaa4e5fb7", + "name": "Sidetrack Brewing Company", + "brewery_type": "micro", + "address_1": "413 2nd St SW", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87102-3307", + "country": "United States", + "longitude": -106.6500567, + "latitude": 35.0807893, + "phone": "5052886468", + "website_url": "http://www.sidetrackbrewing.net", + "state": "New Mexico", + "street": "413 2nd St SW" + }, + { + "id": "1b39d4f8-f285-4bbf-a52c-429a2ba39856", + "name": "Sierra Blanca Brewing Co", + "brewery_type": "micro", + "address_1": "1016 Industrial Rd", + "address_2": null, + "address_3": null, + "city": "Moriarty", + "state_province": "New Mexico", + "postal_code": "87035-3567", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5058322337", + "website_url": "http://www.sierrablancabrewery.com", + "state": "New Mexico", + "street": "1016 Industrial Rd" + }, + { + "id": "91799fbb-6b2d-449b-a0aa-0ac579692489", + "name": "Sierra Nevada Brewing Co", + "brewery_type": "regional", + "address_1": "100 Sierra Nevada Way", + "address_2": null, + "address_3": null, + "city": "Mills River", + "state_province": "North Carolina", + "postal_code": "28732-8608", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.sierranevada.com", + "state": "North Carolina", + "street": "100 Sierra Nevada Way" + }, + { + "id": "70e66be3-fd92-4db0-86f3-0f05807cc4e2", + "name": "Sierra Nevada Brewing Co", + "brewery_type": "regional", + "address_1": "1075 E 20th St", + "address_2": null, + "address_3": null, + "city": "Chico", + "state_province": "California", + "postal_code": "95928-6722", + "country": "United States", + "longitude": -121.8098801, + "latitude": 39.7257632, + "phone": "5308933520", + "website_url": "http://www.sierranevada.com", + "state": "California", + "street": "1075 E 20th St" + }, + { + "id": "16e277b2-1959-4768-a14d-561ee4448aac", + "name": "Sig Brewing Co.", + "brewery_type": "micro", + "address_1": "2534 Tacoma ave S.", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98402-", + "country": "United States", + "longitude": -122.441312, + "latitude": 47.237072, + "phone": "2535036446", + "website_url": "https://www.sigbrewingco.com/", + "state": "Washington", + "street": "2534 Tacoma ave S." + }, + { + "id": "b9ea4135-429b-4928-8cae-680dd9d6ad17", + "name": "Sigma Brewing Company", + "brewery_type": "micro", + "address_1": "3118 Harrisburg Blvd # 108", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77003-2334", + "country": "United States", + "longitude": -95.3435901, + "latitude": 29.7489938, + "phone": "3463523190", + "website_url": "http://www.sigmabrewingcompany.com", + "state": "Texas", + "street": "3118 Harrisburg Blvd # 108" + }, + { + "id": "df710d4d-63ff-4fec-82e6-42b9d2f0f107", + "name": "Sigma Ingredients LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Salisbury", + "state_province": "Maryland", + "postal_code": "21801-6739", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4104308903", + "website_url": "http://www.sigmaingredients.com", + "state": "Maryland", + "street": null + }, + { + "id": "3e96e2f2-46b2-4a7a-860e-b7fa52a8dc0e", + "name": "Silo's", + "brewery_type": "brewpub", + "address_1": "530 Main St", + "address_2": null, + "address_3": null, + "city": "Napa", + "state_province": "California", + "postal_code": "94559-3378", + "country": "United States", + "longitude": -122.2828832, + "latitude": 38.29617, + "phone": "7072515833", + "website_url": "http://www.silosnapa.com", + "state": "California", + "street": "530 Main St" + }, + { + "id": "d33c7492-1fc8-4ad6-b832-2d8b674ce585", + "name": "Siluria Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Alabaster", + "state_province": "Alabama", + "postal_code": "35007-8501", + "country": "United States", + "longitude": -86.8163773, + "latitude": 33.2442813, + "phone": "2054827661", + "website_url": "http://www.siluriabrewing.com", + "state": "Alabama", + "street": null + }, + { + "id": "a43bae26-417f-4b3c-a1b5-1c08c74c4297", + "name": "Silva Brewing", + "brewery_type": "micro", + "address_1": "525 Pine St Ste B", + "address_2": null, + "address_3": null, + "city": "Paso Robles", + "state_province": "California", + "postal_code": "93446-3185", + "country": "United States", + "longitude": -120.6886398, + "latitude": 35.62031385, + "phone": "8053692337", + "website_url": "http://www.silvabrewing.com", + "state": "California", + "street": "525 Pine St Ste B" + }, + { + "id": "0c576a06-35fd-4e9e-addc-8e4847f46d85", + "name": "Silver Branch Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Silver Spring", + "state_province": "Maryland", + "postal_code": "20910-3487", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2028418646", + "website_url": "http://www.silverbranchbrewing.com", + "state": "Maryland", + "street": null + }, + { + "id": "0ce428f9-4c60-4536-9423-96a0017813d7", + "name": "Silver City Brewery", + "brewery_type": "regional", + "address_1": "206 Katy Penman Ave", + "address_2": null, + "address_3": null, + "city": "Bremerton", + "state_province": "Washington", + "postal_code": "98312-4301", + "country": "United States", + "longitude": -122.6780101, + "latitude": 47.56156065, + "phone": "3608131487", + "website_url": "http://www.silvercitybrewery.com", + "state": "Washington", + "street": "206 Katy Penman Ave" + }, + { + "id": "471a6b86-befa-4d68-84fd-d8a2e2246112", + "name": "Silver Creek Brewing Co", + "brewery_type": "micro", + "address_1": "N57 W6172 Portland Rd", + "address_2": null, + "address_3": null, + "city": "Cedarburg", + "state_province": "Wisconsin", + "postal_code": "53012", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2623754444", + "website_url": "http://www.silvercreekbrewing.com", + "state": "Wisconsin", + "street": "N57 W6172 Portland Rd" + }, + { + "id": "a1378c73-b0f9-4c1e-9217-ebca40c995b5", + "name": "Silver Falls Brewery", + "brewery_type": "micro", + "address_1": "207 Jersey St", + "address_2": null, + "address_3": null, + "city": "Silverton", + "state_province": "Oregon", + "postal_code": "97381", + "country": "United States", + "longitude": -122.7821402, + "latitude": 45.00421984, + "phone": "5038733022", + "website_url": "http://www.silverfallsbrewery.com", + "state": "Oregon", + "street": "207 Jersey St" + }, + { + "id": "fac0abcb-db02-4ec6-845d-457caab0f3ab", + "name": "Silver Gulch Brewing Co", + "brewery_type": "micro", + "address_1": "2195 Old Steese Highway", + "address_2": null, + "address_3": null, + "city": "Fox", + "state_province": "Alaska", + "postal_code": "99712", + "country": "United States", + "longitude": -147.6219761, + "latitude": 64.95708588, + "phone": "9074522739", + "website_url": "http://www.silvergulch.com", + "state": "Alaska", + "street": "2195 Old Steese Highway" + }, + { + "id": "74f8802c-da96-40d7-8e37-3fd4dd2cb381", + "name": "Silver Harbor Brewing Company", + "brewery_type": "brewpub", + "address_1": "721 Pleasant St", + "address_2": null, + "address_3": null, + "city": "Saint Joseph", + "state_province": "Michigan", + "postal_code": "49085-1241", + "country": "United States", + "longitude": -86.48027459, + "latitude": 42.10893033, + "phone": "2692817100", + "website_url": "http://silverharborbrewing.com", + "state": "Michigan", + "street": "721 Pleasant St" + }, + { + "id": "311fdbf4-9ca3-4c23-8a18-b7ebd9348a5c", + "name": "Silver Lake Brewing Project", + "brewery_type": "micro", + "address_1": "14 Borden Ave", + "address_2": null, + "address_3": null, + "city": "Perry", + "state_province": "New York", + "postal_code": "14530", + "country": "United States", + "longitude": -78.00159923, + "latitude": 42.71795128, + "phone": "5859694238", + "website_url": "http://silverlakebrewingproject.com", + "state": "New York", + "street": "14 Borden Ave" + }, + { + "id": "d8e15e0d-fcd6-49da-9f88-293ea86239b9", + "name": "Silver Moon Brewing", + "brewery_type": "micro", + "address_1": "24 NW Greenwood Ave", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97703-2027", + "country": "United States", + "longitude": -121.3079151, + "latitude": 44.0603904, + "phone": "5413888331", + "website_url": null, + "state": "Oregon", + "street": "24 NW Greenwood Ave" + }, + { + "id": "ae8d5788-472e-40f6-98ce-cecfd83e889c", + "name": "Silver Moon Brewing", + "brewery_type": "micro", + "address_1": "2095 SW Badger Ave", + "address_2": null, + "address_3": null, + "city": "Redmond", + "state_province": "Oregon", + "postal_code": "97756-8164", + "country": "United States", + "longitude": -121.192157, + "latitude": 44.2375883, + "phone": "5413888331", + "website_url": "http://www.SilverMoonBrewing.com", + "state": "Oregon", + "street": "2095 SW Badger Ave" + }, + { + "id": "bd708ae6-ef19-4e4d-9eca-f232fbabfdd3", + "name": "Silver Peak Restaurant and Brewery", + "brewery_type": "brewpub", + "address_1": "124 Wonder St", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89502-2424", + "country": "United States", + "longitude": -119.8060433, + "latitude": 39.51395749, + "phone": "7753241864", + "website_url": "http://www.silverpeakbrewery.com", + "state": "Nevada", + "street": "124 Wonder St" + }, + { + "id": "ae3391c5-bc85-47dc-a407-53803ebdb136", + "name": "Silver Rocket Brewing Ltd", + "brewery_type": "micro", + "address_1": "Meadows", + "address_2": null, + "address_3": null, + "city": "Hassocks", + "state_province": "West Sussex", + "postal_code": "BN6 8EH", + "country": "England", + "longitude": -0.143993, + "latitude": 50.931319, + "phone": "7950099424", + "website_url": "https://silverrocketbrewing.co.uk/", + "state": "West Sussex", + "street": "Meadows" + }, + { + "id": "a5b1ff54-9d6d-4742-8141-f496a1fc2d1d", + "name": "Silverking Brewing Company", + "brewery_type": "micro", + "address_1": "325 E Lemon St", + "address_2": null, + "address_3": null, + "city": "Tarpon Springs", + "state_province": "Florida", + "postal_code": "34689-4309", + "country": "United States", + "longitude": -82.75325369, + "latitude": 28.14509027, + "phone": "7276472524", + "website_url": "http://www.silverkingbrewing.com", + "state": "Florida", + "street": "325 E Lemon St" + }, + { + "id": "7217ca2a-393c-4b27-a87c-70c948d113c3", + "name": "Simple Roots Brewing Co", + "brewery_type": "micro", + "address_1": "1127 North Ave Ste 8", + "address_2": null, + "address_3": null, + "city": "Burlington", + "state_province": "Vermont", + "postal_code": "05408-2756", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Vermont", + "street": "1127 North Ave Ste 8" + }, + { + "id": "0a127250-075c-42ac-98a6-135535cd3fc6", + "name": "Simplicity Brewing Company", + "brewery_type": "micro", + "address_1": "2473 Camden Rd", + "address_2": null, + "address_3": null, + "city": "Warren", + "state_province": "Maine", + "postal_code": "04864-4113", + "country": "United States", + "longitude": -69.1881349, + "latitude": 44.15177662, + "phone": "2072730143", + "website_url": "http://www.mkt.com/simplicitybrewingsupplies", + "state": "Maine", + "street": "2473 Camden Rd" + }, + { + "id": "c2b494b6-da3a-45fb-9895-25e6ef1d5009", + "name": "Sin City Beer Co", + "brewery_type": "contract", + "address_1": "3663 Las Vegas Blvd S Ste 504 Miracle Mile Shops", + "address_2": null, + "address_3": null, + "city": "Las Vegas", + "state_province": "Nevada", + "postal_code": "89109-1951", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7028094939", + "website_url": "http://www.sincitybeer.com", + "state": "Nevada", + "street": "3663 Las Vegas Blvd S Ste 504 Miracle Mile Shops" + }, + { + "id": "cbc44ed9-51da-4ba7-85dd-ed20f31a67c0", + "name": "Sing Sing Kill Brewery", + "brewery_type": "micro", + "address_1": "75 Spring St", + "address_2": null, + "address_3": null, + "city": "Ossining", + "state_province": "New York", + "postal_code": "10562-4706", + "country": "United States", + "longitude": -73.86373076, + "latitude": 41.15860835, + "phone": "9178812490", + "website_url": "http://www.singsingkillbrewery.com", + "state": "New York", + "street": "75 Spring St" + }, + { + "id": "ce0ed90b-f28e-476c-b61d-9465ad1e3060", + "name": "Singin' River Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "526 E College St", + "address_2": null, + "address_3": null, + "city": "Florence", + "state_province": "Alabama", + "postal_code": "35630-5764", + "country": "United States", + "longitude": -87.66892994, + "latitude": 34.8016657, + "phone": "2567600000", + "website_url": "http://www.singinriverbrewing.com", + "state": "Alabama", + "street": "526 E College St" + }, + { + "id": "64887428-bf8c-4404-b55e-2e355b814ac0", + "name": "Single Hill Brewing Company", + "brewery_type": "micro", + "address_1": "102 N Naches Ave", + "address_2": null, + "address_3": null, + "city": "Yakima", + "state_province": "Washington", + "postal_code": "98901-2757", + "country": "United States", + "longitude": -120.5006688, + "latitude": 46.6050643, + "phone": "5033511197", + "website_url": "http://www.singlehillbrewing.com", + "state": "Washington", + "street": "102 N Naches Ave" + }, + { + "id": "925d80b0-c611-445e-8799-262a9e0f9259", + "name": "Single Speed Brewing Co", + "brewery_type": "brewpub", + "address_1": "325 Commercial St", + "address_2": null, + "address_3": null, + "city": "Waterloo", + "state_province": "Iowa", + "postal_code": "50701", + "country": "United States", + "longitude": -92.34249686, + "latitude": 42.49709571, + "phone": "3198833604", + "website_url": "http://www.singlespeedbrewing.com", + "state": "Iowa", + "street": "325 Commercial St" + }, + { + "id": "17d4939c-ac7c-4283-96e9-d1cae8d2ac1a", + "name": "Single Speed Brewing Co Tap Room", + "brewery_type": "brewpub", + "address_1": "325 Commercial St", + "address_2": null, + "address_3": null, + "city": "Waterloo", + "state_province": "Iowa", + "postal_code": "50701-1315", + "country": "United States", + "longitude": -92.34249686, + "latitude": 42.49709571, + "phone": "3198833604", + "website_url": null, + "state": "Iowa", + "street": "325 Commercial St" + }, + { + "id": "2787c111-e272-4a74-bde5-21ea7ec9e8a1", + "name": "Singlecut Beersmiths", + "brewery_type": "micro", + "address_1": "19-33 37th St", + "address_2": null, + "address_3": null, + "city": "Astoria", + "state_province": "New York", + "postal_code": "11105-1118", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7186060788", + "website_url": "http://www.singlecutbeer.com", + "state": "New York", + "street": "19-33 37th St" + }, + { + "id": "0bec163f-c05c-4782-b15b-8d44b8d7087f", + "name": "Sinistral Brewing Company", + "brewery_type": "micro", + "address_1": "9419 Main St", + "address_2": null, + "address_3": null, + "city": "Manassas", + "state_province": "Virginia", + "postal_code": "20110", + "country": "United States", + "longitude": -77.471427, + "latitude": 38.75099522, + "phone": "7036864575", + "website_url": "http://www.sinistralbrewingcompany.com", + "state": "Virginia", + "street": "9419 Main St" + }, + { + "id": "07a4bba9-7707-4a04-839c-e341490377a1", + "name": "Siren Rock Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Rockwall", + "state_province": "Texas", + "postal_code": "75087", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "f25ef908-5b80-4cab-8aa1-76c508e3d884", + "name": "Siskiyou Brew Works", + "brewery_type": "brewpub", + "address_1": "110 Squawvalley Rd", + "address_2": null, + "address_3": null, + "city": "McCloud", + "state_province": "California", + "postal_code": "96057", + "country": "United States", + "longitude": -122.1357595, + "latitude": 41.25073304, + "phone": "5309255894", + "website_url": "http://www.siskiyoubrewworks.com", + "state": "California", + "street": "110 Squawvalley Rd" + }, + { + "id": "598e9aa4-8f65-40e9-a2eb-d6822fbdaacb", + "name": "Sister Lakes Brewing Company", + "brewery_type": "brewpub", + "address_1": "92500 County Road 690", + "address_2": null, + "address_3": null, + "city": "Dowagiac", + "state_province": "Michigan", + "postal_code": "49047-9021", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2693325135", + "website_url": "http://www.sisterlakesbrewing.com", + "state": "Michigan", + "street": "92500 County Road 690" + }, + { + "id": "f2fd7e1b-85a7-4a6e-9351-41e1c9b7f18f", + "name": "Sisyphus Brewing", + "brewery_type": "micro", + "address_1": "712 Ontario Ave W", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55403-1138", + "country": "United States", + "longitude": -93.28833571, + "latitude": 44.973158, + "phone": "6124448674", + "website_url": "http://www.sisyphusbrewing.com", + "state": "Minnesota", + "street": "712 Ontario Ave W" + }, + { + "id": "ce1a4d63-206c-4e4e-a835-543ee2e9306f", + "name": "Siuslaw Brewing", + "brewery_type": "micro", + "address_1": "16558 Alsea Hwy", + "address_2": null, + "address_3": null, + "city": "Alsea", + "state_province": "Oregon", + "postal_code": "97324-9624", + "country": "United States", + "longitude": -123.6906645, + "latitude": 44.353359, + "phone": "5417401606", + "website_url": null, + "state": "Oregon", + "street": "16558 Alsea Hwy" + }, + { + "id": "5f6f3cb4-e720-4a25-885e-903f1341049a", + "name": "Six Car Pub", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Amarillo", + "state_province": "Texas", + "postal_code": "79106", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8062206881", + "website_url": "http://www.sixcarpub.com", + "state": "Texas", + "street": null + }, + { + "id": "3f3ccd69-bd9e-41fe-aaf2-48d0f3277cfa", + "name": "Six Harbors Brewing Company", + "brewery_type": "proprietor", + "address_1": "243 New York Ave.", + "address_2": null, + "address_3": null, + "city": "Huntington", + "state_province": "New York", + "postal_code": "11743-2719", + "country": "United States", + "longitude": -73.4253168, + "latitude": 40.8749628, + "phone": "5166803528", + "website_url": null, + "state": "New York", + "street": "243 New York Ave." + }, + { + "id": "937b7b68-c9da-4466-851f-14a583a95844", + "name": "Six Mile Bridge Brewery", + "brewery_type": "micro", + "address_1": "11841 Dorsett Rd", + "address_2": null, + "address_3": null, + "city": "Maryland Heights", + "state_province": "Missouri", + "postal_code": "63043-2503", + "country": "United States", + "longitude": -90.43182572, + "latitude": 38.714489, + "phone": "3149422211", + "website_url": "http://www.sixmilebridgebeer.com", + "state": "Missouri", + "street": "11841 Dorsett Rd" + }, + { + "id": "54b5bff4-c4a8-4c4d-869e-2068e0ed37ac", + "name": "Six Rivers Brewery", + "brewery_type": "brewpub", + "address_1": "1300 Central Ave", + "address_2": null, + "address_3": null, + "city": "McKinleyville", + "state_province": "California", + "postal_code": "95519-6429", + "country": "United States", + "longitude": -124.1003888, + "latitude": 40.9260642, + "phone": null, + "website_url": null, + "state": "California", + "street": "1300 Central Ave" + }, + { + "id": "c3a5c7b0-66bd-4363-98ec-1a07ae6b11fe", + "name": "Six String Brewing", + "brewery_type": "micro", + "address_1": "90 The Entrance Road", + "address_2": null, + "address_3": null, + "city": "Erina", + "state_province": "NSW", + "postal_code": "2250", + "country": "Australia", + "longitude": 151.3723981, + "latitude": -33.4381088, + "phone": "+61 2 4365 4536", + "website_url": "http://www.sixstringbrewing.com.au/", + "state": "NSW", + "street": "90 The Entrance Road" + }, + { + "id": "07928bf8-2ef7-4724-8914-846458d7b661", + "name": "Six String Brewing Co", + "brewery_type": "micro", + "address_1": "90 The Entrance Road", + "address_2": null, + "address_3": null, + "city": "Erina", + "state_province": "NSW", + "postal_code": "2250", + "country": "Australia", + "longitude": 151.3723981, + "latitude": -33.4381088, + "phone": "+61 2 4365 4536", + "website_url": "http://www.sixstringbrewing.com.au/", + "state": "NSW", + "street": "90 The Entrance Road" + }, + { + "id": "c8751600-8370-4ce2-b405-9c39238a2f17", + "name": "Six Ten Brewing", + "brewery_type": "micro", + "address_1": "7052 Benjamin Rd", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33634-3034", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8138860610", + "website_url": null, + "state": "Florida", + "street": "7052 Benjamin Rd" + }, + { + "id": "2524a546-408c-47f3-bcb5-ad4be41ab69f", + "name": "Sixpoint Brewery", + "brewery_type": "regional", + "address_1": "40 Van Dyke St", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11231-1529", + "country": "United States", + "longitude": -74.01191761, + "latitude": 40.67397255, + "phone": "3472278676", + "website_url": "http://www.sixpoint.com", + "state": "New York", + "street": "40 Van Dyke St" + }, + { + "id": "1b104780-1145-4be5-8ffd-14ec7bd9532a", + "name": "Sixth Sense Brewing Company", + "brewery_type": "micro", + "address_1": "175 Main St.", + "address_2": null, + "address_3": null, + "city": "Jackson", + "state_province": "Ohio", + "postal_code": "45640", + "country": "United States", + "longitude": -82.63876433, + "latitude": 39.05323989, + "phone": "7405773681", + "website_url": "http://www.sixthsensebrewing.com", + "state": "Ohio", + "street": "175 Main St." + }, + { + "id": "49304d5d-ed4a-4fbc-9d1a-b8d8e97b3bca", + "name": "SixTwelve Brewing", + "brewery_type": "micro", + "address_1": "132 Tolley Road", + "address_2": "warehouse 3", + "address_3": null, + "city": "Saint Agnes", + "state_province": "SA", + "postal_code": "5097", + "country": "Australia", + "longitude": 138.7060608, + "latitude": -34.8295756, + "phone": "+61 460 956 700", + "website_url": "http://www.sixtwelvebrewing.com.au/", + "state": "SA", + "street": "132 Tolley Road" + }, + { + "id": "867284df-ee7d-4e01-9df8-c8143cdf3f20", + "name": "SKA Brewing", + "brewery_type": "regional", + "address_1": "225 Girard, Bodo Park", + "address_2": null, + "address_3": null, + "city": "Durango", + "state_province": "Colorado", + "postal_code": "81303-6827", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "225 Girard, Bodo Park" + }, + { + "id": "6e0c17e2-fb3c-4621-bfc8-55ccb3134cea", + "name": "Skagit River Brewery", + "brewery_type": "closed", + "address_1": "404 S 3rd St", + "address_2": null, + "address_3": null, + "city": "Mount Vernon", + "state_province": "Washington", + "postal_code": "98273-3824", + "country": "United States", + "longitude": -122.3354271, + "latitude": 48.4193151, + "phone": "3603362884", + "website_url": "http://www.skagitbrew.com", + "state": "Washington", + "street": "404 S 3rd St" + }, + { + "id": "9e6976d2-154c-4fe6-8bc9-d93d2d431921", + "name": "Skagit Valley Malting", + "brewery_type": "micro", + "address_1": "11966 Westar Ln", + "address_2": null, + "address_3": null, + "city": "Burlington", + "state_province": "Washington", + "postal_code": "98233-3620", + "country": "United States", + "longitude": -122.408008, + "latitude": 48.473509, + "phone": "3609821262", + "website_url": "https://www.skagitvalleymalting.com/", + "state": "Washington", + "street": "11966 Westar Ln" + }, + { + "id": "f096099d-7cbb-4e6c-be76-55d6918f3bd7", + "name": "Skagway Brewing Co", + "brewery_type": "brewpub", + "address_1": "641 Broadway St Ste 946", + "address_2": null, + "address_3": null, + "city": "Skagway", + "state_province": "Alaska", + "postal_code": "99840-9800", + "country": "United States", + "longitude": -135.315716, + "latitude": 59.45506, + "phone": "9079832759", + "website_url": "http://www.skagwaybrewing.com", + "state": "Alaska", + "street": "641 Broadway St Ste 946" + }, + { + "id": "c22c2cce-f622-416c-97be-60e9ebf09154", + "name": "Skeleton Crew Brew", + "brewery_type": "micro", + "address_1": "575 Lester Ave Ste 206", + "address_2": null, + "address_3": null, + "city": "Onalaska", + "state_province": "Wisconsin", + "postal_code": "54650-8694", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7155709463", + "website_url": "http://www.skeletoncrewbrew.com", + "state": "Wisconsin", + "street": "575 Lester Ave Ste 206" + }, + { + "id": "c672a50b-383f-4658-98a9-2de71addbb46", + "name": "Skeleton Key Brewery", + "brewery_type": "micro", + "address_1": "8102 Lemont Rd Ste 300", + "address_2": null, + "address_3": null, + "city": "Woodridge", + "state_province": "Illinois", + "postal_code": "60517-7764", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6303959033", + "website_url": "http://www.skeletonkeybrewery.com", + "state": "Illinois", + "street": "8102 Lemont Rd Ste 300" + }, + { + "id": "667486e4-c581-4958-941e-3d7077781ea4", + "name": "Sketchbook Brewing Company", + "brewery_type": "micro", + "address_1": "821 Chicago Ave", + "address_2": null, + "address_3": null, + "city": "Evanston", + "state_province": "Illinois", + "postal_code": "60202-2307", + "country": "United States", + "longitude": -87.6789794, + "latitude": 42.032929, + "phone": null, + "website_url": null, + "state": "Illinois", + "street": "821 Chicago Ave" + }, + { + "id": "4c5ef3a3-3823-4cfa-95fd-0719622cf660", + "name": "Skewed Brewing", + "brewery_type": "brewpub", + "address_1": "21182 Salmon Run Mall Loop W, Unit B219", + "address_2": null, + "address_3": null, + "city": "Watertown", + "state_province": "New York", + "postal_code": "13601-2244", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3157882337", + "website_url": "http://Skewedbrewing.com", + "state": "New York", + "street": "21182 Salmon Run Mall Loop W, Unit B219" + }, + { + "id": "86c3526b-002e-4349-a570-ae6fe075f11b", + "name": "Skipping Rock Beer Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Staunton", + "state_province": "Virginia", + "postal_code": "24401-6122", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5402923417", + "website_url": "http://www.skippingrockbeer.com", + "state": "Virginia", + "street": null + }, + { + "id": "b2fd502a-3a2a-4bbe-8137-53a00ba5cf34", + "name": "Skookum Brewery", + "brewery_type": "micro", + "address_1": "17925 59th Ave NE # A", + "address_2": null, + "address_3": null, + "city": "Arlington", + "state_province": "Washington", + "postal_code": "98223-6352", + "country": "United States", + "longitude": -122.150305, + "latitude": 48.159011, + "phone": "3604037094", + "website_url": "http://www.skookumbrewing.com", + "state": "Washington", + "street": "17925 59th Ave NE # A" + }, + { + "id": "f90c6800-2533-4fec-9ad3-2e0c910b9ae4", + "name": "Skull Camp Brewing", + "brewery_type": "micro", + "address_1": "1980 N Bridge St", + "address_2": null, + "address_3": null, + "city": "Elkin", + "state_province": "North Carolina", + "postal_code": "28621-2106", + "country": "United States", + "longitude": -80.8524566, + "latitude": 36.28339789, + "phone": "3363525595", + "website_url": "http://www.skullcampbrewing.com", + "state": "North Carolina", + "street": "1980 N Bridge St" + }, + { + "id": "c43a62fc-9928-4483-a067-e18a9f6a62f4", + "name": "Skull Camp Brewing", + "brewery_type": "micro", + "address_1": "765 Round Peak Church Rd", + "address_2": null, + "address_3": null, + "city": "Mount Airy", + "state_province": "North Carolina", + "postal_code": "27030-8421", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3363525595", + "website_url": "http://www.skullcampbrewing.com", + "state": "North Carolina", + "street": "765 Round Peak Church Rd" + }, + { + "id": "5f426984-68f1-4f2b-9bed-97eba2b6809e", + "name": "Skull Mechanix Brewing", + "brewery_type": "micro", + "address_1": "1005 East St Elmo Rd Bldg 2", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78745", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7373001002", + "website_url": "http://www.skullmechanix.com", + "state": "Texas", + "street": "1005 East St Elmo Rd Bldg 2" + }, + { + "id": "172c0b58-ec77-4126-8f31-9014b6003b8d", + "name": "Skull Tree Brewing", + "brewery_type": "micro", + "address_1": "1530 Burlington Ave", + "address_2": null, + "address_3": null, + "city": "Casper", + "state_province": "Wyoming", + "postal_code": "82601-2109", + "country": "United States", + "longitude": -106.30514137131, + "latitude": 42.855481885083, + "phone": "3072773764", + "website_url": "https://www.facebook.com/SkullTreeBrewing", + "state": "Wyoming", + "street": "1530 Burlington Ave" + }, + { + "id": "ed1133f9-48d1-4951-b47e-f67a274d6203", + "name": "Sky High Brewing", + "brewery_type": "brewpub", + "address_1": "160 NW Jackson Ave", + "address_2": null, + "address_3": null, + "city": "Corvallis", + "state_province": "Oregon", + "postal_code": "97330-4827", + "country": "United States", + "longitude": -123.2590342, + "latitude": 44.5648291, + "phone": "5412073277", + "website_url": "http://www.skyhighbrewing.com", + "state": "Oregon", + "street": "160 NW Jackson Ave" + }, + { + "id": "ac1e0284-05a9-41af-b82c-7ede99ecd2e7", + "name": "Skyland Ale Works", + "brewery_type": "micro", + "address_1": "1869 Pomona Rd Ste E", + "address_2": null, + "address_3": null, + "city": "Corona", + "state_province": "California", + "postal_code": "92880-1789", + "country": "United States", + "longitude": -117.6017074, + "latitude": 33.88345492, + "phone": "9518173037", + "website_url": "http://www.skylandaleworks.com", + "state": "California", + "street": "1869 Pomona Rd Ste E" + }, + { + "id": "e7cde6c1-fce9-43cd-8cb8-6867172e084c", + "name": "Skyroc Brewery", + "brewery_type": "micro", + "address_1": "11 Riverbank Rd", + "address_2": null, + "address_3": null, + "city": "Attleboro", + "state_province": "Massachusetts", + "postal_code": "02703-", + "country": "United States", + "longitude": -71.28788917, + "latitude": 41.94462967, + "phone": "7743312336", + "website_url": "http://www.skyrocbrewery.com", + "state": "Massachusetts", + "street": "11 Riverbank Rd" + }, + { + "id": "e626c28c-de4e-4cd5-bc1b-d66418329731", + "name": "Slack Tide Brewing Company", + "brewery_type": "micro", + "address_1": "1072 Route 83 Unit 3", + "address_2": null, + "address_3": null, + "city": "Cape May Court House", + "state_province": "New Jersey", + "postal_code": "08210-1200", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6094782343", + "website_url": "http://www.slacktidebrewingco.com", + "state": "New Jersey", + "street": "1072 Route 83 Unit 3" + }, + { + "id": "8890167c-6e54-45b2-9be3-a866eb3e6168", + "name": "Slantways Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "The Woodlands", + "state_province": "Texas", + "postal_code": "77381-4641", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "2c56fb62-1beb-4f7b-9994-c1b4413c8c80", + "name": "Slate Farm Brewery", + "brewery_type": "micro", + "address_1": "2128 Whiteford Rd", + "address_2": null, + "address_3": null, + "city": "Whiteford", + "state_province": "Maryland", + "postal_code": "21160-1402", + "country": "United States", + "longitude": -76.3369752, + "latitude": 39.7036891, + "phone": null, + "website_url": null, + "state": "Maryland", + "street": "2128 Whiteford Rd" + }, + { + "id": "3a1f7d89-6e0a-4267-80c6-63e8c8a51e34", + "name": "Slate Rock Brewing Company", + "brewery_type": "micro", + "address_1": "113 S Main St", + "address_2": null, + "address_3": null, + "city": "Amity", + "state_province": "Arkansas", + "postal_code": "71921-", + "country": "United States", + "longitude": -93.46113043, + "latitude": 34.26406928, + "phone": "8703425545", + "website_url": "http://www.slaterockbrewing.com", + "state": "Arkansas", + "street": "113 S Main St" + }, + { + "id": "e44fd198-7103-490f-9f20-3f6d485b22a3", + "name": "Slaughter County Brewing", + "brewery_type": "brewpub", + "address_1": "1307 Bay St", + "address_2": null, + "address_3": null, + "city": "Port Orchard", + "state_province": "Washington", + "postal_code": "98366-5105", + "country": "United States", + "longitude": -122.626001, + "latitude": 47.54261931, + "phone": "3603292340", + "website_url": "http://www.slaughtercountybrewing.com", + "state": "Washington", + "street": "1307 Bay St" + }, + { + "id": "b5ca8cb2-fff7-4444-b9f8-82727cdd0dba", + "name": "Sleeping Giant Brewing Company", + "brewery_type": "micro", + "address_1": "2500 W 5th Ave", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80204-4803", + "country": "United States", + "longitude": -105.0167729, + "latitude": 39.7237975, + "phone": null, + "website_url": "http://www.sleepinggiantbrewing.com", + "state": "Colorado", + "street": "2500 W 5th Ave" + }, + { + "id": "a2bdb22b-3649-43a7-85b8-7821e09c1d7c", + "name": "Sleepy Dog Brewing Co", + "brewery_type": "micro", + "address_1": "1920 E University Dr", + "address_2": null, + "address_3": null, + "city": "Tempe", + "state_province": "Arizona", + "postal_code": "85281-4608", + "country": "United States", + "longitude": -111.9041833, + "latitude": 33.422606, + "phone": "4809675476", + "website_url": null, + "state": "Arizona", + "street": "1920 E University Dr" + }, + { + "id": "4c5f2814-cfef-4841-bd54-5754e47d2f34", + "name": "Sleepy Owl Brewery", + "brewery_type": "micro", + "address_1": "151 E Main St Ste 200", + "address_2": null, + "address_3": null, + "city": "Kingsport", + "state_province": "Tennessee", + "postal_code": "37660-4380", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4232744458", + "website_url": "http://www.sleepyowlbrewery.com", + "state": "Tennessee", + "street": "151 E Main St Ste 200" + }, + { + "id": "6d654268-585f-4da4-9bcd-bc6a3fd550e2", + "name": "Slesar Bros Brewing Co - Boston Beer Works", + "brewery_type": "brewpub", + "address_1": "112 Canal St", + "address_2": null, + "address_3": null, + "city": "Boston", + "state_province": "Massachusetts", + "postal_code": "02114-1805", + "country": "United States", + "longitude": -71.0603412, + "latitude": 42.364473, + "phone": "6178962337", + "website_url": "http://www.beerworks.net", + "state": "Massachusetts", + "street": "112 Canal St" + }, + { + "id": "6b946d80-9365-4f6c-90d5-ad9258e2b149", + "name": "Slesar Bros Brewing Co - Boston Beer Works", + "brewery_type": "brewpub", + "address_1": "61 Brookline Ave", + "address_2": null, + "address_3": null, + "city": "Boston", + "state_province": "Massachusetts", + "postal_code": "02215-3406", + "country": "United States", + "longitude": -71.10772469, + "latitude": 42.33883008, + "phone": "6175362337", + "website_url": "http://www.beerworks.net", + "state": "Massachusetts", + "street": "61 Brookline Ave" + }, + { + "id": "6d9698ed-f45d-451e-92d0-e3be563e3e1c", + "name": "SlickFin Brewing Company LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Queensbury", + "state_province": "New York", + "postal_code": "12804-9786", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "f237ee78-7b14-4d09-bead-202fd79be7d5", + "name": "Slieve Bloom Brewing Company", + "brewery_type": "micro", + "address_1": "Main Street", + "address_2": "The Walk", + "address_3": null, + "city": "Kinnitty", + "state_province": "Offaly", + "postal_code": "R42 W542", + "country": "Ireland", + "longitude": -7.7211856, + "latitude": 53.0978092, + "phone": "353579137010", + "website_url": "https://slievebloombrewing.com/", + "state": "Offaly", + "street": "Main Street" + }, + { + "id": "2976ade3-23e9-4acf-8e96-48bc18b4e94a", + "name": "Slippery Pig Brewery", + "brewery_type": "brewpub", + "address_1": "18801 Front St NE", + "address_2": null, + "address_3": null, + "city": "Poulsbo", + "state_province": "Washington", + "postal_code": "98370", + "country": "United States", + "longitude": -122.6459834, + "latitude": 47.73347675, + "phone": "3603941686", + "website_url": "http://www.slipperypigbrewing.com", + "state": "Washington", + "street": "18801 Front St NE" + }, + { + "id": "ae51e773-4456-467f-96c1-e8829ce7e021", + "name": "Slipstream Brewery", + "brewery_type": "micro", + "address_1": "94 Wilkie Street", + "address_2": null, + "address_3": null, + "city": "Yeerongpilly", + "state_province": "QLD", + "postal_code": "4105", + "country": "Australia", + "longitude": 153.0144359, + "latitude": -27.5269485, + "phone": "+61 7 3892 4582", + "website_url": "http://slipstreambrewing.com.au/", + "state": "QLD", + "street": "94 Wilkie Street" + }, + { + "id": "a8b48973-2112-45c2-b6df-4ff60cde502b", + "name": "Slipstream Brewing", + "brewery_type": "micro", + "address_1": "94 Wilkie Street", + "address_2": null, + "address_3": null, + "city": "Yeerongpilly", + "state_province": "QLD", + "postal_code": "4105", + "country": "Australia", + "longitude": 153.0144359, + "latitude": -27.5269485, + "phone": "+61 7 3892 4582", + "website_url": "http://slipstreambrewing.com.au/", + "state": "QLD", + "street": "94 Wilkie Street" + }, + { + "id": "c9b014ab-a72f-4098-8cd7-1e30b7989b3a", + "name": "SLO Brewing Co", + "brewery_type": "micro", + "address_1": "736 Higuera St", + "address_2": null, + "address_3": null, + "city": "San Luis Obispo", + "state_province": "California", + "postal_code": "93401-3513", + "country": "United States", + "longitude": -120.6640407, + "latitude": 35.2793012, + "phone": "8054595604", + "website_url": "http://www.slobrew.com", + "state": "California", + "street": "736 Higuera St" + }, + { + "id": "bbae1378-1b2d-4496-8f25-b215c7c27cf3", + "name": "SLO Brewing Co - The Rock", + "brewery_type": "brewpub", + "address_1": "855 Aerovista Pl", + "address_2": null, + "address_3": null, + "city": "San Luis Obispo", + "state_province": "California", + "postal_code": "93401-8056", + "country": "United States", + "longitude": -120.6411805, + "latitude": 35.24187276, + "phone": "8057062915", + "website_url": null, + "state": "California", + "street": "855 Aerovista Pl" + }, + { + "id": "f5072e98-978a-4a4b-bd96-610257365d89", + "name": "Sloop Brewing", + "brewery_type": "micro", + "address_1": "1065 County Route 19", + "address_2": null, + "address_3": null, + "city": "Elizaville", + "state_province": "New York", + "postal_code": "12523-1205", + "country": "United States", + "longitude": -73.797148, + "latitude": 42.084393, + "phone": "9178483865", + "website_url": "http://www.sloopbrewing.com", + "state": "New York", + "street": "1065 County Route 19" + }, + { + "id": "c04099fd-d844-41a9-8478-b7d9cc2999da", + "name": "Slow Lane Brewing", + "brewery_type": "micro", + "address_1": "30 Byrnes Street", + "address_2": null, + "address_3": null, + "city": "Botany", + "state_province": "NSW", + "postal_code": "2019", + "country": "Australia", + "longitude": 151.1946993, + "latitude": -33.9461454, + "phone": "+61 2 9121 6279", + "website_url": "http://slowlanebrewing.com.au/", + "state": "NSW", + "street": "30 Byrnes Street" + }, + { + "id": "054dc3c8-bca1-4a31-94c3-4fbf7c0f5567", + "name": "Slow Play Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Rock Hill", + "state_province": "South Carolina", + "postal_code": "29730-3504", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "South Carolina", + "street": null + }, + { + "id": "4fd7c5d7-8725-46dd-9174-20d118057f5b", + "name": "Slow Pour Brewing Company", + "brewery_type": "micro", + "address_1": "407 N Clayton St", + "address_2": null, + "address_3": null, + "city": "Lawrenceville", + "state_province": "Georgia", + "postal_code": "30046-4818", + "country": "United States", + "longitude": -83.98889581, + "latitude": 33.96116747, + "phone": "4045108901", + "website_url": "http://www.slowpourbrewing.com", + "state": "Georgia", + "street": "407 N Clayton St" + }, + { + "id": "b629eb5c-2277-41cb-b37e-a892bf3b9ce3", + "name": "Slowboat Brewing Company", + "brewery_type": "micro", + "address_1": "318 W 5th St", + "address_2": null, + "address_3": null, + "city": "Laurel", + "state_province": "Mississippi", + "postal_code": "39440-3461", + "country": "United States", + "longitude": -89.12789538, + "latitude": 31.69425231, + "phone": "6014332723", + "website_url": "http://www.slowboatbrewco.com", + "state": "Mississippi", + "street": "318 W 5th St" + }, + { + "id": "bba784ea-f9b4-4d89-a713-9697cd12982d", + "name": "Sluggo Brewing", + "brewery_type": "micro", + "address_1": "2712 6th Ave", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98406-7213", + "country": "United States", + "longitude": -122.472174, + "latitude": 47.2553127, + "phone": "2533271894", + "website_url": "http://www.halfpintpizzapub.com", + "state": "Washington", + "street": "2712 6th Ave" + }, + { + "id": "ccfce8d1-c49d-4bb5-af77-36e5e0def26a", + "name": "Sly Fox Brewhouse and Eatery", + "brewery_type": "micro", + "address_1": "520 Kimberton Rd Pikeland Village Square", + "address_2": null, + "address_3": null, + "city": "Phoenixville", + "state_province": "Pennsylvania", + "postal_code": "19460-4737", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6109354540", + "website_url": "http://www.slyfoxbeer.com", + "state": "Pennsylvania", + "street": "520 Kimberton Rd Pikeland Village Square" + }, + { + "id": "acd3da61-7841-48bf-9d0e-5ac89915e9dc", + "name": "Sly Fox Brewing Co", + "brewery_type": "regional", + "address_1": "331 Circle of Progress Dr", + "address_2": null, + "address_3": null, + "city": "Pottstown", + "state_province": "Pennsylvania", + "postal_code": "19464-3811", + "country": "United States", + "longitude": -75.66632314, + "latitude": 40.26338927, + "phone": "4845248210", + "website_url": "http://www.slyfoxbeer.com", + "state": "Pennsylvania", + "street": "331 Circle of Progress Dr" + }, + { + "id": "a2fd5880-bb20-447c-8676-06d5c3204bb2", + "name": "Small Batch Beer Co", + "brewery_type": "brewpub", + "address_1": "241 W 5th St", + "address_2": null, + "address_3": null, + "city": "Winston Salem", + "state_province": "North Carolina", + "postal_code": "27101-2825", + "country": "United States", + "longitude": -80.24656194, + "latitude": 36.09984057, + "phone": "3368936395", + "website_url": "http://www.smallbatchws.com", + "state": "North Carolina", + "street": "241 W 5th St" + }, + { + "id": "221f2f9d-0a0d-4a0e-812d-52a323b9b0b6", + "name": "Small Brewpub", + "brewery_type": "brewpub", + "address_1": "333 W Jefferson Blvd", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75208-4602", + "country": "United States", + "longitude": -96.924553, + "latitude": 32.747739, + "phone": "9728631594", + "website_url": "http://www.smallbrewpub.com", + "state": "Texas", + "street": "333 W Jefferson Blvd" + }, + { + "id": "ad153816-87b7-4426-8962-a885e286c116", + "name": "Small Craft Brewing Co", + "brewery_type": "micro", + "address_1": "66 Merrick Rd", + "address_2": null, + "address_3": null, + "city": "Amityville", + "state_province": "New York", + "postal_code": "11701-3463", + "country": "United States", + "longitude": -73.42019, + "latitude": 40.67158556, + "phone": "6314640186", + "website_url": "http://www.smallcraftbrewing.com", + "state": "New York", + "street": "66 Merrick Rd" + }, + { + "id": "88e5f229-e9d3-43b2-9a45-2b4939c5d292", + "name": "Small Town Brewery", + "brewery_type": "large", + "address_1": "1000 N Rand Rd Ste 204", + "address_2": null, + "address_3": null, + "city": "Wauconda", + "state_province": "Illinois", + "postal_code": "60084-1182", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3142768277", + "website_url": null, + "state": "Illinois", + "street": "1000 N Rand Rd Ste 204" + }, + { + "id": "5fb3457a-9cea-4b46-a7a7-c78cedf557a3", + "name": "Smart Beer Company", + "brewery_type": "contract", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "New Paltz", + "state_province": "New York", + "postal_code": "12561-0430", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.smartbeercompany.com", + "state": "New York", + "street": null + }, + { + "id": "bea38221-67c0-4322-adcb-17e7b9fcc25c", + "name": "Smart Brothers Brewing", + "brewery_type": "micro", + "address_1": "1 Bray Street", + "address_2": "5", + "address_3": null, + "city": "Hastings", + "state_province": "VIC", + "postal_code": "3915", + "country": "Australia", + "longitude": 145.1830069, + "latitude": -38.3149735, + "phone": "+61 491 763 765", + "website_url": "https://www.smartbrothersbrewing.com.au/", + "state": "VIC", + "street": "1 Bray Street" + }, + { + "id": "2e7b8b79-621e-4681-8f53-0c24fedfc09d", + "name": "Smartmouth Brewing Co", + "brewery_type": "micro", + "address_1": "1309 Raleigh Ave Ste A", + "address_2": null, + "address_3": null, + "city": "Norfolk", + "state_province": "Virginia", + "postal_code": "23507-1367", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7576243939", + "website_url": "http://www.smartmouthbrewing.com", + "state": "Virginia", + "street": "1309 Raleigh Ave Ste A" + }, + { + "id": "74cef93d-22b5-418a-a84f-e996784e17d7", + "name": "Smartmouth Brewing Pilot House", + "brewery_type": "micro", + "address_1": "313 32nd St", + "address_2": null, + "address_3": null, + "city": "Virginia Beach", + "state_province": "Virginia", + "postal_code": "23451-2950", + "country": "United States", + "longitude": -75.98078847, + "latitude": 36.86023395, + "phone": null, + "website_url": null, + "state": "Virginia", + "street": "313 32nd St" + }, + { + "id": "8a7b82c3-9385-4588-a98a-35fc895e4a7a", + "name": "Smelter City Brewing", + "brewery_type": "micro", + "address_1": "101 E Commercial Ave", + "address_2": null, + "address_3": null, + "city": "Anaconda", + "state_province": "Montana", + "postal_code": "59711-2289", + "country": "United States", + "longitude": -112.95216, + "latitude": 46.130107, + "phone": "4065630344", + "website_url": "http://www.smeltercitybrewing.com", + "state": "Montana", + "street": "101 E Commercial Ave" + }, + { + "id": "6ff628c3-ea43-4404-bffb-c4f3b2e24830", + "name": "Smiley Brewing Co.", + "brewery_type": "micro", + "address_1": "9 Southeast Boulevard", + "address_2": "Factory 1", + "address_3": null, + "city": "Pakenham", + "state_province": "VIC", + "postal_code": "3810", + "country": "Australia", + "longitude": 145.484957, + "latitude": -38.0980134, + "phone": "+61 3 8840 6568", + "website_url": "http://www.smileybrewing.com.au/", + "state": "VIC", + "street": "9 Southeast Boulevard" + }, + { + "id": "b286b333-e7d2-4707-97e2-cda9aa7ada04", + "name": "Smiling Samoyed", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Myponga", + "state_province": "SA", + "postal_code": "5202", + "country": "Australia", + "longitude": 138.4630252, + "latitude": -35.3903026, + "phone": "+61 8 8558 6166", + "website_url": "http://www.smilingsamoyed.com.au/", + "state": "SA", + "street": null + }, + { + "id": "9692085e-0a88-418f-bae2-8ac272043c22", + "name": "Smiling Toad Brewery", + "brewery_type": "micro", + "address_1": "1757 S 8th St Ste 100", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80905-1926", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7194182936", + "website_url": "http://www.smilingtoadbrewery.com", + "state": "Colorado", + "street": "1757 S 8th St Ste 100" + }, + { + "id": "6cd2665b-5ea4-4d78-a955-4054b95cbdee", + "name": "Smith & Lentz Brewing", + "brewery_type": "micro", + "address_1": "903 Main St", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37206-3609", + "country": "United States", + "longitude": -86.75651722, + "latitude": 36.17632511, + "phone": null, + "website_url": "http://www.smithandlentz.com", + "state": "Tennessee", + "street": "903 Main St" + }, + { + "id": "57c23721-9ab0-4718-b171-a6a1da98d5a0", + "name": "Smith Alley Brewing Company", + "brewery_type": "micro", + "address_1": "150 N Wolcott St", + "address_2": null, + "address_3": null, + "city": "Casper", + "state_province": "Wyoming", + "postal_code": "82601-2529", + "country": "United States", + "longitude": -106.95608972899, + "latitude": 44.799078333975, + "phone": "3076751934", + "website_url": "http://www.smithalleybrewing.com", + "state": "Wyoming", + "street": "150 N Wolcott St" + }, + { + "id": "6a6ff43f-647e-4943-8cb5-85d6258598b6", + "name": "Smith Rock Brewing", + "brewery_type": "brewpub", + "address_1": "546 NW 7th St", + "address_2": null, + "address_3": null, + "city": "Redmond", + "state_province": "Oregon", + "postal_code": "97756-1628", + "country": "United States", + "longitude": -121.175239, + "latitude": 44.28056302, + "phone": "5412797005", + "website_url": "http://www.smithrockbrewing.com", + "state": "Oregon", + "street": "546 NW 7th St" + }, + { + "id": "338a035d-fe33-4406-8d9b-0acb0eb96f41", + "name": "Smithwick's (Diageo)", + "brewery_type": "regional", + "address_1": "44 Parliament St", + "address_2": "Gardens", + "address_3": null, + "city": "Kilkenny", + "state_province": "Kilkenny", + "postal_code": "R95 VK54", + "country": "Ireland", + "longitude": -7.2562989, + "latitude": 52.6543719, + "phone": "353567786377", + "website_url": "https://www.smithwicksexperience.com/", + "state": "Kilkenny", + "street": "44 Parliament St" + }, + { + "id": "64348b73-e8b5-4bc3-8148-9630d2e347c3", + "name": "Smitty's Brewing", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Bremerton", + "state_province": "Washington", + "postal_code": "98312-9132", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3607108921", + "website_url": "http://smittysbrewing.com", + "state": "Washington", + "street": null + }, + { + "id": "130b023b-c130-4325-8df2-2a52a62aaf21", + "name": "Smockville Brewhouse", + "brewery_type": "brewpub", + "address_1": "22793 SW Pine St", + "address_2": null, + "address_3": null, + "city": "Sherwood", + "state_province": "Oregon", + "postal_code": "97140-9303", + "country": "United States", + "longitude": -122.8406694, + "latitude": 45.3566248, + "phone": "5036101506", + "website_url": "http://www.smockvillebrewhouse.com", + "state": "Oregon", + "street": "22793 SW Pine St" + }, + { + "id": "c267ba5a-d0dc-4725-85fd-18659fe5a006", + "name": "Smog City Brewing", + "brewery_type": "micro", + "address_1": "1901 Del Amo Blvd Ste B", + "address_2": null, + "address_3": null, + "city": "Torrance", + "state_province": "California", + "postal_code": "90501-1350", + "country": "United States", + "longitude": -118.313547, + "latitude": 33.8472774, + "phone": "3103207664", + "website_url": "http://www.smogcitybrewing.com", + "state": "California", + "street": "1901 Del Amo Blvd Ste B" + }, + { + "id": "6fc07a95-1af8-4e00-bfd6-3841016cf901", + "name": "Smog City Brewing Wood Cellar", + "brewery_type": "micro", + "address_1": "1879 Del Amo Blvd", + "address_2": null, + "address_3": null, + "city": "Torrance", + "state_province": "California", + "postal_code": "90501", + "country": "United States", + "longitude": -118.3180205, + "latitude": 33.8467722, + "phone": "3103207664", + "website_url": "http://www.smogcitybrewing.com", + "state": "California", + "street": "1879 Del Amo Blvd" + }, + { + "id": "b2c68158-4806-47ed-8150-a45d1661c2b9", + "name": "Smoke Brewing Company", + "brewery_type": "brewpub", + "address_1": "209 SE Main St", + "address_2": null, + "address_3": null, + "city": "Lees Summit", + "state_province": "Missouri", + "postal_code": "64063", + "country": "United States", + "longitude": -94.37807739, + "latitude": 38.91334904, + "phone": "8165252337", + "website_url": "http://www.smokebrewingcompany.com", + "state": "Missouri", + "street": "209 SE Main St" + }, + { + "id": "30ea1448-f80e-4674-9a8a-4ab5fe6ac550", + "name": "Smoke Mountain Brewery", + "brewery_type": "micro", + "address_1": "6520 Casitas Pass Rd", + "address_2": null, + "address_3": null, + "city": "Ventura", + "state_province": "California", + "postal_code": "93001-9794", + "country": "United States", + "longitude": -119.4438779, + "latitude": 34.39420959, + "phone": "8058047954", + "website_url": "http://www.smokemtn.com", + "state": "California", + "street": "6520 Casitas Pass Rd" + }, + { + "id": "61f48b53-84df-41ce-8dac-170b22a19caf", + "name": "Smokehouse Brewing", + "brewery_type": "brewpub", + "address_1": "1130 Dublin Rd", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43215-1039", + "country": "United States", + "longitude": -83.047935, + "latitude": 39.973715, + "phone": "6144850227", + "website_url": "http://www.smokehousebrewing.com", + "state": "Ohio", + "street": "1130 Dublin Rd" + }, + { + "id": "7d0390dd-7798-4be0-8df3-9dab9fb59ae2", + "name": "Smoketown Brewing Station", + "brewery_type": "micro", + "address_1": "223 W Potomac St", + "address_2": null, + "address_3": null, + "city": "Brunswick", + "state_province": "Maryland", + "postal_code": "21716-1117", + "country": "United States", + "longitude": -77.6302935, + "latitude": 39.3136514, + "phone": "3018344828", + "website_url": "http://www.smoketownbrewing.com", + "state": "Maryland", + "street": "223 W Potomac St" + }, + { + "id": "bee91126-b9e1-4bb0-b7b1-dd746886e199", + "name": "Smoking Cannon Brewery", + "brewery_type": "micro", + "address_1": "780 Main St Ste I", + "address_2": null, + "address_3": null, + "city": "Ramona", + "state_province": "California", + "postal_code": "92065-2079", + "country": "United States", + "longitude": -116.8651486, + "latitude": 33.04359813, + "phone": "7604077557", + "website_url": "http://www.smokingcannonbrewery.com", + "state": "California", + "street": "780 Main St Ste I" + }, + { + "id": "6c4840de-a3b0-4fd6-bd09-5044c906aaa5", + "name": "Smoky Mountain Brewery (#1)", + "brewery_type": "brewpub", + "address_1": "6515 Kingston Pike", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37919-4826", + "country": "United States", + "longitude": -84.00966312, + "latitude": 35.93189033, + "phone": "8656733377", + "website_url": "http://www.smoky-mtn-brewery.com", + "state": "Tennessee", + "street": "6515 Kingston Pike" + }, + { + "id": "b17bcb8a-14d5-45ba-951e-0f3ea50fa470", + "name": "Smoky Mountain Brewery (#2) - Gatlinburg", + "brewery_type": "brewpub", + "address_1": "1004 Parkway Ste 501", + "address_2": null, + "address_3": null, + "city": "Gatlinburg", + "state_province": "Tennessee", + "postal_code": "37738-3172", + "country": "United States", + "longitude": -83.52053504, + "latitude": 35.70901801, + "phone": "8654364200", + "website_url": "http://www.smoky-mtn-brewery.com", + "state": "Tennessee", + "street": "1004 Parkway Ste 501" + }, + { + "id": "33d7fe5d-3e85-4c20-8f32-a2541d223bed", + "name": "Smoky Mountain Brewery (#3) - Pigeon Forge", + "brewery_type": "brewpub", + "address_1": "2530 Parkway Ste 15", + "address_2": null, + "address_3": null, + "city": "Pigeon Forge", + "state_province": "Tennessee", + "postal_code": "37863-7006", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.smoky-mtn-brewery.com", + "state": "Tennessee", + "street": "2530 Parkway Ste 15" + }, + { + "id": "1e9730a4-0830-4062-bfb4-f368a39dd72e", + "name": "Smoky Mountain Brewery (#4) - Turkey Creek", + "brewery_type": "brewpub", + "address_1": "11308 Parkside Dr", + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37934-1971", + "country": "United States", + "longitude": -84.15846424, + "latitude": 35.90006382, + "phone": "8652885500", + "website_url": "http://www.smoky-mtn-brewery.com", + "state": "Tennessee", + "street": "11308 Parkside Dr" + }, + { + "id": "879d1388-aaf4-43be-b148-c768b7bf7b08", + "name": "Smug Brewing Company", + "brewery_type": "micro", + "address_1": "100 Carver St", + "address_2": null, + "address_3": null, + "city": "Pawtucket", + "state_province": "Rhode Island", + "postal_code": "02860", + "country": "United States", + "longitude": -71.3987677, + "latitude": 41.8598033, + "phone": "4016425701", + "website_url": "https://smugbrewing.com", + "state": "Rhode Island", + "street": "100 Carver St" + }, + { + "id": "36082801-cacf-4a86-8c76-30dcb6779c63", + "name": "Smuggler's Brewpub", + "brewery_type": "brewpub", + "address_1": "225 South Pine St", + "address_2": null, + "address_3": null, + "city": "Telluride", + "state_province": "Colorado", + "postal_code": "81435", + "country": "United States", + "longitude": -107.8114274, + "latitude": 37.9358018, + "phone": "9707285620", + "website_url": "http://www.smugglersbrewpub.com", + "state": "Colorado", + "street": "225 South Pine St" + }, + { + "id": "34475681-5cf6-41d4-9fb2-89be9c894fa4", + "name": "Smuttynose Brewing Co", + "brewery_type": "regional", + "address_1": "105 Towle Farm Rd", + "address_2": null, + "address_3": null, + "city": "Hampton", + "state_province": "New Hampshire", + "postal_code": "03842-1806", + "country": "United States", + "longitude": -70.85354155, + "latitude": 42.94551535, + "phone": "6034364026", + "website_url": "http://www.smuttynose.com", + "state": "New Hampshire", + "street": "105 Towle Farm Rd" + }, + { + "id": "524c21c1-3dc5-4e41-9e97-5ff34578e071", + "name": "Smylie Brothers Brewing Co", + "brewery_type": "brewpub", + "address_1": "1615 Oak Ave", + "address_2": null, + "address_3": null, + "city": "Evanston", + "state_province": "Illinois", + "postal_code": "60201-3611", + "country": "United States", + "longitude": -87.6864692, + "latitude": 42.0476547, + "phone": "2249997320", + "website_url": "http://www.smyliebros.com", + "state": "Illinois", + "street": "1615 Oak Ave" + }, + { + "id": "c20499a8-0cd9-4fc4-878d-78067362cafb", + "name": "Snafu Brewing Company", + "brewery_type": "micro", + "address_1": "3280 Industry Dr", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "South Carolina", + "postal_code": "29418-8452", + "country": "United States", + "longitude": -80.0664232, + "latitude": 32.9255082, + "phone": "8437674121", + "website_url": "http://www.snafubrewingcompany.com", + "state": "South Carolina", + "street": "3280 Industry Dr" + }, + { + "id": "5a2b53e3-a513-4466-bdec-b3705517710f", + "name": "Snake River Brewing Co", + "brewery_type": "micro", + "address_1": "265 S Millward St PO Box 3317", + "address_2": null, + "address_3": null, + "city": "Jackson", + "state_province": "Wyoming", + "postal_code": "83001-8582", + "country": "United States", + "longitude": -110.79995450526, + "latitude": 43.539472908519, + "phone": "3077392337", + "website_url": "http://www.snakeriverbrewing.com", + "state": "Wyoming", + "street": "265 S Millward St PO Box 3317" + }, + { + "id": "66c2e46d-acf3-4edf-90a4-8acbcea6586e", + "name": "Snipes Mountain Brewing Co", + "brewery_type": "micro", + "address_1": "905 Yakima Valley Hwy", + "address_2": null, + "address_3": null, + "city": "Sunnyside", + "state_province": "Washington", + "postal_code": "98944-1334", + "country": "United States", + "longitude": -120.0114902, + "latitude": 46.32921174, + "phone": "5098372739", + "website_url": "http://www.snipesmountain.com", + "state": "Washington", + "street": "905 Yakima Valley Hwy" + }, + { + "id": "f520b880-2360-4cb9-88fb-a15f03c01fc0", + "name": "Snitz Creek Brewery", + "brewery_type": "brewpub", + "address_1": "7 N 9th St", + "address_2": null, + "address_3": null, + "city": "Lebanon", + "state_province": "Pennsylvania", + "postal_code": "17046-4902", + "country": "United States", + "longitude": -76.42637732, + "latitude": 40.33937728, + "phone": "7174504467", + "website_url": "http://www.snitzcreekbrewery.com", + "state": "Pennsylvania", + "street": "7 N 9th St" + }, + { + "id": "9f37b457-f853-47c4-9fb1-95fa1287b095", + "name": "Snoqualmie Falls Brewing Co", + "brewery_type": "brewpub", + "address_1": "8032 Falls Ave SE", + "address_2": null, + "address_3": null, + "city": "Snoqualmie", + "state_province": "Washington", + "postal_code": "98065-0924", + "country": "United States", + "longitude": -121.8240977, + "latitude": 47.5286214, + "phone": null, + "website_url": null, + "state": "Washington", + "street": "8032 Falls Ave SE" + }, + { + "id": "299a779f-c294-460e-97b1-fdc002e7d033", + "name": "SnoTown Brewery", + "brewery_type": "micro", + "address_1": "511 2nd St", + "address_2": null, + "address_3": null, + "city": "Snohomish", + "state_province": "Washington", + "postal_code": "98290-3009", + "country": "United States", + "longitude": -122.088761, + "latitude": 47.912652, + "phone": "4252318113", + "website_url": "http://www.facebook.com/SnoTownBrewery/", + "state": "Washington", + "street": "511 2nd St" + }, + { + "id": "645db033-5fd1-47f2-aa98-8d996d148669", + "name": "Snow Belt Brew", + "brewery_type": "micro", + "address_1": "9511 Kile Rd", + "address_2": null, + "address_3": null, + "city": "Chardon", + "state_province": "Ohio", + "postal_code": "44024", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": "9511 Kile Rd" + }, + { + "id": "a346740b-449c-486b-84b9-c6bcc88d423f", + "name": "Snow Eagle Brewing", + "brewery_type": "brewpub", + "address_1": "455 River Pkwy", + "address_2": null, + "address_3": null, + "city": "Idaho Falls", + "state_province": "Idaho", + "postal_code": "83402-3314", + "country": "United States", + "longitude": -112.0452184, + "latitude": 43.4950536, + "phone": "2085570455", + "website_url": "http://www.snoweaglebrewing.com", + "state": "Idaho", + "street": "455 River Pkwy" + }, + { + "id": "dcf64959-67a8-4af7-8cbf-ddeb3b645883", + "name": "Snow Hop Brewery", + "brewery_type": "micro", + "address_1": "685 Barney St Ste A", + "address_2": null, + "address_3": null, + "city": "Helena", + "state_province": "Montana", + "postal_code": "59602", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4064225026", + "website_url": null, + "state": "Montana", + "street": "685 Barney St Ste A" + }, + { + "id": "4e7d4dcd-13cd-4b18-acd3-7a690ba97aa0", + "name": "Snowbank Brewing", + "brewery_type": "micro", + "address_1": "225 N Lemay Ave Ste 1", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80524-2555", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9709995658", + "website_url": "http://www.snowbank.beer", + "state": "Colorado", + "street": "225 N Lemay Ave Ste 1" + }, + { + "id": "3467fc4d-c507-46c1-a962-31d470bb204c", + "name": "Snowbelt Brewing Company", + "brewery_type": "brewpub", + "address_1": "132 W Main St Unit 1", + "address_2": null, + "address_3": null, + "city": "Gaylord", + "state_province": "Michigan", + "postal_code": "49735-2304", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9894487077", + "website_url": null, + "state": "Michigan", + "street": "132 W Main St Unit 1" + }, + { + "id": "6e862799-cb99-4d59-9eed-7255e4a44851", + "name": "Snowshoe Brewing Co", + "brewery_type": "brewpub", + "address_1": "2050 Hwy 4", + "address_2": null, + "address_3": null, + "city": "Arnold", + "state_province": "California", + "postal_code": "95223", + "country": "United States", + "longitude": -120.3617024, + "latitude": 38.2423881, + "phone": "2097952272", + "website_url": "http://www.snowshoebrewing.com", + "state": "California", + "street": "2050 Hwy 4" + }, + { + "id": "70ae45d2-2998-4e2b-a88f-519ad2bee814", + "name": "Snowy Mountain Brewery", + "brewery_type": "brewpub", + "address_1": "601 E Pic Pike Rd", + "address_2": null, + "address_3": null, + "city": "Saratoga", + "state_province": "Wyoming", + "postal_code": "82331", + "country": "United States", + "longitude": -106.80129947327, + "latitude": 41.452893296794, + "phone": "8005940178", + "website_url": "https://snowymountainbrewery.com", + "state": "Wyoming", + "street": "601 E Pic Pike Rd" + }, + { + "id": "545fe321-a08c-4a36-b8f2-0a9af88b4853", + "name": "Soapbox Brewing Co.", + "brewery_type": "micro", + "address_1": "101 Gipps Street", + "address_2": "89", + "address_3": null, + "city": "Fortitude Valley", + "state_province": "QLD", + "postal_code": "4006", + "country": "Australia", + "longitude": 153.0321917, + "latitude": -27.4581965, + "phone": "+61 492 807 862", + "website_url": "https://www.soapbox.beer/", + "state": "QLD", + "street": "101 Gipps Street" + }, + { + "id": "c97e04f0-8d82-4730-a622-028f71756b5d", + "name": "Soaring Ridge Craft Brewers", + "brewery_type": "micro", + "address_1": "523 Shenandoah Ave NW", + "address_2": null, + "address_3": null, + "city": "Roanoke", + "state_province": "Virginia", + "postal_code": "24016-2318", + "country": "United States", + "longitude": -79.94962582, + "latitude": 37.27473423, + "phone": "5405292140", + "website_url": "http://www.soaringridge.com", + "state": "Virginia", + "street": "523 Shenandoah Ave NW" + }, + { + "id": "30827634-ef1e-4c6e-b5a2-5fa202a5edd0", + "name": "Soaring Wings Brewing", + "brewery_type": "micro", + "address_1": "17111 S 138th St", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Nebraska", + "postal_code": "68059-4810", + "country": "United States", + "longitude": -96.125404, + "latitude": 41.06572, + "phone": "4022532479", + "website_url": "http://www.soaringwingswine.com", + "state": "Nebraska", + "street": "17111 S 138th St" + }, + { + "id": "8301bc1c-4f4b-46c7-8217-fecb090a2d7c", + "name": "Sobel's Obscure Brewery, LLC", + "brewery_type": "contract", + "address_1": "954 Arona Rd", + "address_2": null, + "address_3": null, + "city": "New Stanton", + "state_province": "Pennsylvania", + "postal_code": "15672-1109", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4125251553", + "website_url": "http://www.Sobbrews.com", + "state": "Pennsylvania", + "street": "954 Arona Rd" + }, + { + "id": "ef0704b9-02ca-4805-9ee1-5a954b1ecc15", + "name": "Sobremesa Fermentary & Blendary", + "brewery_type": "micro", + "address_1": "86 Parsons Street", + "address_2": null, + "address_3": null, + "city": "Kensington", + "state_province": "VIC", + "postal_code": "3031", + "country": "Australia", + "longitude": 144.9350775, + "latitude": -37.7903317, + "phone": null, + "website_url": "https://sobremesabeer.com/", + "state": "VIC", + "street": "86 Parsons Street" + }, + { + "id": "b6a17419-65d8-4d92-a996-bf26330e9f0a", + "name": "Sociable Cider Werks", + "brewery_type": "micro", + "address_1": "1500 Fillmore St NE", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55413-1657", + "country": "United States", + "longitude": -93.2422388, + "latitude": 45.0239772, + "phone": "6127580105", + "website_url": "http://www.sociablecider.com", + "state": "Minnesota", + "street": "1500 Fillmore St NE" + }, + { + "id": "bcf8b5aa-57c0-4f94-8809-c419091badc2", + "name": "Social Kitchen & Brewery", + "brewery_type": "brewpub", + "address_1": "1326 9th Ave", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94122-2309", + "country": "United States", + "longitude": -122.4660662, + "latitude": 37.7635041, + "phone": "4156810330", + "website_url": "http://www.socialkitchenandbrewery.com", + "state": "California", + "street": "1326 9th Ave" + }, + { + "id": "cdab7b3e-8fbe-430f-9303-5399b1fc15df", + "name": "Societe Brewing Company", + "brewery_type": "micro", + "address_1": "Societe Brewing Company 8262 Clairemont Mesa Blvd", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92111-1702", + "country": "United States", + "longitude": -117.1463568, + "latitude": 32.8338146, + "phone": "7138161157", + "website_url": null, + "state": "California", + "street": "Societe Brewing Company 8262 Clairemont Mesa Blvd" + }, + { + "id": "dc097df0-f535-4aba-9a70-f3dfbccb1b1c", + "name": "Sockdolager Brewing Company", + "brewery_type": "micro", + "address_1": "720 China St", + "address_2": null, + "address_3": null, + "city": "Abilene", + "state_province": "Texas", + "postal_code": "79602-2722", + "country": "United States", + "longitude": -99.7270701, + "latitude": 32.44139071, + "phone": "3257211718", + "website_url": "http://www.sockdolagerbrewery.com", + "state": "Texas", + "street": "720 China St" + }, + { + "id": "b7d4cb54-84c9-417d-a512-d15825e4b10e", + "name": "Sockeye Brewing Co", + "brewery_type": "micro", + "address_1": "12542 W Fairview Ave", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83716-0026", + "country": "United States", + "longitude": -116.252364, + "latitude": 43.619049, + "phone": "2083225200", + "website_url": "http://www.sockyebrew.com", + "state": "Idaho", + "street": "12542 W Fairview Ave" + }, + { + "id": "84a0e21f-7d91-42ba-9c07-81e504778f60", + "name": "Soggy Bottom Brewing Co.", + "brewery_type": "micro", + "address_1": "660 Main St", + "address_2": null, + "address_3": null, + "city": "Dunedin", + "state_province": "Florida", + "postal_code": "34698", + "country": "United States", + "longitude": -82.78271981, + "latitude": 28.0152064, + "phone": "7276011698", + "website_url": "http://www.soggybottombrewery.com", + "state": "Florida", + "street": "660 Main St" + }, + { + "id": "6a0be8ef-dd30-47c4-8649-17245e0a1e5f", + "name": "Solace Brewing Company", + "brewery_type": "micro", + "address_1": "42615 Trade West Dr Ste 100", + "address_2": null, + "address_3": null, + "city": "Dulles", + "state_province": "Virginia", + "postal_code": "20166-2259", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7033455630", + "website_url": "http://www.solacebrewing.com", + "state": "Virginia", + "street": "42615 Trade West Dr Ste 100" + }, + { + "id": "a760e66e-82a3-4f7d-8145-bc3f79c995e2", + "name": "Solarc Brewing", + "brewery_type": "contract", + "address_1": "134 S Avenue 57", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90042-4702", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6319442990", + "website_url": "http://www.solarcbrewing.com", + "state": "California", + "street": "134 S Avenue 57" + }, + { + "id": "512abf35-00ec-4414-943d-a2a79c5f73dc", + "name": "Sole Track Brewing", + "brewery_type": "brewpub", + "address_1": "27 Main St", + "address_2": null, + "address_3": null, + "city": "Rumney", + "state_province": "New Hampshire", + "postal_code": "03266", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6037866077", + "website_url": "https://www.soletrackbrewing.com/", + "state": "New Hampshire", + "street": "27 Main St" + }, + { + "id": "daca87d4-1d07-4fba-a2f1-aaa28d7aec1e", + "name": "Solemn Oath Brewery", + "brewery_type": "micro", + "address_1": "1661 Quincy Ave Ste 179", + "address_2": null, + "address_3": null, + "city": "Naperville", + "state_province": "Illinois", + "postal_code": "60540-3969", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6309953062", + "website_url": "http://www.solemnoathbrewery.com", + "state": "Illinois", + "street": "1661 Quincy Ave Ste 179" + }, + { + "id": "816368fa-9f37-4e7d-962d-4fb3107b0a3a", + "name": "Solera Brewery", + "brewery_type": "micro", + "address_1": "4945 Baseline Dr", + "address_2": null, + "address_3": null, + "city": "Mount Hood Parkdale", + "state_province": "Oregon", + "postal_code": "-97041", + "country": "United States", + "longitude": -121.5951287, + "latitude": 45.51966439, + "phone": "5413525500", + "website_url": "http://www.solerabrewery.com", + "state": "Oregon", + "street": "4945 Baseline Dr" + }, + { + "id": "8587e1dd-1acc-41ac-bf4b-c4550511e1f6", + "name": "Solid Ground Brewing", + "brewery_type": "brewpub", + "address_1": "552 Pleasant Valley Road", + "address_2": null, + "address_3": null, + "city": "Diamond Springs", + "state_province": "California", + "postal_code": "95619", + "country": "United States", + "longitude": -120.8219606, + "latitude": 38.6932793, + "phone": "5303447442", + "website_url": "http://www.solidgroundbrewing.com", + "state": "California", + "street": "552 Pleasant Valley Road" + }, + { + "id": "deeb2585-3c04-49a8-bf79-9159ea0c7d31", + "name": "Solid Rock Brewing", + "brewery_type": "micro", + "address_1": "2214 Bee Creek Rd", + "address_2": null, + "address_3": null, + "city": "Spicewood", + "state_province": "Texas", + "postal_code": "78669-5136", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5124878786", + "website_url": "http://www.solidrockbrewing.com", + "state": "Texas", + "street": "2214 Bee Creek Rd" + }, + { + "id": "09b8f1ce-13c9-4542-8eda-4967a8c83371", + "name": "Solorio Brewing Co", + "brewery_type": "micro", + "address_1": "9395 Feron Blvd Ste K", + "address_2": null, + "address_3": null, + "city": "Rancho Cucamonga", + "state_province": "California", + "postal_code": "91730-4565", + "country": "United States", + "longitude": -117.6003239, + "latitude": 34.09295495, + "phone": "9097555400", + "website_url": "http://www.soloriobrewing.com", + "state": "California", + "street": "9395 Feron Blvd Ste K" + }, + { + "id": "45835e94-e69b-4511-b811-b8680cf44005", + "name": "Solvang Brewing Co", + "brewery_type": "brewpub", + "address_1": "1547 Mission Dr", + "address_2": null, + "address_3": null, + "city": "Solvang", + "state_province": "California", + "postal_code": "93463-2607", + "country": "United States", + "longitude": -120.1448663, + "latitude": 34.59615466, + "phone": "8056882337", + "website_url": "http://www.solvangbrewingcompany.com", + "state": "California", + "street": "1547 Mission Dr" + }, + { + "id": "7c3654cd-94e2-43d1-a4a3-0109d64f96a7", + "name": "Solvang Brewing Company - Lompoc", + "brewery_type": "brewpub", + "address_1": "234 N H St", + "address_2": null, + "address_3": null, + "city": "Lompoc", + "state_province": "California", + "postal_code": "93436-6022", + "country": "United States", + "longitude": -120.4574527, + "latitude": 34.6419814, + "phone": "9787292485", + "website_url": "http://www.solvangbrewing.com", + "state": "California", + "street": "234 N H St" + }, + { + "id": "7baaf926-7eaf-4803-98b4-f7597e969a08", + "name": "Soma Brewing LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "South Orange", + "state_province": "New Jersey", + "postal_code": "07079-1455", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9737151450", + "website_url": null, + "state": "New Jersey", + "street": null + }, + { + "id": "472b6fa3-7855-4a02-a21e-b75b9ed12eea", + "name": "SoMe Brewing Co", + "brewery_type": "micro", + "address_1": "1 York St Ste 3", + "address_2": null, + "address_3": null, + "city": "York", + "state_province": "Maine", + "postal_code": "03909-1392", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2073518162", + "website_url": "http://somebrewingco.com", + "state": "Maine", + "street": "1 York St Ste 3" + }, + { + "id": "9a23baf2-a0b8-43cd-a9ff-aa496d1123e9", + "name": "Some Nerve Brewing Company", + "brewery_type": "micro", + "address_1": "5586 US Highway 51", + "address_2": null, + "address_3": null, + "city": "Manitowish Waters", + "state_province": "Wisconsin", + "postal_code": "54545-6325", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6085766040", + "website_url": "http://www.somenervebrewing.com", + "state": "Wisconsin", + "street": "5586 US Highway 51" + }, + { + "id": "ae889c78-5e3d-4ca9-ac90-ee8018e8419d", + "name": "SomePlace Else Brewery", + "brewery_type": "micro", + "address_1": "6425 W 52nd Ave Unit 6/6B", + "address_2": null, + "address_3": null, + "city": "Arvada", + "state_province": "Colorado", + "postal_code": "80002-4008", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7205124162", + "website_url": null, + "state": "Colorado", + "street": "6425 W 52nd Ave Unit 6/6B" + }, + { + "id": "2df1aca7-cceb-4928-b5f5-5e2307d6cd38", + "name": "Somers Point Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Somers Point", + "state_province": "New Jersey", + "postal_code": "08244-1822", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New Jersey", + "street": null + }, + { + "id": "d4b6dce4-8521-402d-a39b-0eef19bfcb7f", + "name": "Somerville Brewing Company", + "brewery_type": "micro", + "address_1": "15 Ward St", + "address_2": null, + "address_3": null, + "city": "Somerville", + "state_province": "Massachusetts", + "postal_code": "02143-4228", + "country": "United States", + "longitude": -71.0890345, + "latitude": 42.3749103, + "phone": "8004281150", + "website_url": "http://www.slumbrew.com", + "state": "Massachusetts", + "street": "15 Ward St" + }, + { + "id": "48540aba-e08a-4f3e-93ca-b838dfc41480", + "name": "Something Brewery", + "brewery_type": "micro", + "address_1": "117 N Main St Unit A", + "address_2": null, + "address_3": null, + "city": "Brighton", + "state_province": "Colorado", + "postal_code": "80601-1778", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7206601343", + "website_url": "http://www.somethingbrewery.com", + "state": "Colorado", + "street": "117 N Main St Unit A" + }, + { + "id": "696cdcee-6898-4e99-b290-5f6e493c0031", + "name": "Something Wicked Brewing Company", + "brewery_type": "brewpub", + "address_1": "34 Broadway Ste 200", + "address_2": null, + "address_3": null, + "city": "Hanover", + "state_province": "Pennsylvania", + "postal_code": "17331-3104", + "country": "United States", + "longitude": -76.98291017, + "latitude": 39.80048752, + "phone": "7173165488", + "website_url": "http://www.somethingwickedbrewing.com", + "state": "Pennsylvania", + "street": "34 Broadway Ste 200" + }, + { + "id": "1d5af320-379d-4812-b7c9-a2cfe9e3b22d", + "name": "Sonder Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Maineville", + "state_province": "Ohio", + "postal_code": "45039-8103", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6303473323", + "website_url": "http://www.sonderbrewery.com", + "state": "Ohio", + "street": null + }, + { + "id": "6925abe5-88ef-4e5a-974f-e22c32039d3c", + "name": "Sonoma Grille", + "brewery_type": "brewpub", + "address_1": "165 W Napa St", + "address_2": null, + "address_3": null, + "city": "Sonoma", + "state_province": "California", + "postal_code": "95476-6626", + "country": "United States", + "longitude": -122.4599821, + "latitude": 38.29204322, + "phone": "7079387542", + "website_url": "http://www.sonomagrilleandbar.com", + "state": "California", + "street": "165 W Napa St" + }, + { + "id": "25abf0bf-0e86-4d42-85fd-d238cec244a6", + "name": "Sonoma Springs Brewing Co", + "brewery_type": "micro", + "address_1": "19449 Riverside Dr Ste 101", + "address_2": null, + "address_3": null, + "city": "Sonoma", + "state_province": "California", + "postal_code": "95476-6357", + "country": "United States", + "longitude": -122.477788, + "latitude": 38.294506, + "phone": "7079387422", + "website_url": "http://www.sonomaspringsbrewing.com", + "state": "California", + "street": "19449 Riverside Dr Ste 101" + }, + { + "id": "4032ebf7-ed73-4dd4-b57c-a898a13ffbca", + "name": "Sonoran Brewing", + "brewery_type": "contract", + "address_1": "3002 E Washington St", + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85034-1518", + "country": "United States", + "longitude": -111.9805737, + "latitude": 33.4475332, + "phone": "6025108996", + "website_url": "http://www.sonoranbrewing.com", + "state": "Arizona", + "street": "3002 E Washington St" + }, + { + "id": "b568fe15-2cf7-4183-8826-18ad6b386fdf", + "name": "Sons of Liberty Aleworks", + "brewery_type": "micro", + "address_1": "1780 Town and Country Dr Ste 101", + "address_2": null, + "address_3": null, + "city": "Norco", + "state_province": "California", + "postal_code": "92860-3618", + "country": "United States", + "longitude": -117.5597542, + "latitude": 33.9277892, + "phone": "9514035122", + "website_url": "http://www.solaleworks.com", + "state": "California", + "street": "1780 Town and Country Dr Ste 101" + }, + { + "id": "f4f2d543-ddd8-4b3d-9781-d0061c7f30fb", + "name": "Sons of Liberty Beer & Spirits Co.", + "brewery_type": "micro", + "address_1": "1425 Kingstown Rd", + "address_2": null, + "address_3": null, + "city": "Wakefield", + "state_province": "Rhode Island", + "postal_code": "02879-8313", + "country": "United States", + "longitude": -71.50525999, + "latitude": 41.4545347, + "phone": "4012844006", + "website_url": "http://www.solspirits.com", + "state": "Rhode Island", + "street": "1425 Kingstown Rd" + }, + { + "id": "25a9e66c-1c32-48fd-91d6-33cd1e134a72", + "name": "Sons Of Toil Brewing LLC", + "brewery_type": "micro", + "address_1": "14090 Klein Rd", + "address_2": null, + "address_3": null, + "city": "Mount Orab", + "state_province": "Ohio", + "postal_code": "45154-8312", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5132509082", + "website_url": "http://www.sonsoftoilllc.com/", + "state": "Ohio", + "street": "14090 Klein Rd" + }, + { + "id": "14fdc2e7-b2a0-482f-9bea-f7894b659797", + "name": "Soo Brewing Company", + "brewery_type": "micro", + "address_1": "223 W Portage Ave", + "address_2": null, + "address_3": null, + "city": "Sault Sainte Marie", + "state_province": "Michigan", + "postal_code": "49783-1921", + "country": "United States", + "longitude": -84.3482782, + "latitude": 46.50089794, + "phone": "9066324400", + "website_url": "http://www.soobrew.com", + "state": "Michigan", + "street": "223 W Portage Ave" + }, + { + "id": "a0af6b24-2eb6-4ce8-b42d-87e7cad700cd", + "name": "Sophisticated Hound Brewing Company", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Princeton", + "state_province": "West Virginia", + "postal_code": "24739", + "country": "United States", + "longitude": -81.094116, + "latitude": 37.369408, + "phone": "3043206674", + "website_url": "https://www.facebook.com/sophisticatedhoundbrewing", + "state": "West Virginia", + "street": null + }, + { + "id": "929392c7-2382-4da1-8fcf-b76bbdd99684", + "name": "Soquel Fermentation Project", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Los Gatos", + "state_province": "California", + "postal_code": "95033", + "country": "United States", + "longitude": -121.9746797, + "latitude": 37.226611, + "phone": null, + "website_url": "http://facebook.com/Soquel-Fermentation-Project-1661153424004618/", + "state": "California", + "street": null + }, + { + "id": "975069f8-dc38-4da1-aa78-b58baf0f930c", + "name": "Soul and Spirits Brewery", + "brewery_type": "micro", + "address_1": "845 N Main St", + "address_2": null, + "address_3": null, + "city": "Memphis", + "state_province": "Tennessee", + "postal_code": "38107-2311", + "country": "United States", + "longitude": -90.04509728, + "latitude": 35.16565513, + "phone": null, + "website_url": "https://soulandspiritsbrew.com", + "state": "Tennessee", + "street": "845 N Main St" + }, + { + "id": "6d8c4ee2-8a0e-4e69-8669-c145471543b7", + "name": "Soul Barrel Brewing", + "brewery_type": "micro", + "address_1": "R45", + "address_2": null, + "address_3": null, + "city": "Simondium", + "state_province": "Western Cape", + "postal_code": "7670", + "country": "South Africa", + "longitude": 18.9622, + "latitude": -33.8443, + "phone": "+27 82 821 1233", + "website_url": "https://soulbarrel.co.za/", + "state": "Western Cape", + "street": "R45" + }, + { + "id": "dff336da-9bbd-4e06-8ab9-405775650ed5", + "name": "Soul Squared Brewing Co.", + "brewery_type": "micro", + "address_1": "6412 N County Road 15", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80524", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.soulsquaredbrewing.com", + "state": "Colorado", + "street": "6412 N County Road 15" + }, + { + "id": "5b9cb6f1-bd63-4ccd-85b2-d5436e2a3b0a", + "name": "Soulcraft Brewing", + "brewery_type": "micro", + "address_1": "248 W US Highway 50", + "address_2": null, + "address_3": null, + "city": "Salida", + "state_province": "Colorado", + "postal_code": "81201-2347", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7195395428", + "website_url": "http://www.soulcraftbeer.com", + "state": "Colorado", + "street": "248 W US Highway 50" + }, + { + "id": "558a2818-59dc-4eb0-91c0-5525cc4d81f3", + "name": "Sound Brewery", + "brewery_type": "micro", + "address_1": "19479 Viking Ave NW", + "address_2": null, + "address_3": null, + "city": "Poulsbo", + "state_province": "Washington", + "postal_code": "98370-8370", + "country": "United States", + "longitude": -122.6596831, + "latitude": 47.7398382, + "phone": "3609308696", + "website_url": "http://www.soundbrewery.com", + "state": "Washington", + "street": "19479 Viking Ave NW" + }, + { + "id": "89be9447-b3be-42a4-ad1a-018df8047203", + "name": "Sound To Summit", + "brewery_type": "brewpub", + "address_1": "1830 Bickford Ave Ste 111", + "address_2": null, + "address_3": null, + "city": "Snohomish", + "state_province": "Washington", + "postal_code": "98290-1751", + "country": "United States", + "longitude": -122.1023927, + "latitude": 47.93307859, + "phone": "3602948127", + "website_url": "http://www.sound2summit.com", + "state": "Washington", + "street": "1830 Bickford Ave Ste 111" + }, + { + "id": "02f62869-f3c5-47f8-a09d-bc6b498e1f84", + "name": "Soundgrowler Brewing Co.", + "brewery_type": "brewpub", + "address_1": "8201 183rd St Ste P", + "address_2": null, + "address_3": null, + "city": "Tinley Park", + "state_province": "Illinois", + "postal_code": "60487-9377", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7082630083", + "website_url": "http://www.soundgrowler.com", + "state": "Illinois", + "street": "8201 183rd St Ste P" + }, + { + "id": "47e7a620-d0fb-4dfa-8ae2-ce8cf0c3244c", + "name": "Source Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Colts Neck", + "state_province": "New Jersey", + "postal_code": "07722-2430", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7327785184", + "website_url": "http://www.sourcebrewing.com", + "state": "New Jersey", + "street": null + }, + { + "id": "d656000d-73b8-45fb-8ad7-bf87103cb160", + "name": "Souris River Brewing", + "brewery_type": "brewpub", + "address_1": "32 3rd St NE", + "address_2": null, + "address_3": null, + "city": "Minot", + "state_province": "North Dakota", + "postal_code": "58703-3108", + "country": "United States", + "longitude": -101.2883218, + "latitude": 48.23686523, + "phone": "7018371884", + "website_url": "http://www.sourisriverbrewing.com", + "state": "North Dakota", + "street": "32 3rd St NE" + }, + { + "id": "846c74cb-9739-4f97-b2b3-631145e7dae9", + "name": "South Austin Brewery", + "brewery_type": "micro", + "address_1": "5701 W Slaughter Ln Bldg A130", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78749-6532", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5123542337", + "website_url": "http://www.southaustinbrewery.com", + "state": "Texas", + "street": "5701 W Slaughter Ln Bldg A130" + }, + { + "id": "a306fd68-d8cc-4a6a-8c42-6b2be6ceefa0", + "name": "South Australian Brewing Company", + "brewery_type": "large", + "address_1": "11 Jay Drive", + "address_2": "1", + "address_3": null, + "city": "Willunga", + "state_province": "SA", + "postal_code": "5172", + "country": "Australia", + "longitude": 138.5422447, + "latitude": -35.2687754, + "phone": "+61 448 012 669", + "website_url": "http://www.southcoastbrewingcompany.com.au/", + "state": "SA", + "street": "11 Jay Drive" + }, + { + "id": "02131f19-7bde-422c-a363-9288b2df2a9b", + "name": "South Bay Brewco", + "brewery_type": "contract", + "address_1": "930 McLaughlin Ave", + "address_2": null, + "address_3": null, + "city": "San Jose", + "state_province": "California", + "postal_code": "95122-2611", + "country": "United States", + "longitude": -121.8541694, + "latitude": 37.3331712, + "phone": "4082193696", + "website_url": null, + "state": "California", + "street": "930 McLaughlin Ave" + }, + { + "id": "bbc48ed5-74ab-4114-aa44-8212468b3074", + "name": "South Bend Brew Werks", + "brewery_type": "brewpub", + "address_1": "216 S Michigan St", + "address_2": null, + "address_3": null, + "city": "South Bend", + "state_province": "Indiana", + "postal_code": "46601-2002", + "country": "United States", + "longitude": -86.25285572, + "latitude": 41.62611855, + "phone": "5743340356", + "website_url": "http://www.southbendbrewwerks.com", + "state": "Indiana", + "street": "216 S Michigan St" + }, + { + "id": "f8d204a5-7ac2-4264-b0fd-894d8df1f8b3", + "name": "South Coast Brewing Co.", + "brewery_type": "micro", + "address_1": "11 Jay Drive", + "address_2": "1", + "address_3": null, + "city": "Willunga", + "state_province": "SA", + "postal_code": "5172", + "country": "Australia", + "longitude": 138.5422447, + "latitude": -35.2687754, + "phone": "+61 448 012 669", + "website_url": "http://www.southcoastbrewingcompany.com.au/", + "state": "SA", + "street": "11 Jay Drive" + }, + { + "id": "b5d293a4-c881-4469-9486-32bdcbc9b43b", + "name": "South County Brewing Co", + "brewery_type": "micro", + "address_1": "104 Mill St", + "address_2": null, + "address_3": null, + "city": "Fawn Grove", + "state_province": "Pennsylvania", + "postal_code": "17321-9654", + "country": "United States", + "longitude": -76.44958324, + "latitude": 39.7322666, + "phone": "7173824016", + "website_url": "http://www.southcountybrewing.com", + "state": "Pennsylvania", + "street": "104 Mill St" + }, + { + "id": "5c7faaef-a2b0-4c31-bdd8-a0330cdd9d57", + "name": "South Cypress Brewing", + "brewery_type": "brewpub", + "address_1": "895 Wiggins Pass Rd", + "address_2": null, + "address_3": null, + "city": "Naples", + "state_province": "Florida", + "postal_code": "34110-6118", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2396316397", + "website_url": null, + "state": "Florida", + "street": "895 Wiggins Pass Rd" + }, + { + "id": "e2515a84-6555-47a3-9f55-8b7ab14ec980", + "name": "South Gate Brewing Co", + "brewery_type": "brewpub", + "address_1": "40233 Enterprise Dr", + "address_2": null, + "address_3": null, + "city": "Oakhurst", + "state_province": "California", + "postal_code": "93644-8839", + "country": "United States", + "longitude": -119.6618038, + "latitude": 37.33172774, + "phone": "8582321737", + "website_url": "http://www.southgatebrewco.com", + "state": "California", + "street": "40233 Enterprise Dr" + }, + { + "id": "b73a9ae9-403b-4e07-bc2c-eb77d042ef8e", + "name": "South Haven Brewpub", + "brewery_type": "brewpub", + "address_1": "515 Williams St Ste 23", + "address_2": null, + "address_3": null, + "city": "South Haven", + "state_province": "Michigan", + "postal_code": "49090-1493", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2697677105", + "website_url": "http://www.southhavenbrewpub.com", + "state": "Michigan", + "street": "515 Williams St Ste 23" + }, + { + "id": "6eb31b02-b69d-4c55-9e53-d3cb18808aa5", + "name": "South Lake Brewing Company", + "brewery_type": "micro", + "address_1": "1920 Lake Tahoe Blvd", + "address_2": null, + "address_3": null, + "city": "South Lake Tahoe", + "state_province": "California", + "postal_code": "96150-6307", + "country": "United States", + "longitude": -120.0074997, + "latitude": 38.9118004, + "phone": "5305780087", + "website_url": "http://www.southlakebeer.com", + "state": "California", + "street": "1920 Lake Tahoe Blvd" + }, + { + "id": "4a437c88-34c5-4b21-87c3-98289bae00f4", + "name": "South Park Brewing", + "brewery_type": "micro", + "address_1": "297 1/2 US Hwy 285", + "address_2": null, + "address_3": null, + "city": "Fairplay", + "state_province": "Colorado", + "postal_code": "80440-2131", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7198361932", + "website_url": "http://www.southparkbrewingco.com", + "state": "Colorado", + "street": "297 1/2 US Hwy 285" + }, + { + "id": "fc7df7f3-32fa-471d-9f34-5ebbe07162c5", + "name": "South Park Brewing", + "brewery_type": "brewpub", + "address_1": "1517 30th St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92102-1503", + "country": "United States", + "longitude": -117.130074, + "latitude": 32.7470971, + "phone": "6196109038", + "website_url": "http://www.southparkbrewing.com", + "state": "California", + "street": "1517 30th St" + }, + { + "id": "ab5a979d-928d-47fd-94ee-2dd578ab2cad", + "name": "South Shore Brewery", + "brewery_type": "micro", + "address_1": "808 Main St W", + "address_2": null, + "address_3": null, + "city": "Ashland", + "state_province": "Wisconsin", + "postal_code": "54806-1404", + "country": "United States", + "longitude": -90.89277984, + "latitude": 46.58720123, + "phone": "7156829199", + "website_url": "http://www.southshorebrewery.com", + "state": "Wisconsin", + "street": "808 Main St W" + }, + { + "id": "e90d03bc-7ada-42b4-b60b-1c2fc352be31", + "name": "South Shore Brewery - Washburn", + "brewery_type": "micro", + "address_1": "532 W Bayfield St", + "address_2": null, + "address_3": null, + "city": "Washburn", + "state_province": "Wisconsin", + "postal_code": "54891-1138", + "country": "United States", + "longitude": -90.90116464, + "latitude": 46.67061427, + "phone": "7156829199", + "website_url": null, + "state": "Wisconsin", + "street": "532 W Bayfield St" + }, + { + "id": "73078bb1-4735-45e5-b27c-3e8d87914de4", + "name": "South Street Brewery", + "brewery_type": "brewpub", + "address_1": "106 W South St Ste 202", + "address_2": null, + "address_3": null, + "city": "Charlottesville", + "state_province": "Virginia", + "postal_code": "22902-3600", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4342936550", + "website_url": "http://www.southstreetbrewery.com", + "state": "Virginia", + "street": "106 W South St Ste 202" + }, + { + "id": "86803100-fcae-4cda-9e75-060c2de677f3", + "name": "Southampton Publick House", + "brewery_type": "brewpub", + "address_1": "62 Jobs Ln", + "address_2": null, + "address_3": null, + "city": "Southampton", + "state_province": "New York", + "postal_code": "11968-4807", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6312832800", + "website_url": "http://www.publick.com", + "state": "New York", + "street": "62 Jobs Ln" + }, + { + "id": "91ce7a11-6109-4dcc-98a3-196c939e96cb", + "name": "Southbound Brewing Co", + "brewery_type": "micro", + "address_1": "107 E Lathrop Ave", + "address_2": null, + "address_3": null, + "city": "Savannah", + "state_province": "Georgia", + "postal_code": "31415-2182", + "country": "United States", + "longitude": -81.111372, + "latitude": 32.087032, + "phone": null, + "website_url": "http://www.southboundbrewingco.com", + "state": "Georgia", + "street": "107 E Lathrop Ave" + }, + { + "id": "ef1e0503-a145-451d-9e68-13ebc69b3b1a", + "name": "Southerleigh Brewing", + "brewery_type": "brewpub", + "address_1": "136 E Grayson St., Ste 120", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78212-4114", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2103137627", + "website_url": "http://www.southerleigh.com", + "state": "Texas", + "street": "136 E Grayson St., Ste 120" + }, + { + "id": "3e1ffead-2087-4bf9-8d03-621591c0ee27", + "name": "Southern Appalachian Brewery", + "brewery_type": "micro", + "address_1": "822 Locust St Ste 100", + "address_2": null, + "address_3": null, + "city": "Hendersonville", + "state_province": "North Carolina", + "postal_code": "28792-3758", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8286841235", + "website_url": null, + "state": "North Carolina", + "street": "822 Locust St Ste 100" + }, + { + "id": "412573c0-b440-4110-bc4f-06f0177c8f36", + "name": "Southern Barrel Brewing Company", + "brewery_type": "micro", + "address_1": "375 Buckwalter Place Blvd", + "address_2": null, + "address_3": null, + "city": "Bluffton", + "state_province": "South Carolina", + "postal_code": "29910", + "country": "United States", + "longitude": -80.9199124, + "latitude": 32.2715377, + "phone": "8438372337", + "website_url": "http://www.southernbarrelbrewingco.com", + "state": "South Carolina", + "street": "375 Buckwalter Place Blvd" + }, + { + "id": "66db9365-5062-4f15-b25f-c40c894c9ec3", + "name": "Southern Brewing & Winemaking Brewery", + "brewery_type": "brewpub", + "address_1": "4500 N Nebraska Ave", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33603-4149", + "country": "United States", + "longitude": -82.4500207, + "latitude": 27.9495902, + "phone": "8132387800", + "website_url": "http://www.southernbrewingwinemaking.com", + "state": "Florida", + "street": "4500 N Nebraska Ave" + }, + { + "id": "51618504-46a9-4a44-9d67-80ce0873d1c2", + "name": "Southern Brewing Company", + "brewery_type": "micro", + "address_1": "231 Collins Industrial Blvd", + "address_2": null, + "address_3": null, + "city": "Athens", + "state_province": "Georgia", + "postal_code": "30601-1517", + "country": "United States", + "longitude": -83.35002287, + "latitude": 33.98114012, + "phone": "7065487183", + "website_url": "http://www.sobrewco.com", + "state": "Georgia", + "street": "231 Collins Industrial Blvd" + }, + { + "id": "4ef9f5b8-3d53-4339-84e6-76f0ba810e27", + "name": "Southern Craft Brewing Company", + "brewery_type": "closed", + "address_1": "14141 Airline Hwy Ste 4J", + "address_2": null, + "address_3": null, + "city": "Baton Rouge", + "state_province": "Louisiana", + "postal_code": "70817-6259", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2256638119", + "website_url": "http://www.socraftbeer.com", + "state": "Louisiana", + "street": "14141 Airline Hwy Ste 4J" + }, + { + "id": "2c990dc6-64f9-466a-85f0-2aeb9794916d", + "name": "Southern Grist Brewing Company", + "brewery_type": "micro", + "address_1": "1201 Porter Rd", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37206-1733", + "country": "United States", + "longitude": -86.729011, + "latitude": 36.188838, + "phone": "6157271201", + "website_url": "http://www.southerngristbrewing.com", + "state": "Tennessee", + "street": "1201 Porter Rd" + }, + { + "id": "6c544f75-7fa2-4229-9a63-765c5e756af4", + "name": "Southern Heights Brewing Co LLC", + "brewery_type": "micro", + "address_1": "6014 Techni Center Dr Ste 2-101", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78721-2349", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5126506901", + "website_url": "http://www.southernheightsbrewing.com", + "state": "Texas", + "street": "6014 Techni Center Dr Ste 2-101" + }, + { + "id": "27361067-b6df-4298-8d41-39e933312469", + "name": "Southern Hops Brewing Co.", + "brewery_type": "brewpub", + "address_1": "911 Sunset Acres Ln", + "address_2": null, + "address_3": null, + "city": "Florence", + "state_province": "South Carolina", + "postal_code": "29501-6073", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8436671900", + "website_url": "http://www.southernhops.com", + "state": "South Carolina", + "street": "911 Sunset Acres Ln" + }, + { + "id": "c92aeb72-e934-460d-aa03-86da72b6d0c4", + "name": "Southern Lights Brewing", + "brewery_type": "micro", + "address_1": "2045 Gulf To Bay Blvd Ste D", + "address_2": null, + "address_3": null, + "city": "Clearwater", + "state_province": "Florida", + "postal_code": "33765-3752", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7276149919", + "website_url": "http://www.southernlightsbrewing.com", + "state": "Florida", + "street": "2045 Gulf To Bay Blvd Ste D" + }, + { + "id": "322e1333-9ac0-49f8-9313-39b117f0f647", + "name": "Southern Pacific Brewing", + "brewery_type": "brewpub", + "address_1": "620 Treat Ave", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94110-2016", + "country": "United States", + "longitude": -122.4139896, + "latitude": 37.7601311, + "phone": "4153410152", + "website_url": "http://www.southernpacificbrewing.com", + "state": "California", + "street": "620 Treat Ave" + }, + { + "id": "3ae0a49a-4062-4373-a647-98d246ce43d2", + "name": "Southern Peak Brewery", + "brewery_type": "micro", + "address_1": "950 Windy Rd Ste 100", + "address_2": null, + "address_3": null, + "city": "Apex", + "state_province": "North Carolina", + "postal_code": "27502-2410", + "country": "United States", + "longitude": -78.8439995, + "latitude": 35.7461806, + "phone": "9192084515", + "website_url": "http://www.southernpeakbrewery.com", + "state": "North Carolina", + "street": "950 Windy Rd Ste 100" + }, + { + "id": "2be3a6fa-c941-4347-ac5e-52aef8acabd4", + "name": "Southern Pines Brewing Company", + "brewery_type": "micro", + "address_1": "565 Air Tool Dr Ste E", + "address_2": null, + "address_3": null, + "city": "Southern Pines", + "state_province": "North Carolina", + "postal_code": "28387-3469", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9103659925", + "website_url": "http://www.southernpinesbrewing.com", + "state": "North Carolina", + "street": "565 Air Tool Dr Ste E" + }, + { + "id": "53129047-f8f0-44a6-a064-7c4f44b90a4a", + "name": "Southern Prohibition Brewing", + "brewery_type": "micro", + "address_1": "301 Mobile St", + "address_2": null, + "address_3": null, + "city": "Hattiesburg", + "state_province": "Mississippi", + "postal_code": "39401-3406", + "country": "United States", + "longitude": -89.28992011, + "latitude": 31.33123464, + "phone": "6014671057", + "website_url": "http://www.soprobrewing.com", + "state": "Mississippi", + "street": "301 Mobile St" + }, + { + "id": "87decbbd-efa4-4914-a50b-0622169f7dfd", + "name": "Southern Range Brewing", + "brewery_type": "brewpub", + "address_1": "151 S Stewart St", + "address_2": null, + "address_3": null, + "city": "Monroe", + "state_province": "North Carolina", + "postal_code": "28112", + "country": "United States", + "longitude": -80.55091346, + "latitude": 34.98073637, + "phone": "7042894049", + "website_url": "http://www.southernrangebrewing.com", + "state": "North Carolina", + "street": "151 S Stewart St" + }, + { + "id": "3d22a2ae-d718-4714-9eaf-7afa0480f9c9", + "name": "Southern Sky Brewing Co", + "brewery_type": "micro", + "address_1": "1590 N Roberts Rd NW Ste 208", + "address_2": null, + "address_3": null, + "city": "Kennesaw", + "state_province": "Georgia", + "postal_code": "30144-3636", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7707028318", + "website_url": "http://www.southernskybrewing.com", + "state": "Georgia", + "street": "1590 N Roberts Rd NW Ste 208" + }, + { + "id": "c914b941-351f-4f4a-8256-8791d9a6562e", + "name": "Southern Star Brewing", + "brewery_type": "micro", + "address_1": "3525 N Frazier St", + "address_2": null, + "address_3": null, + "city": "Conroe", + "state_province": "Texas", + "postal_code": "77303-1430", + "country": "United States", + "longitude": -95.4776897, + "latitude": 30.3587546, + "phone": "9364412739", + "website_url": "http://www.southernstarbrewing.com", + "state": "Texas", + "street": "3525 N Frazier St" + }, + { + "id": "7b6e3cce-d456-4ae4-9e09-8debafb72d3a", + "name": "Southern Sun Pub and Brewery", + "brewery_type": "brewpub", + "address_1": "627 S Broadway St", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80305-5944", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3035430886", + "website_url": "http://www.mountainsunpub.com", + "state": "Colorado", + "street": "627 S Broadway St" + }, + { + "id": "1feb9508-e9e7-476b-bf27-54e7beb0dc46", + "name": "Southern Swells Brewing Company", + "brewery_type": "micro", + "address_1": "1312 Beach Blvd", + "address_2": null, + "address_3": null, + "city": "Jacksonville Beach", + "state_province": "Florida", + "postal_code": "32250-3408", + "country": "United States", + "longitude": -81.3923194, + "latitude": 30.2882669, + "phone": "9046546425", + "website_url": "http://www.southernswells.com", + "state": "Florida", + "street": "1312 Beach Blvd" + }, + { + "id": "30e025c7-8629-484a-9508-d848208212a6", + "name": "Southern Tier Brewing Co", + "brewery_type": "brewpub", + "address_1": "316 N Shore Dr", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15212-5870", + "country": "United States", + "longitude": -80.008595, + "latitude": 40.4464115, + "phone": "4123012337", + "website_url": "http://www.stbcbeer.com", + "state": "Pennsylvania", + "street": "316 N Shore Dr" + }, + { + "id": "33b5dae7-7850-4d45-a7a5-8716f7bcb6c6", + "name": "Southern Tier Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44115-1111", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": null + }, + { + "id": "d60a6feb-13cc-4b3f-b501-a784512982ec", + "name": "Southern Tier Brewing Co", + "brewery_type": "regional", + "address_1": "2072 Stoneman Cir", + "address_2": null, + "address_3": null, + "city": "Lakewood", + "state_province": "New York", + "postal_code": "14750-9779", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7167635479", + "website_url": "http://www.southerntierbrewing.com", + "state": "New York", + "street": "2072 Stoneman Cir" + }, + { + "id": "c870f079-c22b-477a-9d05-40f2e40e56a7", + "name": "Southern Yankee Beer Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77073", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://southernyankeebeer.com", + "state": "Texas", + "street": null + }, + { + "id": "c5cbdec7-f48c-4e94-a1b5-b2dca664e66e", + "name": "Southpaw BBQ & Southern Cooking", + "brewery_type": "brewpub", + "address_1": "2170 Mission St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94110-1247", + "country": "United States", + "longitude": -122.4195306, + "latitude": 37.7634391, + "phone": "4159349300", + "website_url": "http://www.southpawbbqsf.com", + "state": "California", + "street": "2170 Mission St" + }, + { + "id": "2e5cf2f4-d238-4eba-95f1-1d736e7cfa2e", + "name": "Southside Brewing Co", + "brewery_type": "brewpub", + "address_1": "62920 Georgetown Rd", + "address_2": null, + "address_3": null, + "city": "Cambridge", + "state_province": "Ohio", + "postal_code": "43725-9749", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7404353222", + "website_url": "http://www.southsidebrewing.net", + "state": "Ohio", + "street": "62920 Georgetown Rd" + }, + { + "id": "3cec9f9a-adef-4536-9107-fb1f8324a088", + "name": "Sovina, Lda.", + "brewery_type": "micro", + "address_1": "Rua Manuel Pinto de Azevedo, 65", + "address_2": "Armazém 4 e 5", + "address_3": null, + "city": "Porto", + "state_province": "Porto", + "postal_code": "4100-321 ", + "country": "Portugal", + "longitude": -8.6452229596654, + "latitude": 41.170757821527, + "phone": "+351 22 600 69 36", + "website_url": "https://sovina.pt/", + "state": "Porto", + "street": "Rua Manuel Pinto de Azevedo, 65" + }, + { + "id": "be72c629-781c-4103-a6bb-afce18774c4e", + "name": "Spada Farmhouse Brewery", + "brewery_type": "micro", + "address_1": "709 1st St", + "address_2": null, + "address_3": null, + "city": "Snohomish", + "state_province": "Washington", + "postal_code": "98290-6125", + "country": "United States", + "longitude": -122.09223692891, + "latitude": 47.910879530283, + "phone": "4253306938", + "website_url": "http://www.spadafarmhousebrewery.com", + "state": "Washington", + "street": "709 1st St" + }, + { + "id": "74960c65-dabf-4e8e-a2e8-8ee5d304aec0", + "name": "Spahr Brewing Company", + "brewery_type": "micro", + "address_1": "3541 W Fairfield Dr", + "address_2": null, + "address_3": null, + "city": "Pensacola", + "state_province": "Florida", + "postal_code": "32505-4862", + "country": "United States", + "longitude": -87.25663063, + "latitude": 30.44184376, + "phone": "8504395362", + "website_url": "http://www.spahrbrewingcompany.com", + "state": "Florida", + "street": "3541 W Fairfield Dr" + }, + { + "id": "2334bc0b-57f3-49a0-9b7a-7d8f1d5f5edd", + "name": "Spangalang Brewery", + "brewery_type": "micro", + "address_1": "2736 Welton St Ste 102", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80205-2900", + "country": "United States", + "longitude": -104.9770361, + "latitude": 39.7552227, + "phone": "3032971276", + "website_url": "http://www.spangalangbrewery.com", + "state": "Colorado", + "street": "2736 Welton St Ste 102" + }, + { + "id": "81a2aa5c-5434-4503-a6b5-6423acb4ebc0", + "name": "Spangled Drongo Brewing Co.", + "brewery_type": "micro", + "address_1": "13 Thornbill Drive", + "address_2": "Unit 20", + "address_3": null, + "city": "South Murwillumbah", + "state_province": "NSW", + "postal_code": "2484", + "country": "Australia", + "longitude": 153.4217252, + "latitude": -28.3434718, + "phone": "+61 457 670 187", + "website_url": "http://www.spangleddrongo.com.au/", + "state": "NSW", + "street": "13 Thornbill Drive" + }, + { + "id": "079beead-f337-41f4-96cf-1d7f5c32fd12", + "name": "Sparkke Change Beverage Company", + "brewery_type": "micro", + "address_1": "32 Somerton Park Drive", + "address_2": null, + "address_3": null, + "city": "Campbellfield", + "state_province": "VIC", + "postal_code": "3061", + "country": "Australia", + "longitude": 144.945791, + "latitude": -37.647971, + "phone": "+61 3 9308 6681", + "website_url": "http://sparklingbeverages.com.au", + "state": "VIC", + "street": "32 Somerton Park Drive" + }, + { + "id": "61181a27-5fe3-4f0b-843a-62cbe818139f", + "name": "Spartan Brewpub", + "brewery_type": "brewpub", + "address_1": "3056 Okemos Rd", + "address_2": null, + "address_3": null, + "city": "Mason", + "state_province": "Michigan", + "postal_code": "48854-9300", + "country": "United States", + "longitude": -84.43276467, + "latitude": 42.67095756, + "phone": "5175075098", + "website_url": "http://spartanbrewpub.com/", + "state": "Michigan", + "street": "3056 Okemos Rd" + }, + { + "id": "0c378519-6171-4f1a-9535-345a0e99af03", + "name": "Speakeasy Ales and Lagers", + "brewery_type": "micro", + "address_1": "1195 Evans Ave", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94124-1704", + "country": "United States", + "longitude": -122.3808557, + "latitude": 37.73854531, + "phone": "4156423371", + "website_url": "http://www.goodbeer.com", + "state": "California", + "street": "1195 Evans Ave" + }, + { + "id": "ef0527d9-0605-4d3a-adce-9e59dd492e66", + "name": "Spearfish Brewing Company", + "brewery_type": "micro", + "address_1": "741 N Main St Ste 130", + "address_2": null, + "address_3": null, + "city": "Spearfish", + "state_province": "South Dakota", + "postal_code": "57783-4147", + "country": "United States", + "longitude": -103.8597028, + "latitude": 44.4910696, + "phone": "6057176999", + "website_url": "http://spearfishbrewing.com", + "state": "South Dakota", + "street": "741 N Main St Ste 130" + }, + { + "id": "4678264d-4bc5-4649-8628-1759040efa82", + "name": "Speciation Artisan Ales", + "brewery_type": "micro", + "address_1": "3720 West River Dr NE Ste 201", + "address_2": null, + "address_3": null, + "city": "Comstock Park", + "state_province": "Michigan", + "postal_code": "49321-8980", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6166666783", + "website_url": "http://speciationartisanales.com", + "state": "Michigan", + "street": "3720 West River Dr NE Ste 201" + }, + { + "id": "ade45bb3-7a21-4ebb-ade0-a792c648813d", + "name": "Spellbound Brewing", + "brewery_type": "micro", + "address_1": "10 Lippincott Ln Unit 12", + "address_2": null, + "address_3": null, + "city": "Mount Holly", + "state_province": "New Jersey", + "postal_code": "08060-1603", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6098320077", + "website_url": "http://www.spellboundbrewing.com", + "state": "New Jersey", + "street": "10 Lippincott Ln Unit 12" + }, + { + "id": "ebe3d590-e35e-49ba-9ce6-df24e50fe330", + "name": "Spencer Brewery", + "brewery_type": "micro", + "address_1": "167 N Spencer Rd", + "address_2": null, + "address_3": null, + "city": "Spencer", + "state_province": "Massachusetts", + "postal_code": "01562-1232", + "country": "United States", + "longitude": -72.0133159, + "latitude": 42.2976331, + "phone": "5088855756", + "website_url": "http://www.spencerbrewery.com", + "state": "Massachusetts", + "street": "167 N Spencer Rd" + }, + { + "id": "da222760-6803-40e1-bc20-b7c10d590e67", + "name": "Spencer Devon Brewing", + "brewery_type": "brewpub", + "address_1": "106 George St", + "address_2": null, + "address_3": null, + "city": "Fredericksburg", + "state_province": "Virginia", + "postal_code": "22401-5863", + "country": "United States", + "longitude": -77.4587704, + "latitude": 38.30272523, + "phone": "5404798381", + "website_url": "http://www.spencerdevonbrewing.com", + "state": "Virginia", + "street": "106 George St" + }, + { + "id": "95832751-54ac-44a4-adb6-054400c8e02a", + "name": "Spice Trade Brewing", + "brewery_type": "brewpub", + "address_1": "7803 Ralston Rd", + "address_2": null, + "address_3": null, + "city": "Arvada", + "state_province": "Colorado", + "postal_code": "80002-2433", + "country": "United States", + "longitude": -105.0841731, + "latitude": 39.802334, + "phone": "3034319000", + "website_url": "http://www.spicetradebrewing.com", + "state": "Colorado", + "street": "7803 Ralston Rd" + }, + { + "id": "8071c162-cfc3-4053-b12b-eca3bb37f2b4", + "name": "Spider Bite Brewing Co", + "brewery_type": "micro", + "address_1": "920 Lincoln Ave Unit 5", + "address_2": null, + "address_3": null, + "city": "Holbrook", + "state_province": "New York", + "postal_code": "11741-2257", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6319423255", + "website_url": "http://www.spiderbitebeer.com", + "state": "New York", + "street": "920 Lincoln Ave Unit 5" + }, + { + "id": "d607f1e5-cce4-4fe4-a6bf-6ad2b0bfa19d", + "name": "Spigots Brew Pub", + "brewery_type": "brewpub", + "address_1": "622 Barrow St", + "address_2": null, + "address_3": null, + "city": "Houma", + "state_province": "Louisiana", + "postal_code": "70360-4608", + "country": "United States", + "longitude": -90.71974565, + "latitude": 29.59396551, + "phone": "9853333103", + "website_url": "http://www.spigotsbrewpub.com", + "state": "Louisiana", + "street": "622 Barrow St" + }, + { + "id": "7fdb8e35-58e6-40f2-955d-b57fff14eddb", + "name": "Spilled Grain Brewhouse", + "brewery_type": "micro", + "address_1": "300 Elm St E", + "address_2": null, + "address_3": null, + "city": "Annandale", + "state_province": "Minnesota", + "postal_code": "55302-9406", + "country": "United States", + "longitude": -94.11946132, + "latitude": 45.25958238, + "phone": "3202741129", + "website_url": "http://www.spilledgrainbrewhouse.com", + "state": "Minnesota", + "street": "300 Elm St E" + }, + { + "id": "57da9428-05ab-44e9-8f30-253292f1b1ea", + "name": "Spindletap Brewery", + "brewery_type": "micro", + "address_1": "10622 Hirsch Rd", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77016-2622", + "country": "United States", + "longitude": -95.3149254, + "latitude": 29.8677396, + "phone": "7133251477", + "website_url": "http://www.spindletap.com", + "state": "Texas", + "street": "10622 Hirsch Rd" + }, + { + "id": "3e5a42f9-3f8d-4156-b732-00e4a3f734ce", + "name": "Spiral Brewery", + "brewery_type": "micro", + "address_1": "111 2nd St E", + "address_2": null, + "address_3": null, + "city": "Hastings", + "state_province": "Minnesota", + "postal_code": "55033-1265", + "country": "United States", + "longitude": -92.8524399, + "latitude": 44.7443609, + "phone": "6517264832", + "website_url": "http://Spiralbrewery.com", + "state": "Minnesota", + "street": "111 2nd St E" + }, + { + "id": "0dfcc382-8b95-4506-a24d-6d5466af82d8", + "name": "Spires Social Brewing Co.", + "brewery_type": "micro", + "address_1": "8757 Sancus Blvd", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43240", + "country": "United States", + "longitude": -83.004836, + "latitude": 40.1473396, + "phone": "6144268057", + "website_url": "http://www.spiressocial.com", + "state": "Ohio", + "street": "8757 Sancus Blvd" + }, + { + "id": "547151c1-7985-4315-bf9d-f9b48d3f5a60", + "name": "Spirited Tasmanian", + "brewery_type": "micro", + "address_1": "50 Bridge Street", + "address_2": "Shop 4", + "address_3": null, + "city": "Richmond", + "state_province": "TAS", + "postal_code": "7025", + "country": "Australia", + "longitude": 147.4379787, + "latitude": -42.7358798, + "phone": "+61 410 942 716", + "website_url": "https://www.spiritedbeverages.com.au/", + "state": "TAS", + "street": "50 Bridge Street" + }, + { + "id": "004fd048-ed5e-44b6-a116-5d0f5204db06", + "name": "Spiteful Brewing", + "brewery_type": "micro", + "address_1": "2024 W Balmoral Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60625-1002", + "country": "United States", + "longitude": -87.6806429, + "latitude": 41.979914, + "phone": "7732936600", + "website_url": "http://www.spitefulbrewing.com", + "state": "Illinois", + "street": "2024 W Balmoral Ave" + }, + { + "id": "08f12f3f-b6fa-45a3-ba43-782f34fd1de8", + "name": "Splintercat Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Corvallis", + "state_province": "Oregon", + "postal_code": "97330-1348", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Oregon", + "street": null + }, + { + "id": "23df1166-5226-4808-ab4c-6ebf216ccc4c", + "name": "Spoetzl Brewery", + "brewery_type": "regional", + "address_1": "603 E Brewery St", + "address_2": null, + "address_3": null, + "city": "Shiner", + "state_province": "Texas", + "postal_code": "77984-0368", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3615943383", + "website_url": "http://www.shiner.com", + "state": "Texas", + "street": "603 E Brewery St" + }, + { + "id": "c45da661-0533-4277-8a7b-a8b8dcf669c0", + "name": "Spoonwood Brewing Company", + "brewery_type": "brewpub", + "address_1": "5981 Baptist Rd", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15236-3303", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4128330333", + "website_url": "http://www.spoonwoodbrewing.com", + "state": "Pennsylvania", + "street": "5981 Baptist Rd" + }, + { + "id": "914c6a0a-cc97-4db2-9956-cee2505194c7", + "name": "Sports Brewpub", + "brewery_type": "brewpub", + "address_1": "166 Maple St", + "address_2": null, + "address_3": null, + "city": "Wyandotte", + "state_province": "Michigan", + "postal_code": "48192-5928", + "country": "United States", + "longitude": -83.15132628, + "latitude": 42.20229805, + "phone": "7342855060", + "website_url": null, + "state": "Michigan", + "street": "166 Maple St" + }, + { + "id": "1e01a465-adc4-4d87-affc-be9648ac0dbd", + "name": "SportsBreweries", + "brewery_type": "contract", + "address_1": "Private Rd 5128", + "address_2": null, + "address_3": null, + "city": "Frisco", + "state_province": "Texas", + "postal_code": "75034", + "country": "United States", + "longitude": -96.7687762, + "latitude": 33.1787931, + "phone": "9726038647", + "website_url": "http://www.sportsbreweries.com", + "state": "Texas", + "street": "Private Rd 5128" + }, + { + "id": "f8c5522b-6ccf-44ff-86b4-92498df8a9a5", + "name": "Spotted Dog Brewery", + "brewery_type": "brewpub", + "address_1": "2920 Avenida De Mesilla", + "address_2": null, + "address_3": null, + "city": "Las Cruces", + "state_province": "New Mexico", + "postal_code": "88005", + "country": "United States", + "longitude": -106.7852399, + "latitude": 32.2938747, + "phone": "5756502729", + "website_url": "http://www.spotteddogbrewery.com", + "state": "New Mexico", + "street": "2920 Avenida De Mesilla" + }, + { + "id": "940212f2-d8e3-4f7d-9a7a-8f89b7a3edd2", + "name": "Spotty Dog Brewery", + "brewery_type": "micro", + "address_1": "11 Bender Drive", + "address_2": null, + "address_3": null, + "city": "Derwent Park", + "state_province": "TAS", + "postal_code": "7009", + "country": "Australia", + "longitude": 147.3039744, + "latitude": -42.8287176, + "phone": "+61 408 692 082", + "website_url": "http://www.spottydogbrewers.com.au/", + "state": "TAS", + "street": "11 Bender Drive" + }, + { + "id": "e2d456b2-1c64-488b-9c11-8c9f3e7e06e0", + "name": "Sprague Farm and Brew Works", + "brewery_type": "brewpub", + "address_1": "22043 US Highway 6 and 19", + "address_2": null, + "address_3": null, + "city": "Venango", + "state_province": "Pennsylvania", + "postal_code": "16440-2507", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8143982885", + "website_url": "http://www.sleepingchainsaw.com", + "state": "Pennsylvania", + "street": "22043 US Highway 6 and 19" + }, + { + "id": "79572eef-8de1-40ed-a2d2-19e8ecb77f6f", + "name": "Sprecher Brewing Co / Chameleon Brewing", + "brewery_type": "micro", + "address_1": "701 W Glendale Ave", + "address_2": null, + "address_3": null, + "city": "Glendale", + "state_province": "Wisconsin", + "postal_code": "53209-6509", + "country": "United States", + "longitude": -87.91969511, + "latitude": 43.09929865, + "phone": "4149647837", + "website_url": "http://www.sprecherbrewery.com", + "state": "Wisconsin", + "street": "701 W Glendale Ave" + }, + { + "id": "46d4fd81-7f86-4a5e-82fd-4aa41d6039f7", + "name": "Spring Gate Brewery", + "brewery_type": "micro", + "address_1": "5790 Devonshire Rd", + "address_2": null, + "address_3": null, + "city": "Harrisburg", + "state_province": "Pennsylvania", + "postal_code": "17112-3508", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7174800066", + "website_url": "http://www.springgatebrewery.com", + "state": "Pennsylvania", + "street": "5790 Devonshire Rd" + }, + { + "id": "f09b40bb-4707-4988-9d36-3335dd8ca12a", + "name": "Spring House Brewery", + "brewery_type": "micro", + "address_1": "209 Hazel St", + "address_2": null, + "address_3": null, + "city": "Lancaster", + "state_province": "Pennsylvania", + "postal_code": "17603-5629", + "country": "United States", + "longitude": -76.30710904, + "latitude": 40.02936738, + "phone": "7178720925", + "website_url": "http://www.springhousebeer.com", + "state": "Pennsylvania", + "street": "209 Hazel St" + }, + { + "id": "27d36dac-a058-47ee-ae9b-a73f7e440bef", + "name": "Spring Mountain Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Schwenksville", + "state_province": "Pennsylvania", + "postal_code": "19473-1811", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "fdab4b0b-4e70-4033-a944-69a49285e5f4", + "name": "Springfield Brewing Co", + "brewery_type": "brewpub", + "address_1": "305 S Market Ave", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Missouri", + "postal_code": "65806-2023", + "country": "United States", + "longitude": -93.295625, + "latitude": 37.20776303, + "phone": "4178328277", + "website_url": "http://www.springfieldbrewingco.com", + "state": "Missouri", + "street": "305 S Market Ave" + }, + { + "id": "e54cd6ed-f53a-4043-8194-42198c5a2660", + "name": "Spyglass Brewing Company", + "brewery_type": "brewpub", + "address_1": "306 Innovative Way", + "address_2": null, + "address_3": null, + "city": "Nashua", + "state_province": "New Hampshire", + "postal_code": "03062", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6035462965", + "website_url": null, + "state": "New Hampshire", + "street": "306 Innovative Way" + }, + { + "id": "e4700c25-7368-4880-90c0-3b3e27faf9d6", + "name": "Squam Brewing Co", + "brewery_type": "closed", + "address_1": "118 Perch Pond Rd", + "address_2": null, + "address_3": null, + "city": "Holderness", + "state_province": "New Hampshire", + "postal_code": "03245-5234", + "country": "United States", + "longitude": -71.589971, + "latitude": 43.78514, + "phone": "6032369705", + "website_url": "http://www.squambrewing.com", + "state": "New Hampshire", + "street": "118 Perch Pond Rd" + }, + { + "id": "d603fb71-4ae5-4e4d-aa48-82b663dcd09a", + "name": "Square One Brewery and Distillery", + "brewery_type": "brewpub", + "address_1": "1727 Park Ave", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63104-2941", + "country": "United States", + "longitude": -90.21039473, + "latitude": 38.616665, + "phone": "3142312537", + "website_url": "http://www.squareonebrewery.com", + "state": "Missouri", + "street": "1727 Park Ave" + }, + { + "id": "33a8a104-863a-4319-8806-78c9e12988d0", + "name": "Square Peg Brewerks", + "brewery_type": "micro", + "address_1": "625 Main St", + "address_2": null, + "address_3": null, + "city": "Alamosa", + "state_province": "Colorado", + "postal_code": "81101-2557", + "country": "United States", + "longitude": -105.8742898, + "latitude": 37.4681813, + "phone": "7195807472", + "website_url": "http://www.squarepegbrewerks.com", + "state": "Colorado", + "street": "625 Main St" + }, + { + "id": "c4690e60-d4f7-4878-a274-dd96e3f29952", + "name": "Square State Brewing", + "brewery_type": "micro", + "address_1": "422 S Main St", + "address_2": null, + "address_3": null, + "city": "Rock Springs", + "state_province": "Wyoming", + "postal_code": "82901", + "country": "United States", + "longitude": -109.2206404, + "latitude": 41.58624714, + "phone": "3073626159", + "website_url": "https://www.facebook.com/squarestatebrewing", + "state": "Wyoming", + "street": "422 S Main St" + }, + { + "id": "6fe63931-cfa6-41b0-bdab-84b8aa9692af", + "name": "Square Wheel Brewing Co", + "brewery_type": "micro", + "address_1": "4705 N Fruit Hill Rd", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99217-9619", + "country": "United States", + "longitude": -117.2538107, + "latitude": 47.69800496, + "phone": "5099942600", + "website_url": "http://www.squarewheelbrewing.com", + "state": "Washington", + "street": "4705 N Fruit Hill Rd" + }, + { + "id": "32f7a57c-b7d7-41c2-a30b-cb32a0ee6728", + "name": "SquareHead Brewing", + "brewery_type": "micro", + "address_1": "405 High St Ste 1", + "address_2": null, + "address_3": null, + "city": "Holbrook", + "state_province": "New York", + "postal_code": "11741-5317", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6319213060", + "website_url": "http://www.squareheadbrewing.com", + "state": "New York", + "street": "405 High St Ste 1" + }, + { + "id": "3f915a29-98ec-4312-a511-ffd9c1a87080", + "name": "SQZBX Brewery", + "brewery_type": "brewpub", + "address_1": "236 Ouachita Ave", + "address_2": null, + "address_3": null, + "city": "Hot Springs", + "state_province": "Arkansas", + "postal_code": "71901", + "country": "United States", + "longitude": -93.0557936, + "latitude": 34.50751903, + "phone": "5016090609", + "website_url": "http://www.sqzbx.com", + "state": "Arkansas", + "street": "236 Ouachita Ave" + }, + { + "id": "eee29813-8cdf-462b-8f05-28fba55de0a2", + "name": "SR 76 Beerworks", + "brewery_type": "closed", + "address_1": "777 HARRAHS RINCON WAY", + "address_2": null, + "address_3": null, + "city": "Valley Center", + "state_province": "California", + "postal_code": "92082", + "country": "United States", + "longitude": -116.9565022, + "latitude": 33.26707487, + "phone": "7607513100", + "website_url": "http://www.SR76beerworks.com", + "state": "California", + "street": "777 HARRAHS RINCON WAY" + }, + { + "id": "5e1b4f2a-5337-4def-8685-7c2584c8f1f9", + "name": "SS Fermentations Ltd.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Montrose", + "state_province": "Colorado", + "postal_code": "81401-3927", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9706184332", + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "e2876f5d-0f50-4cae-8d00-76b8edfe7ba0", + "name": "St Ambrose Cellars", + "brewery_type": "micro", + "address_1": "841 S Pioneer Rd", + "address_2": null, + "address_3": null, + "city": "Beulah", + "state_province": "Michigan", + "postal_code": "49617", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2313834262", + "website_url": "http://www.stambrose-mead-wine.com", + "state": "Michigan", + "street": "841 S Pioneer Rd" + }, + { + "id": "08d52b04-bc18-4f4f-8e3a-5c3cd2210a5e", + "name": "St Andrews Beach Brewery", + "brewery_type": "micro", + "address_1": "160 Sandy Road", + "address_2": null, + "address_3": null, + "city": "Fingal", + "state_province": "VIC", + "postal_code": "3939", + "country": "Australia", + "longitude": 144.8598607, + "latitude": -38.418584, + "phone": "+61 491 938 717", + "website_url": "http://standrewsbeachbrewery.com.au/", + "state": "VIC", + "street": "160 Sandy Road" + }, + { + "id": "39a858eb-c5a5-4945-833f-94e0275e79b5", + "name": "St Arnulf Alery", + "brewery_type": "micro", + "address_1": "3152 Kings Chapel Rd", + "address_2": null, + "address_3": null, + "city": "Cadiz", + "state_province": "Kentucky", + "postal_code": "42211-0000", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5023094703", + "website_url": null, + "state": "Kentucky", + "street": "3152 Kings Chapel Rd" + }, + { + "id": "54b60883-bd42-4a2a-a9a3-d1581e9ee648", + "name": "St Brigid's Brewery", + "brewery_type": "brewpub", + "address_1": "606 W Broadway Ave", + "address_2": null, + "address_3": null, + "city": "Moses Lake", + "state_province": "Washington", + "postal_code": "98837-1900", + "country": "United States", + "longitude": -119.2850962, + "latitude": 47.12808368, + "phone": "5097508357", + "website_url": "http://www.stbrigidsbrewery.com", + "state": "Washington", + "street": "606 W Broadway Ave" + }, + { + "id": "939ad04e-cc0c-4998-a586-07e96dbec2b7", + "name": "St Clair Brown Winery & Brewery", + "brewery_type": "micro", + "address_1": "816 Vallejo St", + "address_2": null, + "address_3": null, + "city": "Napa", + "state_province": "California", + "postal_code": "94559", + "country": "United States", + "longitude": -122.286082, + "latitude": 38.304877, + "phone": "7072555591", + "website_url": "http://www.stclairbrownwinery.com", + "state": "California", + "street": "816 Vallejo St" + }, + { + "id": "af822c22-b3af-4258-be3d-50f7b19775bd", + "name": "St Elias Brewing Co", + "brewery_type": "micro", + "address_1": "434 Sharkathmi Ave", + "address_2": null, + "address_3": null, + "city": "Soldotna", + "state_province": "Alaska", + "postal_code": "99669-7665", + "country": "United States", + "longitude": -151.0472293, + "latitude": 60.49148673, + "phone": "9072607837", + "website_url": "http://steliasbrewingco.com", + "state": "Alaska", + "street": "434 Sharkathmi Ave" + }, + { + "id": "495b5dbf-29bc-45c0-ba38-1ac315e048df", + "name": "St John Malt Brothers Brewing", + "brewery_type": "brewpub", + "address_1": "9607 Wicker Ave", + "address_2": null, + "address_3": null, + "city": "Saint John", + "state_province": "Indiana", + "postal_code": "46373-9487", + "country": "United States", + "longitude": -87.46998163, + "latitude": 41.44507008, + "phone": "2196274294", + "website_url": "http://www.sjmaltbros.com", + "state": "Indiana", + "street": "9607 Wicker Ave" + }, + { + "id": "f81bd920-0c44-4b6a-80c3-56d85bae7e63", + "name": "St Nicholas Brewing Co", + "brewery_type": "brewpub", + "address_1": "12 S Oak St", + "address_2": null, + "address_3": null, + "city": "Du Quoin", + "state_province": "Illinois", + "postal_code": "62832-1515", + "country": "United States", + "longitude": -89.23946916, + "latitude": 38.01026114, + "phone": "6187909212", + "website_url": null, + "state": "Illinois", + "street": "12 S Oak St" + }, + { + "id": "0d38db8d-fab3-44f6-985e-a84daf3a375f", + "name": "St. Benedict's Brew Works", + "brewery_type": "micro", + "address_1": "860 E 10th St", + "address_2": null, + "address_3": null, + "city": "Ferdinand", + "state_province": "Indiana", + "postal_code": "47532-9240", + "country": "United States", + "longitude": -86.85419491, + "latitude": 38.2242289, + "phone": "8129982337", + "website_url": "http://www.saintbenedictsbrewworks.com", + "state": "Indiana", + "street": "860 E 10th St" + }, + { + "id": "34998893-151f-45cd-8868-39ece0153f71", + "name": "St. Elmo Brewing Company", + "brewery_type": "micro", + "address_1": "440 E Saint Elmo Rd", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78745-1281", + "country": "United States", + "longitude": -97.7611749, + "latitude": 30.2174321, + "phone": "7373001965", + "website_url": "http://www.stelmobrewing.com", + "state": "Texas", + "street": "440 E Saint Elmo Rd" + }, + { + "id": "2cffa385-76b3-4165-b9fc-c04afe0d0111", + "name": "St. Florian's Brewery", + "brewery_type": "closed", + "address_1": "7704 Bell Rd Ste A", + "address_2": null, + "address_3": null, + "city": "Windsor", + "state_province": "California", + "postal_code": "95492-8518", + "country": "United States", + "longitude": -122.8033977, + "latitude": 38.53735645, + "phone": "7078382739", + "website_url": "http://www.stfloriansbrewery.com", + "state": "California", + "street": "7704 Bell Rd Ste A" + }, + { + "id": "f46a0c87-024d-42b5-ab54-3b41c202276d", + "name": "St. Francis Brewing Company", + "brewery_type": "brewpub", + "address_1": "3825 S Kinnickinnic Ave", + "address_2": null, + "address_3": null, + "city": "Saint Francis", + "state_province": "Wisconsin", + "postal_code": "53235-4225", + "country": "United States", + "longitude": -87.875747, + "latitude": 42.97452, + "phone": "4147444448", + "website_url": "http://www.stfrancisbrewery.com", + "state": "Wisconsin", + "street": "3825 S Kinnickinnic Ave" + }, + { + "id": "086e6663-04da-4d88-a813-d5ea1fa579f3", + "name": "St. Joseph Brewery & Public House", + "brewery_type": "brewpub", + "address_1": "540 N College Ave", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46202-3504", + "country": "United States", + "longitude": -86.1449174, + "latitude": 39.8095687, + "phone": "3176025670", + "website_url": "http://www.saintjoseph.beer.com", + "state": "Indiana", + "street": "540 N College Ave" + }, + { + "id": "18ec104f-d648-4119-a926-39d3f5232945", + "name": "St. Mel's Brewing Company", + "brewery_type": "micro", + "address_1": "Unit 4 Longford Community Enterprise Centre", + "address_2": "Ballinalee Rd", + "address_3": null, + "city": "Longford", + "state_province": "Longford", + "postal_code": "N39 K2Y0", + "country": "Ireland", + "longitude": -7.7844491, + "latitude": 53.7335776, + "phone": "353433348335", + "website_url": "https://www.stmelsbrewing.com/", + "state": "Longford", + "street": "Unit 4 Longford Community Enterprise Centre" + }, + { + "id": "fd0debe1-ea74-4e3e-b724-2efb69def9de", + "name": "St. Pete Brewing Company", + "brewery_type": "micro", + "address_1": "544 1st Ave N ", + "address_2": null, + "address_3": null, + "city": "Saint Petersburg", + "state_province": "Florida", + "postal_code": "33701-3702", + "country": "United States", + "longitude": -82.64102088, + "latitude": 27.77179015, + "phone": "7276928809", + "website_url": "http://www.stpetebrewingcompany.com", + "state": "Florida", + "street": "544 1st Ave N " + }, + { + "id": "ac9ab389-9f5d-465a-a4fe-3634cb34de6f", + "name": "Staas Brewing Company", + "brewery_type": "micro", + "address_1": "31 W Winter St", + "address_2": null, + "address_3": null, + "city": "Delaware", + "state_province": "Ohio", + "postal_code": "43015-1948", + "country": "United States", + "longitude": -83.069285, + "latitude": 40.300173, + "phone": "7404174690", + "website_url": "http://www.staasbrewing.com", + "state": "Ohio", + "street": "31 W Winter St" + }, + { + "id": "525c36b6-823a-4a5a-b25c-054748e6e6a4", + "name": "Stable 12 Brewing Company", + "brewery_type": "brewpub", + "address_1": "368 Bridge St", + "address_2": null, + "address_3": null, + "city": "Phoenixville", + "state_province": "Pennsylvania", + "postal_code": "19460-3358", + "country": "United States", + "longitude": -75.5195231, + "latitude": 40.1335808, + "phone": null, + "website_url": "http://www.stable12.com", + "state": "Pennsylvania", + "street": "368 Bridge St" + }, + { + "id": "a25ccbc8-adc1-4ae9-ae59-af0ede4a4f24", + "name": "Stable Craft Brewing", + "brewery_type": "brewpub", + "address_1": "375 Madrid Rd", + "address_2": null, + "address_3": null, + "city": "Waynesboro", + "state_province": "Virginia", + "postal_code": "22980-6230", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5404902609", + "website_url": "http://www.stablecraftbrewing.com", + "state": "Virginia", + "street": "375 Madrid Rd" + }, + { + "id": "977bad75-df98-4e2e-ad5a-ac2c6c22d120", + "name": "Stache Rabbit Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78727-5907", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "87465738-6b69-49d2-9879-f330924a1d25", + "name": "Stacked Deck Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55101-1712", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6512145448", + "website_url": "http://www.stackeddeckbrewing.com", + "state": "Minnesota", + "street": null + }, + { + "id": "582ab28e-02b0-4b32-af6a-8e216c61ea1e", + "name": "Stadium Brewing Co", + "brewery_type": "brewpub", + "address_1": "26731 Aliso Creek Rd Ste C", + "address_2": null, + "address_3": null, + "city": "Aliso Viejo", + "state_province": "California", + "postal_code": "92656-4811", + "country": "United States", + "longitude": -117.7264877, + "latitude": 33.57546729, + "phone": "9494489611", + "website_url": "http://www.stadiumbrewingco.com", + "state": "California", + "street": "26731 Aliso Creek Rd Ste C" + }, + { + "id": "40fddccc-5f32-4857-b367-0bb27025881a", + "name": "Stadium Pizza - Murrieta", + "brewery_type": "brewpub", + "address_1": "32278 Clinton Keith Rd Ste 101", + "address_2": null, + "address_3": null, + "city": "Wildomar", + "state_province": "California", + "postal_code": "92595-7314", + "country": "United States", + "longitude": -117.2479529, + "latitude": 33.5934458, + "phone": "9516787826", + "website_url": "http://www.stadiumpizza.com", + "state": "California", + "street": "32278 Clinton Keith Rd Ste 101" + }, + { + "id": "ec60f341-addb-4b7d-be05-d4c88fdb15f6", + "name": "Stadium Pizza Main ST", + "brewery_type": "brewpub", + "address_1": "169 N Main St", + "address_2": null, + "address_3": null, + "city": "Lake Elsinore", + "state_province": "California", + "postal_code": "92530-4005", + "country": "United States", + "longitude": -117.32741, + "latitude": 33.66945923, + "phone": "9512282128", + "website_url": "http://www.stadiumpizza.com", + "state": "California", + "street": "169 N Main St" + }, + { + "id": "9f0a5c89-d187-4b92-aeb7-ae6937fd4c59", + "name": "Stahoo's Brewery and Taproom", + "brewery_type": "taproom", + "address_1": "1015 E C St", + "address_2": null, + "address_3": null, + "city": "Casper", + "state_province": "Wyoming", + "postal_code": "82601-2124", + "country": "United States", + "longitude": -106.311616377, + "latitude": 42.854939790534, + "phone": "3072470464", + "website_url": "http://www.stahoosbrewery.com", + "state": "Wyoming", + "street": "1015 E C St" + }, + { + "id": "e8875dc6-aa58-4c97-90d5-7b5c4fa07d83", + "name": "Stained Glass Beerworks", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77066-2310", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7134529337", + "website_url": "http://www.stainedglassbeerworks.com", + "state": "Texas", + "street": null + }, + { + "id": "9b20b1ab-a897-4f76-9cd5-398519aeee86", + "name": "Standard Brewing", + "brewery_type": "brewpub", + "address_1": "2504 S Jackson St Ste C", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98144-2382", + "country": "United States", + "longitude": -122.29977474611, + "latitude": 47.599639627309, + "phone": "2065351584", + "website_url": "http://www.standardbrew.com", + "state": "Washington", + "street": "2504 S Jackson St Ste C" + }, + { + "id": "ec7a9bb2-e833-4221-a51a-579b5168d4af", + "name": "Standard Deviant Brewing", + "brewery_type": "micro", + "address_1": "280 14th St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94103-2420", + "country": "United States", + "longitude": -122.4195984, + "latitude": 37.76837929, + "phone": "4155902550", + "website_url": "http://www.standarddeviantbrewing.com", + "state": "California", + "street": "280 14th St" + }, + { + "id": "3fc5efe8-363a-4251-89e3-520d90075666", + "name": "Standing Stone Brewing Co", + "brewery_type": "micro", + "address_1": "101 Oak St", + "address_2": null, + "address_3": null, + "city": "Ashland", + "state_province": "Oregon", + "postal_code": "97520-1802", + "country": "United States", + "longitude": -122.7145793, + "latitude": 42.1976451, + "phone": "5414822448", + "website_url": "http://www.standingstonebrewing.com", + "state": "Oregon", + "street": "101 Oak St" + }, + { + "id": "58d2b5a4-e234-44fb-b51b-3a4322ab1329", + "name": "Star B Ranch", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Ramona", + "state_province": "California", + "postal_code": "92065-6714", + "country": "United States", + "longitude": -116.8675132, + "latitude": 33.035378, + "phone": null, + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "121e183d-f8b2-4b24-8d45-a12a318f0629", + "name": "Star City Brewing Company", + "brewery_type": "micro", + "address_1": "319 S 2nd St", + "address_2": null, + "address_3": null, + "city": "Miamisburg", + "state_province": "Ohio", + "postal_code": "45342-2926", + "country": "United States", + "longitude": -84.28859645, + "latitude": 39.6379944, + "phone": "9377017827", + "website_url": "http://www.starcitybrewing.com", + "state": "Ohio", + "street": "319 S 2nd St" + }, + { + "id": "0a1697ea-5f82-4b35-8fe5-c3cd470f04d1", + "name": "Starboard Brewing Co", + "brewery_type": "brewpub", + "address_1": "151 N 3rd Ave", + "address_2": null, + "address_3": null, + "city": "Sturgeon Bay", + "state_province": "Wisconsin", + "postal_code": "54235-2415", + "country": "United States", + "longitude": -87.37752984, + "latitude": 44.83540984, + "phone": "9208181062", + "website_url": "http://www.starboardbrewing.com", + "state": "Wisconsin", + "street": "151 N 3rd Ave" + }, + { + "id": "03667e97-bece-4519-80c1-0aafc0f90403", + "name": "Stargazer Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Coatesville", + "state_province": "Pennsylvania", + "postal_code": "19320", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6102096346", + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "9432a764-13ba-4672-83f8-1e2012dd660b", + "name": "Stark Brewing Company", + "brewery_type": "brewpub", + "address_1": "500 North Commercial St", + "address_2": null, + "address_3": null, + "city": "Manchester", + "state_province": "New Hampshire", + "postal_code": "03101-1151", + "country": "United States", + "longitude": -71.4676557, + "latitude": 42.9945554, + "phone": "6036254444", + "website_url": "http://www.starkbrewingcompany.com", + "state": "New Hampshire", + "street": "500 North Commercial St" + }, + { + "id": "f46e5f3a-5a8b-4b7a-be4f-e080b0518550", + "name": "Starke Brews", + "brewery_type": "micro", + "address_1": "Contermanskloof Farm", + "address_2": "Contermanskloof Road", + "address_3": null, + "city": "Durbanville", + "state_province": "Western Cape", + "postal_code": "7550", + "country": "South Africa", + "longitude": 18.5776, + "latitude": -33.7915, + "phone": "+27 82 858 2441", + "website_url": "https://starkebrews.com/", + "state": "Western Cape", + "street": "Contermanskloof Farm" + }, + { + "id": "dc52c24c-dd41-4c5f-b25f-7969dbc1a035", + "name": "Starpoint Brewing, LLC", + "brewery_type": "micro", + "address_1": "901 Clarence Dr", + "address_2": null, + "address_3": null, + "city": "Chapel Hill", + "state_province": "North Carolina", + "postal_code": "27516-3145", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9195232302", + "website_url": "http://starpointbrewing.com", + "state": "North Carolina", + "street": "901 Clarence Dr" + }, + { + "id": "a9441b9a-abbf-4b32-ba73-ee112330ecbc", + "name": "Starpoint Brewing, LLC / Beer Study", + "brewery_type": "micro", + "address_1": "2501 University Dr Ste 4", + "address_2": null, + "address_3": null, + "city": "Chapel Hill", + "state_province": "North Carolina", + "postal_code": "22707", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9842197538", + "website_url": "http://www.drinkdurham.com", + "state": "North Carolina", + "street": "2501 University Dr Ste 4" + }, + { + "id": "c483ea80-d10a-497f-9f02-47e8a4b23861", + "name": "Starr Brothers Brewing Co.", + "brewery_type": "brewpub", + "address_1": "5700 San Antonio Dr NE Ste B1", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87109-4179", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5054922752", + "website_url": "http://starrbrothersbrewing.com", + "state": "New Mexico", + "street": "5700 San Antonio Dr NE Ste B1" + }, + { + "id": "87832f67-9efa-4d30-9a10-f52fce61d062", + "name": "Starr Hill Brewery LLC", + "brewery_type": "regional", + "address_1": "5391 Three Notch D Rd", + "address_2": null, + "address_3": null, + "city": "Crozet", + "state_province": "Virginia", + "postal_code": "22932-3181", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4348235671", + "website_url": "http://www.starrhill.com", + "state": "Virginia", + "street": "5391 Three Notch D Rd" + }, + { + "id": "7c9fbe58-ea1a-4dd3-bb0f-f1ae386357bd", + "name": "Starr Hill Pilot Brewery & Side Stage", + "brewery_type": "micro", + "address_1": "6 Old Whitmore Ave SE", + "address_2": null, + "address_3": null, + "city": "Roanoke", + "state_province": "Virginia", + "postal_code": "24016-1212", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4348235671", + "website_url": null, + "state": "Virginia", + "street": "6 Old Whitmore Ave SE" + }, + { + "id": "11c5fe19-a115-4284-bae8-b24ba3841f35", + "name": "Starry Eyed Brewing Company", + "brewery_type": "micro", + "address_1": "16757 11th St NE", + "address_2": null, + "address_3": null, + "city": "Little Falls", + "state_province": "Minnesota", + "postal_code": "56345-2203", + "country": "United States", + "longitude": -94.3451474, + "latitude": 45.9831733, + "phone": "3202320382", + "website_url": "http://www.starryeyedbrewing.com", + "state": "Minnesota", + "street": "16757 11th St NE" + }, + { + "id": "851420af-9b77-498f-ac1b-43daddc03941", + "name": "Start Line Brewing Company", + "brewery_type": "micro", + "address_1": "151R Hayden Rowe St", + "address_2": null, + "address_3": null, + "city": "Hopkinton", + "state_province": "Massachusetts", + "postal_code": "01748-2511", + "country": "United States", + "longitude": -71.51323676, + "latitude": 42.21031634, + "phone": "5087612044", + "website_url": "http://www.startlinebrewing.com", + "state": "Massachusetts", + "street": "151R Hayden Rowe St" + }, + { + "id": "481a0ead-5e95-451e-a431-ba8972b7e5ea", + "name": "Starving Artist Brewing", + "brewery_type": "micro", + "address_1": "634 S Stiles Rd", + "address_2": null, + "address_3": null, + "city": "Ludington", + "state_province": "Michigan", + "postal_code": "49431-9311", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2317941399", + "website_url": "http://starvingartist.beer", + "state": "Michigan", + "street": "634 S Stiles Rd" + }, + { + "id": "91420d9d-1087-4602-b078-780f33fa6f05", + "name": "Stash Brewing Co", + "brewery_type": "closed", + "address_1": "3782 Winding Creek Ln", + "address_2": null, + "address_3": null, + "city": "Garden Valley", + "state_province": "California", + "postal_code": "95633-9773", + "country": "United States", + "longitude": -120.8784951, + "latitude": 38.8402775, + "phone": "4156804181", + "website_url": "http://stashbrewingco.com", + "state": "California", + "street": "3782 Winding Creek Ln" + }, + { + "id": "436846b7-4538-4d89-b919-2396c7f00ab8", + "name": "State 48 Barrel and Lager House", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Scottsdale", + "state_province": "Arizona", + "postal_code": "85260-1924", + "country": "United States", + "longitude": -111.8992365, + "latitude": 33.5091215, + "phone": null, + "website_url": null, + "state": "Arizona", + "street": null + }, + { + "id": "6260eac2-6949-4c19-aec9-739c2cdcf849", + "name": "State 48 Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85003-1626", + "country": "United States", + "longitude": -112.0773456, + "latitude": 33.4485866, + "phone": null, + "website_url": null, + "state": "Arizona", + "street": null + }, + { + "id": "733fcd37-636e-469f-b8fa-6b928d009d89", + "name": "State 48 Brewery", + "brewery_type": "brewpub", + "address_1": "13823 W Bell Rd", + "address_2": null, + "address_3": null, + "city": "Surprise", + "state_province": "Arizona", + "postal_code": "85374-3873", + "country": "United States", + "longitude": -112.3578138, + "latitude": 33.63822125, + "phone": "6235841095", + "website_url": null, + "state": "Arizona", + "street": "13823 W Bell Rd" + }, + { + "id": "1f1449bb-4f21-4fa7-b542-625e13ad02d5", + "name": "State Brewing Co LLC", + "brewery_type": "closed", + "address_1": "1237 W 134th St Ste 2", + "address_2": null, + "address_3": null, + "city": "Gardena", + "state_province": "California", + "postal_code": "90247-1962", + "country": "United States", + "longitude": -118.2978732, + "latitude": 33.91111274, + "phone": "3108198179", + "website_url": "http://www.statebrewingco.com", + "state": "California", + "street": "1237 W 134th St Ste 2" + }, + { + "id": "f72d12e9-ae13-4184-952c-3ea501798e94", + "name": "State Room Brewery", + "brewery_type": "brewpub", + "address_1": "1132 4th St", + "address_2": null, + "address_3": null, + "city": "San Rafael", + "state_province": "California", + "postal_code": "94901-3007", + "country": "United States", + "longitude": -122.5286585, + "latitude": 37.97327448, + "phone": "4152957929", + "website_url": "http://stateroombrewery.com", + "state": "California", + "street": "1132 4th St" + }, + { + "id": "aa3e7b92-9943-4fc3-ab99-0c68e8045088", + "name": "Stateline Brewery", + "brewery_type": "brewpub", + "address_1": "4118 Lake Tahoe Blvd Ste 1", + "address_2": null, + "address_3": null, + "city": "South Lake Tahoe", + "state_province": "California", + "postal_code": "96150-6990", + "country": "United States", + "longitude": -119.9424674, + "latitude": 38.95801631, + "phone": "5305429000", + "website_url": "http://www.statelinebrewery.com", + "state": "California", + "street": "4118 Lake Tahoe Blvd Ste 1" + }, + { + "id": "d04514b9-1c70-4e28-a603-cb7a70da3045", + "name": "Staten Island Beer Company", + "brewery_type": "micro", + "address_1": "20 Kinsey Pl", + "address_2": null, + "address_3": null, + "city": "Staten Island", + "state_province": "New York", + "postal_code": "10303-1427", + "country": "United States", + "longitude": -74.17033729, + "latitude": 40.62874743, + "phone": "7183908445", + "website_url": "http://www.sibeerco.com", + "state": "New York", + "street": "20 Kinsey Pl" + }, + { + "id": "11977488-1872-4b1b-9e28-f9c68f9db873", + "name": "Station 26 Brewing Co", + "brewery_type": "micro", + "address_1": "7045 E 38th Ave", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80207-1541", + "country": "United States", + "longitude": -104.9062608, + "latitude": 39.76935335, + "phone": null, + "website_url": "http://www.station26brewing.co", + "state": "Colorado", + "street": "7045 E 38th Ave" + }, + { + "id": "d11fa007-74a5-456a-b508-bce3dfe51414", + "name": "Stats Brewpub", + "brewery_type": "brewpub", + "address_1": "300 Marietta St NW", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30313-1632", + "country": "United States", + "longitude": -84.3964736, + "latitude": 33.7615549, + "phone": "7705700160", + "website_url": "http://StatsATL.com", + "state": "Georgia", + "street": "300 Marietta St NW" + }, + { + "id": "1cebb6fc-f76e-432e-a55d-a58c3d1dbffd", + "name": "Staunton River Brewing Company", + "brewery_type": "micro", + "address_1": "1571 Mount Calvary Rd", + "address_2": null, + "address_3": null, + "city": "Brookneal", + "state_province": "Virginia", + "postal_code": "24528-3156", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4343769463", + "website_url": "http://www.stauntonriverbrewing.com", + "state": "Virginia", + "street": "1571 Mount Calvary Rd" + }, + { + "id": "3c476919-aaf1-4d7d-a54b-78b59ffc1051", + "name": "Staves Brewery", + "brewery_type": "micro", + "address_1": "8 Grose Street", + "address_2": "4", + "address_3": null, + "city": "Glebe", + "state_province": "NSW", + "postal_code": "2037", + "country": "Australia", + "longitude": 151.1942249, + "latitude": -33.8840842, + "phone": "+61 403 841 265", + "website_url": "https://www.facebook.com/liveatstaves/", + "state": "NSW", + "street": "8 Grose Street" + }, + { + "id": "ae5ab620-975f-4ee3-8625-07b93d9ff0f6", + "name": "Steadfast Beer Co", + "brewery_type": "contract", + "address_1": "1756 Western Ave Rear", + "address_2": null, + "address_3": null, + "city": "Albany", + "state_province": "New York", + "postal_code": "12203-4414", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.steadfastbeer.com", + "state": "New York", + "street": "1756 Western Ave Rear" + }, + { + "id": "2a69f497-409e-4c1f-bfd2-0c51be6c0287", + "name": "Steady Brewing", + "brewery_type": "micro", + "address_1": "2936 Clark Ave", + "address_2": null, + "address_3": null, + "city": "Long Beach", + "state_province": "California", + "postal_code": "90815", + "country": "United States", + "longitude": -118.133923, + "latitude": 33.825078, + "phone": "5623516793", + "website_url": "http://Www.steadybrewing.com", + "state": "California", + "street": "2936 Clark Ave" + }, + { + "id": "e4fcbf74-5b11-4e1b-8e90-854a041b5bda", + "name": "Steady Habit Brewing Company", + "brewery_type": "closed", + "address_1": "95 Bridge Rd", + "address_2": null, + "address_3": null, + "city": "Haddam", + "state_province": "Connecticut", + "postal_code": "06438-1354", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8607775041", + "website_url": null, + "state": "Connecticut", + "street": "95 Bridge Rd" + }, + { + "id": "fb49c03e-5117-4969-87ad-4ae6f1b71831", + "name": "Steam Bell Beer Works", + "brewery_type": "micro", + "address_1": "1717 Oak Lake Blvd E", + "address_2": null, + "address_3": null, + "city": "Midlothian", + "state_province": "Virginia", + "postal_code": "23112-3995", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8047281876", + "website_url": "http://www.steambell.beer", + "state": "Virginia", + "street": "1717 Oak Lake Blvd E" + }, + { + "id": "8de57d40-c837-4d77-9275-e827ddc43675", + "name": "Steam Donkey Brewing Co", + "brewery_type": "micro", + "address_1": "101 E Wishkah St", + "address_2": null, + "address_3": null, + "city": "Aberdeen", + "state_province": "Washington", + "postal_code": "98520-6503", + "country": "United States", + "longitude": -123.81773, + "latitude": 46.974242, + "phone": "3606379431", + "website_url": "http://Steamdonkeybrewing.com", + "state": "Washington", + "street": "101 E Wishkah St" + }, + { + "id": "f0ccfae1-90ea-44bb-8b23-9c57fb4aa836", + "name": "Steam Plant Grill", + "brewery_type": "brewpub", + "address_1": "159 S Lincoln St Ste 1", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99201-4409", + "country": "United States", + "longitude": -117.42472914426, + "latitude": 47.65537693449, + "phone": "5097773900", + "website_url": "http://www.steamplantspokane.com", + "state": "Washington", + "street": "159 S Lincoln St Ste 1" + }, + { + "id": "c04f39d4-df5f-48d4-9645-148072eeb9f5", + "name": "Steam Theory Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75212-4101", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.steamtheorybrewing.com", + "state": "Texas", + "street": null + }, + { + "id": "279c975d-899d-45a9-9655-ab335b6ebf60", + "name": "Steampunk Brew Works", + "brewery_type": "micro", + "address_1": "231 Lamp and Lantern Vlg", + "address_2": null, + "address_3": null, + "city": "Chesterfield", + "state_province": "Missouri", + "postal_code": "63017-8209", + "country": "United States", + "longitude": -90.517873, + "latitude": 38.625963, + "phone": "6362308277", + "website_url": "http://www.steampunkbrewworks.com", + "state": "Missouri", + "street": "231 Lamp and Lantern Vlg" + }, + { + "id": "a6d2caab-e4de-42dc-8ff0-8daceeb843f5", + "name": "Steamworks Brewing Co", + "brewery_type": "brewpub", + "address_1": "801 E 2nd Ave", + "address_2": null, + "address_3": null, + "city": "Durango", + "state_province": "Colorado", + "postal_code": "81301-5425", + "country": "United States", + "longitude": -107.87979, + "latitude": 37.272176, + "phone": "9702599200", + "website_url": "http://www.steamworksbrewing.com", + "state": "Colorado", + "street": "801 E 2nd Ave" + }, + { + "id": "e1bcecf4-738e-41e0-a2c8-c0fca901a0e2", + "name": "Steel Bender Brewyard", + "brewery_type": "brewpub", + "address_1": "8305 2nd St NW", + "address_2": null, + "address_3": null, + "city": "Los Ranchos de Albuquerque", + "state_province": "New Mexico", + "postal_code": "87114-1038", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5054333537", + "website_url": "http://www.steelbenderbrewyard.com", + "state": "New Mexico", + "street": "8305 2nd St NW" + }, + { + "id": "4c64c6ac-e0aa-4b2b-bec9-121539fc21ec", + "name": "Steel Bonnet Brewing Co", + "brewery_type": "micro", + "address_1": "20 Victor Sq Ste B", + "address_2": null, + "address_3": null, + "city": "Scotts Valley", + "state_province": "California", + "postal_code": "95066-3518", + "country": "United States", + "longitude": -122.0061729, + "latitude": 37.06188758, + "phone": "8314548429", + "website_url": "http://www.steelbon.net", + "state": "California", + "street": "20 Victor Sq Ste B" + }, + { + "id": "259c6bad-d77b-4e96-99ba-78873517c6ca", + "name": "Steel Hands Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Cayce", + "state_province": "South Carolina", + "postal_code": "29033-3439", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8039200592", + "website_url": null, + "state": "South Carolina", + "street": null + }, + { + "id": "1638e0aa-5017-4c87-9b60-4de2a5b4d8f4", + "name": "Steel Squared Brewing Company", + "brewery_type": "contract", + "address_1": "1597 Tiffany Ct", + "address_2": null, + "address_3": null, + "city": "de Pere", + "state_province": "Wisconsin", + "postal_code": "54115-9042", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Wisconsin", + "street": "1597 Tiffany Ct" + }, + { + "id": "8016ba19-ba7a-4ea1-bd8f-86203aa8fa08", + "name": "Steel String Craft Brewery", + "brewery_type": "brewpub", + "address_1": "106 S Greensboro St Ste A", + "address_2": null, + "address_3": null, + "city": "Carrboro", + "state_province": "North Carolina", + "postal_code": "27510-2266", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9192407215", + "website_url": "http://www.steelstringbrewery.com", + "state": "North Carolina", + "street": "106 S Greensboro St Ste A" + }, + { + "id": "d469044a-3e41-4b21-8112-582d47a656a7", + "name": "Steel Toe Brewing", + "brewery_type": "micro", + "address_1": "4848 W 35th St", + "address_2": null, + "address_3": null, + "city": "St Louis Park", + "state_province": "Minnesota", + "postal_code": "55416-2610", + "country": "United States", + "longitude": -93.34180586, + "latitude": 44.94042645, + "phone": "9529559965", + "website_url": "http://www.steeltoebrewing.com", + "state": "Minnesota", + "street": "4848 W 35th St" + }, + { + "id": "15971ca8-5993-4fb0-8fe3-f68f2860d00a", + "name": "Steele and Hops Public House", + "brewery_type": "brewpub", + "address_1": "1901 Mendocino Ave", + "address_2": null, + "address_3": null, + "city": "Santa Rosa", + "state_province": "California", + "postal_code": "95401", + "country": "United States", + "longitude": -122.717258, + "latitude": 38.459216, + "phone": "7075232201", + "website_url": "http://www.steeleandhops.com", + "state": "California", + "street": "1901 Mendocino Ave" + }, + { + "id": "7a9a8bce-cd3d-4518-9647-82f6b4408abb", + "name": "SteelHead Aleworks", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mukwonago", + "state_province": "Wisconsin", + "postal_code": "53149", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.stealheadaleworks.com", + "state": "Wisconsin", + "street": null + }, + { + "id": "49822141-1c9d-4fd3-8218-6315d80d0c9f", + "name": "Steelhead Brewing Co - Burlingame Station", + "brewery_type": "brewpub", + "address_1": "333 California Dr", + "address_2": null, + "address_3": null, + "city": "Burlingame", + "state_province": "California", + "postal_code": "94010-4114", + "country": "United States", + "longitude": -122.3462607, + "latitude": 37.5799728, + "phone": "6503446050", + "website_url": "http://www.steelheadbrewery.com", + "state": "California", + "street": "333 California Dr" + }, + { + "id": "41226f84-764d-4250-9993-2ef81a7472d9", + "name": "Steens Mountain Brewing Company", + "brewery_type": "micro", + "address_1": "673 B W Monroe St", + "address_2": null, + "address_3": null, + "city": "Burns", + "state_province": "Oregon", + "postal_code": "97720", + "country": "United States", + "longitude": -119.060813, + "latitude": 43.585639, + "phone": "5415891159", + "website_url": null, + "state": "Oregon", + "street": "673 B W Monroe St" + }, + { + "id": "9164b9c4-f14f-41ef-851f-994b79502e3d", + "name": "Steeple Brewing Co", + "brewery_type": "micro", + "address_1": "717 W 1st St", + "address_2": null, + "address_3": null, + "city": "Hastings", + "state_province": "Nebraska", + "postal_code": "68901", + "country": "United States", + "longitude": -98.39024973, + "latitude": 40.58418233, + "phone": "4025194205", + "website_url": "http://www.steeplebrewing.com", + "state": "Nebraska", + "street": "717 W 1st St" + }, + { + "id": "4142b73a-3079-4c57-ac64-9577f134a13b", + "name": "Stein Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mount Vernon", + "state_province": "Ohio", + "postal_code": "43050-3323", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.SteinBrewCo.com", + "state": "Ohio", + "street": null + }, + { + "id": "7bfc0b84-5f81-4277-80ee-ea3633c6d1d4", + "name": "Stein Brewing Company", + "brewery_type": "micro", + "address_1": "2516 49th St", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301-2455", + "country": "United States", + "longitude": -105.2378323, + "latitude": 40.0238083, + "phone": "3033960384", + "website_url": "http://www.jwellsbrewery.com", + "state": "Colorado", + "street": "2516 49th St" + }, + { + "id": "061fff88-4a8a-4a81-8a99-2ac2d203732c", + "name": "Steinhardt Brewing Company", + "brewery_type": "micro", + "address_1": "5710 Jefferson Blvd", + "address_2": null, + "address_3": null, + "city": "Frederick", + "state_province": "Maryland", + "postal_code": "21703-6947", + "country": "United States", + "longitude": -77.512519, + "latitude": 39.391045, + "phone": null, + "website_url": "http://www.steinhardtbrewing.com", + "state": "Maryland", + "street": "5710 Jefferson Blvd" + }, + { + "id": "9afbaf0f-9096-4801-ba6e-f84153b1d94b", + "name": "Stellar Brewery", + "brewery_type": "micro", + "address_1": "R702", + "address_2": "Dassiekop", + "address_3": null, + "city": "Dewetsdorp", + "state_province": "Free State", + "postal_code": "9940", + "country": "South Africa", + "longitude": 26.3121, + "latitude": -29.6206, + "phone": "+27 72 396 6736", + "website_url": "https://stellarbrewery.com/", + "state": "Free State", + "street": "R702" + }, + { + "id": "02e2a072-6710-4d7e-b19c-a51a281c0bda", + "name": "Stellenbosch Brewing Company", + "brewery_type": "brewpub", + "address_1": "Klein Joostenberg Farm", + "address_2": "R304", + "address_3": null, + "city": "Stellenbosch", + "state_province": "Western Cape", + "postal_code": "7606", + "country": "South Africa", + "longitude": 18.7845, + "latitude": -33.8217, + "phone": "+27 21 884 4014", + "website_url": "https://stelliesbeer.com/", + "state": "Western Cape", + "street": "Klein Joostenberg Farm" + }, + { + "id": "17086f05-6d04-4e38-8924-8b16ad921480", + "name": "Stellwagen Beer Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Marshfield", + "state_province": "Massachusetts", + "postal_code": "02050", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7817899162", + "website_url": "http://www.stellwagenbeer.com", + "state": "Massachusetts", + "street": null + }, + { + "id": "0d1246aa-303a-4e8f-83a8-bf1410ec1279", + "name": "Stemma Brewing Co", + "brewery_type": "micro", + "address_1": "2039 Moore St.", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98229", + "country": "United States", + "longitude": -122.46103, + "latitude": 48.75759, + "phone": "3607468385", + "website_url": "https://www.stemmabrewing.com/", + "state": "Washington", + "street": "2039 Moore St." + }, + { + "id": "c4e6598e-6254-4585-9294-66cbdcbc4b79", + "name": "Stereo Brewing Co", + "brewery_type": "micro", + "address_1": "950 S Via Rodeo", + "address_2": null, + "address_3": null, + "city": "Placentia", + "state_province": "California", + "postal_code": "92870-6775", + "country": "United States", + "longitude": -117.8200802, + "latitude": 33.86330957, + "phone": "7149933390", + "website_url": "http://www.stereobrewing.com", + "state": "California", + "street": "950 S Via Rodeo" + }, + { + "id": "2119dc54-184b-4f1e-ada6-f085576e3760", + "name": "Sterling Beer Co.", + "brewery_type": "contract", + "address_1": "3214 Preston Hwy", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Kentucky", + "postal_code": "40213-1330", + "country": "United States", + "longitude": -85.7347014, + "latitude": 38.2019083, + "phone": "5022338485", + "website_url": "http://www.sterlingbeer.com", + "state": "Kentucky", + "street": "3214 Preston Hwy" + }, + { + "id": "a47291a8-90f1-4b37-b517-e857fbf66b5f", + "name": "Sterling Pig Brewery", + "brewery_type": "brewpub", + "address_1": "609 W State St", + "address_2": null, + "address_3": null, + "city": "Media", + "state_province": "Pennsylvania", + "postal_code": "19063-2641", + "country": "United States", + "longitude": -75.3949477, + "latitude": 39.918688, + "phone": "4844442526", + "website_url": "http://www.sterlingpigbrewery.com", + "state": "Pennsylvania", + "street": "609 W State St" + }, + { + "id": "c91229a8-b327-4d38-94e9-473265759cb1", + "name": "Stesti Brewing Company", + "brewery_type": "micro", + "address_1": "1314 FM 2915", + "address_2": null, + "address_3": null, + "city": "Lovelady", + "state_province": "Texas", + "postal_code": "75851", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9362046858", + "website_url": null, + "state": "Texas", + "street": "1314 FM 2915" + }, + { + "id": "8e78d6ea-2ed7-4489-b050-cb3b0456cea1", + "name": "Steuben Brewing Company", + "brewery_type": "micro", + "address_1": "10286 Judson Rd", + "address_2": null, + "address_3": null, + "city": "Hammondsport", + "state_province": "New York", + "postal_code": "14840-9668", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6072798874", + "website_url": "http://www.steubenbrewingcompany.com", + "state": "New York", + "street": "10286 Judson Rd" + }, + { + "id": "608d1bd1-4164-484d-851a-8b83f958a211", + "name": "Stevens Point Brewery", + "brewery_type": "regional", + "address_1": "2617 Water St", + "address_2": null, + "address_3": null, + "city": "Stevens Point", + "state_province": "Wisconsin", + "postal_code": "54481-5248", + "country": "United States", + "longitude": -89.57398078, + "latitude": 44.51026271, + "phone": "7153449310", + "website_url": "http://www.pointbeer.com", + "state": "Wisconsin", + "street": "2617 Water St" + }, + { + "id": "2c73a4ad-8953-4e91-8d3c-bf9f1cb2d807", + "name": "Stewart's Brewing Co", + "brewery_type": "brewpub", + "address_1": "219 Governors Pl", + "address_2": null, + "address_3": null, + "city": "Bear", + "state_province": "Delaware", + "postal_code": "19701-3026", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3028362739", + "website_url": "http://www.stewartsbrewingcompany.com", + "state": "Delaware", + "street": "219 Governors Pl" + }, + { + "id": "5d48eb13-35d2-4724-be47-4095fd49426a", + "name": "Stewbum", + "brewery_type": "brewpub", + "address_1": "96 N King St", + "address_2": null, + "address_3": null, + "city": "Honolulu", + "state_province": "Hawaii", + "postal_code": "96817-5109", + "country": "United States", + "longitude": -157.8634762, + "latitude": 21.31171513, + "phone": "8086646684", + "website_url": "http://www.stewbumandstonewall.com", + "state": "Hawaii", + "street": "96 N King St" + }, + { + "id": "180b2f4c-3d94-4ca2-af1f-709f0df12923", + "name": "Stick City Brewing Company", + "brewery_type": "micro", + "address_1": "109 Irvine ST", + "address_2": null, + "address_3": null, + "city": "Mars", + "state_province": "Pennsylvania", + "postal_code": "16046-0372", + "country": "United States", + "longitude": -80.0095235, + "latitude": 40.69553485, + "phone": "7247897849", + "website_url": "http://www.stickcitybeer.com", + "state": "Pennsylvania", + "street": "109 Irvine ST" + }, + { + "id": "7287c68d-4f90-4fd7-b695-2410de8a3781", + "name": "Stickman Brews", + "brewery_type": "micro", + "address_1": "326 N Lewis Rd # 240", + "address_2": null, + "address_3": null, + "city": "Royersford", + "state_province": "Pennsylvania", + "postal_code": "19468-1509", + "country": "United States", + "longitude": -75.53755464, + "latitude": 40.2000606, + "phone": "4849385900", + "website_url": "http://www.stickmanbrews.com", + "state": "Pennsylvania", + "street": "326 N Lewis Rd # 240" + }, + { + "id": "d4ccc2fc-b6a8-4a24-bb52-eb9ecea3aaa4", + "name": "Stickmen Brewery", + "brewery_type": "brewpub", + "address_1": "40 N State St", + "address_2": null, + "address_3": null, + "city": "Lake Oswego", + "state_province": "Oregon", + "postal_code": "97034-3926", + "country": "United States", + "longitude": -122.6638277, + "latitude": 45.4161533, + "phone": null, + "website_url": null, + "state": "Oregon", + "street": "40 N State St" + }, + { + "id": "155593b0-c256-4173-9a2d-d35903aa3a4e", + "name": "Stiegl", + "brewery_type": "large", + "address_1": "Stieglbrauerei Kendlerstraße 1", + "address_2": null, + "address_3": null, + "city": "Salzburg", + "state_province": "Salzburg", + "postal_code": "5017", + "country": "Austria", + "longitude": 13.020265412406, + "latitude": 47.794121248111, + "phone": "+435014920", + "website_url": "https://www.stiegl.at", + "state": "Salzburg", + "street": "Stieglbrauerei Kendlerstraße 1" + }, + { + "id": "9a678cf5-99b6-4877-bf49-d5b7bc268386", + "name": "Stiggs Brewery & Kitchen", + "brewery_type": "brewpub", + "address_1": "112 S Park St", + "address_2": null, + "address_3": null, + "city": "Boyne City", + "state_province": "Michigan", + "postal_code": "49712-1251", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2314976100", + "website_url": "http://www.stiggsbrewingcompany.com", + "state": "Michigan", + "street": "112 S Park St" + }, + { + "id": "dda7d07a-9bae-4183-9291-506712c78750", + "name": "Still HIll Brewery LLC", + "brewery_type": "micro", + "address_1": "1275 Cromwell Ave Ste C8 Unit 9", + "address_2": null, + "address_3": null, + "city": "Rocky Hill", + "state_province": "Connecticut", + "postal_code": "06067-3430", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8604366368", + "website_url": "http://www.stillhillbrewery.com", + "state": "Connecticut", + "street": "1275 Cromwell Ave Ste C8 Unit 9" + }, + { + "id": "51406172-17ff-49ec-a1ec-218756528dd4", + "name": "Still River Brewery", + "brewery_type": "micro", + "address_1": "121 Clinton Shore Dr.", + "address_2": null, + "address_3": null, + "city": "Still River", + "state_province": "Massachusetts", + "postal_code": "01467-0157", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Massachusetts", + "street": "121 Clinton Shore Dr." + }, + { + "id": "a8a67e73-3473-4323-88c3-ab3ca4ed5f32", + "name": "Stillmank Brewing Company", + "brewery_type": "micro", + "address_1": "215 N Henry St", + "address_2": null, + "address_3": null, + "city": "Green Bay", + "state_province": "Wisconsin", + "postal_code": "54302-2613", + "country": "United States", + "longitude": -87.97838833, + "latitude": 44.5044596, + "phone": "9207852337", + "website_url": "http://www.stillmankbrewery.com", + "state": "Wisconsin", + "street": "215 N Henry St" + }, + { + "id": "47b9435c-a74e-47ed-887d-6c0830648d6d", + "name": "Stillwater Artisanal Ales", + "brewery_type": "contract", + "address_1": "720 S Conkling St", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21224-4301", + "country": "United States", + "longitude": -76.56726435, + "latitude": 39.28408355, + "phone": "4436685255", + "website_url": null, + "state": "Maryland", + "street": "720 S Conkling St" + }, + { + "id": "94a2e9ac-ed3d-406c-8686-b5faa0de915b", + "name": "StillWest Brewery & Grill", + "brewery_type": "brewpub", + "address_1": "45 E Snow King Ave", + "address_2": null, + "address_3": null, + "city": "Jackson", + "state_province": "Wyoming", + "postal_code": "83001-8668", + "country": "United States", + "longitude": -110.7614496134, + "latitude": 43.473609412413, + "phone": "3072015955", + "website_url": "https://www.stillwestbreweryandgrill.com", + "state": "Wyoming", + "street": "45 E Snow King Ave" + }, + { + "id": "08279a5f-e91d-4233-aa86-b79c58f45644", + "name": "Stilt House Brewery", + "brewery_type": "micro", + "address_1": "625 US 19 Alt", + "address_2": null, + "address_3": null, + "city": "Palm Harbor", + "state_province": "Florida", + "postal_code": "34683", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8138911693", + "website_url": "http://www.stilthousebrewery.com", + "state": "Florida", + "street": "625 US 19 Alt" + }, + { + "id": "fb72269a-fe00-40ad-989e-a4878bd4bc1c", + "name": "Stitch House Brewery", + "brewery_type": "brewpub", + "address_1": "829 North Market Street", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "Delaware", + "postal_code": "19801", + "country": "United States", + "longitude": -75.54908716, + "latitude": 39.7438473, + "phone": "3022504280", + "website_url": "http://www.stitchhousebrewery.com", + "state": "Delaware", + "street": "829 North Market Street" + }, + { + "id": "d3b875ef-34d2-4954-be22-acdf816d7b5c", + "name": "Stockade Brew Co", + "brewery_type": "micro", + "address_1": "89 Bertie Street", + "address_2": null, + "address_3": null, + "city": "Port Melbourne", + "state_province": "VIC", + "postal_code": "3207", + "country": "Australia", + "longitude": 144.9370538, + "latitude": -37.8285701, + "phone": "+61 3 8644 4044", + "website_url": "http://www.cbco.beer/", + "state": "VIC", + "street": "89 Bertie Street" + }, + { + "id": "e44f1b26-d801-452b-a1f0-fddaf35f3948", + "name": "Stockholms Vardshus", + "brewery_type": "brewpub", + "address_1": "306 W State St", + "address_2": null, + "address_3": null, + "city": "Geneva", + "state_province": "Illinois", + "postal_code": "60134-2103", + "country": "United States", + "longitude": -88.30735303, + "latitude": 41.88776869, + "phone": "6302081400", + "website_url": "http://www.stockholmsbrewpub.com", + "state": "Illinois", + "street": "306 W State St" + }, + { + "id": "b632b81c-fc78-4789-a37a-0e77d6c483f7", + "name": "Stockyards Brewing Company", + "brewery_type": "micro", + "address_1": "1600 Genessee St Ste 100", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64102-1044", + "country": "United States", + "longitude": -94.605113, + "latitude": 39.094436, + "phone": "8168958880", + "website_url": "http://www.stockyardsbrewing.com", + "state": "Missouri", + "street": "1600 Genessee St Ste 100" + }, + { + "id": "5e44f9ac-ec1e-4143-a21e-b7af8c507e40", + "name": "Stoic Brewing", + "brewery_type": "contract", + "address_1": "667 Robinett Rd", + "address_2": null, + "address_3": null, + "city": "Waxahachie", + "state_province": "Texas", + "postal_code": "75165-6343", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5128884843", + "website_url": "http://stoicbrewing.com", + "state": "Texas", + "street": "667 Robinett Rd" + }, + { + "id": "fd942778-2ac2-47df-b493-9b53d0fe7444", + "name": "Stoic Brewing", + "brewery_type": "micro", + "address_1": "45 Rowlins Road", + "address_2": "6", + "address_3": null, + "city": "Gerringong", + "state_province": "NSW", + "postal_code": "2534", + "country": "Australia", + "longitude": 150.8209904, + "latitude": -34.7425969, + "phone": null, + "website_url": "http://www.stoicbrewing.com.au/", + "state": "NSW", + "street": "45 Rowlins Road" + }, + { + "id": "5edf4546-8f83-48c9-8d15-52899b67a2b4", + "name": "Stoik Beer Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Delta", + "state_province": "Colorado", + "postal_code": "81416", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.stoikbeer.com", + "state": "Colorado", + "street": null + }, + { + "id": "a93eb7a0-8cfe-4d36-9368-115a290c47c9", + "name": "Stoker's Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Tamaqua", + "state_province": "Pennsylvania", + "postal_code": "18252-1405", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "0a2cdd57-6606-4f9f-aa1b-ad1a4f12d095", + "name": "Stomping Ground Brewing Co.", + "brewery_type": "micro", + "address_1": "100 Gipps Street", + "address_2": null, + "address_3": null, + "city": "Collingwood", + "state_province": "VIC", + "postal_code": "3066", + "country": "Australia", + "longitude": 144.9910898, + "latitude": -37.8047204, + "phone": "+61 3 9415 1944", + "website_url": "http://www.stompingground.beer/", + "state": "VIC", + "street": "100 Gipps Street" + }, + { + "id": "fc3ff19c-3ec3-415c-bb80-b2f6c311f4e7", + "name": "Stone & Wood Brewing Co", + "brewery_type": "micro", + "address_1": "35 Kite Crescent", + "address_2": null, + "address_3": null, + "city": "South Murwillumbah", + "state_province": "NSW", + "postal_code": "2484", + "country": "Australia", + "longitude": 153.4223498, + "latitude": -28.342698, + "phone": "+61 2 6685 5173", + "website_url": "https://stoneandwood.com.au/", + "state": "NSW", + "street": "35 Kite Crescent" + }, + { + "id": "84999fdf-4d0e-4da9-aaae-dd03bc6ae567", + "name": "Stone & Wood Brewing Co.", + "brewery_type": "large", + "address_1": "35 Kite Crescent", + "address_2": null, + "address_3": null, + "city": "South Murwillumbah", + "state_province": "NSW", + "postal_code": "2484", + "country": "Australia", + "longitude": 153.4223498, + "latitude": -28.342698, + "phone": "+61 2 6685 5173", + "website_url": "https://stoneandwood.com.au/", + "state": "NSW", + "street": "35 Kite Crescent" + }, + { + "id": "985764fc-a5cf-4634-8bf3-e89dde5e6531", + "name": "Stone Barrel Brewing Company", + "brewery_type": "regional", + "address_1": "Bluebell Avenue", + "address_2": "Bluebell Industrial Estate", + "address_3": "Dublin 12", + "city": "Dublin", + "state_province": "Dublin", + "postal_code": "D12 NPF9", + "country": "Ireland", + "longitude": -6.3506651, + "latitude": 53.3308805, + "phone": "353862381267", + "website_url": "http://www.stonebarrelbrewing.ie/", + "state": "Dublin", + "street": "Bluebell Avenue" + }, + { + "id": "3ccda21a-5229-4bb1-b442-eb96ed891145", + "name": "Stone Brewing", + "brewery_type": "micro", + "address_1": "100 Centennial Circuit", + "address_2": null, + "address_3": null, + "city": "Byron Bay", + "state_province": "NSW", + "postal_code": "2481", + "country": "Australia", + "longitude": 153.5807582, + "latitude": -28.6371693, + "phone": "+61 429 060 262", + "website_url": "https://stoneandwood.com.au/pages/byron-bay?utm_source=google&utm_medium=organic&utm_campaign=gbp", + "state": "NSW", + "street": "100 Centennial Circuit" + }, + { + "id": "d955991a-9377-4f2c-baf3-b561a72bf895", + "name": "Stone Brewing Co", + "brewery_type": "regional", + "address_1": "2120 Harmony Grove Rd", + "address_2": null, + "address_3": null, + "city": "Escondido", + "state_province": "California", + "postal_code": "92029-2053", + "country": "United States", + "longitude": -117.11565, + "latitude": 33.109969, + "phone": "7602947866", + "website_url": "http://www.stonebrewing.com", + "state": "California", + "street": "2120 Harmony Grove Rd" + }, + { + "id": "444ce3b3-4111-485a-9158-e54d61909650", + "name": "Stone Brewing Co- Richmond", + "brewery_type": "regional", + "address_1": "4300 Williamsburg Ave", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23231-1225", + "country": "United States", + "longitude": -77.414763, + "latitude": 37.5241103, + "phone": "8044895902", + "website_url": "http://www.stonebrewing.com/visit/outposts/richmond", + "state": "Virginia", + "street": "4300 Williamsburg Ave" + }, + { + "id": "273491b7-30e3-4ee4-ac6e-f1cfb9194b93", + "name": "Stone Brewing Napa", + "brewery_type": "closed", + "address_1": "920-930 Third Street", + "address_2": null, + "address_3": null, + "city": "Napa", + "state_province": "California", + "postal_code": "94559", + "country": "United States", + "longitude": -122.2829683, + "latitude": 38.29896704, + "phone": "7602947899", + "website_url": null, + "state": "California", + "street": "920-930 Third Street" + }, + { + "id": "770c8d54-dcf1-456b-a864-84a4cf0071e1", + "name": "Stone Brewing World Bistro & Gardens- Liberty Station", + "brewery_type": "brewpub", + "address_1": "2816 Historic Decatur Rd Ste 116", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92106-6164", + "country": "United States", + "longitude": -117.21157, + "latitude": 32.7405237, + "phone": "6192692200", + "website_url": "http://www.stonelibertystation.com", + "state": "California", + "street": "2816 Historic Decatur Rd Ste 116" + }, + { + "id": "73832571-cba1-4383-bd2d-d72ef2e0a053", + "name": "Stone Cellar Brewpub / Stone Arch Brew House", + "brewery_type": "brewpub", + "address_1": "1004 S Olde Oneida St Uppr", + "address_2": null, + "address_3": null, + "city": "Appleton", + "state_province": "Wisconsin", + "postal_code": "54915-1753", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9207313322", + "website_url": "http://www.stonecellarbrewpub.com", + "state": "Wisconsin", + "street": "1004 S Olde Oneida St Uppr" + }, + { + "id": "9916848b-15ac-44f9-90a5-81ad7b53fde5", + "name": "Stone Church Brewing", + "brewery_type": "micro", + "address_1": "2785 Cabot Dr Ste 160", + "address_2": null, + "address_3": null, + "city": "Corona", + "state_province": "California", + "postal_code": "92883-7388", + "country": "United States", + "longitude": -117.5046237, + "latitude": 33.8131807, + "phone": "3105676582", + "website_url": "http://www.stonechurchbrewing.com", + "state": "California", + "street": "2785 Cabot Dr Ste 160" + }, + { + "id": "d2e1b8ab-b0e2-409a-9faa-9ca571815a02", + "name": "Stone Church Pizza & Brewpub", + "brewery_type": "brewpub", + "address_1": "600 S Hermitage Rd", + "address_2": null, + "address_3": null, + "city": "Hermitage", + "state_province": "Pennsylvania", + "postal_code": "16148-3629", + "country": "United States", + "longitude": -80.451969, + "latitude": 41.225649, + "phone": "7243087770", + "website_url": "http://www.stonechurchbrewpub.com", + "state": "Pennsylvania", + "street": "600 S Hermitage Rd" + }, + { + "id": "b02a3dcf-6e21-4ae4-9c14-efdd618b42d6", + "name": "Stone Corral Brewery", + "brewery_type": "micro", + "address_1": "83 Huntington Rd Unit 1", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Vermont", + "postal_code": "05477-9839", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8024345787", + "website_url": "http://stonecorral.com", + "state": "Vermont", + "street": "83 Huntington Rd Unit 1" + }, + { + "id": "28e04f1d-11f9-4ea9-b67c-a155e8c88b81", + "name": "Stone Cow Brewery", + "brewery_type": "micro", + "address_1": "500 West St (Route 122)", + "address_2": null, + "address_3": null, + "city": "Barre", + "state_province": "Massachusetts", + "postal_code": "01005", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4135526048", + "website_url": null, + "state": "Massachusetts", + "street": "500 West St (Route 122)" + }, + { + "id": "e0a66be0-edf0-405e-b6cb-44dcff79fac5", + "name": "Stone Hollow Brewing Company", + "brewery_type": "micro", + "address_1": "301 Court Street", + "address_2": null, + "address_3": null, + "city": "Beatrice", + "state_province": "Nebraska", + "postal_code": "68310", + "country": "United States", + "longitude": -96.7506365, + "latitude": 40.265751, + "phone": "4028064664", + "website_url": "https://www.stonehollowbrewing.com", + "state": "Nebraska", + "street": "301 Court Street" + }, + { + "id": "dcca22b1-b172-458b-b71b-7a2866fff776", + "name": "Stone Pine Distillery", + "brewery_type": "micro", + "address_1": "13594 Princes Highway", + "address_2": null, + "address_3": null, + "city": "Stony Creek", + "state_province": "NSW", + "postal_code": "2550", + "country": "Australia", + "longitude": 149.8398959, + "latitude": -36.6041979, + "phone": "+61 448 294 210", + "website_url": "http://www.northofeden.com.au/", + "state": "NSW", + "street": "13594 Princes Highway" + }, + { + "id": "780e7ec6-7c19-46d4-90b4-875fc9cfa207", + "name": "Stone's Throw Brewing", + "brewery_type": "brewpub", + "address_1": "402 E 9th St", + "address_2": null, + "address_3": null, + "city": "Little Rock", + "state_province": "Arkansas", + "postal_code": "72202-3914", + "country": "United States", + "longitude": -92.26806633, + "latitude": 34.7397885, + "phone": "5012449154", + "website_url": "http://www.stonesthrowbeer.com", + "state": "Arkansas", + "street": "402 E 9th St" + }, + { + "id": "84278f35-1caf-4c58-8446-4f6af8a17661", + "name": "Stonecloud Brewing Co.", + "brewery_type": "micro", + "address_1": "1012 NW 1st St Ste 101", + "address_2": null, + "address_3": null, + "city": "Oklahoma City", + "state_province": "Oklahoma", + "postal_code": "73106-7642", + "country": "United States", + "longitude": -97.529142, + "latitude": 35.468613, + "phone": "4056023966", + "website_url": "http://stonecloudbrewing.com", + "state": "Oklahoma", + "street": "1012 NW 1st St Ste 101" + }, + { + "id": "06fd21ca-1d18-4d79-a8ab-407d74c55cb7", + "name": "Stoneface Brewing Co", + "brewery_type": "micro", + "address_1": "436 Shattuck Way Ste 6", + "address_2": null, + "address_3": null, + "city": "Newington", + "state_province": "New Hampshire", + "postal_code": "03801-7838", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.stonefacebrewing.com", + "state": "New Hampshire", + "street": "436 Shattuck Way Ste 6" + }, + { + "id": "0330697d-08ce-4f09-948c-9928532c5755", + "name": "Stonehome Brewing Company", + "brewery_type": "brewpub", + "address_1": "1601 N 12th St", + "address_2": null, + "address_3": null, + "city": "Bismarck", + "state_province": "North Dakota", + "postal_code": "58501-2713", + "country": "United States", + "longitude": -100.773737, + "latitude": 46.82365579, + "phone": "7017511445", + "website_url": "http://www.stonehomebrewing.com", + "state": "North Dakota", + "street": "1601 N 12th St" + }, + { + "id": "86b7e9cb-6267-4f6b-a5da-6293aae28ced", + "name": "Stonehome Brewing Company", + "brewery_type": "brewpub", + "address_1": "313 Fox Hills Pkwy N", + "address_2": null, + "address_3": null, + "city": "Watford City", + "state_province": "North Dakota", + "postal_code": "58854", + "country": "United States", + "longitude": -103.2580566, + "latitude": 47.8821014, + "phone": "7014442337", + "website_url": "http://www.stonehomebrewing.com", + "state": "North Dakota", + "street": "313 Fox Hills Pkwy N" + }, + { + "id": "772310d2-06d3-42c6-b494-7622dc87b15d", + "name": "Stoneman Brewery", + "brewery_type": "micro", + "address_1": "20 Stetson Bros Rd", + "address_2": null, + "address_3": null, + "city": "Colrain", + "state_province": "Massachusetts", + "postal_code": "01340-9733", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4136245195", + "website_url": null, + "state": "Massachusetts", + "street": "20 Stetson Bros Rd" + }, + { + "id": "e4a8b737-6725-4ec2-b635-e43f8fcb1de4", + "name": "Stones Throw Brewery", + "brewery_type": "micro", + "address_1": "1009 Larrabee Ave", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98225-7338", + "country": "United States", + "longitude": -122.497165, + "latitude": 48.718516, + "phone": "3603625058", + "website_url": "http://www.stonesthrowbrewco.com", + "state": "Washington", + "street": "1009 Larrabee Ave" + }, + { + "id": "259107e5-6645-48b5-a986-80d207d43aa0", + "name": "Stoney Acres Farm", + "brewery_type": "brewpub", + "address_1": "7002 Rangeline Rd", + "address_2": null, + "address_3": null, + "city": "Athens", + "state_province": "Wisconsin", + "postal_code": "54411", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7154326285", + "website_url": "http://www.stoneyacresfarm.net", + "state": "Wisconsin", + "street": "7002 Rangeline Rd" + }, + { + "id": "58092f14-3cd5-47c0-8077-7f11c1ef9e96", + "name": "Stoneyard Brewing Company", + "brewery_type": "brewpub", + "address_1": "48 Merchant St", + "address_2": null, + "address_3": null, + "city": "Brockport", + "state_province": "New York", + "postal_code": "14420", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5856373390", + "website_url": "http://www.stoneyardbrewingcompany.com", + "state": "New York", + "street": "48 Merchant St" + }, + { + "id": "572461d6-ab19-4469-b9c8-937a98b37941", + "name": "StoneyHead Brewing LLC", + "brewery_type": "micro", + "address_1": "5301 Longley Ln Ste 84C", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89511-1873", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7758292337", + "website_url": "http://www.stoneyheadbrewing.com", + "state": "Nevada", + "street": "5301 Longley Ln Ste 84C" + }, + { + "id": "b1b259ea-a03c-4836-80eb-c222770dacf3", + "name": "Stony Creek Brewery", + "brewery_type": "closed", + "address_1": "5 Indian Neck Ave", + "address_2": null, + "address_3": null, + "city": "Branford", + "state_province": "Connecticut", + "postal_code": "06405-4615", + "country": "United States", + "longitude": -72.81330366, + "latitude": 41.27475355, + "phone": "2034334545", + "website_url": "http://www.stonycreekbeer.com", + "state": "Connecticut", + "street": "5 Indian Neck Ave" + }, + { + "id": "667f8870-c7eb-4b5d-8d80-3fa37f7e1de7", + "name": "Stony Creek Brewery At Foxwoods Resort Casino", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mashantucket", + "state_province": "Connecticut", + "postal_code": "06338-3830", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8603123000", + "website_url": null, + "state": "Connecticut", + "street": null + }, + { + "id": "016a77de-4e94-4a8a-9bdb-ef03052b4224", + "name": "Stony Creek Brewing Co.", + "brewery_type": "micro", + "address_1": "88 Limestone Street", + "address_2": "Block C", + "address_3": null, + "city": "Ipswich", + "state_province": "QLD", + "postal_code": "4305", + "country": "Australia", + "longitude": 152.7576919, + "latitude": -27.6153789, + "phone": "+61 435 380 290", + "website_url": "https://stonycreekbrewing.com.au/", + "state": "QLD", + "street": "88 Limestone Street" + }, + { + "id": "2540a41e-870c-4298-b711-e9b1da63bc2d", + "name": "Stony Lake Brewing Company", + "brewery_type": "micro", + "address_1": "447 E Michigan Ave", + "address_2": null, + "address_3": null, + "city": "Saline", + "state_province": "Michigan", + "postal_code": "48176-1547", + "country": "United States", + "longitude": -83.7735354, + "latitude": 42.17041729, + "phone": "7343167919", + "website_url": "http://www.stonylakebrewing.com", + "state": "Michigan", + "street": "447 E Michigan Ave" + }, + { + "id": "37181ee1-680d-41f3-811a-34b4abab22d4", + "name": "Storm Peak Brewing Company", + "brewery_type": "micro", + "address_1": "1885 Elk River Plz Unit 4", + "address_2": null, + "address_3": null, + "city": "Steamboat Springs", + "state_province": "Colorado", + "postal_code": "80487-5237", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9708791999", + "website_url": "http://www.stormpeakbrewing.com", + "state": "Colorado", + "street": "1885 Elk River Plz Unit 4" + }, + { + "id": "e39addf7-becb-4b3c-b5b2-e682bcb1b72f", + "name": "StormBreaker Brewing", + "brewery_type": "brewpub", + "address_1": "832 N Beech St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97227-1215", + "country": "United States", + "longitude": -122.6751573, + "latitude": 45.54943475, + "phone": null, + "website_url": null, + "state": "Oregon", + "street": "832 N Beech St" + }, + { + "id": "2f2fe265-6ef9-4a72-8aae-ca7cb81eb561", + "name": "StormBreaker Brewing St. Johns", + "brewery_type": "brewpub", + "address_1": "8409 N Lombard St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97203", + "country": "United States", + "longitude": -122.753038, + "latitude": 45.58988575, + "phone": "9712551481", + "website_url": "http://www.stormbreakerbrewing.com", + "state": "Oregon", + "street": "8409 N Lombard St" + }, + { + "id": "906c9e56-8260-4ea5-ade4-4d73e3dd7246", + "name": "Stormcloud Brewing Company", + "brewery_type": "brewpub", + "address_1": "303 Main St", + "address_2": null, + "address_3": null, + "city": "Frankfort", + "state_province": "Michigan", + "postal_code": "49635-9047", + "country": "United States", + "longitude": -86.24100175, + "latitude": 44.63290605, + "phone": "2316519080", + "website_url": "http://www.stormcloudbrewing.com", + "state": "Michigan", + "street": "303 Main St" + }, + { + "id": "3ba0c759-64a6-4c73-8f41-d5d2317ce86d", + "name": "Stormcloud Brewing Company Production Facility", + "brewery_type": "micro", + "address_1": "366 Parkview Ln", + "address_2": null, + "address_3": null, + "city": "Frankfort", + "state_province": "Michigan", + "postal_code": "49635", + "country": "United States", + "longitude": -86.2218117, + "latitude": 44.6373933, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "366 Parkview Ln" + }, + { + "id": "ceb125ad-7b11-4aed-8e34-db02e618d3ba", + "name": "Stormy Mountain Brewing Company", + "brewery_type": "brewpub", + "address_1": "133 E Woodin Ave", + "address_2": null, + "address_3": null, + "city": "Chelan", + "state_province": "Washington", + "postal_code": "98816-", + "country": "United States", + "longitude": -120.0177327, + "latitude": 47.8401295, + "phone": "5098885665", + "website_url": "http://www.stormymountainbrewing.com", + "state": "Washington", + "street": "133 E Woodin Ave" + }, + { + "id": "5be36509-b0db-42b2-89ac-09b98b7062f3", + "name": "Storybook Brewing", + "brewery_type": "micro", + "address_1": "3121 N El Paso St Ste A", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80907-5469", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7196336266", + "website_url": "http://www.storybookbrewing.com", + "state": "Colorado", + "street": "3121 N El Paso St Ste A" + }, + { + "id": "e9659928-655c-42e1-bf69-bf9a3fcb673f", + "name": "Storytellers Brewery and Meet House, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Corona", + "state_province": "California", + "postal_code": "92880-1798", + "country": "United States", + "longitude": -117.5664449, + "latitude": 33.8752945, + "phone": "9092475710", + "website_url": "http://www.storytellersbrewery.com", + "state": "California", + "street": null + }, + { + "id": "1e5f9366-7e38-443f-87a2-77278d845c12", + "name": "Stoudts Brewing Co", + "brewery_type": "micro", + "address_1": " Rt. 272 2800 North Reading Road", + "address_2": null, + "address_3": null, + "city": "Adamstown", + "state_province": "Pennsylvania", + "postal_code": "19501", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7174844386", + "website_url": "http://www.stoudtsbeer.com", + "state": "Pennsylvania", + "street": " Rt. 272 2800 North Reading Road" + }, + { + "id": "9626985c-e888-4370-8bf1-6096ddaf1df8", + "name": "Stoup Brewing", + "brewery_type": "micro", + "address_1": "1108 NW 52nd St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98107-5129", + "country": "United States", + "longitude": -122.3711883, + "latitude": 47.6666399, + "phone": "2064575524", + "website_url": "http://www.stoupbrewing.com", + "state": "Washington", + "street": "1108 NW 52nd St" + }, + { + "id": "bbe40deb-da31-4fe6-aee8-f7cfd40c5416", + "name": "Stout Beard Brewing Company", + "brewery_type": "brewpub", + "address_1": "1153 W Fayette St Ste 102", + "address_2": null, + "address_3": null, + "city": "Syracuse", + "state_province": "New York", + "postal_code": "13204-2740", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3153993016", + "website_url": "http://www.stoutbeardbrewery.com", + "state": "New York", + "street": "1153 W Fayette St Ste 102" + }, + { + "id": "5623e30f-2e4e-44ba-924b-52e4c4551609", + "name": "Stover Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92124-1426", + "country": "United States", + "longitude": -117.1627714, + "latitude": 32.7174209, + "phone": "6193634677", + "website_url": "http://www.stoverbrewing.com", + "state": "California", + "street": null + }, + { + "id": "8ce7cfab-6088-45a4-ba06-8eb14933cd4e", + "name": "Straddie Brewing Co.", + "brewery_type": "micro", + "address_1": "5 Junner Street", + "address_2": null, + "address_3": null, + "city": "Dunwich", + "state_province": "QLD", + "postal_code": "4183", + "country": "Australia", + "longitude": 153.4041504, + "latitude": -27.5001194, + "phone": "+61 7 4803 5382", + "website_url": "http://straddiebrewing.com.au/", + "state": "QLD", + "street": "5 Junner Street" + }, + { + "id": "a85eb847-20ed-421e-b887-0a040f71a0b1", + "name": "Straight Shot Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Poquoson", + "state_province": "Virginia", + "postal_code": "23662-0000", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Virginia", + "street": null + }, + { + "id": "b88fe606-1632-4efd-bd71-3ce087044d3d", + "name": "Straight to Ale", + "brewery_type": "micro", + "address_1": "2610 Clinton Ave W", + "address_2": null, + "address_3": null, + "city": "Huntsville", + "state_province": "Alabama", + "postal_code": "35805-3046", + "country": "United States", + "longitude": -86.5932014, + "latitude": 34.7277523, + "phone": "2566039096", + "website_url": "http://www.straighttoale.com", + "state": "Alabama", + "street": "2610 Clinton Ave W" + }, + { + "id": "618e8707-d2ef-4e27-9fd9-ef3a01daf7cb", + "name": "Strand Brewery", + "brewery_type": "brewpub", + "address_1": "93415 County Road 690", + "address_2": null, + "address_3": null, + "city": "Dowagiac", + "state_province": "Michigan", + "postal_code": "49047-9025", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2694247500", + "website_url": "http://www.strandbrewery.com", + "state": "Michigan", + "street": "93415 County Road 690" + }, + { + "id": "4fe4470b-c860-48e7-8c9b-aa1ddc204498", + "name": "Strand Brewing Co", + "brewery_type": "micro", + "address_1": "2201 Dominguez St", + "address_2": null, + "address_3": null, + "city": "Torrance", + "state_province": "California", + "postal_code": "90501-1418", + "country": "United States", + "longitude": -118.3240401, + "latitude": 33.8414814, + "phone": "3105170900", + "website_url": "http://www.strandbrewing.com", + "state": "California", + "street": "2201 Dominguez St" + }, + { + "id": "58d3c116-e6ca-42f7-b20d-f30b97b34a64", + "name": "Strange Craft Beer Co", + "brewery_type": "micro", + "address_1": "1330 Zuni St Ste M", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80204-2328", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7209852337", + "website_url": "http://www.strangecraft.com", + "state": "Colorado", + "street": "1330 Zuni St Ste M" + }, + { + "id": "494b4e52-242c-4bf4-bd7d-8717602538ae", + "name": "Strange Days Brewing Co", + "brewery_type": "micro", + "address_1": "316 Oak St", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64106", + "country": "United States", + "longitude": -94.57994512, + "latitude": 39.1100614, + "phone": "8164695321", + "website_url": "http://www.strangedaysbrewing.com", + "state": "Missouri", + "street": "316 Oak St" + }, + { + "id": "0aa2b16d-c58f-4577-94ac-5b70d28b94d6", + "name": "Strange Days Brewing Company", + "brewery_type": "micro", + "address_1": "316 Oak St", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64106", + "country": "United States", + "longitude": -94.57994512, + "latitude": 39.1100614, + "phone": "9134336232", + "website_url": "http://www.strangedaysbrewing.com", + "state": "Missouri", + "street": "316 Oak St" + }, + { + "id": "e16701b2-c0f1-4a14-934f-7e51fa99cc3c", + "name": "Strange Land Brewery", + "brewery_type": "micro", + "address_1": "5904 Bee Cave Road", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78746", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5122762295", + "website_url": "http://www.strangelandbrewery.com", + "state": "Texas", + "street": "5904 Bee Cave Road" + }, + { + "id": "83007a0a-a4d4-4bdf-9f74-b215b2309125", + "name": "Strange Roots Experimental Ales", + "brewery_type": "micro", + "address_1": "4399 Gibsonia Road", + "address_2": null, + "address_3": null, + "city": "Gibsonia", + "state_province": "Pennsylvania", + "postal_code": "15044-9343", + "country": "United States", + "longitude": -79.9709659, + "latitude": 40.6301186, + "phone": "4124072506", + "website_url": "http://www.strangerootsbeer.com", + "state": "Pennsylvania", + "street": "4399 Gibsonia Road" + }, + { + "id": "22c0044e-28f9-4ac5-a8f6-7f1390bccb63", + "name": "Strange Roots Experimental Ales", + "brewery_type": "micro", + "address_1": "501 E Ohio St", + "address_2": null, + "address_3": null, + "city": "Pittsburgh", + "state_province": "Pennsylvania", + "postal_code": "15209-2671", + "country": "United States", + "longitude": -79.9951469, + "latitude": 40.4546063, + "phone": "4124072506", + "website_url": "http://www.strangerootsbeer.com", + "state": "Pennsylvania", + "street": "501 E Ohio St" + }, + { + "id": "50932c46-8dd8-4915-a0ed-8073fb25323d", + "name": "Strangebird Beer", + "brewery_type": "micro", + "address_1": "62 Marshall Street", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "New York", + "postal_code": "14607", + "country": "United States", + "longitude": -77.601928, + "latitude": 43.15127745, + "phone": "5855058700", + "website_url": "https://www.strangebirdbeer.com", + "state": "New York", + "street": "62 Marshall Street" + }, + { + "id": "9c0a83ee-575b-471a-9871-ea540065bb1c", + "name": "Strangeways Brewing - FXBG", + "brewery_type": "micro", + "address_1": "350 Lansdowne Rd", + "address_2": null, + "address_3": null, + "city": "Fredericksburg", + "state_province": "Virginia", + "postal_code": "22401-7351", + "country": "United States", + "longitude": -77.45625316, + "latitude": 38.27297555, + "phone": "8043034336", + "website_url": null, + "state": "Virginia", + "street": "350 Lansdowne Rd" + }, + { + "id": "b2c8d268-7e99-4428-b31b-6eb2f6fe24dd", + "name": "Strangeways Brewing - RVA", + "brewery_type": "micro", + "address_1": "2277 Dabney Rd Ste A", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23230-3335", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8043034336", + "website_url": "http://strangewaysbrewing.com/", + "state": "Virginia", + "street": "2277 Dabney Rd Ste A" + }, + { + "id": "2ee45c72-c744-46b3-a8b1-500cf7531e7d", + "name": "Strap Tank Brewing Co.", + "brewery_type": "brewpub", + "address_1": "596 S 1750 W", + "address_2": null, + "address_3": null, + "city": "Springville", + "state_province": "Utah", + "postal_code": "84663-3088", + "country": "United States", + "longitude": -111.641975, + "latitude": 40.159405, + "phone": "3853250262", + "website_url": "https://straptankbrewery.com", + "state": "Utah", + "street": "596 S 1750 W" + }, + { + "id": "2c221ed3-041e-4a80-951a-1293c6a816a8", + "name": "Strath Creek Brewery", + "brewery_type": "micro", + "address_1": "8 Glover Road", + "address_2": null, + "address_3": null, + "city": "Strath Creek", + "state_province": "VIC", + "postal_code": "3658", + "country": "Australia", + "longitude": 145.2181649, + "latitude": -37.2380674, + "phone": "+61 418 971 200", + "website_url": "http://www.thegeneralstrathcreek.com.au/", + "state": "VIC", + "street": "8 Glover Road" + }, + { + "id": "d2d86e25-5932-4c58-b430-f8ea60e9e72f", + "name": "Straub Brewery", + "brewery_type": "regional", + "address_1": "303 Sorg St", + "address_2": null, + "address_3": null, + "city": "Saint Marys", + "state_province": "Pennsylvania", + "postal_code": "15857-1592", + "country": "United States", + "longitude": -78.55352821, + "latitude": 41.42586622, + "phone": "8143356518", + "website_url": "http://www.straubbeer.com", + "state": "Pennsylvania", + "street": "303 Sorg St" + }, + { + "id": "18cb8551-92d3-4c8c-934f-51daef9f7b53", + "name": "Strawberry Alley Ale Works", + "brewery_type": "brewpub", + "address_1": "103 Strawberry Aly", + "address_2": null, + "address_3": null, + "city": "Clarksville", + "state_province": "Tennessee", + "postal_code": "37040-4267", + "country": "United States", + "longitude": -87.36026635, + "latitude": 36.5280248, + "phone": "9319194777", + "website_url": "http://www.saaleworks.com", + "state": "Tennessee", + "street": "103 Strawberry Aly" + }, + { + "id": "b2f096d6-1297-43d7-bf20-429cbbc3ddf7", + "name": "Strawn Brewing Co", + "brewery_type": "micro", + "address_1": "27 Word St", + "address_2": null, + "address_3": null, + "city": "Fairburn", + "state_province": "Georgia", + "postal_code": "30213-1545", + "country": "United States", + "longitude": -84.58368873, + "latitude": 33.56062198, + "phone": "6785453775", + "website_url": "http://www.strawnbrewing.com", + "state": "Georgia", + "street": "27 Word St" + }, + { + "id": "31ea7b52-41bb-42de-9287-dffb127d273a", + "name": "Streetcar 82 Brewing Co.", + "brewery_type": "micro", + "address_1": "4824 Rhode Island Ave", + "address_2": null, + "address_3": null, + "city": "Hyattsville", + "state_province": "Maryland", + "postal_code": "20781-2034", + "country": "United States", + "longitude": -76.9430028, + "latitude": 38.9493263, + "phone": "2407820152", + "website_url": "http://www.streetcar82brewing.com", + "state": "Maryland", + "street": "4824 Rhode Island Ave" + }, + { + "id": "1068e771-b1ba-47d0-960b-03ef44043ecd", + "name": "Streetside Brewery", + "brewery_type": "micro", + "address_1": "4003 Eastern Ave", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45226-1747", + "country": "United States", + "longitude": -84.43295078, + "latitude": 39.10919541, + "phone": "5136155877", + "website_url": null, + "state": "Ohio", + "street": "4003 Eastern Ave" + }, + { + "id": "be63195b-5f3a-4f31-949a-12f59086c6dd", + "name": "Strike Brewing Co", + "brewery_type": "micro", + "address_1": "2099 S 10th St Unit 30", + "address_2": null, + "address_3": null, + "city": "San Jose", + "state_province": "California", + "postal_code": "95112-4116", + "country": "United States", + "longitude": -121.8582561, + "latitude": 37.31067385, + "phone": "6507146983", + "website_url": "http://www.strikebrewingco.com", + "state": "California", + "street": "2099 S 10th St Unit 30" + }, + { + "id": "4e84c26e-4850-4bee-898d-fcdffd88b881", + "name": "Strikhedonia Brewing Company LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Saint Charles", + "state_province": "Illinois", + "postal_code": "60174-4591", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Illinois", + "street": null + }, + { + "id": "d6639eb1-44cd-4b0e-a08c-c3a3143d695b", + "name": "Strong Brewing", + "brewery_type": "micro", + "address_1": "7 Rope Ferry Rd", + "address_2": null, + "address_3": null, + "city": "Sedgwick", + "state_province": "Maine", + "postal_code": "04676-3409", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2073598722", + "website_url": "http://strongbrewing.com/", + "state": "Maine", + "street": "7 Rope Ferry Rd" + }, + { + "id": "94772c9e-dff5-4404-8f15-6572633b0307", + "name": "Strong Rope Brewery", + "brewery_type": "micro", + "address_1": "574A President St", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11215-1019", + "country": "United States", + "longitude": -73.9840898, + "latitude": 40.6769023, + "phone": "5857033010", + "website_url": "http://www.strongropebrewery.com", + "state": "New York", + "street": "574A President St" + }, + { + "id": "99deb304-2fa2-4236-a1cb-81524c7492ce", + "name": "Stronghouse Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Telluride", + "state_province": "Colorado", + "postal_code": "81435", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "37c008fe-71cf-4cf9-9c38-1f7be73a7da6", + "name": "Structures Brewing", + "brewery_type": "micro", + "address_1": "1420 N State St", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98225-4513", + "country": "United States", + "longitude": -122.4744507, + "latitude": 48.74988055, + "phone": "3605827475", + "website_url": "http://www.structuresbrewing.com", + "state": "Washington", + "street": "1420 N State St" + }, + { + "id": "182c933b-f3e9-477b-906b-b0ca5344c27b", + "name": "Strum Brewing Company", + "brewery_type": "micro", + "address_1": "235 S Campus Ave", + "address_2": null, + "address_3": null, + "city": "Ontario", + "state_province": "California", + "postal_code": "91761-1736", + "country": "United States", + "longitude": -117.6412505, + "latitude": 34.06156086, + "phone": "9096786935", + "website_url": "http://www.strumbrewing.com", + "state": "California", + "street": "235 S Campus Ave" + }, + { + "id": "36a608ec-8a91-4964-ba78-8b39ebbf4321", + "name": "Stubborn Beauty Brewing", + "brewery_type": "closed", + "address_1": "180 Johnson St", + "address_2": null, + "address_3": null, + "city": "Middletown", + "state_province": "Connecticut", + "postal_code": "06457-2247", + "country": "United States", + "longitude": -72.65990742, + "latitude": 41.57233253, + "phone": "8608747459", + "website_url": "http://www.stubbornbeauty.com", + "state": "Connecticut", + "street": "180 Johnson St" + }, + { + "id": "8deff2ef-1885-4ff2-b3d7-08dfcadb04e4", + "name": "Stubborn German Brewing Co", + "brewery_type": "micro", + "address_1": "119 S Main St", + "address_2": null, + "address_3": null, + "city": "Waterloo", + "state_province": "Illinois", + "postal_code": "62298-1323", + "country": "United States", + "longitude": -90.15032876, + "latitude": 38.33531994, + "phone": "6185042444", + "website_url": "http://www.stubborngermanbrewing.com", + "state": "Illinois", + "street": "119 S Main St" + }, + { + "id": "6b730aef-f353-4f27-94c4-b45a2db292c6", + "name": "Studebaker Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "South Bend", + "state_province": "Indiana", + "postal_code": "46601", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5742349077", + "website_url": "http://www.studebakerbrewingco.com", + "state": "Indiana", + "street": null + }, + { + "id": "685316d4-623d-4b81-a0a8-1549e8247c3c", + "name": "Studio Brew", + "brewery_type": "brewpub", + "address_1": "221 Moore St", + "address_2": null, + "address_3": null, + "city": "Bristol", + "state_province": "Virginia", + "postal_code": "24201-4302", + "country": "United States", + "longitude": -82.18231373, + "latitude": 36.59862808, + "phone": "4233603258", + "website_url": "http://www.studiobrew.beer", + "state": "Virginia", + "street": "221 Moore St" + }, + { + "id": "e5ea4994-015e-43d1-a748-630b1cf68cc1", + "name": "Stumblefoot Brewing", + "brewery_type": "micro", + "address_1": "1784 La Costa Meadows Dr Ste 103", + "address_2": null, + "address_3": null, + "city": "San Marcos", + "state_province": "California", + "postal_code": "92078-5174", + "country": "United States", + "longitude": -117.2194838, + "latitude": 33.10419694, + "phone": "7605663668", + "website_url": "http://www.stumblefoot.com", + "state": "California", + "street": "1784 La Costa Meadows Dr Ste 103" + }, + { + "id": "b022972f-6576-4453-823d-96fe18987454", + "name": "Stumblin' Monkey Brewing Co", + "brewery_type": "micro", + "address_1": "61 School St Ste G", + "address_2": null, + "address_3": null, + "city": "Victor", + "state_province": "New York", + "postal_code": "14564-1420", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5853988189", + "website_url": "http://www.stumblinmonkeybeer.com", + "state": "New York", + "street": "61 School St Ste G" + }, + { + "id": "15dd2469-e167-42af-8e72-ef36bdd41376", + "name": "Stump City Brewing LLC", + "brewery_type": "micro", + "address_1": "521 W Fulton Street Ext", + "address_2": null, + "address_3": null, + "city": "Gloversville", + "state_province": "New York", + "postal_code": "12078-6309", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5188310722", + "website_url": "http://www.stumpcitybrewing.com", + "state": "New York", + "street": "521 W Fulton Street Ext" + }, + { + "id": "97c645ba-d2ae-4c22-b784-9d9de01f8b88", + "name": "Stumpnose Brewery", + "brewery_type": "micro", + "address_1": "The Saddlery", + "address_2": " R102", + "address_3": null, + "city": "Umdloti", + "state_province": "KwaZulu-Natal", + "postal_code": "4350", + "country": "South Africa", + "longitude": 31.1118, + "latitude": -29.6642, + "phone": "+27 31 568 1567", + "website_url": "https://www.stumpnose.com/", + "state": "KwaZulu-Natal", + "street": "The Saddlery" + }, + { + "id": "24bea67c-fd27-4e48-968e-14e46f842203", + "name": "Stumptown Ales", + "brewery_type": "micro", + "address_1": "390 William Ave", + "address_2": null, + "address_3": null, + "city": "Davis", + "state_province": "West Virginia", + "postal_code": "26260", + "country": "United States", + "longitude": -79.4646754, + "latitude": 39.12899878, + "phone": "3042595570", + "website_url": "http://www.stumptownales.com", + "state": "West Virginia", + "street": "390 William Ave" + }, + { + "id": "b78739c5-4815-42ad-8161-9e5d52a975ce", + "name": "Stumptown Brewery", + "brewery_type": "brewpub", + "address_1": "15045 River Rd", + "address_2": null, + "address_3": null, + "city": "Guerneville", + "state_province": "California", + "postal_code": "95446-8043", + "country": "United States", + "longitude": -122.9838017, + "latitude": 38.51320677, + "phone": "7078690705", + "website_url": null, + "state": "California", + "street": "15045 River Rd" + }, + { + "id": "0301809c-bbd8-48c4-99c8-515de50999fd", + "name": "Suarez Family Brewery", + "brewery_type": "micro", + "address_1": "2278 RT. 9", + "address_2": null, + "address_3": null, + "city": "Hudson", + "state_province": "New York", + "postal_code": "12534-4701", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5185376464", + "website_url": "http://www.suarezfamilybrewery.com", + "state": "New York", + "street": "2278 RT. 9" + }, + { + "id": "ed99535c-e134-4d94-8962-f04aad4386c6", + "name": "Sub Noir Brewing Company", + "brewery_type": "micro", + "address_1": "2039 Progress Ct", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27608-2761", + "country": "United States", + "longitude": -78.6231748, + "latitude": 35.8091103, + "phone": "9194802337", + "website_url": "http://www.subnoir.net", + "state": "North Carolina", + "street": "2039 Progress Ct" + }, + { + "id": "4c11ca9f-c49a-40ba-92e4-219ff029bfce", + "name": "Subbe Bryggeri", + "brewery_type": "micro", + "address_1": "Johnssons Gård", + "address_2": "Strax söder om staden", + "address_3": null, + "city": "Varberg", + "state_province": "Halland", + "postal_code": "432 91", + "country": "Sweden", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "https://subbebryggeri.se/", + "state": "Halland", + "street": "Johnssons Gård" + }, + { + "id": "9ffd9922-40fb-430c-8537-ef92d851374d", + "name": "Subculture Brewing Co.", + "brewery_type": "micro", + "address_1": "841 Sydney Road", + "address_2": null, + "address_3": null, + "city": "Brunswick", + "state_province": "VIC", + "postal_code": "3056", + "country": "Australia", + "longitude": 144.9637434, + "latitude": -37.7565629, + "phone": null, + "website_url": "http://subculturebrewing.com.au/", + "state": "VIC", + "street": "841 Sydney Road" + }, + { + "id": "e4bb4eb0-1d37-488b-b2d0-ced76345059d", + "name": "Sublime Brewing Company", + "brewery_type": "closed", + "address_1": "5 Route 25", + "address_2": null, + "address_3": null, + "city": "Plymouth", + "state_province": "New Hampshire", + "postal_code": "03264-3141", + "country": "United States", + "longitude": -71.776669, + "latitude": 43.781015, + "phone": "6032366850", + "website_url": null, + "state": "New Hampshire", + "street": "5 Route 25" + }, + { + "id": "81dbf6d0-af4c-4848-8dc3-a2e505352f63", + "name": "Suds Brothers Brewing Co", + "brewery_type": "brewpub", + "address_1": "1012 Main St", + "address_2": null, + "address_3": null, + "city": "Evanston", + "state_province": "Wyoming", + "postal_code": "82930-3443", + "country": "United States", + "longitude": -110.9660936, + "latitude": 41.26798687, + "phone": "3074447837", + "website_url": "http://www.sudsbrothersbrewery.com", + "state": "Wyoming", + "street": "1012 Main St" + }, + { + "id": "8f532649-1d2e-4711-9177-28ffed122dac", + "name": "Suds Brothers Brewing Co #2", + "brewery_type": "brewpub", + "address_1": "127 E Aspen Ave", + "address_2": null, + "address_3": null, + "city": "Fruita", + "state_province": "Colorado", + "postal_code": "81521-2543", + "country": "United States", + "longitude": -108.7326881, + "latitude": 39.1591622, + "phone": "9708581571", + "website_url": "http://www.sudsbrothers2fruita.com", + "state": "Colorado", + "street": "127 E Aspen Ave" + }, + { + "id": "2c32c721-36b2-4610-b315-17d328a75cdd", + "name": "Suds Monkey Brewing", + "brewery_type": "micro", + "address_1": "1032 Canyon Bend Dr Suite A", + "address_2": null, + "address_3": null, + "city": "Dripping Springs", + "state_province": "Texas", + "postal_code": "78620-5355", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5122223893", + "website_url": "http://www.sudsmonkeybrew.com", + "state": "Texas", + "street": "1032 Canyon Bend Dr Suite A" + }, + { + "id": "41b6b89d-0a76-4a46-8091-e3632ec527f5", + "name": "Sudwerk Brewing Co", + "brewery_type": "micro", + "address_1": "2001 2nd St", + "address_2": null, + "address_3": null, + "city": "Davis", + "state_province": "California", + "postal_code": "95618-5474", + "country": "United States", + "longitude": -121.726084, + "latitude": 38.546614, + "phone": "5307562739", + "website_url": "http://www.sudwerkbrew.com", + "state": "California", + "street": "2001 2nd St" + }, + { + "id": "b725651d-1d0c-4d4f-94f2-0b1be19ce2b7", + "name": "Sufferfest Beer Company", + "brewery_type": "proprietor", + "address_1": "1770 UNION STREET", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94123-3404", + "country": "United States", + "longitude": -122.4283947, + "latitude": 37.79807486, + "phone": "4152386431", + "website_url": "http://www.sufferfestbeer.com", + "state": "California", + "street": "1770 UNION STREET" + }, + { + "id": "ced563fa-0fc3-4c4c-bd16-2b9b7717f28a", + "name": "Sugar Creek Brewing Co.", + "brewery_type": "micro", + "address_1": "215 Southside Dr", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28217-1727", + "country": "United States", + "longitude": -80.88045065, + "latitude": 35.18571693, + "phone": "7044082021", + "website_url": "http://www.sugarcreekbrewing.com", + "state": "North Carolina", + "street": "215 Southside Dr" + }, + { + "id": "71d53ada-6c4f-4840-a28d-f1386505671e", + "name": "Sugar Hill Brewing Company", + "brewery_type": "brewpub", + "address_1": "16622 Broad St", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Virginia", + "postal_code": "24283-", + "country": "United States", + "longitude": -82.3106732, + "latitude": 36.90512687, + "phone": "2767381088", + "website_url": "http://www.sugarhillbrewing.com", + "state": "Virginia", + "street": "16622 Broad St" + }, + { + "id": "530468b9-57f6-41cd-ba6f-6d292d8bd92b", + "name": "Sugar Monkey Brewing & Social Club", + "brewery_type": "micro", + "address_1": "339 Indiana St", + "address_2": null, + "address_3": null, + "city": "El Segundo", + "state_province": "California", + "postal_code": "90245", + "country": "United States", + "longitude": -118.39740551593, + "latitude": 33.920403943783, + "phone": "4242771844", + "website_url": null, + "state": "California", + "street": "339 Indiana St" + }, + { + "id": "390e3daa-7276-4370-a45c-31eb41baa18b", + "name": "Sugarfoot Saloon", + "brewery_type": "brewpub", + "address_1": "4997 S Good Harbor Trl", + "address_2": null, + "address_3": null, + "city": "Cedar", + "state_province": "Michigan", + "postal_code": "49621-8543", + "country": "United States", + "longitude": -85.79625698, + "latitude": 44.90785082, + "phone": "2312286166", + "website_url": null, + "state": "Michigan", + "street": "4997 S Good Harbor Trl" + }, + { + "id": "339e0d58-5766-4c4f-ab24-d3a3477f42ad", + "name": "Sullivan's Brewing Company", + "brewery_type": "regional", + "address_1": "15 John Street Lower", + "address_2": "Collegepark", + "address_3": null, + "city": "Kilkenny", + "state_province": "Kilkenny", + "postal_code": "R95 H2CE", + "country": "Ireland", + "longitude": -7.2511279, + "latitude": 52.652832, + "phone": "353567797980", + "website_url": "https://www.sullivansbrewingcompany.com/", + "state": "Kilkenny", + "street": "15 John Street Lower" + }, + { + "id": "5034932b-6a76-4aa1-b929-76eedea825e1", + "name": "Sumerian Brewing Company", + "brewery_type": "closed", + "address_1": "15510 Woodinville Redmond Rd NE Ste E110", + "address_2": null, + "address_3": null, + "city": "Woodinville", + "state_province": "Washington", + "postal_code": "98072-6979", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4254865330", + "website_url": "http://www.sumerianbrewingco.com", + "state": "Washington", + "street": "15510 Woodinville Redmond Rd NE Ste E110" + }, + { + "id": "4920c9af-770b-4850-adb2-68e368d0cf34", + "name": "Summerhill Brewing LLC", + "brewery_type": "micro", + "address_1": "384 Champlin Rd N. Cayuga County", + "address_2": null, + "address_3": null, + "city": "Groton", + "state_province": "New York", + "postal_code": "13073-3212", + "country": "United States", + "longitude": -76.29601824, + "latitude": 42.63594387, + "phone": "6075916148", + "website_url": "http://www.facebook.com/Summerhill.brewing/", + "state": "New York", + "street": "384 Champlin Rd N. Cayuga County" + }, + { + "id": "e436d990-d5b4-4771-ba9b-a77531a5b0c1", + "name": "Summit Brewing Co", + "brewery_type": "regional", + "address_1": "910 Montreal Cir", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55102-4246", + "country": "United States", + "longitude": -93.13959808, + "latitude": 44.91398765, + "phone": "6512657800", + "website_url": "http://www.summitbrewing.com", + "state": "Minnesota", + "street": "910 Montreal Cir" + }, + { + "id": "834de8fa-bbd5-4dfc-a665-c1fc43781157", + "name": "Summit City Brwerks", + "brewery_type": "brewpub", + "address_1": "1501 E Berry #106", + "address_2": null, + "address_3": null, + "city": "Fort Wayne", + "state_province": "Indiana", + "postal_code": "46803", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2604150782", + "website_url": "http://www.summitcitybrewerks.com", + "state": "Indiana", + "street": "1501 E Berry #106" + }, + { + "id": "7d30c320-5116-4f48-8f4f-a07fb5559832", + "name": "Sun Brewing Co.", + "brewery_type": "brewpub", + "address_1": "101 Canutillo La Union Ave", + "address_2": null, + "address_3": null, + "city": "Canutillo", + "state_province": "Texas", + "postal_code": "79835-6001", + "country": "United States", + "longitude": -106.6011179, + "latitude": 31.9151882, + "phone": "9154333048", + "website_url": "http://sunbrewingco.com", + "state": "Texas", + "street": "101 Canutillo La Union Ave" + }, + { + "id": "55bbec01-c1da-421a-9721-39d33b554f39", + "name": "Sun King Brewery", + "brewery_type": "micro", + "address_1": "7848 E 96th St", + "address_2": null, + "address_3": null, + "city": "Fishers", + "state_province": "Indiana", + "postal_code": "46037-9629", + "country": "United States", + "longitude": -86.0242557, + "latitude": 39.9282185, + "phone": "3174361926", + "website_url": null, + "state": "Indiana", + "street": "7848 E 96th St" + }, + { + "id": "120a1b1e-f09a-4e2f-8f10-2b9a7342d3bd", + "name": "Sun King Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fishers", + "state_province": "Indiana", + "postal_code": "46037", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Indiana", + "street": null + }, + { + "id": "3e2d9646-099d-4b01-b619-d40d3a45fdbe", + "name": "Sun King Brewing Co", + "brewery_type": "regional", + "address_1": "135 N College Ave", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46202-3801", + "country": "United States", + "longitude": -86.1449174, + "latitude": 39.8095687, + "phone": "3176023702", + "website_url": null, + "state": "Indiana", + "street": "135 N College Ave" + }, + { + "id": "44dbdaea-02c1-4459-b259-0605a7a219b8", + "name": "Sun Up Brewing Co.", + "brewery_type": "brewpub", + "address_1": "322 E Camelback Rd", + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85012-1614", + "country": "United States", + "longitude": -112.0687773, + "latitude": 33.50950925, + "phone": "6026708924", + "website_url": "http://sunup.beer", + "state": "Arizona", + "street": "322 E Camelback Rd" + }, + { + "id": "64203bc5-a848-4d03-a025-01b0df322b3b", + "name": "Sun Up Brewing Company 330", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85012", + "country": "United States", + "longitude": -112.0773456, + "latitude": 33.4485866, + "phone": null, + "website_url": null, + "state": "Arizona", + "street": null + }, + { + "id": "e088534c-396b-4a55-b7d7-0c51ab0ce03a", + "name": "Sun Valley Brewing Co", + "brewery_type": "brewpub", + "address_1": "202 N Main St", + "address_2": null, + "address_3": null, + "city": "Hailey", + "state_province": "Idaho", + "postal_code": "83333-8413", + "country": "United States", + "longitude": -114.316365, + "latitude": 43.5210689, + "phone": "2087885777", + "website_url": null, + "state": "Idaho", + "street": "202 N Main St" + }, + { + "id": "acd12d74-76fe-4c74-ad0a-977b67f6d4f7", + "name": "Suncreek Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Clermont", + "state_province": "Florida", + "postal_code": "34711-2135", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4078508810", + "website_url": "http://www.suncreekbrewery.com", + "state": "Florida", + "street": null + }, + { + "id": "44f6bbcc-42ee-4ead-8f3d-3216d6f60698", + "name": "Sunday River Brewing Company", + "brewery_type": "brewpub", + "address_1": "29 Sunday River Rd", + "address_2": null, + "address_3": null, + "city": "Bethel", + "state_province": "Maine", + "postal_code": "04217-4623", + "country": "United States", + "longitude": -70.8096128, + "latitude": 44.4483482, + "phone": "2078244253", + "website_url": "http://www.sundayriverbrewingcompany.com", + "state": "Maine", + "street": "29 Sunday River Rd" + }, + { + "id": "162679d4-2c84-4dcd-8ebc-17d9fff255bd", + "name": "Sunday Road Brewing", + "brewery_type": "micro", + "address_1": "147 Bath Road", + "address_2": null, + "address_3": null, + "city": "Kirrawee", + "state_province": "NSW", + "postal_code": "2232", + "country": "Australia", + "longitude": 151.0756786, + "latitude": -34.0327202, + "phone": "+61 2 9545 2827", + "website_url": "https://sundayroadbrewing.com.au/", + "state": "NSW", + "street": "147 Bath Road" + }, + { + "id": "26b040cb-d50d-47e2-af07-5e7cabc94559", + "name": "Sundowner Brewing Co.", + "brewery_type": "micro", + "address_1": "30961 Agoura Rd Ste 321", + "address_2": null, + "address_3": null, + "city": "Westlake Village", + "state_province": "California", + "postal_code": "91361-5686", + "country": "United States", + "longitude": -118.796231, + "latitude": 34.14489484, + "phone": "8185979463", + "website_url": "http://www.malibusundowner.com", + "state": "California", + "street": "30961 Agoura Rd Ste 321" + }, + { + "id": "8a71cfb0-1ac7-42f1-8968-f5690ce41994", + "name": "Sunken City Brewing Co", + "brewery_type": "micro", + "address_1": "40 Brewery Dr", + "address_2": null, + "address_3": null, + "city": "Hardy", + "state_province": "Virginia", + "postal_code": "24101-1100", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5404200476", + "website_url": "http://www.sunkencitybeer.com", + "state": "Virginia", + "street": "40 Brewery Dr" + }, + { + "id": "fe5b48e5-b691-4e22-8a69-34c6f5ab3a0b", + "name": "SunRift Beer Company", + "brewery_type": "micro", + "address_1": "55 1st Ave WN", + "address_2": null, + "address_3": null, + "city": "Kalispell", + "state_province": "Montana", + "postal_code": "59901", + "country": "United States", + "longitude": -114.3181197, + "latitude": 48.2059559, + "phone": "4068712567", + "website_url": "http://www.sunriftbeer.com", + "state": "Montana", + "street": "55 1st Ave WN" + }, + { + "id": "0ce36ed5-632f-4734-a374-0b51ba123bd5", + "name": "Sunriver Brewing", + "brewery_type": "micro", + "address_1": "56840 Venture Ln", + "address_2": null, + "address_3": null, + "city": "Sunriver", + "state_province": "Oregon", + "postal_code": "97707-2100", + "country": "United States", + "longitude": -121.4366616, + "latitude": 43.87300007, + "phone": "5413065188", + "website_url": "http://www.sunriverbrewingcompany.com", + "state": "Oregon", + "street": "56840 Venture Ln" + }, + { + "id": "30f497b4-b12e-4a3d-a14f-ef0439f2ccd6", + "name": "Sunset Reservoir Brewing Company", + "brewery_type": "brewpub", + "address_1": "1735 Noriega St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94122-4307", + "country": "United States", + "longitude": -122.4823594, + "latitude": 37.7538314, + "phone": "4155718452", + "website_url": "http://www.sunsetbeersf.com", + "state": "California", + "street": "1735 Noriega St" + }, + { + "id": "8440f84f-5055-46ad-8d54-16ff3da4b5be", + "name": "Sunshine Brewery", + "brewery_type": "micro", + "address_1": "28 Fishermans Road", + "address_2": null, + "address_3": null, + "city": "Kuluin", + "state_province": "QLD", + "postal_code": "4558", + "country": "Australia", + "longitude": 153.0554987, + "latitude": -26.6543433, + "phone": "+61 7 5443 3881", + "website_url": "http://www.sunshinebrewery.com.au/", + "state": "QLD", + "street": "28 Fishermans Road" + }, + { + "id": "b76e442b-6c7e-442f-aeac-b40a7e321b41", + "name": "Sunshine Brewing Company", + "brewery_type": "micro", + "address_1": "121 S Main St", + "address_2": null, + "address_3": null, + "city": "Lake Mills", + "state_province": "Wisconsin", + "postal_code": "53551-1613", + "country": "United States", + "longitude": -88.91296397, + "latitude": 43.0791731, + "phone": "9206508579", + "website_url": "http://www.sunshinebrewco.com", + "state": "Wisconsin", + "street": "121 S Main St" + }, + { + "id": "bbc7a892-68df-4e52-9f87-e3c6480acfe1", + "name": "Sunshine Coast Brewery", + "brewery_type": "micro", + "address_1": "13 Endeavour Drive", + "address_2": "6", + "address_3": null, + "city": "Kunda Park", + "state_province": "QLD", + "postal_code": "4556", + "country": "Australia", + "longitude": 153.0306288, + "latitude": -26.6682363, + "phone": "+61 7 5476 6666", + "website_url": "https://sunshinecoastbrewery.com/", + "state": "QLD", + "street": "13 Endeavour Drive" + }, + { + "id": "def3d990-95bc-40df-a996-c0eab6f54e08", + "name": "Sunstone Brewing", + "brewery_type": "micro", + "address_1": "298 Rockingham Rd", + "address_2": null, + "address_3": null, + "city": "Londonderry", + "state_province": "New Hampshire", + "postal_code": "03053", + "country": "United States", + "longitude": -71.40209, + "latitude": 42.92138, + "phone": "6038188068", + "website_url": "https://www.longbluecat.com/", + "state": "New Hampshire", + "street": "298 Rockingham Rd" + }, + { + "id": "47c31369-8b35-4cac-bfb3-db39daf73ea5", + "name": "Super Brewing Company LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97202", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5037193435", + "website_url": null, + "state": "Oregon", + "street": null + }, + { + "id": "f69603de-05b8-45b0-8212-38a36c45b432", + "name": "Super Fun Time Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Bangor", + "state_province": "Pennsylvania", + "postal_code": "18013-9244", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6105974402", + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "630ad4e1-8625-4e4b-a45f-6c56c7b9712c", + "name": "Super Owl Brewing", + "brewery_type": "micro", + "address_1": "1260 Lake Blvd Ste 121", + "address_2": null, + "address_3": null, + "city": "Davis", + "state_province": "California", + "postal_code": "95616-5669", + "country": "United States", + "longitude": -121.787547, + "latitude": 38.55363515, + "phone": "5307465992", + "website_url": "http://www.superowlbrewing.com", + "state": "California", + "street": "1260 Lake Blvd Ste 121" + }, + { + "id": "e0441d23-cadb-4947-a679-bc2704a83390", + "name": "Superior Bathhouse Brewery", + "brewery_type": "brewpub", + "address_1": "329 Central Ave", + "address_2": null, + "address_3": null, + "city": "Hot Springs National Park", + "state_province": "Arkansas", + "postal_code": "71901-3525", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5016242337", + "website_url": "http://www.superiorbathhouse.com", + "state": "Arkansas", + "street": "329 Central Ave" + }, + { + "id": "a7cd132d-aa7b-4d28-8495-e8660cb6b708", + "name": "Superior Coast Brewery / Karls Cuisine Winery and Brewery", + "brewery_type": "brewpub", + "address_1": "447 W Portage Ave", + "address_2": null, + "address_3": null, + "city": "Sault Sainte Marie", + "state_province": "Michigan", + "postal_code": "49783-1989", + "country": "United States", + "longitude": -84.35344671, + "latitude": 46.50179396, + "phone": "9062531900", + "website_url": "http://www.karlscuisine.com", + "state": "Michigan", + "street": "447 W Portage Ave" + }, + { + "id": "c41ca19d-93e3-4489-9bec-cc59208fa451", + "name": "Surf Brewery", + "brewery_type": "closed", + "address_1": "4561 Market St Ste A", + "address_2": null, + "address_3": null, + "city": "Ventura", + "state_province": "California", + "postal_code": "93003-6483", + "country": "United States", + "longitude": -119.2319648, + "latitude": 34.25776561, + "phone": "8056442739", + "website_url": "http://www.surfbrewery.com", + "state": "California", + "street": "4561 Market St Ste A" + }, + { + "id": "3be10da6-c43b-4b9f-b9c9-ce43299ded2d", + "name": "Surfridge Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "El Segundo", + "state_province": "California", + "postal_code": "90245-4209", + "country": "United States", + "longitude": -118.383179, + "latitude": 33.912594, + "phone": "3108470283", + "website_url": "http://www.surfridgebrewery.com", + "state": "California", + "street": null + }, + { + "id": "c54d9149-0b2f-45f0-bf12-36860e56a1da", + "name": "Surly Brewing Company", + "brewery_type": "regional", + "address_1": "4811 Dusharme Dr", + "address_2": null, + "address_3": null, + "city": "Brooklyn Ctr", + "state_province": "Minnesota", + "postal_code": "55429-3940", + "country": "United States", + "longitude": -93.32438943, + "latitude": 45.04294225, + "phone": "7635353330", + "website_url": "http://www.surlybrewing.com", + "state": "Minnesota", + "street": "4811 Dusharme Dr" + }, + { + "id": "f187921a-c59d-47f2-a40a-b1d3bfccc0e0", + "name": "Surly Brewing Company", + "brewery_type": "regional", + "address_1": "520 Malcolm Ave SE", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55414-3312", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7635353330", + "website_url": null, + "state": "Minnesota", + "street": "520 Malcolm Ave SE" + }, + { + "id": "e6ca2c99-2803-45b8-8b31-ad9f654d9a91", + "name": "Suspended Brewing Co", + "brewery_type": "micro", + "address_1": "912 Washington Blvd", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21230-2318", + "country": "United States", + "longitude": -76.63148921, + "latitude": 39.2831169, + "phone": "3016466359", + "website_url": "http://www.suspendedbrewing.com", + "state": "Maryland", + "street": "912 Washington Blvd" + }, + { + "id": "84cb4e3a-34b1-4259-916a-9c5c170d4c23", + "name": "Susquehanna Brewing Co", + "brewery_type": "micro", + "address_1": "635 S Main St", + "address_2": null, + "address_3": null, + "city": "Pittston", + "state_province": "Pennsylvania", + "postal_code": "18640-3215", + "country": "United States", + "longitude": -75.7912216, + "latitude": 41.321577, + "phone": "5706543557", + "website_url": "http://www.sbcbeer.com", + "state": "Pennsylvania", + "street": "635 S Main St" + }, + { + "id": "f7233986-f1d7-4799-8d63-0f3d6df70384", + "name": "Sutter Buttes Brewing", + "brewery_type": "brewpub", + "address_1": "421 Center St", + "address_2": null, + "address_3": null, + "city": "Yuba City", + "state_province": "California", + "postal_code": "95991-4505", + "country": "United States", + "longitude": -121.6149147, + "latitude": 39.13723286, + "phone": "5307907999", + "website_url": "http://www.sutterbuttesbrewing.com", + "state": "California", + "street": "421 Center St" + }, + { + "id": "4780994b-3b4b-4e12-ab6b-6d1dd4018722", + "name": "Svendale Brewing Co", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Millerton", + "state_province": "New York", + "postal_code": "12546-4553", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9177039873", + "website_url": "http://svendale.com", + "state": "New York", + "street": null + }, + { + "id": "d9db410f-6747-4e6b-8b94-1b08fcf90cca", + "name": "Swagga Breweries", + "brewery_type": "micro", + "address_1": "1026 Bultfontein Street", + "address_2": null, + "address_3": null, + "city": "Pretoria", + "state_province": "Gauteng", + "postal_code": "0182", + "country": "South Africa", + "longitude": 28.1633, + "latitude": -25.908, + "phone": "+27 82 552 9585", + "website_url": "https://swaggabrewery.co.za/", + "state": "Gauteng", + "street": "1026 Bultfontein Street" + }, + { + "id": "5094a403-c71f-45ed-8547-552734799d2a", + "name": "Swamp Cabbage Brewing Company", + "brewery_type": "micro", + "address_1": "921 Brookwood Dr", + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "South Carolina", + "postal_code": "29201-4609", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8039392589", + "website_url": "http://www.swampcabbagebrewing.com", + "state": "South Carolina", + "street": "921 Brookwood Dr" + }, + { + "id": "3f8790cd-03b9-4172-99c9-f88940c731a0", + "name": "Swamp Head Brewery", + "brewery_type": "micro", + "address_1": "3650 SW 42nd Ave", + "address_2": null, + "address_3": null, + "city": "Gainesville", + "state_province": "Florida", + "postal_code": "32608-2598", + "country": "United States", + "longitude": -82.3736302, + "latitude": 29.6142515, + "phone": "3525053035", + "website_url": "http://www.swamphead.com", + "state": "Florida", + "street": "3650 SW 42nd Ave" + }, + { + "id": "dcc661e0-ef04-4bba-8c05-120cfed64613", + "name": "Swamp Rabbit Brewery and Taproom", + "brewery_type": "micro", + "address_1": "26 S Main St", + "address_2": null, + "address_3": null, + "city": "Travelers Rest", + "state_province": "South Carolina", + "postal_code": "29690-1810", + "country": "United States", + "longitude": -82.44227639, + "latitude": 34.9666585, + "phone": "8646102424", + "website_url": "http://www.theswamprabbitbrewery.com", + "state": "South Carolina", + "street": "26 S Main St" + }, + { + "id": "dcecd9db-a84b-4013-aad8-e2baa1fb4e95", + "name": "Swan Brewery", + "brewery_type": "large", + "address_1": "518 Great Northern Highway", + "address_2": null, + "address_3": null, + "city": "Middle Swan", + "state_province": "WA", + "postal_code": "6056", + "country": "Australia", + "longitude": 116.0155814, + "latitude": -31.8480871, + "phone": "+61 8 9250 6035", + "website_url": "https://swanvalleybrewery.com.au/", + "state": "WA", + "street": "518 Great Northern Highway" + }, + { + "id": "8aa90b99-32fa-4727-b14a-324db6f758f6", + "name": "Swan Brewing", + "brewery_type": "micro", + "address_1": "115 W. Pine St.", + "address_2": null, + "address_3": null, + "city": "Lakeland", + "state_province": "Florida", + "postal_code": "33815", + "country": "United States", + "longitude": -81.95746167, + "latitude": 28.04600888, + "phone": "8637030472", + "website_url": "http://www.swanbrewing.com", + "state": "Florida", + "street": "115 W. Pine St." + }, + { + "id": "6992bfe1-3a44-40fc-af3c-55c22ef97a87", + "name": "Swashbuckler Brewing Co", + "brewery_type": "micro", + "address_1": "2775 Lebanon Rd", + "address_2": null, + "address_3": null, + "city": "Manheim", + "state_province": "Pennsylvania", + "postal_code": "17545-8711", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7176657021", + "website_url": "http://www.parenfaire.com", + "state": "Pennsylvania", + "street": "2775 Lebanon Rd" + }, + { + "id": "51a67223-d853-4316-bf42-eb38eca9121f", + "name": "Sweet Mercy Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "Florida", + "postal_code": "33143", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3057999260", + "website_url": "http://www.sweetmercybrewing.com", + "state": "Florida", + "street": null + }, + { + "id": "a5800400-36c4-47f2-b289-1eff24c0218f", + "name": "Sweet Thursday Beer Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11215-6020", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9176133980", + "website_url": "http://www.sweetthursdaybeer.com", + "state": "New York", + "street": null + }, + { + "id": "f015b19a-40c0-48e9-b310-faa577b03406", + "name": "Sweet Union Brewing", + "brewery_type": "micro", + "address_1": "13717 E Independence Blvd", + "address_2": null, + "address_3": null, + "city": "Indian Trail", + "state_province": "North Carolina", + "postal_code": "28079-7600", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7046285211", + "website_url": "http://www.sweetunionbrewing.com", + "state": "North Carolina", + "street": "13717 E Independence Blvd" + }, + { + "id": "fe331f63-1c49-4cf2-91a7-b2403023b1e0", + "name": "Sweeten Creek Brewing", + "brewery_type": "brewpub", + "address_1": "1127 Sweeten Creek Rd", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28803-1728", + "country": "United States", + "longitude": -82.520631, + "latitude": 35.5139103, + "phone": "8285752785", + "website_url": "http://www.sweetencreekbrewing.com", + "state": "North Carolina", + "street": "1127 Sweeten Creek Rd" + }, + { + "id": "618e8cbb-8c2c-4617-b973-633443bc4c21", + "name": "SweetWater Brewing Co", + "brewery_type": "regional", + "address_1": "195 Ottley Dr NE", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30324-3924", + "country": "United States", + "longitude": -84.38107219, + "latitude": 33.80802235, + "phone": "4046912537", + "website_url": "http://www.sweetwaterbrew.com", + "state": "Georgia", + "street": "195 Ottley Dr NE" + }, + { + "id": "000fccce-1c75-46b9-bd14-b132c401c2b1", + "name": "Swell Brewing Co.", + "brewery_type": "micro", + "address_1": "168 Olivers Road", + "address_2": null, + "address_3": null, + "city": "McLaren Vale", + "state_province": "SA", + "postal_code": "5171", + "country": "Australia", + "longitude": 138.5418023, + "latitude": -35.1939187, + "phone": "+61 8 8323 0879", + "website_url": "http://www.swellbeer.com.au/", + "state": "SA", + "street": "168 Olivers Road" + }, + { + "id": "c5f110d4-81a4-4f98-85ab-244decbe49de", + "name": "Swiftwater Brewing Company", + "brewery_type": "brewpub", + "address_1": "378 Mount Hope Ave", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "New York", + "postal_code": "14620-1250", + "country": "United States", + "longitude": -77.61227748, + "latitude": 43.14230324, + "phone": "5855303471", + "website_url": "http://www.swiftwaterbrewing.com", + "state": "New York", + "street": "378 Mount Hope Ave" + }, + { + "id": "d077007b-16b4-4539-9a36-b7485b89af98", + "name": "Swine City Brewing Company", + "brewery_type": "micro", + "address_1": "4614 Industry Dr", + "address_2": null, + "address_3": null, + "city": "Fairfield", + "state_province": "Ohio", + "postal_code": "45014-1923", + "country": "United States", + "longitude": -84.53106178, + "latitude": 39.34895418, + "phone": "7045601214", + "website_url": "http://www.swinecitybrewing.com", + "state": "Ohio", + "street": "4614 Industry Dr" + }, + { + "id": "86d1fa06-fad8-4251-aa9e-e10f910f1deb", + "name": "Swinging Bridge Brewing Co", + "brewery_type": "brewpub", + "address_1": "122 S Main St", + "address_2": null, + "address_3": null, + "city": "River Falls", + "state_province": "Wisconsin", + "postal_code": "54022-2423", + "country": "United States", + "longitude": -92.62629149, + "latitude": 44.85774743, + "phone": "7156291464", + "website_url": "http://swingingbridgebrewing.com", + "state": "Wisconsin", + "street": "122 S Main St" + }, + { + "id": "2e1e1419-b19c-449f-94ca-f4525748aac6", + "name": "Swinnerton Brewery", + "brewery_type": "micro", + "address_1": "1809 8th St", + "address_2": null, + "address_3": null, + "city": "Marysville", + "state_province": "Washington", + "postal_code": "98270-4610", + "country": "United States", + "longitude": -122.1710235, + "latitude": 48.05547132, + "phone": "4253877045", + "website_url": "http://www.swinnertonbrewery.com", + "state": "Washington", + "street": "1809 8th St" + }, + { + "id": "45d47b1f-2968-4adb-848c-f46e0d43362f", + "name": "Switchback Brewing Co", + "brewery_type": "regional", + "address_1": "160 Flynn Ave", + "address_2": null, + "address_3": null, + "city": "Burlington", + "state_province": "Vermont", + "postal_code": "05401-5400", + "country": "United States", + "longitude": -73.22068075, + "latitude": 44.45680085, + "phone": "8026514114", + "website_url": "http://www.switchbackvt.com", + "state": "Vermont", + "street": "160 Flynn Ave" + }, + { + "id": "6b076ecd-c79f-41b2-a5c6-e19faa9cf8aa", + "name": "SwitchGear Brewing Co", + "brewery_type": "micro", + "address_1": "44 D Gottfried St", + "address_2": null, + "address_3": null, + "city": "Elkhart Lake", + "state_province": "Wisconsin", + "postal_code": "53020", + "country": "United States", + "longitude": -88.019601, + "latitude": 43.834243, + "phone": "9207815120", + "website_url": "http://www.switchgearbrewing.com", + "state": "Wisconsin", + "street": "44 D Gottfried St" + }, + { + "id": "1f7ae129-466f-42fb-95b9-10f5a8133dd0", + "name": "Switchyard Brewing Company", + "brewery_type": "micro", + "address_1": "419 N Walnut St", + "address_2": null, + "address_3": null, + "city": "Bloomington", + "state_province": "Indiana", + "postal_code": "47404-3842", + "country": "United States", + "longitude": -86.5343606, + "latitude": 39.1865667, + "phone": "8122878295", + "website_url": "http://www.switchyardbrewing.com", + "state": "Indiana", + "street": "419 N Walnut St" + }, + { + "id": "3d0ffd83-d36a-4e5e-af03-fe95da3a80fc", + "name": "Swover Creek Farm Brewery", + "brewery_type": "micro", + "address_1": "4176 Swover Creek Rd", + "address_2": null, + "address_3": null, + "city": "Edinburg", + "state_province": "Virginia", + "postal_code": "22824-3744", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5409848973", + "website_url": "http://www.swovercreekfarms.com", + "state": "Virginia", + "street": "4176 Swover Creek Rd" + }, + { + "id": "970430cb-49db-4d40-bda4-a3fd12d3b40c", + "name": "Sycamore Brewing", + "brewery_type": "brewpub", + "address_1": "2161 Hawkins St Ste A", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28203-5396", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7049103821", + "website_url": "http://www.sycamorebrew.com", + "state": "North Carolina", + "street": "2161 Hawkins St Ste A" + }, + { + "id": "b515e4af-002a-4753-b436-ee6ae764ccf1", + "name": "Sydney Brewery", + "brewery_type": "micro", + "address_1": "28 Albion Street", + "address_2": null, + "address_3": null, + "city": "Surry Hills", + "state_province": "NSW", + "postal_code": "2010", + "country": "Australia", + "longitude": 151.2098009, + "latitude": -33.8819999, + "phone": "+61 2 9289 0028", + "website_url": "http://sydneybrewery.com/surry-hills/", + "state": "NSW", + "street": "28 Albion Street" + }, + { + "id": "5b4eded5-5a35-4fed-b41d-058c07c86785", + "name": "Syncopated Brewing Co", + "brewery_type": "micro", + "address_1": "3671 Industry Ave Ste C1", + "address_2": null, + "address_3": null, + "city": "Lakewood", + "state_province": "California", + "postal_code": "90712-4155", + "country": "United States", + "longitude": -118.1659197, + "latitude": 33.8236814, + "phone": "5624262333", + "website_url": "http://www.syncopatedbrewing.com", + "state": "California", + "street": "3671 Industry Ave Ste C1" + }, + { + "id": "df1cbf5b-3f4e-451e-b638-09d6128eabe1", + "name": "Syracuse Suds Factory", + "brewery_type": "brewpub", + "address_1": "320 S Clinton St", + "address_2": null, + "address_3": null, + "city": "Syracuse", + "state_province": "New York", + "postal_code": "13202-1220", + "country": "United States", + "longitude": -76.153679, + "latitude": 43.04846902, + "phone": "3154712253", + "website_url": "http://www.sudsfactory.com", + "state": "New York", + "street": "320 S Clinton St" + }, + { + "id": "3e93c9b9-19f8-4df1-8dbb-8d52b6137d6c", + "name": "T-Bone Brewing Co.", + "brewery_type": "micro", + "address_1": "308 Elizabeth Street", + "address_2": null, + "address_3": null, + "city": "North Hobart", + "state_province": "TAS", + "postal_code": "7000", + "country": "Australia", + "longitude": 147.3180432, + "latitude": -42.8761349, + "phone": "+61 415 826 655", + "website_url": "https://www.tbonebrewing.com.au/", + "state": "TAS", + "street": "308 Elizabeth Street" + }, + { + "id": "bbd9be81-8a4a-43e6-8fea-be17ec75ee3b", + "name": "Table 41 Brewing Co.", + "brewery_type": "micro", + "address_1": "4 Dunsback Ferry Rd", + "address_2": null, + "address_3": null, + "city": "Cohoes", + "state_province": "New York", + "postal_code": "12047-5016", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5185270221", + "website_url": "http://www.table41brewing.com", + "state": "New York", + "street": "4 Dunsback Ferry Rd" + }, + { + "id": "9c26f5a5-fc31-467f-b413-6675fa1cd8b5", + "name": "Table 58 Brewing", + "brewery_type": "micro", + "address_1": "58 Main Road", + "address_2": "Cove Rock", + "address_3": null, + "city": "East London", + "state_province": "Eastern Cape", + "postal_code": "5201", + "country": "South Africa", + "longitude": 27.8732, + "latitude": -32.9696, + "phone": "+27 72 359 8980", + "website_url": null, + "state": "Eastern Cape", + "street": "58 Main Road" + }, + { + "id": "3ebd4a18-a0f8-4fa6-b383-b94769a9c35c", + "name": "Table Rock Brewing LLC", + "brewery_type": "micro", + "address_1": "825 Dakota Ave", + "address_2": null, + "address_3": null, + "city": "Medford", + "state_province": "Oregon", + "postal_code": "97501-3443", + "country": "United States", + "longitude": -122.8807679, + "latitude": 42.31644563, + "phone": "5419440829", + "website_url": null, + "state": "Oregon", + "street": "825 Dakota Ave" + }, + { + "id": "2542f084-1083-47e9-aab3-f059cc0042fe", + "name": "Tabol Brewing", + "brewery_type": "planning", + "address_1": "704 Dawn St", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23222", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8043035528", + "website_url": "http://tabolbrewing.com/taste", + "state": "Virginia", + "street": "704 Dawn St" + }, + { + "id": "cb8f9bf5-9928-481f-8700-3bb86a34b170", + "name": "Tabula Rasa Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Florida", + "postal_code": "32204-1705", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "84851d4b-2539-48f2-a1e9-af83be1e7c4c", + "name": "Tack Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94618-1534", + "country": "United States", + "longitude": -122.2713563, + "latitude": 37.8044557, + "phone": "8054044861", + "website_url": "http://www.tackbrewing.com", + "state": "California", + "street": null + }, + { + "id": "b904d6d4-157a-4005-a082-88ee3c47c969", + "name": "Tacoma Brewing Co.", + "brewery_type": "micro", + "address_1": "1116 Court E", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98402", + "country": "United States", + "longitude": -122.4437398, + "latitude": 47.25256141, + "phone": "2532423370", + "website_url": "http://www.tacomabrewing.com", + "state": "Washington", + "street": "1116 Court E" + }, + { + "id": "cb31d7c0-8ffa-4e3e-bdc0-100136de959d", + "name": "Tactical OPS Brewing Inc.", + "brewery_type": "proprietor", + "address_1": "2985 N Burl 102", + "address_2": null, + "address_3": null, + "city": "Fresno", + "state_province": "California", + "postal_code": "93727", + "country": "United States", + "longitude": -119.6761563, + "latitude": 36.7913344, + "phone": "5593138759", + "website_url": "http://www.tacticalopsbrewing.com", + "state": "California", + "street": "2985 N Burl 102" + }, + { + "id": "b8d3e1d3-53ce-4471-8b45-d492878d6312", + "name": "Tafe SA Campus Brewery", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Urrbrae", + "state_province": "SA", + "postal_code": "5064", + "country": "Australia", + "longitude": 138.6366588, + "latitude": -34.968736, + "phone": "+61 8 8313 6713", + "website_url": "https://set.adelaide.edu.au/agriculture-food-wine/research/facilities/micro", + "state": "SA", + "street": null + }, + { + "id": "251283fc-99a8-447b-b6ba-bf80a8c2ebce", + "name": "Taft's Ale House", + "brewery_type": "micro", + "address_1": "1429 Race St", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45202-7009", + "country": "United States", + "longitude": -84.51750995, + "latitude": 39.111325, + "phone": null, + "website_url": null, + "state": "Ohio", + "street": "1429 Race St" + }, + { + "id": "bb0ddc58-bfea-4564-8c6a-052d6445d0d4", + "name": "Taft's Brewing Co", + "brewery_type": "brewpub", + "address_1": "4831 Spring Grove Ave", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45232-1938", + "country": "United States", + "longitude": -84.5127071, + "latitude": 39.1681213, + "phone": "5138535016", + "website_url": null, + "state": "Ohio", + "street": "4831 Spring Grove Ave" + }, + { + "id": "0d2734f2-b096-4426-943b-429b46e53987", + "name": "Tahoe Mountain Brewing Company", + "brewery_type": "brewpub", + "address_1": "475 N. Lake Blvd", + "address_2": null, + "address_3": null, + "city": "Tahoe City", + "state_province": "California", + "postal_code": "96145", + "country": "United States", + "longitude": -120.141663, + "latitude": 39.170687, + "phone": "5305814677", + "website_url": "http://www.tahoebrewing.com", + "state": "California", + "street": "475 N. Lake Blvd" + }, + { + "id": "b00dec17-2def-4dc8-bafb-ec0493d81054", + "name": "Tahoe Mountain Brewing Company", + "brewery_type": "closed", + "address_1": "10990 Industrial Way Ste B104", + "address_2": null, + "address_3": null, + "city": "Truckee", + "state_province": "California", + "postal_code": "96161-0258", + "country": "United States", + "longitude": -120.189448, + "latitude": 39.32653386, + "phone": null, + "website_url": "http://tahoebrewing.com/", + "state": "California", + "street": "10990 Industrial Way Ste B104" + }, + { + "id": "791e86a0-657e-4f59-9f3f-58a610e7bd5a", + "name": "Tahquamenon Falls Brewery and Pub", + "brewery_type": "brewpub", + "address_1": "M-123 Upper Falls Dr", + "address_2": null, + "address_3": null, + "city": "Paradise", + "state_province": "Michigan", + "postal_code": "49768", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9064923300", + "website_url": "http://www.tahquamenonfallsbrewery.com", + "state": "Michigan", + "street": "M-123 Upper Falls Dr" + }, + { + "id": "2c6c1506-c260-4b0a-91a3-49fca12bcf37", + "name": "Tailgate Brewery", + "brewery_type": "brewpub", + "address_1": "7300 Charlotte Pike", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37209-5012", + "country": "United States", + "longitude": -86.918654, + "latitude": 36.119936, + "phone": "6154571424", + "website_url": "http://www.tailgatebeer.com", + "state": "Tennessee", + "street": "7300 Charlotte Pike" + }, + { + "id": "5282b0c7-a62e-41c3-8be5-915fdacd0c2f", + "name": "TailGate Brewery Music Row", + "brewery_type": "brewpub", + "address_1": "1538 Demonbreun St", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37203-3112", + "country": "United States", + "longitude": -86.78963972, + "latitude": 36.15310256, + "phone": null, + "website_url": "http://www.tailgatebeer.com", + "state": "Tennessee", + "street": "1538 Demonbreun St" + }, + { + "id": "08eeda9e-f259-42eb-a3db-4e52d38b66e8", + "name": "Tailspin Brewing Co", + "brewery_type": "micro", + "address_1": "626 S 2nd St", + "address_2": null, + "address_3": null, + "city": "Coldwater", + "state_province": "Ohio", + "postal_code": "45828-9603", + "country": "United States", + "longitude": -84.6288605, + "latitude": 40.47316407, + "phone": "4198529366", + "website_url": "http://Www.TailspinBrewing.co", + "state": "Ohio", + "street": "626 S 2nd St" + }, + { + "id": "4ccc73ca-f74a-486b-b3e0-46a2dc322c07", + "name": "Take 16 Brewing Company", + "brewery_type": "micro", + "address_1": "509 E Main St", + "address_2": null, + "address_3": null, + "city": "Luverne", + "state_province": "Minnesota", + "postal_code": "56156-1905", + "country": "United States", + "longitude": -96.20317435, + "latitude": 43.65421673, + "phone": "8666639986", + "website_url": "http://www.take16beer.com", + "state": "Minnesota", + "street": "509 E Main St" + }, + { + "id": "20095f2b-d1bc-401d-959b-f078135940f6", + "name": "TaleSpinner Craft Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Nashua", + "state_province": "New Hampshire", + "postal_code": "03062-1033", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6032339636", + "website_url": "http://www.talespinnerbrew.com", + "state": "New Hampshire", + "street": null + }, + { + "id": "b27c5ad5-bc67-4fc2-a0a9-ca517f036629", + "name": "Talisman Brewing Company", + "brewery_type": "micro", + "address_1": "1258 Gibson Ave", + "address_2": null, + "address_3": null, + "city": "Ogden", + "state_province": "Utah", + "postal_code": "84404-5541", + "country": "United States", + "longitude": -111.9844475, + "latitude": 41.243496, + "phone": "3853892945", + "website_url": "http://www.talismanbrewingco.com", + "state": "Utah", + "street": "1258 Gibson Ave" + }, + { + "id": "f4a9eb65-edcc-44f9-9f5e-b74f7795bf49", + "name": "Talking Waters Brewing Co.", + "brewery_type": "micro", + "address_1": "205 S 1st St", + "address_2": null, + "address_3": null, + "city": "Montevideo", + "state_province": "Minnesota", + "postal_code": "56265-1412", + "country": "United States", + "longitude": -95.7235032, + "latitude": 44.942758, + "phone": "3203211444", + "website_url": "http://www.talkingwatersbrewing.com", + "state": "Minnesota", + "street": "205 S 1st St" + }, + { + "id": "9daf19fc-e958-48d7-b232-53661abf49fe", + "name": "Tall City Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Midland", + "state_province": "Texas", + "postal_code": "79703-5137", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4327708679", + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "458d02fe-149e-4bad-bcf6-38db49854fc0", + "name": "Tall Tales Brewing Co. LLC", + "brewery_type": "brewpub", + "address_1": "6929 Heron Grove Ct Ste 102", + "address_2": null, + "address_3": null, + "city": "Parsonsburg", + "state_province": "Maryland", + "postal_code": "21849-2155", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4105432739", + "website_url": "http://www.talltalesbrew.com", + "state": "Maryland", + "street": "6929 Heron Grove Ct Ste 102" + }, + { + "id": "b81f25dd-48fc-42d1-a922-1d5af5f763f4", + "name": "Tall Timbers Brewing Co.", + "brewery_type": "micro", + "address_1": "88 Giblett Street", + "address_2": null, + "address_3": null, + "city": "Manjimup", + "state_province": "WA", + "postal_code": "6258", + "country": "Australia", + "longitude": 116.1473725, + "latitude": -34.2403532, + "phone": "+61 8 9777 2052", + "website_url": "https://www.talltimbersmanjimup.com.au/", + "state": "WA", + "street": "88 Giblett Street" + }, + { + "id": "7285cbb6-9d06-4d45-b3ce-1dd1c1badff4", + "name": "Tallboy & Moose", + "brewery_type": "micro", + "address_1": "270 Raglan Street", + "address_2": null, + "address_3": null, + "city": "Preston", + "state_province": "VIC", + "postal_code": "3072", + "country": "Australia", + "longitude": 145.0029444, + "latitude": -37.7486, + "phone": "+61 3 9484 7803", + "website_url": "http://www.tallboyandmoose.com/", + "state": "VIC", + "street": "270 Raglan Street" + }, + { + "id": "ce6e8c91-cfbd-44a0-98ac-5798866555a3", + "name": "Tallboy and Moose", + "brewery_type": "micro", + "address_1": "270 Raglan Street", + "address_2": null, + "address_3": null, + "city": "Preston", + "state_province": "VIC", + "postal_code": "3072", + "country": "Australia", + "longitude": 145.0029444, + "latitude": -37.7486, + "phone": "+61 3 9484 7803", + "website_url": "http://www.tallboyandmoose.com/", + "state": "VIC", + "street": "270 Raglan Street" + }, + { + "id": "069a5770-2241-4f0d-b635-c0f61825a1fd", + "name": "Tallgrass Brewing Co", + "brewery_type": "regional", + "address_1": "5960 Dry Hop Cir", + "address_2": null, + "address_3": null, + "city": "Manhattan", + "state_province": "Kansas", + "postal_code": "66503-9815", + "country": "United States", + "longitude": -96.6792762, + "latitude": 39.1428736, + "phone": "7855371131", + "website_url": "http://www.tallgrassbeer.com", + "state": "Kansas", + "street": "5960 Dry Hop Cir" + }, + { + "id": "aa01c26f-b816-4afe-a4a2-e42afd3d9039", + "name": "Tallgrass Taphouse Co", + "brewery_type": "brewpub", + "address_1": "320 Poyntz Ave", + "address_2": null, + "address_3": null, + "city": "Manhattan", + "state_province": "Kansas", + "postal_code": "66502-6038", + "country": "United States", + "longitude": -96.561291, + "latitude": 39.1795046, + "phone": "7853202933", + "website_url": "http://www.tallgrasstaphouse.com", + "state": "Kansas", + "street": "320 Poyntz Ave" + }, + { + "id": "3978dbf8-ca5f-4cc3-9a15-6ba5fb7b23e7", + "name": "Tallulah Brewing Company", + "brewery_type": "micro", + "address_1": "1804 4th Ave S", + "address_2": null, + "address_3": null, + "city": "Jasper", + "state_province": "Alabama", + "postal_code": "35501-5330", + "country": "United States", + "longitude": -87.278675, + "latitude": 33.830796, + "phone": "2055308555", + "website_url": null, + "state": "Alabama", + "street": "1804 4th Ave S" + }, + { + "id": "a46de1d1-1edd-4788-8c9c-efa43b3e4e19", + "name": "Tamarack Brewing Co", + "brewery_type": "micro", + "address_1": "105 Blacktail Rd # 2", + "address_2": null, + "address_3": null, + "city": "Lakeside", + "state_province": "Montana", + "postal_code": "59922-9628", + "country": "United States", + "longitude": -114.2253672, + "latitude": 48.0161369, + "phone": "4068440244", + "website_url": "http://www.tamarackbrewing.com", + "state": "Montana", + "street": "105 Blacktail Rd # 2" + }, + { + "id": "f54a5693-be9d-4faa-ac97-47d62a225392", + "name": "Tampa Bay Brewing Co Brewpub", + "brewery_type": "micro", + "address_1": "1600 E 8th Ave Ste A123", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33605-3760", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8132471422", + "website_url": "http://tbbc.beer", + "state": "Florida", + "street": "1600 E 8th Ave Ste A123" + }, + { + "id": "582945be-7f01-4bdc-850f-1f93e5b149a2", + "name": "Tampa Bay Brewing Co Production Brewery", + "brewery_type": "brewpub", + "address_1": "13937 Monroes Business Park", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33635-6309", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8132471422", + "website_url": null, + "state": "Florida", + "street": "13937 Monroes Business Park" + }, + { + "id": "84a82ca6-2e8c-4d10-a24a-375ba1f2ca58", + "name": "Tampa Beer Works", + "brewery_type": "micro", + "address_1": "333 N Falkenburg Rd Ste D407", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33619-7895", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8136851909", + "website_url": "http://www.esbbrewing.com", + "state": "Florida", + "street": "333 N Falkenburg Rd Ste D407" + }, + { + "id": "ca916419-7c3f-4152-898a-0ad48a70a9f6", + "name": "Tandem Brewing Co", + "brewery_type": "brewpub", + "address_1": "17 SE 3rd Ave", + "address_2": null, + "address_3": null, + "city": "Ontario", + "state_province": "Oregon", + "postal_code": "97914-2803", + "country": "United States", + "longitude": -116.9627719, + "latitude": 44.02391075, + "phone": "2087416774", + "website_url": "http://www.tandembrewing.com", + "state": "Oregon", + "street": "17 SE 3rd Ave" + }, + { + "id": "5ecec020-0941-4e45-ba00-4c046eddc84c", + "name": "Taneum Creek Brewing", + "brewery_type": "micro", + "address_1": "811 Hwy 970 Ste 7", + "address_2": null, + "address_3": null, + "city": "Cle Elum", + "state_province": "Washington", + "postal_code": "98922", + "country": "United States", + "longitude": -120.93029357496, + "latitude": 47.193807761506, + "phone": "9709039414", + "website_url": "https://www.taneumcreekbrewing.com", + "state": "Washington", + "street": "811 Hwy 970 Ste 7" + }, + { + "id": "fa71c6aa-8652-4430-a3aa-dced12038a61", + "name": "Tangled Roots Brewing Company", + "brewery_type": "brewpub", + "address_1": "130 E Madison St", + "address_2": null, + "address_3": null, + "city": "Ottawa", + "state_province": "Illinois", + "postal_code": "61350-5098", + "country": "United States", + "longitude": -88.84091316, + "latitude": 41.34692308, + "phone": "8153249549", + "website_url": "http://www.tangledrootsbrewingco.com", + "state": "Illinois", + "street": "130 E Madison St" + }, + { + "id": "5219ee31-6441-44e5-ac74-682f8c29fe80", + "name": "TangleTown Public House", + "brewery_type": "micro", + "address_1": "2106 N 55th St", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98103-6202", + "country": "United States", + "longitude": -122.333474, + "latitude": 47.6687837, + "phone": "2064666340", + "website_url": "https://www.tangletownpublichouse.com/", + "state": "Washington", + "street": "2106 N 55th St" + }, + { + "id": "834f90bd-7ba4-46f3-ba85-db507478f531", + "name": "Tannery Bend Beerworks", + "brewery_type": "closed", + "address_1": "101 South Coombs Street Suite X", + "address_2": null, + "address_3": null, + "city": "Napa", + "state_province": "California", + "postal_code": "94559", + "country": "United States", + "longitude": -122.287271, + "latitude": 38.28513283, + "phone": "7076815774", + "website_url": "http://www.tannerybendbeerworks.com", + "state": "California", + "street": "101 South Coombs Street Suite X" + }, + { + "id": "54dd0519-287f-4736-980e-595fa699639f", + "name": "Tannery Bend Beerworks", + "brewery_type": "brewpub", + "address_1": "6369 Telegraph Ave", + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94609", + "country": "United States", + "longitude": -122.260843, + "latitude": 37.84998999, + "phone": "5102509055", + "website_url": "http://www.tannerybendbeerworks.com", + "state": "California", + "street": "6369 Telegraph Ave" + }, + { + "id": "9dfec154-bfdf-4489-9cfc-ed3a5611c15c", + "name": "Tannery Run Brew Works", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Ambler", + "state_province": "Pennsylvania", + "postal_code": "19002-4407", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2156131113", + "website_url": "http://www.tanneryrun.com", + "state": "Pennsylvania", + "street": null + }, + { + "id": "692ad7e4-2bd7-452d-a0e2-08c9cc43ae0d", + "name": "Tantrum Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Georgia", + "postal_code": "30528-7804", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7068090808", + "website_url": "http://www.tantrumbeer.com", + "state": "Georgia", + "street": null + }, + { + "id": "fb7d91d0-dc5c-483e-ac0c-c932ed291fa0", + "name": "Tanzenwald Brewing Company", + "brewery_type": "brewpub", + "address_1": "103 Water St N", + "address_2": null, + "address_3": null, + "city": "Northfield", + "state_province": "Minnesota", + "postal_code": "55057-2121", + "country": "United States", + "longitude": -93.1617022, + "latitude": 44.4600704, + "phone": "5073662337", + "website_url": "http://www.tanzenwald.com", + "state": "Minnesota", + "street": "103 Water St N" + }, + { + "id": "194b8100-0dde-43ba-8918-eea6c71bb406", + "name": "Taos Ale House", + "brewery_type": "brewpub", + "address_1": "401 Paseo del Pueblo Norte", + "address_2": null, + "address_3": null, + "city": "Taos", + "state_province": "New Mexico", + "postal_code": "87571-5907", + "country": "United States", + "longitude": -105.568722, + "latitude": 36.41222, + "phone": "5757585522", + "website_url": "http://www.taosalehouse.com", + "state": "New Mexico", + "street": "401 Paseo del Pueblo Norte" + }, + { + "id": "1fa3fc1b-d53f-4154-89d0-f1d6955d6635", + "name": "Taos Mesa Brewing Co", + "brewery_type": "brewpub", + "address_1": "20 ABC Mesa Road", + "address_2": null, + "address_3": null, + "city": "El Prado", + "state_province": "New Mexico", + "postal_code": "87529", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5757790449", + "website_url": "http://www.taosmesabrewing.com", + "state": "New Mexico", + "street": "20 ABC Mesa Road" + }, + { + "id": "0b29b25e-6a2f-476e-9ce3-585c14973f02", + "name": "Taos Trail Inn Brewery & Steakhouse", + "brewery_type": "brewpub", + "address_1": "35309 US-285", + "address_2": null, + "address_3": null, + "city": "Ojo Caliente", + "state_province": "New Mexico", + "postal_code": "87549", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5055839215", + "website_url": "http://www.taostrailinn.com/Restaurant", + "state": "New Mexico", + "street": "35309 US-285" + }, + { + "id": "6a7335ee-c49f-4220-89f4-f239d5bf089c", + "name": "Tap and Screw Brewery", + "brewery_type": "brewpub", + "address_1": "4721 Red Bank Rd", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45277", + "country": "United States", + "longitude": -84.40434316, + "latitude": 39.158691, + "phone": "5134511763", + "website_url": "http://www.tapandscrew.com", + "state": "Ohio", + "street": "4721 Red Bank Rd" + }, + { + "id": "63932576-ed2d-4024-862b-003b3ce36e3f", + "name": "Tap and Vine", + "brewery_type": "brewpub", + "address_1": "907 Lincoln Way", + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "California", + "postal_code": "95603", + "country": "United States", + "longitude": -121.0694956, + "latitude": 38.89956738, + "phone": "5308898463", + "website_url": "http://www.tapandvineauburn.com", + "state": "California", + "street": "907 Lincoln Way" + }, + { + "id": "6f4276b5-6c06-460f-998d-0f3251a0b27c", + "name": "Tap It Brewing Co", + "brewery_type": "closed", + "address_1": "675 Clarion Ct Ste 1", + "address_2": null, + "address_3": null, + "city": "San Luis Obispo", + "state_province": "California", + "postal_code": "93401-8178", + "country": "United States", + "longitude": -120.6459687, + "latitude": 35.24427999, + "phone": "8055457702", + "website_url": "http://www.tapitbrewing.com", + "state": "California", + "street": "675 Clarion Ct Ste 1" + }, + { + "id": "6bd4288d-8bb6-4a55-986e-4b5a41d4bc5e", + "name": "Tap on Main Brewing Company", + "brewery_type": "micro", + "address_1": "601A N Main St", + "address_2": null, + "address_3": null, + "city": "Somerset", + "state_province": "Kentucky", + "postal_code": "42501", + "country": "United States", + "longitude": -84.608383, + "latitude": 37.100832, + "phone": "6064511525", + "website_url": "http://www.taponmainst.com", + "state": "Kentucky", + "street": "601A N Main St" + }, + { + "id": "c544e05c-deeb-4010-bf0d-aa10ad178d71", + "name": "Tap Out Craft Beers", + "brewery_type": "brewpub", + "address_1": "103 East Coast Road", + "address_2": null, + "address_3": null, + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "428797", + "country": "Singapore", + "longitude": 1.3059135415297, + "latitude": 103.9043525, + "phone": "+65 8404 9144", + "website_url": "https://tapoutcraftbeers.com/", + "state": "Singapore", + "street": "103 East Coast Road" + }, + { + "id": "a2cff25c-2552-4941-b7da-cd671f81249b", + "name": "Tapistry Brewing Company", + "brewery_type": "micro", + "address_1": "4236 Lake St", + "address_2": null, + "address_3": null, + "city": "Bridgman", + "state_province": "Michigan", + "postal_code": "49106-9109", + "country": "United States", + "longitude": -86.5561575, + "latitude": 41.9427559, + "phone": "2692667349", + "website_url": "http://www.tapistrybrewing.com", + "state": "Michigan", + "street": "4236 Lake St" + }, + { + "id": "0712721c-20c3-4ac4-88d5-8a5b4b56e527", + "name": "Taplands Brewery", + "brewery_type": "brewpub", + "address_1": "1171 Homestead Rd Ste 110", + "address_2": null, + "address_3": null, + "city": "Santa Clara", + "state_province": "California", + "postal_code": "95050-5479", + "country": "United States", + "longitude": -121.9460243, + "latitude": 37.34814789, + "phone": "4087092990", + "website_url": "http://www.taplands.com", + "state": "California", + "street": "1171 Homestead Rd Ste 110" + }, + { + "id": "83368eeb-c75a-4d38-832a-91ab2d501b3d", + "name": "Taproot Brewing Co / Newport Vineyards", + "brewery_type": "micro", + "address_1": "909 E Main Rd", + "address_2": null, + "address_3": null, + "city": "Middletown", + "state_province": "Rhode Island", + "postal_code": "02842-5529", + "country": "United States", + "longitude": -71.2726634, + "latitude": 41.5293214, + "phone": "4018485161", + "website_url": "https://www.taprootbeer.com", + "state": "Rhode Island", + "street": "909 E Main Rd" + }, + { + "id": "ea0ef1dd-af5c-4936-983b-22e5f190baac", + "name": "Taps and Apps", + "brewery_type": "brewpub", + "address_1": "95-1830 Meheula Pkwy Ste C-6", + "address_2": null, + "address_3": null, + "city": "Mililani", + "state_province": "Hawaii", + "postal_code": "96789-6311", + "country": "United States", + "longitude": -158.002414, + "latitude": 21.467355, + "phone": "8086268277", + "website_url": "http://www.tapsandappsbrewpub.com", + "state": "Hawaii", + "street": "95-1830 Meheula Pkwy Ste C-6" + }, + { + "id": "e6308f1f-f1e9-4fcf-8441-d6e789d613a6", + "name": "TAPS Brewery and Barrel Room", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Tustin", + "state_province": "California", + "postal_code": "92780-7302", + "country": "United States", + "longitude": -117.826166, + "latitude": 33.7458511, + "phone": null, + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "8b865b0c-585f-4911-a8db-25a466c3915b", + "name": "TAPS Fish House and Brewery - Brea", + "brewery_type": "brewpub", + "address_1": "101 E Imperial Hwy", + "address_2": null, + "address_3": null, + "city": "Brea", + "state_province": "California", + "postal_code": "92821-4924", + "country": "United States", + "longitude": -117.9018387, + "latitude": 33.9171643, + "phone": "7142570101", + "website_url": "http://www.tapsbrea.com", + "state": "California", + "street": "101 E Imperial Hwy" + }, + { + "id": "cdc715dd-7ca6-40f1-b028-c3f735e393ea", + "name": "TAPS Fish House and Brewery - Corona", + "brewery_type": "brewpub", + "address_1": "2745 Lakeshore Dr", + "address_2": null, + "address_3": null, + "city": "Corona", + "state_province": "California", + "postal_code": "92883-7367", + "country": "United States", + "longitude": -117.5088541, + "latitude": 33.81408315, + "phone": "9512775800", + "website_url": null, + "state": "California", + "street": "2745 Lakeshore Dr" + }, + { + "id": "dba073fb-2feb-4ad4-a654-20d777036e74", + "name": "Tar Barrel Brewery & Distillery", + "brewery_type": "micro", + "address_1": "72 Watt Road", + "address_2": null, + "address_3": null, + "city": "Mornington", + "state_province": "VIC", + "postal_code": "3931", + "country": "Australia", + "longitude": 145.056865, + "latitude": -38.232544, + "phone": "+61 477 378 294", + "website_url": "http://www.tarbarrel.com.au/", + "state": "VIC", + "street": "72 Watt Road" + }, + { + "id": "dbfbb11d-200e-4b5e-95f2-de7205a8aef2", + "name": "Tarantula Hill Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Thousand Oaks", + "state_province": "California", + "postal_code": "91360", + "country": "United States", + "longitude": -118.9105877, + "latitude": 34.17142715, + "phone": "6199951731", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "85314e5d-defb-44cf-9630-55a5bced2268", + "name": "Tarboro Brewing Company", + "brewery_type": "micro", + "address_1": "526 N Main St", + "address_2": null, + "address_3": null, + "city": "Tarboro", + "state_province": "North Carolina", + "postal_code": "27886-4313", + "country": "United States", + "longitude": -77.53557317, + "latitude": 35.89855641, + "phone": "2525636522", + "website_url": "http://www.tarborobrewingcompany.com", + "state": "North Carolina", + "street": "526 N Main St" + }, + { + "id": "d3b95387-babd-45d7-aba2-5e915294af09", + "name": "Tarla Mediterranean Bar and Grill", + "brewery_type": "brewpub", + "address_1": "1480 1st St", + "address_2": null, + "address_3": null, + "city": "Napa", + "state_province": "California", + "postal_code": "94559-2843", + "country": "United States", + "longitude": -122.289765, + "latitude": 38.29719738, + "phone": "7072555599", + "website_url": "http://www.tarlagrill.com", + "state": "California", + "street": "1480 1st St" + }, + { + "id": "623ee5b9-a7a3-4401-86ae-4af68f3c1071", + "name": "Tarpon River Brewing", + "brewery_type": "micro", + "address_1": "280 SW 6th Street", + "address_2": null, + "address_3": null, + "city": "Fort Lauderdale", + "state_province": "Florida", + "postal_code": "33301", + "country": "United States", + "longitude": -80.14595562, + "latitude": 26.11462092, + "phone": "9545334590", + "website_url": "http://www.nativebrewingco.com/index.html", + "state": "Florida", + "street": "280 SW 6th Street" + }, + { + "id": "525e790b-846d-415d-8f33-72c3d854e74d", + "name": "Tasmanian Tonic Company", + "brewery_type": "micro", + "address_1": "263 Kennedy Drive", + "address_2": "2", + "address_3": null, + "city": "Cambridge", + "state_province": "TAS", + "postal_code": "7170", + "country": "Australia", + "longitude": 147.4860666, + "latitude": -42.8312902, + "phone": "+61 432 478 066", + "website_url": "http://www.tasmaniantoniccompany.com.au/", + "state": "TAS", + "street": "263 Kennedy Drive" + }, + { + "id": "1cc7fc9b-908c-4f47-83e7-9b1db04193d4", + "name": "Tattered Flag Brewery", + "brewery_type": "brewpub", + "address_1": "1 S Union St", + "address_2": null, + "address_3": null, + "city": "Middletown", + "state_province": "Pennsylvania", + "postal_code": "17057-1446", + "country": "United States", + "longitude": -76.731309, + "latitude": 40.194934, + "phone": "7176168799", + "website_url": "http://www.tatteredflagbsw.com", + "state": "Pennsylvania", + "street": "1 S Union St" + }, + { + "id": "634bd2d5-223d-482a-a6ca-0e57f25a21ae", + "name": "Tavern Brewery", + "brewery_type": "brewpub", + "address_1": "200 W Lake Dr", + "address_2": null, + "address_3": null, + "city": "Detroit Lakes", + "state_province": "Minnesota", + "postal_code": "56501-3917", + "country": "United States", + "longitude": -95.8477011, + "latitude": 46.8066561, + "phone": "2188471891", + "website_url": null, + "state": "Minnesota", + "street": "200 W Lake Dr" + }, + { + "id": "a3f8cc82-579b-4246-850a-292d9e21703a", + "name": "Taxman Brewing Co", + "brewery_type": "micro", + "address_1": "13 S Baldwin St", + "address_2": null, + "address_3": null, + "city": "Bargersville", + "state_province": "Indiana", + "postal_code": "46106-9089", + "country": "United States", + "longitude": -86.16716199, + "latitude": 39.52148548, + "phone": null, + "website_url": "http://www.taxmanbrewing.com", + "state": "Indiana", + "street": "13 S Baldwin St" + }, + { + "id": "05b1e90b-9aa9-44da-a80e-d1ee2610ba51", + "name": "Taylor Brooke Brewery", + "brewery_type": "micro", + "address_1": "818 Route 171", + "address_2": null, + "address_3": null, + "city": "Woodstock", + "state_province": "Connecticut", + "postal_code": "06281-2930", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8609741263", + "website_url": "https://www.taylorbrookewinery.com", + "state": "Connecticut", + "street": "818 Route 171" + }, + { + "id": "ba4851b3-8034-4347-8f01-9a5183f9b555", + "name": "Taylor House Brewing Co", + "brewery_type": "micro", + "address_1": "76 Lehigh St", + "address_2": null, + "address_3": null, + "city": "Catasauqua", + "state_province": "Pennsylvania", + "postal_code": "18032", + "country": "United States", + "longitude": -75.46805342, + "latitude": 40.64817832, + "phone": null, + "website_url": "http://www.taylorhousebrewing.com", + "state": "Pennsylvania", + "street": "76 Lehigh St" + }, + { + "id": "a65b0d05-2ee4-4b4e-9aa0-3dc6ba18cc2c", + "name": "TBD", + "brewery_type": "micro", + "address_1": "17985 Armada Center Rd", + "address_2": null, + "address_3": null, + "city": "Armada", + "state_province": "Michigan", + "postal_code": "48005-2323", + "country": "United States", + "longitude": -82.95124856, + "latitude": 42.84942455, + "phone": "5869897454", + "website_url": "http://www.blakeshardcider.com", + "state": "Michigan", + "street": "17985 Armada Center Rd" + }, + { + "id": "a60a0bc4-dcdf-4a43-bda3-17b4db6f7291", + "name": "Teachers Lounge Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80210-3349", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3038685142", + "website_url": "http://www.eachersloungebrewing.com", + "state": "Colorado", + "street": null + }, + { + "id": "f63f4c7c-57a6-4e56-b16d-6928e8c08aa0", + "name": "Teays River Brewing", + "brewery_type": "brewpub", + "address_1": "3000 S 9th St Ste A", + "address_2": null, + "address_3": null, + "city": "Lafayette", + "state_province": "Indiana", + "postal_code": "47909-6702", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7657466614", + "website_url": "http://www.teaysriverbrewing.com", + "state": "Indiana", + "street": "3000 S 9th St Ste A" + }, + { + "id": "3bc7477e-6b51-4ec4-9879-106902e23f21", + "name": "Tecumseh Brewing Company", + "brewery_type": "brewpub", + "address_1": "128 W Chicago Blvd", + "address_2": null, + "address_3": null, + "city": "Tecumseh", + "state_province": "Michigan", + "postal_code": "49286-1553", + "country": "United States", + "longitude": -83.946191, + "latitude": 42.004052, + "phone": "5178151726", + "website_url": "http://www.tecumsehbrewingco.com", + "state": "Michigan", + "street": "128 W Chicago Blvd" + }, + { + "id": "538a9de0-db76-4d2e-af6d-8a3db700b6bf", + "name": "Teeccino Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Carpinteria", + "state_province": "California", + "postal_code": "93013-2905", + "country": "United States", + "longitude": -119.5184564, + "latitude": 34.3988838, + "phone": "8059660999", + "website_url": "http://www.teeccino.com", + "state": "California", + "street": null + }, + { + "id": "a0a6eb69-2178-4809-8797-840da743d2e9", + "name": "Tek Mountain Brewing", + "brewery_type": "micro", + "address_1": "1844 Sir Tyler Dr", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "North Carolina", + "postal_code": "28405-8305", + "country": "United States", + "longitude": -77.8239017, + "latitude": 34.24224042, + "phone": "9104705334", + "website_url": "http://www.facebook.com/groups/TekMountainBrewing/", + "state": "North Carolina", + "street": "1844 Sir Tyler Dr" + }, + { + "id": "3bd29102-fc0a-4ce2-bcb6-940df953a00f", + "name": "Telegraph Brewing Co", + "brewery_type": "micro", + "address_1": "418 N Salsipuedes St", + "address_2": null, + "address_3": null, + "city": "Santa Barbara", + "state_province": "California", + "postal_code": "93103-3127", + "country": "United States", + "longitude": -119.6881651, + "latitude": 34.4228601, + "phone": "8059635018", + "website_url": "http://www.telegraphbrewing.com", + "state": "California", + "street": "418 N Salsipuedes St" + }, + { + "id": "efaa1d14-a838-4786-869f-2471ad7c3622", + "name": "Telluride Brewing Co", + "brewery_type": "micro", + "address_1": "156 DEF Society Drive", + "address_2": null, + "address_3": null, + "city": "Telluride", + "state_province": "Colorado", + "postal_code": "81435", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9707285094", + "website_url": "http://www.telluridebrewingco.com", + "state": "Colorado", + "street": "156 DEF Society Drive" + }, + { + "id": "a03588bf-9b7f-4f47-85b9-fc6b36dcb2a4", + "name": "Temblor Brewing Company", + "brewery_type": "brewpub", + "address_1": "3200 Buck Owens Blvd Ste 200", + "address_2": null, + "address_3": null, + "city": "Bakersfield", + "state_province": "California", + "postal_code": "93308-6376", + "country": "United States", + "longitude": -119.043071, + "latitude": 35.3885985, + "phone": "6614894855", + "website_url": "http://www.temblorbrewing.com", + "state": "California", + "street": "3200 Buck Owens Blvd Ste 200" + }, + { + "id": "0d941cc3-decc-49d2-affc-14664b5f3efe", + "name": "Temescal Brewing", + "brewery_type": "micro", + "address_1": "4115 Telegraph Ave", + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94609-2405", + "country": "United States", + "longitude": -122.2645038, + "latitude": 37.8303644, + "phone": "5108995628", + "website_url": "http://www.temescalbrewing.com", + "state": "California", + "street": "4115 Telegraph Ave" + }, + { + "id": "aa8a5d03-6fd0-4b3a-95ed-3f4e2f499b30", + "name": "Temperance Beer Company, LLC", + "brewery_type": "micro", + "address_1": "2000 Dempster St", + "address_2": null, + "address_3": null, + "city": "Evanston", + "state_province": "Illinois", + "postal_code": "60202-1017", + "country": "United States", + "longitude": -87.7013174, + "latitude": 42.040962, + "phone": "8478641000", + "website_url": "http://temperance.beer", + "state": "Illinois", + "street": "2000 Dempster St" + }, + { + "id": "ba1f3a28-30d7-4a1f-bf5f-e1c858d3ef97", + "name": "Temperance Row Brewing and Uptown Deli", + "brewery_type": "brewpub", + "address_1": "41 N State St", + "address_2": null, + "address_3": null, + "city": "Westerville", + "state_province": "Ohio", + "postal_code": "43081-2123", + "country": "United States", + "longitude": -82.92806564, + "latitude": 40.11493135, + "phone": "6148912337", + "website_url": "http://www.uptowndeliandbrew.com", + "state": "Ohio", + "street": "41 N State St" + }, + { + "id": "7ddbad2b-3e2c-4be0-bbc1-8e56fdae20e0", + "name": "Temperate Habits Brewing Company", + "brewery_type": "brewpub", + "address_1": "500 S 1st St", + "address_2": null, + "address_3": null, + "city": "Mount Vernon", + "state_province": "Washington", + "postal_code": "98273-3809", + "country": "United States", + "longitude": -122.337629, + "latitude": 48.419856, + "phone": "3603997740", + "website_url": "https://temperatehabitsbrewing.com/", + "state": "Washington", + "street": "500 S 1st St" + }, + { + "id": "8ed986a5-16ee-48c9-8163-eb5e22b33594", + "name": "Temple Brewing Co", + "brewery_type": "micro", + "address_1": "122 Weston Street", + "address_2": null, + "address_3": null, + "city": "Brunswick East", + "state_province": "VIC", + "postal_code": "3057", + "country": "Australia", + "longitude": 144.9718358, + "latitude": -37.7761377, + "phone": "+61 3 9380 8999", + "website_url": "http://www.templebrewing.com.au/", + "state": "VIC", + "street": "122 Weston Street" + }, + { + "id": "65cd0e8e-5d7d-4304-bf30-a587f29416ff", + "name": "Templin Family Brewing", + "brewery_type": "micro", + "address_1": "936 S 300 W", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84101", + "country": "United States", + "longitude": -111.9000402, + "latitude": 40.7486519, + "phone": "3852705972", + "website_url": "https://tfbrewing.com", + "state": "Utah", + "street": "936 S 300 W" + }, + { + "id": "8d5bb097-d59f-49d0-911a-0af4f63f66a4", + "name": "Ten 10 Brewing Co", + "brewery_type": "brewpub", + "address_1": "1010 Virginia Dr", + "address_2": null, + "address_3": null, + "city": "Orlando", + "state_province": "Florida", + "postal_code": "32803-2532", + "country": "United States", + "longitude": -81.36592044, + "latitude": 28.56397689, + "phone": "4079308993", + "website_url": "http://www.ten10brewingcompany.com", + "state": "Florida", + "street": "1010 Virginia Dr" + }, + { + "id": "b68a7e7e-29fa-427a-a40b-1216a00af829", + "name": "Ten Bends Beer", + "brewery_type": "micro", + "address_1": "590 E Main St", + "address_2": null, + "address_3": null, + "city": "Hyde Park", + "state_province": "Vermont", + "postal_code": "05655-9267", + "country": "United States", + "longitude": -72.60515022, + "latitude": 44.58894694, + "phone": "8025217139", + "website_url": "http://wwwtenbendsbeer.com", + "state": "Vermont", + "street": "590 E Main St" + }, + { + "id": "6ef59986-4d00-46b4-880c-8e202f6f5a7b", + "name": "Ten Fifty Five Brewing", + "brewery_type": "micro", + "address_1": "3810 E 44th St Ste 315", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85713-5474", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5204618073", + "website_url": "http://www.1055brewing.com", + "state": "Arizona", + "street": "3810 E 44th St Ste 315" + }, + { + "id": "f74bf618-77d2-4541-b7c2-de15feebdcac", + "name": "Ten Mile Brewing", + "brewery_type": "micro", + "address_1": "1136 E Willow St", + "address_2": null, + "address_3": null, + "city": "Signal Hill", + "state_province": "California", + "postal_code": "90755-3433", + "country": "United States", + "longitude": -118.1806752, + "latitude": 33.8043697, + "phone": "5626121255", + "website_url": "http://www.tenmilebrewing.com", + "state": "California", + "street": "1136 E Willow St" + }, + { + "id": "af5797f0-c4ab-4b52-972e-eb2b4cd90fe5", + "name": "Ten Mile Creek Brewery", + "brewery_type": "micro", + "address_1": "48 N Last Chance Gulch", + "address_2": null, + "address_3": null, + "city": "Helena", + "state_province": "Montana", + "postal_code": "59601-4122", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4065021382", + "website_url": "http://www.tenmilecreekbrewing.com", + "state": "Montana", + "street": "48 N Last Chance Gulch" + }, + { + "id": "a5abe2bb-a5cb-4994-8dde-05188906b960", + "name": "Ten Ninety Brewing Co", + "brewery_type": "micro", + "address_1": "1025 Waukegan Rd", + "address_2": null, + "address_3": null, + "city": "Glenview", + "state_province": "Illinois", + "postal_code": "60025", + "country": "United States", + "longitude": -87.7996254, + "latitude": 42.0589281, + "phone": null, + "website_url": "http://www.ten-ninety.com", + "state": "Illinois", + "street": "1025 Waukegan Rd" + }, + { + "id": "fa334932-528c-409e-90a5-95526983fa2f", + "name": "Ten Pin Brewing - Production Facility", + "brewery_type": "micro", + "address_1": "1149 N Stratford Rd", + "address_2": null, + "address_3": null, + "city": "Moses Lake", + "state_province": "Washington", + "postal_code": "98837-1514", + "country": "United States", + "longitude": -119.2781737, + "latitude": 47.14487355, + "phone": "5097662739", + "website_url": "http://www.tenpinbrewing.com", + "state": "Washington", + "street": "1149 N Stratford Rd" + }, + { + "id": "e91e512e-1190-41d2-94bd-2750ae80bc03", + "name": "Ten Pin Brewing Co", + "brewery_type": "brewpub", + "address_1": "1165 N Stratford Rd", + "address_2": null, + "address_3": null, + "city": "Moses Lake", + "state_province": "Washington", + "postal_code": "98837-1514", + "country": "United States", + "longitude": -119.2781699, + "latitude": 47.14506441, + "phone": "5097651265", + "website_url": "http://www.tenpinbrewing.com", + "state": "Washington", + "street": "1165 N Stratford Rd" + }, + { + "id": "cc7e5d45-012e-45b6-8360-b1db2ddf8ada", + "name": "Ten Sleep Brewing Company", + "brewery_type": "micro", + "address_1": "2549 Hwy 16", + "address_2": null, + "address_3": null, + "city": "Ten Sleep", + "state_province": "Wyoming", + "postal_code": "82442", + "country": "United States", + "longitude": -107.46931490017, + "latitude": 44.029934964157, + "phone": "3073662074", + "website_url": "http://www.tensleepbrewingco.com", + "state": "Wyoming", + "street": "2549 Hwy 16" + }, + { + "id": "86918223-e1ea-49a1-89a5-86ba31c4c93a", + "name": "Tenacious Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92101", + "country": "United States", + "longitude": -117.1627714, + "latitude": 32.7174209, + "phone": null, + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "00a78d20-3da2-4f63-9270-44b4722f4883", + "name": "Tenacity Brewing", + "brewery_type": "micro", + "address_1": "119 N Grand Traverse St", + "address_2": null, + "address_3": null, + "city": "Flint", + "state_province": "Michigan", + "postal_code": "48503-5620", + "country": "United States", + "longitude": -83.69663179, + "latitude": 43.01522788, + "phone": "8103396676", + "website_url": "http://www.tenacitybrewing.com", + "state": "Michigan", + "street": "119 N Grand Traverse St" + }, + { + "id": "a8502efc-8b0d-4af4-bfed-39cf4c829fea", + "name": "Tenaya Creek Brewery", + "brewery_type": "micro", + "address_1": "831 W Bonanza Rd", + "address_2": null, + "address_3": null, + "city": "Las Vegas", + "state_province": "Nevada", + "postal_code": "89106-3526", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7023627335", + "website_url": "http://www.tenayacreek.com", + "state": "Nevada", + "street": "831 W Bonanza Rd" + }, + { + "id": "a7929906-12e8-4f50-b527-cdccbea3fb42", + "name": "TenEyck Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Queenstown", + "state_province": "Maryland", + "postal_code": "21658-1386", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8134777249", + "website_url": null, + "state": "Maryland", + "street": null + }, + { + "id": "d3677b62-c50b-41c3-8898-ba01125c45f3", + "name": "Tennessee Brew Works", + "brewery_type": "micro", + "address_1": "809 Ewing Ave", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37203-4631", + "country": "United States", + "longitude": -86.7762132, + "latitude": 36.1503752, + "phone": "6154360050", + "website_url": "http://www.tnbrew.com", + "state": "Tennessee", + "street": "809 Ewing Ave" + }, + { + "id": "edce297b-c335-4670-8d96-073c26111d12", + "name": "Tennessee Valley Brewing Company", + "brewery_type": "micro", + "address_1": "2088 Lowes Dr Ste H", + "address_2": null, + "address_3": null, + "city": "Clarksville", + "state_province": "Tennessee", + "postal_code": "37040-1635", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9312411040", + "website_url": "http://www.tnvalleybrewing.com", + "state": "Tennessee", + "street": "2088 Lowes Dr Ste H" + }, + { + "id": "126014af-a68f-4146-bc98-267abda9a40f", + "name": "Tent City Beer Company", + "brewery_type": "micro", + "address_1": "6760 El Camino Real", + "address_2": null, + "address_3": null, + "city": "Atascadero", + "state_province": "California", + "postal_code": "93422-4205", + "country": "United States", + "longitude": -120.66767, + "latitude": 35.487726, + "phone": "8054606454", + "website_url": "http://www.tentcitybeer.com", + "state": "California", + "street": "6760 El Camino Real" + }, + { + "id": "c5ddef5e-2664-4f02-b59b-d37f00967414", + "name": "Tequesta Brewing Co", + "brewery_type": "micro", + "address_1": "287 S US Highway 1", + "address_2": null, + "address_3": null, + "city": "Tequesta", + "state_province": "Florida", + "postal_code": "33469-2701", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5617455000", + "website_url": "http://www.tequestabrewing.com", + "state": "Florida", + "street": "287 S US Highway 1" + }, + { + "id": "503b8d78-7c18-4a3d-b594-85e562cd2104", + "name": "Terella Brewing", + "brewery_type": "micro", + "address_1": "196 Bunya Road", + "address_2": null, + "address_3": null, + "city": "North Arm", + "state_province": "QLD", + "postal_code": "4561", + "country": "Australia", + "longitude": 152.9495316, + "latitude": -26.5247936, + "phone": "+61 492 929 357", + "website_url": "https://www.terellabrewing.com.au/", + "state": "QLD", + "street": "196 Bunya Road" + }, + { + "id": "fffae80b-1654-4d69-95ad-7a349e246db0", + "name": "Terminal Brewhouse, The", + "brewery_type": "brewpub", + "address_1": "1464 Market St", + "address_2": null, + "address_3": null, + "city": "Chattanooga", + "state_province": "Tennessee", + "postal_code": "37402-4448", + "country": "United States", + "longitude": -85.30723077, + "latitude": 35.03644493, + "phone": "4237528090", + "website_url": "http://www.terminalbrewhouse.com", + "state": "Tennessee", + "street": "1464 Market St" + }, + { + "id": "10d1743f-5e4f-43b8-bd0c-11d0cd5e719c", + "name": "Terminal Gravity Brewing Co", + "brewery_type": "micro", + "address_1": "803 SE School St", + "address_2": null, + "address_3": null, + "city": "Enterprise", + "state_province": "Oregon", + "postal_code": "97828-1674", + "country": "United States", + "longitude": -117.2713718, + "latitude": 45.4187654, + "phone": "5414260158", + "website_url": "http://www.terminalgravitybrewing.com", + "state": "Oregon", + "street": "803 SE School St" + }, + { + "id": "0d82e30e-9eb0-4f5f-8615-436007d38e3e", + "name": "Terramar Brewstillery", + "brewery_type": "micro", + "address_1": "5712 Gilkey Ave", + "address_2": null, + "address_3": null, + "city": "Bow", + "state_province": "Washington", + "postal_code": "98232-9353", + "country": "United States", + "longitude": -122.443599, + "latitude": 48.564097, + "phone": "3603996222", + "website_url": "http://terramarcraft.com", + "state": "Washington", + "street": "5712 Gilkey Ave" + }, + { + "id": "21c0cd50-3ad8-4525-8085-1ed7a9e378ad", + "name": "Terrapin Beer Co", + "brewery_type": "large", + "address_1": "265 Newton Bridge Rd", + "address_2": null, + "address_3": null, + "city": "Athens", + "state_province": "Georgia", + "postal_code": "30607-1145", + "country": "United States", + "longitude": -83.39779284, + "latitude": 33.9885289, + "phone": "7065493377", + "website_url": "http://www.terrapinbeer.com", + "state": "Georgia", + "street": "265 Newton Bridge Rd" + }, + { + "id": "34400740-8da8-4c22-bf6f-9f4fe675a43c", + "name": "Terre Haute Brewing Company", + "brewery_type": "brewpub", + "address_1": "401 S 9th St", + "address_2": null, + "address_3": null, + "city": "Terre Haute", + "state_province": "Indiana", + "postal_code": "47807-4417", + "country": "United States", + "longitude": -87.404517, + "latitude": 39.462286, + "phone": "8128143071", + "website_url": "http://www.terrehautebrewingcompany.com", + "state": "Indiana", + "street": "401 S 9th St" + }, + { + "id": "7000641c-5ae1-4c4e-9c82-8b18d7a12660", + "name": "Terrestrial Brewing Company", + "brewery_type": "micro", + "address_1": "7524 Father Frascati Dr", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44102-2087", + "country": "United States", + "longitude": -81.7361552, + "latitude": 41.4869219, + "phone": "2164659999", + "website_url": null, + "state": "Ohio", + "street": "7524 Father Frascati Dr" + }, + { + "id": "2c7a936f-eed9-48b4-9f00-7309dd34277c", + "name": "Territorial Brewing Company", + "brewery_type": "brewpub", + "address_1": "256 Helmer Rd N", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Michigan", + "postal_code": "49037-7914", + "country": "United States", + "longitude": -85.23565712, + "latitude": 42.3151618, + "phone": "2692821694", + "website_url": "http://www.territorialbrewing.com", + "state": "Michigan", + "street": "256 Helmer Rd N" + }, + { + "id": "9dcd48bb-9b48-498a-ada4-91d77cfef610", + "name": "Territorial Brewing Company Production Facility", + "brewery_type": "micro", + "address_1": "2815 6th Ave", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Michigan", + "postal_code": "49037-7986", + "country": "United States", + "longitude": -85.22954317, + "latitude": 42.31466956, + "phone": "2694410030", + "website_url": null, + "state": "Michigan", + "street": "2815 6th Ave" + }, + { + "id": "84d2bd86-eaec-49d4-b4b8-8076e4905e01", + "name": "Texas Ale Project", + "brewery_type": "micro", + "address_1": "1001 N Riverfront Blvd", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75207-4201", + "country": "United States", + "longitude": -96.8148593, + "latitude": 32.7818812, + "phone": "2149650606", + "website_url": "http://www.texasaleproject.com", + "state": "Texas", + "street": "1001 N Riverfront Blvd" + }, + { + "id": "271219df-fb1a-4947-953b-056c59afda19", + "name": "Texas Beer Company", + "brewery_type": "micro", + "address_1": "1331 W 2nd St", + "address_2": null, + "address_3": null, + "city": "Taylor", + "state_province": "Texas", + "postal_code": "76574-2434", + "country": "United States", + "longitude": -97.42424416, + "latitude": 30.56782579, + "phone": "5122897460", + "website_url": "http://www.texasbeerco.com", + "state": "Texas", + "street": "1331 W 2nd St" + }, + { + "id": "a2e6a255-50ee-4c54-9746-85c186d7bacf", + "name": "Texas Beer Company", + "brewery_type": "micro", + "address_1": "201 N Main St", + "address_2": null, + "address_3": null, + "city": "Taylor", + "state_province": "Texas", + "postal_code": "76574", + "country": "United States", + "longitude": -97.409585, + "latitude": 30.568804, + "phone": "5124666939", + "website_url": null, + "state": "Texas", + "street": "201 N Main St" + }, + { + "id": "34ea89cc-a9a9-4435-8bec-a3a26bc4de2a", + "name": "Texas Beer Refinery", + "brewery_type": "micro", + "address_1": "1825 Dickinson Ave Unit B", + "address_2": null, + "address_3": null, + "city": "Dickinson", + "state_province": "Texas", + "postal_code": "77539-7799", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8327791221", + "website_url": "http://www.texasbeerrefinery.com", + "state": "Texas", + "street": "1825 Dickinson Ave Unit B" + }, + { + "id": "eb50673e-fea6-4b57-b295-0654561eb908", + "name": "Texas Corners Brewing Company", + "brewery_type": "brewpub", + "address_1": "6970 Texas Dr", + "address_2": null, + "address_3": null, + "city": "Kalamazoo", + "state_province": "Michigan", + "postal_code": "49009-9795", + "country": "United States", + "longitude": -85.6486336, + "latitude": 42.2300087, + "phone": "2698707724", + "website_url": "http://www.texascornersbrewing.com", + "state": "Michigan", + "street": "6970 Texas Dr" + }, + { + "id": "505134f2-092b-4275-a96e-d26953c00b4e", + "name": "Texas Leaguer Brewing Company", + "brewery_type": "micro", + "address_1": "13503 Pike Rd", + "address_2": null, + "address_3": null, + "city": "Missouri City", + "state_province": "Texas", + "postal_code": "77489-1033", + "country": "United States", + "longitude": -95.5480643, + "latitude": 29.627854, + "phone": "8328959000", + "website_url": "http://www.txleaguer.com", + "state": "Texas", + "street": "13503 Pike Rd" + }, + { + "id": "f3e387ba-a709-4788-8be7-40544b60d002", + "name": "THAT Brewery - Cottonwood", + "brewery_type": "micro", + "address_1": "300 E Cherry St Unit B", + "address_2": null, + "address_3": null, + "city": "Cottonwood", + "state_province": "Arizona", + "postal_code": "86326-6178", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9282023013", + "website_url": "http://www.thatbrewery.com", + "state": "Arizona", + "street": "300 E Cherry St Unit B" + }, + { + "id": "3d20ed64-08b1-4d6e-ab7b-556365e66c3f", + "name": "THAT Brewery & Pub - Pine", + "brewery_type": "brewpub", + "address_1": "3270 N Az Highway 87", + "address_2": null, + "address_3": null, + "city": "Pine", + "state_province": "Arizona", + "postal_code": "85544-5036", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9284763349", + "website_url": "http://www.thatbrewery.com", + "state": "Arizona", + "street": "3270 N Az Highway 87" + }, + { + "id": "4de986cb-9905-47ab-8464-a87197953cec", + "name": "That Brewing Company", + "brewery_type": "micro", + "address_1": "38 rapid waters road", + "address_2": " riverside business park", + "address_3": null, + "city": "Durban", + "state_province": "KwaZulu-Natal", + "postal_code": "4051", + "country": "South Africa", + "longitude": 31.0206, + "latitude": -29.7912, + "phone": "+27 31 569 3132", + "website_url": "https://thatbrewingco.co.za/", + "state": "KwaZulu-Natal", + "street": "38 rapid waters road" + }, + { + "id": "84dcf5e8-221e-4bc1-bc7a-fb9fdc122797", + "name": "The 1648 Brewing Co Ltd", + "brewery_type": "micro", + "address_1": "Mill Lane", + "address_2": "East Hoathly", + "address_3": null, + "city": "Lewes", + "state_province": "East Sussex", + "postal_code": "BN8 6QB", + "country": "England", + "longitude": -0.02828, + "latitude": 50.93968, + "phone": "1825840830", + "website_url": "http://www.1648brewing.co.uk/", + "state": "East Sussex", + "street": "Mill Lane" + }, + { + "id": "5d90a63a-6a22-430e-a403-ecfd5f041f16", + "name": "The 377 Brewery", + "brewery_type": "micro", + "address_1": "2027 Yale Blvd SE", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87106-4139", + "country": "United States", + "longitude": -106.6219267, + "latitude": 35.0561133, + "phone": "5052503388", + "website_url": "http://www.the377.com", + "state": "New Mexico", + "street": "2027 Yale Blvd SE" + }, + { + "id": "964e02eb-eda8-45e4-a21c-cd679757dbfc", + "name": "The Address Brewing / 1702 Beer & Pizza", + "brewery_type": "micro", + "address_1": "1702 E Speedway Blvd", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85719-4515", + "country": "United States", + "longitude": -110.9465853, + "latitude": 32.23567665, + "phone": "5203251702", + "website_url": "http://www.1702az.com", + "state": "Arizona", + "street": "1702 E Speedway Blvd" + }, + { + "id": "b9ebbd2a-eab4-4986-8e95-92cfe1662a17", + "name": "The Albert Brewery", + "brewery_type": "micro", + "address_1": "73-75 Albert Road", + "address_2": null, + "address_3": null, + "city": "Moonah", + "state_province": "TAS", + "postal_code": "7009", + "country": "Australia", + "longitude": 147.3005285, + "latitude": -42.8482116, + "phone": "+61 423 398 983", + "website_url": "http://thealbertbrewery.com.au/", + "state": "TAS", + "street": "73-75 Albert Road" + }, + { + "id": "9097584b-ecb6-4f1a-b2b7-1b38123eb478", + "name": "The Ale Apothecary", + "brewery_type": "micro", + "address_1": "30 SW Century Drive Suite 140", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97702", + "country": "United States", + "longitude": -121.3314277, + "latitude": 44.05140622, + "phone": "5414081525", + "website_url": "http://www.thealeapothecary.com", + "state": "Oregon", + "street": "30 SW Century Drive Suite 140" + }, + { + "id": "65a3a0bc-ba55-4e9b-930d-dd98eeea3f3d", + "name": "The Alementary", + "brewery_type": "micro", + "address_1": "58 Voorhis Ln", + "address_2": null, + "address_3": null, + "city": "Hackensack", + "state_province": "New Jersey", + "postal_code": "07601-4820", + "country": "United States", + "longitude": -74.0400401, + "latitude": 40.90460655, + "phone": "2019681290", + "website_url": "http://www.alementary.com", + "state": "New Jersey", + "street": "58 Voorhis Ln" + }, + { + "id": "ffe46b43-ebe3-4102-a3d2-4110fe1752a7", + "name": "The Amelia Tavern", + "brewery_type": "brewpub", + "address_1": "318 Centre St", + "address_2": null, + "address_3": null, + "city": "Fernandina Beach", + "state_province": "Florida", + "postal_code": "32034-4241", + "country": "United States", + "longitude": -81.46236272, + "latitude": 30.67106045, + "phone": "9043106088", + "website_url": "http://www.TheAmeliaTavern.com", + "state": "Florida", + "street": "318 Centre St" + }, + { + "id": "e7c79215-daf5-46b7-8013-2e1088496ee8", + "name": "The Angry Swede Brewing Company", + "brewery_type": "micro", + "address_1": "513 Francis St", + "address_2": null, + "address_3": null, + "city": "St Joseph", + "state_province": "Missouri", + "postal_code": "64501", + "country": "United States", + "longitude": -94.867977, + "latitude": 39.808641, + "phone": "8166174038", + "website_url": null, + "state": "Missouri", + "street": "513 Francis St" + }, + { + "id": "0bd870c5-c24f-4d98-8bfc-795c17ebfeb0", + "name": "The Answer Brewpub", + "brewery_type": "brewpub", + "address_1": "6008 W Broad St", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23230-2222", + "country": "United States", + "longitude": -77.5070979, + "latitude": 37.5931962, + "phone": "8042821248", + "website_url": "http://www.theanswerbrewpub.com", + "state": "Virginia", + "street": "6008 W Broad St" + }, + { + "id": "89edb92f-550b-4b68-a503-b583d3dcba8f", + "name": "The Austin Beer Garden Brewing Co", + "brewery_type": "brewpub", + "address_1": "1305 W Oltorf St Ste B", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78704-5362", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": "1305 W Oltorf St Ste B" + }, + { + "id": "f0c74a4a-7f80-4b93-b6c8-6b261c30e222", + "name": "The Bakers' Brewery", + "brewery_type": "brewpub", + "address_1": "531 Silverthorne Ln", + "address_2": null, + "address_3": null, + "city": "Silverthorne", + "state_province": "Colorado", + "postal_code": "80498", + "country": "United States", + "longitude": -106.0672002, + "latitude": 39.62976193, + "phone": "9704680170", + "website_url": "http://www.thebakersbrewery.com", + "state": "Colorado", + "street": "531 Silverthorne Ln" + }, + { + "id": "f4fecb5f-3385-48ae-947c-d4296389bc96", + "name": "The Barley House Brewing Company LLC", + "brewery_type": "brewpub", + "address_1": "8399 Sharon Mercer Rd", + "address_2": null, + "address_3": null, + "city": "Mercer", + "state_province": "Pennsylvania", + "postal_code": "16137", + "country": "United States", + "longitude": -80.265315, + "latitude": 41.225933, + "phone": "7242697837", + "website_url": "http://www.barleyhousebrewing.com", + "state": "Pennsylvania", + "street": "8399 Sharon Mercer Rd" + }, + { + "id": "27853f3a-ed0f-48d9-bce7-4bc73989d658", + "name": "The Beak Brewery Limited", + "brewery_type": "taproom", + "address_1": "South Street", + "address_2": null, + "address_3": null, + "city": "Lewes", + "state_province": "East Sussex", + "postal_code": "BN8 6JL", + "country": "England", + "longitude": 0.024917, + "latitude": 50.868313, + "phone": "1273473094", + "website_url": "https://beakbrewery.com/", + "state": "East Sussex", + "street": "South Street" + }, + { + "id": "c78c54d8-ef9a-417c-838e-548e5a4d0f4f", + "name": "The Bear And Peacock", + "brewery_type": "micro", + "address_1": "1288 Orange Ave", + "address_2": null, + "address_3": null, + "city": "Winter Park", + "state_province": "Florida", + "postal_code": "32789-4940", + "country": "United States", + "longitude": -81.3566559, + "latitude": 28.5929429, + "phone": "4078012714", + "website_url": "http://www.thebearandpeacock.com", + "state": "Florida", + "street": "1288 Orange Ave" + }, + { + "id": "501931a5-0055-452f-b2a4-c1d8ec9c9a17", + "name": "The Beer Diviner", + "brewery_type": "micro", + "address_1": "243 Bly Hollow Rd", + "address_2": null, + "address_3": null, + "city": "Petersburg", + "state_province": "New York", + "postal_code": "12040", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5182106196", + "website_url": "http://www.thebeerdiviner.com", + "state": "New York", + "street": "243 Bly Hollow Rd" + }, + { + "id": "a2515bf8-f823-45a8-a3b3-eb94815218ee", + "name": "The Beer'd Brewing Company", + "brewery_type": "micro", + "address_1": "22 Bayview Ave Ste 15", + "address_2": null, + "address_3": null, + "city": "Stonington", + "state_province": "Connecticut", + "postal_code": "06378-1143", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8602139307", + "website_url": "http://www.beerdbrewing.com", + "state": "Connecticut", + "street": "22 Bayview Ave Ste 15" + }, + { + "id": "a31979ec-6440-4be9-bfdc-1d274c5e8cee", + "name": "The Bell Marker", + "brewery_type": "brewpub", + "address_1": "602 Broadway Ste 101", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92101-5449", + "country": "United States", + "longitude": -117.0763473, + "latitude": 32.597261, + "phone": null, + "website_url": "http://www.thebellmarker.com", + "state": "California", + "street": "602 Broadway Ste 101" + }, + { + "id": "5cd9906b-f553-4313-b5fb-32b307bbb820", + "name": "The Berghoff Brewery Inc.", + "brewery_type": "contract", + "address_1": "1730 W Superior St Apt 3W", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60622-5639", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6083584992", + "website_url": "http://www.berghoffbeer.com", + "state": "Illinois", + "street": "1730 W Superior St Apt 3W" + }, + { + "id": "0ba3f3ba-fd0d-4328-8932-664701461504", + "name": "The Berghoff Restaurant", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60603-5502", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3126176283", + "website_url": "http://www.berghoff.com", + "state": "Illinois", + "street": null + }, + { + "id": "85bbe1ad-ae05-4487-919e-59a15370ffa9", + "name": "The Best Of Hands Barrelhouse", + "brewery_type": "closed", + "address_1": "7500 35th Ave SW", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98126-3228", + "country": "United States", + "longitude": -122.3763338731, + "latitude": 47.535586195503, + "phone": "2067081166", + "website_url": "http://www.bestofhandsbarrelhouse.com", + "state": "Washington", + "street": "7500 35th Ave SW" + }, + { + "id": "494f6cf6-7e51-4087-8abe-fcf6960d8025", + "name": "The Black Abbey Brewing Company", + "brewery_type": "micro", + "address_1": "2952 Sidco Dr Ste 211", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37204-3710", + "country": "United States", + "longitude": -86.755903, + "latitude": 36.10481686, + "phone": "6157550070", + "website_url": "http://www.blackabbeybrewing.com", + "state": "Tennessee", + "street": "2952 Sidco Dr Ste 211" + }, + { + "id": "59cfe7a7-cbc9-416b-a54e-fdae2591266b", + "name": "The Blue Grasshopper Brew Pub", + "brewery_type": "brewpub", + "address_1": "4500 Arrowhead Ridge Dr SE", + "address_2": null, + "address_3": null, + "city": "Rio Rancho", + "state_province": "New Mexico", + "postal_code": "87124-5986", + "country": "United States", + "longitude": -106.648789, + "latitude": 35.254421, + "phone": "5058968579", + "website_url": "http://www.bghnm.com", + "state": "New Mexico", + "street": "4500 Arrowhead Ridge Dr SE" + }, + { + "id": "3141c2ff-c808-4ef7-a8bf-77abe27fda02", + "name": "The Blue Heron Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Hinckley", + "state_province": "Ohio", + "postal_code": "44233", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.bookblueheron.com", + "state": "Ohio", + "street": null + }, + { + "id": "6bbcccba-e7c3-45f4-9ce1-26adf05b50d5", + "name": "The Blue Onion Brewpub", + "brewery_type": "brewpub", + "address_1": "423 S International Blvd", + "address_2": null, + "address_3": null, + "city": "Weslaco", + "state_province": "Texas", + "postal_code": "78596-9114", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9564470067", + "website_url": "http://www.myblueonion.com", + "state": "Texas", + "street": "423 S International Blvd" + }, + { + "id": "0362e61c-eec8-4420-8c1a-406131162923", + "name": "The Blue Poppy Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Yorba Linda", + "state_province": "California", + "postal_code": "92886-7300", + "country": "United States", + "longitude": -117.8249705, + "latitude": 33.8901096, + "phone": null, + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "491c8c8d-594c-4b82-b3bc-2caab02068a4", + "name": "The Boathouse Beer Co and Boozery", + "brewery_type": "brewpub", + "address_1": "450 W Lake St", + "address_2": null, + "address_3": null, + "city": "Tawas City", + "state_province": "Michigan", + "postal_code": "48763-8320", + "country": "United States", + "longitude": -83.5169024, + "latitude": 44.26826378, + "phone": "9899845233", + "website_url": "http://www.boathousebeerco.com", + "state": "Michigan", + "street": "450 W Lake St" + }, + { + "id": "14bbd16f-2874-46d2-8762-6bbde9003183", + "name": "The Boiler Room Brewhaus LLC", + "brewery_type": "micro", + "address_1": "10 S National Ave", + "address_2": null, + "address_3": null, + "city": "Fort Scott", + "state_province": "Kansas", + "postal_code": "66701-1311", + "country": "United States", + "longitude": -94.70741825, + "latitude": 37.84103842, + "phone": "6202232702", + "website_url": "http://www.Boileroombrewhaus.com", + "state": "Kansas", + "street": "10 S National Ave" + }, + { + "id": "27313516-7956-4f46-88cb-c87317331608", + "name": "The Bold Mariner Brewing Company", + "brewery_type": "micro", + "address_1": "2409 Bowdens Ferry Rd", + "address_2": null, + "address_3": null, + "city": "Norfolk", + "state_province": "Virginia", + "postal_code": "23508-2450", + "country": "United States", + "longitude": -76.30542793, + "latitude": 36.87609575, + "phone": null, + "website_url": "http://www.boldmariner.com", + "state": "Virginia", + "street": "2409 Bowdens Ferry Rd" + }, + { + "id": "b63aeed7-e265-499e-9110-788086d627ff", + "name": "The Bondi Brewing Co.", + "brewery_type": "micro", + "address_1": "206 Hastings Parade", + "address_2": "Unit 5", + "address_3": null, + "city": "North Bondi", + "state_province": "NSW", + "postal_code": "2026", + "country": "Australia", + "longitude": 151.2853625, + "latitude": -33.8918849, + "phone": "+61 439 608 385", + "website_url": "http://www.bondi.beer/", + "state": "NSW", + "street": "206 Hastings Parade" + }, + { + "id": "eb167d69-3606-463a-bb33-99ac50f94bbf", + "name": "The Booth Brewing Co.", + "brewery_type": "micro", + "address_1": "123 W 3rd St", + "address_2": null, + "address_3": null, + "city": "Eureka", + "state_province": "California", + "postal_code": "95501-0222", + "country": "United States", + "longitude": -124.1743072, + "latitude": 40.80226985, + "phone": "7075725728", + "website_url": "http://www.theboothbrewing.com", + "state": "California", + "street": "123 W 3rd St" + }, + { + "id": "609ff65b-c360-4866-be7c-8ae0f56dc818", + "name": "The BottleHouse Brewery And Meadery", + "brewery_type": "micro", + "address_1": "2050 Lee Rd", + "address_2": null, + "address_3": null, + "city": "Cleveland Heights", + "state_province": "Ohio", + "postal_code": "44118-2557", + "country": "United States", + "longitude": -81.5658351, + "latitude": 41.503726, + "phone": "2162142120", + "website_url": "http://www.thebottlehousebrewingcompany.com", + "state": "Ohio", + "street": "2050 Lee Rd" + }, + { + "id": "0d0e109d-9d2b-4ada-b823-00026df3a5e8", + "name": "The Brew Brothers / Scioto Downs Racino", + "brewery_type": "brewpub", + "address_1": "6000 S. High Street", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43207", + "country": "United States", + "longitude": -82.995426, + "latitude": 39.922819, + "phone": "614-295-4675", + "website_url": "https://www.sciotodowns.com/venue/restaurants/brew-brothers?utm_source=gmb&utm_medium=brew%20brothers", + "state": "Ohio", + "street": "6000 S. High Street" + }, + { + "id": "021d289b-c290-4792-a688-633c2fcbe626", + "name": "The Brew Brothers/Eldorado Hotel and Casino", + "brewery_type": "brewpub", + "address_1": "345 N Virginia St", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89501-1136", + "country": "United States", + "longitude": -119.8164176, + "latitude": 39.5367577, + "phone": "7757865700", + "website_url": "http://www.eldoradoresorts.com", + "state": "Nevada", + "street": "345 N Virginia St" + }, + { + "id": "b40519e8-a25b-4443-828f-8082a3a31ba3", + "name": "The Brew Kettle, Taproom and Smokehouse", + "brewery_type": "brewpub", + "address_1": "8377 Pearl Rd", + "address_2": null, + "address_3": null, + "city": "Strongsville", + "state_province": "Ohio", + "postal_code": "44136-1637", + "country": "United States", + "longitude": -81.8224061, + "latitude": 41.3471323, + "phone": "4402398788", + "website_url": "http://www.thebrewkettle.com", + "state": "Ohio", + "street": "8377 Pearl Rd" + }, + { + "id": "a38fc148-8e8e-4e22-84d2-d67be494a013", + "name": "The Brew Mentor", + "brewery_type": "micro", + "address_1": "9528 Diamond Centre Dr", + "address_2": null, + "address_3": null, + "city": "Mentor", + "state_province": "Ohio", + "postal_code": "44060-1876", + "country": "United States", + "longitude": -81.30001012, + "latitude": 41.71468462, + "phone": "4409512739", + "website_url": "http://www.thebrewmentor.com", + "state": "Ohio", + "street": "9528 Diamond Centre Dr" + }, + { + "id": "1ab10b5b-580b-489d-bd88-30680ab16001", + "name": "The Brew On Broadway (The BoB)", + "brewery_type": "micro", + "address_1": "3445 S Broadway", + "address_2": null, + "address_3": null, + "city": "Englewood", + "state_province": "Colorado", + "postal_code": "80113-2528", + "country": "United States", + "longitude": -104.98772, + "latitude": 39.65416792, + "phone": "3037815665", + "website_url": "http://www.thebrewonbroadway.com", + "state": "Colorado", + "street": "3445 S Broadway" + }, + { + "id": "f81bd42b-4d02-42e4-b298-4329ff834d6e", + "name": "The Brewer's Art / Old Line Brewery LLC", + "brewery_type": "brewpub", + "address_1": "1106 N Charles St", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21201-5557", + "country": "United States", + "longitude": -76.6146068, + "latitude": 39.303716, + "phone": null, + "website_url": "http://www.thebrewersart.com", + "state": "Maryland", + "street": "1106 N Charles St" + }, + { + "id": "80d67009-9e36-46d8-ae11-c35fb9842c0d", + "name": "The Brewer's Cabinet", + "brewery_type": "micro", + "address_1": "475 S Arlington Ave Ste 1C", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89501-2099", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7753487481", + "website_url": "http://www.thebrewerscabinet.com", + "state": "Nevada", + "street": "475 S Arlington Ave Ste 1C" + }, + { + "id": "3e4ab49b-b18d-4c12-bbe7-81c213b4b44f", + "name": "The Brewer's Table", + "brewery_type": "micro", + "address_1": "4715 E 5th St", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78702-5033", + "country": "United States", + "longitude": -97.7043433, + "latitude": 30.2529441, + "phone": "5126199569", + "website_url": "http://www.caskandcoal.com", + "state": "Texas", + "street": "4715 E 5th St" + }, + { + "id": "c3c643f4-c7a0-4fbc-9e53-952dbecb228e", + "name": "The Brewers Collective", + "brewery_type": "micro", + "address_1": "1460 N Clinton Ave Unit N", + "address_2": null, + "address_3": null, + "city": "Bay Shore", + "state_province": "New York", + "postal_code": "11706-4058", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6316659000", + "website_url": "http://www.thebrewerscollective.com", + "state": "New York", + "street": "1460 N Clinton Ave Unit N" + }, + { + "id": "91037e0d-5b3d-4355-8f0c-f7f7a1878a17", + "name": "The Brewers of Nye Hill Farm", + "brewery_type": "micro", + "address_1": "250 Middletown Rd", + "address_2": null, + "address_3": null, + "city": "Roxbury", + "state_province": "New Hampshire", + "postal_code": "03431-8705", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6037623110", + "website_url": "http://nyehillbrewers.com/", + "state": "New Hampshire", + "street": "250 Middletown Rd" + }, + { + "id": "256c1dde-edc3-4f0c-9777-cbf2a5baa404", + "name": "The Brewery & Two Goats Deli", + "brewery_type": "brewpub", + "address_1": "23 Hudson Street", + "address_2": null, + "address_3": null, + "city": "Nieu-Bethesda", + "state_province": "Eastern Cape", + "postal_code": "6286", + "country": "South Africa", + "longitude": 24.5544, + "latitude": -31.8679, + "phone": "+27 49 841 1602", + "website_url": null, + "state": "Eastern Cape", + "street": "23 Hudson Street" + }, + { + "id": "362dfc1d-37c8-414e-8a10-4908793c8b28", + "name": "The Brewery At Bacchus", + "brewery_type": "brewpub", + "address_1": "4 S Chestnut St", + "address_2": null, + "address_3": null, + "city": "New Paltz", + "state_province": "New York", + "postal_code": "12561-1902", + "country": "United States", + "longitude": -74.0867508, + "latitude": 41.7472558, + "phone": "8452558636", + "website_url": "http://www.bacchusnewpaltz.com", + "state": "New York", + "street": "4 S Chestnut St" + }, + { + "id": "819a5d53-05f9-4356-9ff0-0dbe579b1910", + "name": "The Brewery At Hershey", + "brewery_type": "micro", + "address_1": "598 Schoolhouse Rd", + "address_2": null, + "address_3": null, + "city": "Middletown", + "state_province": "Pennsylvania", + "postal_code": "17057-4029", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7179441569", + "website_url": "http://www.vineyardathershey.com", + "state": "Pennsylvania", + "street": "598 Schoolhouse Rd" + }, + { + "id": "82867821-92a6-473b-95b6-027fa9fd1a36", + "name": "The Brewery Böser Geist Brewing Co., LLC", + "brewery_type": "micro", + "address_1": "1250 Simon Blvd Unit K100", + "address_2": null, + "address_3": null, + "city": "Easton", + "state_province": "Pennsylvania", + "postal_code": "18042-1474", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4842938005", + "website_url": null, + "state": "Pennsylvania", + "street": "1250 Simon Blvd Unit K100" + }, + { + "id": "a5b2f288-bb2b-40c1-a64c-2294f3826b01", + "name": "The Brewery LBK", + "brewery_type": "brewpub", + "address_1": "1204 Broadway #104", + "address_2": null, + "address_3": null, + "city": "Lubbock", + "state_province": "Texas", + "postal_code": "79401", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8069939378", + "website_url": "http://www.thebrewerylbk.com", + "state": "Texas", + "street": "1204 Broadway #104" + }, + { + "id": "672c1658-8b3c-4810-93ed-456aecf76845", + "name": "The Brewery of Broken Dreams", + "brewery_type": "micro", + "address_1": "8319 Pleasant Valley Rd", + "address_2": null, + "address_3": null, + "city": "Hammondsport", + "state_province": "New York", + "postal_code": "14840-9549", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6072244050", + "website_url": "http://www.thebreweryofbrokendreams.com", + "state": "New York", + "street": "8319 Pleasant Valley Rd" + }, + { + "id": "b887c0e4-e2d9-47ad-973a-3953303f959f", + "name": "The Brewhouse", + "brewery_type": "brewpub", + "address_1": "229 W Montecito St", + "address_2": null, + "address_3": null, + "city": "Santa Barbara", + "state_province": "California", + "postal_code": "93101-3824", + "country": "United States", + "longitude": -119.6954247, + "latitude": 34.41245574, + "phone": "8059632739", + "website_url": "http://www.brewhousesb.com", + "state": "California", + "street": "229 W Montecito St" + }, + { + "id": "da8e968d-6500-4045-b090-e41648db457d", + "name": "The Brewing Lair", + "brewery_type": "micro", + "address_1": "67007 CA Hwy 70", + "address_2": null, + "address_3": null, + "city": "Blairsden", + "state_province": "California", + "postal_code": "96103-1651", + "country": "United States", + "longitude": -120.6140437, + "latitude": 39.78456595, + "phone": "5303940940", + "website_url": "http://www.thebrewinglair.com", + "state": "California", + "street": "67007 CA Hwy 70" + }, + { + "id": "7bdcbe2a-d562-4fb6-b427-fc0768b5a4c9", + "name": "The Brewing Projekt", + "brewery_type": "micro", + "address_1": "1807 N Oxford Ave", + "address_2": null, + "address_3": null, + "city": "Eau Claire", + "state_province": "Wisconsin", + "postal_code": "54703-5187", + "country": "United States", + "longitude": -91.50950908, + "latitude": 44.81894024, + "phone": "7154562486", + "website_url": "http://www.thebrewingprojekt.com", + "state": "Wisconsin", + "street": "1807 N Oxford Ave" + }, + { + "id": "dcea5b62-4138-4d5e-8789-0cfbf48bb21d", + "name": "The Brewtorium", + "brewery_type": "brewpub", + "address_1": "6015 Dillard Cir Ste A", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78752-4440", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5125240323", + "website_url": "http://www.thebrewtorium.com", + "state": "Texas", + "street": "6015 Dillard Cir Ste A" + }, + { + "id": "50530753-54b2-41d2-9d48-cab429a76c7c", + "name": "The Brick Oven Brewpub", + "brewery_type": "brewpub", + "address_1": "604 Canton Rd", + "address_2": null, + "address_3": null, + "city": "Akron", + "state_province": "Ohio", + "postal_code": "44312-2513", + "country": "United States", + "longitude": -81.43734194, + "latitude": 41.04719534, + "phone": "3304757005", + "website_url": "http://www.thebrickovenbrewpub.com", + "state": "Ohio", + "street": "604 Canton Rd" + }, + { + "id": "8b52964c-3c8f-4dbf-a85a-362a3d46f947", + "name": "The Bronx Brewery", + "brewery_type": "micro", + "address_1": "856 E 136th St", + "address_2": null, + "address_3": null, + "city": "Bronx", + "state_province": "New York", + "postal_code": "10454-3509", + "country": "United States", + "longitude": -73.91064054, + "latitude": 40.801861, + "phone": "7184021000", + "website_url": "http://www.thebronxbrewery.com", + "state": "New York", + "street": "856 E 136th St" + }, + { + "id": "903035db-879f-49a4-b67a-87a96ffb8f14", + "name": "The Bunkhouse Brewery", + "brewery_type": "micro", + "address_1": "1216 W Lincoln St Ste A", + "address_2": null, + "address_3": null, + "city": "Bozeman", + "state_province": "Montana", + "postal_code": "59715-5417", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4065772074", + "website_url": "http://www.bunkhousebrewery.com", + "state": "Montana", + "street": "1216 W Lincoln St Ste A" + }, + { + "id": "18ac6fc1-dc25-49ba-b4a3-63d8139270af", + "name": "The Cleveland Brewery", + "brewery_type": "micro", + "address_1": "777 E 185th St", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44119-2170", + "country": "United States", + "longitude": -81.549766, + "latitude": 41.586428, + "phone": "2165346992", + "website_url": "http://Www.facebook.com/216brew", + "state": "Ohio", + "street": "777 E 185th St" + }, + { + "id": "77ce66aa-9891-4321-9bf9-5fc57859ec4b", + "name": "The Coastal Brewing Co.", + "brewery_type": "micro", + "address_1": "3 Dalman Street", + "address_2": null, + "address_3": null, + "city": "Forster", + "state_province": "NSW", + "postal_code": "2428", + "country": "Australia", + "longitude": 152.5245384, + "latitude": -32.1980311, + "phone": "+61 2 6554 7886", + "website_url": "http://www.thecoastalbrewingcompany.com/", + "state": "NSW", + "street": "3 Dalman Street" + }, + { + "id": "890e56ce-3099-4ea4-a8ca-3850e1f6ed56", + "name": "The Coastal Brewing Company", + "brewery_type": "micro", + "address_1": "3 Dalman Street", + "address_2": null, + "address_3": null, + "city": "Forster", + "state_province": "NSW", + "postal_code": "2428", + "country": "Australia", + "longitude": 152.5245384, + "latitude": -32.1980311, + "phone": "+61 2 6554 7886", + "website_url": "http://www.thecoastalbrewingcompany.com/", + "state": "NSW", + "street": "3 Dalman Street" + }, + { + "id": "6700cd5c-5360-4455-9fec-da2092e85b27", + "name": "The Collective Brewing Project", + "brewery_type": "micro", + "address_1": "112 Saint Louis Ave", + "address_2": null, + "address_3": null, + "city": "Fort Worth", + "state_province": "Texas", + "postal_code": "76104-1228", + "country": "United States", + "longitude": -97.32879227, + "latitude": 32.74352324, + "phone": null, + "website_url": null, + "state": "Texas", + "street": "112 Saint Louis Ave" + }, + { + "id": "a3307ec6-4c65-49fb-85e2-8fc48bd2b95c", + "name": "The Common Beer Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mason", + "state_province": "Ohio", + "postal_code": "45040", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5136580170", + "website_url": "https://commonbeercompany.com/", + "state": "Ohio", + "street": null + }, + { + "id": "292d1371-649e-4412-b2c5-8b9eeaf71cb3", + "name": "The Courtyard Brewery", + "brewery_type": "micro", + "address_1": "1020 Erato St", + "address_2": null, + "address_3": null, + "city": "New Orleans", + "state_province": "Louisiana", + "postal_code": "70130-4112", + "country": "United States", + "longitude": -90.07054452, + "latitude": 29.9387632, + "phone": null, + "website_url": "http://www.courtyardbrew.com", + "state": "Louisiana", + "street": "1020 Erato St" + }, + { + "id": "6b0f7d44-9f29-4ffa-a9a0-6af4c6ccc37e", + "name": "The Craft & Co", + "brewery_type": "micro", + "address_1": "3 Hilton Street", + "address_2": null, + "address_3": null, + "city": "Clifton Hill", + "state_province": "VIC", + "postal_code": "3068", + "country": "Australia", + "longitude": 144.987194, + "latitude": -37.7934422, + "phone": "+61 3 4828 7617", + "website_url": "https://www.localbrewing.co/", + "state": "VIC", + "street": "3 Hilton Street" + }, + { + "id": "3bc1f7aa-5b64-4398-9e78-d8b4158dcd3b", + "name": "The Craft Of Brewing", + "brewery_type": "micro", + "address_1": "21140 Ashburn Crossing Drive, Suite 170", + "address_2": null, + "address_3": null, + "city": "Ashburn", + "state_province": "Virginia", + "postal_code": "20147", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7036873932", + "website_url": "http://www.thecraftob.com", + "state": "Virginia", + "street": "21140 Ashburn Crossing Drive, Suite 170" + }, + { + "id": "456665eb-9672-4143-bdc5-d93b36286b60", + "name": "The Crafter Space", + "brewery_type": "contract", + "address_1": "1550 N Warren Ave Apt 114", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53202-2298", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4144188888", + "website_url": "http://www.thecrafterspace.com", + "state": "Wisconsin", + "street": "1550 N Warren Ave Apt 114" + }, + { + "id": "9be11eab-ae69-429a-abc0-39489d6500a0", + "name": "The Crossings Restaurant and Brewpub", + "brewery_type": "brewpub", + "address_1": "45 Main St", + "address_2": null, + "address_3": null, + "city": "Putnam", + "state_province": "Connecticut", + "postal_code": "06260-1917", + "country": "United States", + "longitude": -71.9081681, + "latitude": 41.9144568, + "phone": "8609283663", + "website_url": "http://www.thecrossingsbrewpub.com", + "state": "Connecticut", + "street": "45 Main St" + }, + { + "id": "fcfb5072-290a-4da6-b833-4d7b215fd3cf", + "name": "The Dam Brewhouse, LLC", + "brewery_type": "micro", + "address_1": "1323 New Hampshire Rte 175", + "address_2": null, + "address_3": null, + "city": "Campton", + "state_province": "New Hampshire", + "postal_code": "03223", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6037264500", + "website_url": "https://www.dambrewhouse.com/", + "state": "New Hampshire", + "street": "1323 New Hampshire Rte 175" + }, + { + "id": "7a1e5180-8345-42e8-a691-259e477be6a4", + "name": "The Dancing Fox", + "brewery_type": "brewpub", + "address_1": "203 S School St", + "address_2": null, + "address_3": null, + "city": "Lodi", + "state_province": "California", + "postal_code": "95240-3511", + "country": "United States", + "longitude": -121.3878496, + "latitude": 38.097198, + "phone": "2093662634", + "website_url": "http://www.dancingfoxwinery.com", + "state": "California", + "street": "203 S School St" + }, + { + "id": "5963489b-f01b-4c19-8182-9cbf59185b34", + "name": "The Depot Craft Brewery Distillery", + "brewery_type": "brewpub", + "address_1": "325 E 4th St", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89512-3313", + "country": "United States", + "longitude": -119.809561, + "latitude": 39.53112425, + "phone": "7757374330", + "website_url": "http://www.thedepotreno.com", + "state": "Nevada", + "street": "325 E 4th St" + }, + { + "id": "ad43dd25-02a6-4196-b268-afb686787e37", + "name": "The Distant Whistle Brewhouse", + "brewery_type": "micro", + "address_1": "118 S Main St", + "address_2": null, + "address_3": null, + "city": "Vicksburg", + "state_province": "Michigan", + "postal_code": "49097-1289", + "country": "United States", + "longitude": -85.53248776, + "latitude": 42.11909502, + "phone": "2693707549", + "website_url": "http://www.distantwhistle.com", + "state": "Michigan", + "street": "118 S Main St" + }, + { + "id": "8db55e6b-421c-4881-a5fc-8f016dad9c5f", + "name": "The Downlands Brewery", + "brewery_type": "micro", + "address_1": "Henfield Road", + "address_2": null, + "address_3": null, + "city": "Shoreham-by-Sea", + "state_province": "West Sussex", + "postal_code": "BN5 9XR", + "country": "England", + "longitude": -0.272849, + "latitude": 50.899278, + "phone": "1273495596", + "website_url": "http://www.downlandsbrewery.com/", + "state": "West Sussex", + "street": "Henfield Road" + }, + { + "id": "74fbfde8-1486-4bb9-b7c9-7f4b27f32b27", + "name": "The Dreamchaser's Brewery", + "brewery_type": "micro", + "address_1": "115 E North Main St", + "address_2": null, + "address_3": null, + "city": "Waxhaw", + "state_province": "North Carolina", + "postal_code": "28173-6029", + "country": "United States", + "longitude": -80.74349914, + "latitude": 34.92524057, + "phone": "7048437326", + "website_url": "http://www.dreamchasersbrewery.com", + "state": "North Carolina", + "street": "115 E North Main St" + }, + { + "id": "1cfb29de-b3b9-4814-a0c6-09ef223e9702", + "name": "The Engineer Brewery", + "brewery_type": "micro", + "address_1": "Burnt Oak Road", + "address_2": null, + "address_3": null, + "city": "Uckfield", + "state_province": "East Sussex", + "postal_code": "TN22 4AE", + "country": "England", + "longitude": 0.135118, + "latitude": 51.019254, + "phone": "7841669096", + "website_url": "http://theengineerbrewery.co.uk/", + "state": "East Sussex", + "street": "Burnt Oak Road" + }, + { + "id": "7be712d0-50c7-471a-b289-3f0fc999a7c4", + "name": "The Explorium Brewpub", + "brewery_type": "brewpub", + "address_1": "5300 S 76th St Unit 1450A", + "address_2": null, + "address_3": null, + "city": "Greendale", + "state_province": "Wisconsin", + "postal_code": "53129-1102", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4145537702", + "website_url": "http://exploriumbrew.com", + "state": "Wisconsin", + "street": "5300 S 76th St Unit 1450A" + }, + { + "id": "bd598dba-c81d-48ce-b166-e0fd9d255ef1", + "name": "The Farm Brewery At Broad Run", + "brewery_type": "micro", + "address_1": "16015 John Marshall Hwy", + "address_2": null, + "address_3": null, + "city": "Broad Run", + "state_province": "Virginia", + "postal_code": "20137-2250", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7037533548", + "website_url": "http://www.thefarmatbroadrun.com", + "state": "Virginia", + "street": "16015 John Marshall Hwy" + }, + { + "id": "d2495538-5a9c-465e-b6ff-54a3959c44bd", + "name": "The FarmHouse Brewery", + "brewery_type": "micro", + "address_1": "14 George St", + "address_2": null, + "address_3": null, + "city": "Owego", + "state_province": "New York", + "postal_code": "13827-1084", + "country": "United States", + "longitude": -76.26950941, + "latitude": 42.11123746, + "phone": "6072272676", + "website_url": "http://www.thefarmhousebrewery.com", + "state": "New York", + "street": "14 George St" + }, + { + "id": "e019cd27-ea77-40a7-a8a8-a95fc86b284d", + "name": "The Fat Cat Beer Co", + "brewery_type": "contract", + "address_1": "7979 Ivanhoe Ave Ste 555", + "address_2": null, + "address_3": null, + "city": "La Jolla", + "state_province": "California", + "postal_code": "92037-4570", + "country": "United States", + "longitude": -117.272443, + "latitude": 32.84869008, + "phone": null, + "website_url": "http://www.fatcatbeers.com", + "state": "California", + "street": "7979 Ivanhoe Ave Ste 555" + }, + { + "id": "109e48c5-be0e-48f6-a017-4269bf6f51c2", + "name": "The Federal Brewing Company", + "brewery_type": "micro", + "address_1": "102 S Main St", + "address_2": null, + "address_3": null, + "city": "Federalsburg", + "state_province": "Maryland", + "postal_code": "21632-1215", + "country": "United States", + "longitude": -75.77333325, + "latitude": 38.69360488, + "phone": null, + "website_url": "http://www.fedbrew.com", + "state": "Maryland", + "street": "102 S Main St" + }, + { + "id": "c368a4c0-8cf7-4bfb-9f64-257afa2bc416", + "name": "The Feinics Company, Inc.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Pollock Pines", + "state_province": "California", + "postal_code": "95726-9751", + "country": "United States", + "longitude": -120.5776645, + "latitude": 38.7497125, + "phone": "9163003049", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "85d23a93-4a1d-4d11-9d34-9789de79e400", + "name": "The Fermentorium", + "brewery_type": "brewpub", + "address_1": "7481 Hwy 60", + "address_2": null, + "address_3": null, + "city": "Cedarburg", + "state_province": "Wisconsin", + "postal_code": "53012-9702", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Wisconsin", + "street": "7481 Hwy 60" + }, + { + "id": "2d83cc3f-3967-41ae-a3b9-7cd75c40edc3", + "name": "The Filling Station Microbrewery", + "brewery_type": "micro", + "address_1": "642 Railroad Pl", + "address_2": null, + "address_3": null, + "city": "Traverse City", + "state_province": "Michigan", + "postal_code": "49686-3633", + "country": "United States", + "longitude": -85.609476, + "latitude": 44.7580963, + "phone": "2319468168", + "website_url": "http://www.thefillingstationmicrobrewery.com", + "state": "Michigan", + "street": "642 Railroad Pl" + }, + { + "id": "5ed2480b-7aeb-4218-97f7-17fa1294e0f6", + "name": "The FILO Brewing Co Ltd", + "brewery_type": "micro", + "address_1": "Old London Road", + "address_2": null, + "address_3": null, + "city": "Hastings", + "state_province": "East Sussex", + "postal_code": "TN34 3HA", + "country": "England", + "longitude": 0.596217, + "latitude": 50.860814, + "phone": "1424420212", + "website_url": "http://www.filobrewing.co.uk/", + "state": "East Sussex", + "street": "Old London Road" + }, + { + "id": "b8428a9b-a712-4d05-8c6c-c585b4125371", + "name": "The Florida Brewery", + "brewery_type": "regional", + "address_1": "202 Gandy Rd", + "address_2": null, + "address_3": null, + "city": "Auburndale", + "state_province": "Florida", + "postal_code": "33823-2726", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8639651825", + "website_url": "http://www.floridabrewery.com", + "state": "Florida", + "street": "202 Gandy Rd" + }, + { + "id": "e453ccc9-949f-4194-9257-05b54018e698", + "name": "The Food Works", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11206", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6178512133", + "website_url": "http://www.thefoodworks.com", + "state": "New York", + "street": null + }, + { + "id": "70f0eb6a-e379-461c-bd9b-b05edf10af98", + "name": "The Fox Brewpub", + "brewery_type": "brewpub", + "address_1": "310 S Carson St", + "address_2": null, + "address_3": null, + "city": "Carson City", + "state_province": "Nevada", + "postal_code": "89701-4754", + "country": "United States", + "longitude": -119.7708155, + "latitude": 39.1269616, + "phone": "7758831369", + "website_url": "http://www.foxbrewpub.com", + "state": "Nevada", + "street": "310 S Carson St" + }, + { + "id": "e2fde1d1-117d-4d92-8e0d-ad638d9d8152", + "name": "The Franciscan Well Brewery", + "brewery_type": "regional", + "address_1": "Riverpark House", + "address_2": "Marina Commercial Park", + "address_3": "Centre Park Rd", + "city": "Cork", + "state_province": "Cork", + "postal_code": "T12 HW3W", + "country": "Ireland", + "longitude": -8.4755419, + "latitude": 51.9005854, + "phone": "+353 1 629 4101", + "website_url": "http://www.franciscanwellbrewery.com/en/index", + "state": "Cork", + "street": "Riverpark House" + }, + { + "id": "8f5eb3b7-777a-497b-b05b-55ee4c337c76", + "name": "The Freefolk Brewery Taproom", + "brewery_type": "micro", + "address_1": "1690 Court St", + "address_2": null, + "address_3": null, + "city": "Fayetteville", + "state_province": "West Virginia", + "postal_code": "25840-6818", + "country": "United States", + "longitude": -81.110004338389, + "latitude": 38.086476379912, + "phone": "3045746094", + "website_url": "http://www.freefolkbrew.com", + "state": "West Virginia", + "street": "1690 Court St" + }, + { + "id": "65db24ef-49b5-4099-941f-cd0c4ea1b425", + "name": "The Freehouse", + "brewery_type": "brewpub", + "address_1": "701 Washington Ave N Ste 101", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55401-2820", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6123397011", + "website_url": "http://www.freehousempls.com", + "state": "Minnesota", + "street": "701 Washington Ave N Ste 101" + }, + { + "id": "d3908a40-280c-4de1-8eb9-12c7c6fe73c7", + "name": "The Garden Brewery", + "brewery_type": "micro", + "address_1": "245 Gertrude Street", + "address_2": "243", + "address_3": null, + "city": "Fitzroy", + "state_province": "VIC", + "postal_code": "3065", + "country": "Australia", + "longitude": 144.982572, + "latitude": -37.806153, + "phone": "+61 482 697 784", + "website_url": "http://www.thefbg.com.au/", + "state": "VIC", + "street": "245 Gertrude Street" + }, + { + "id": "6a79cd82-1833-4c70-ac8f-808dc79b6f7a", + "name": "The Glass Jug", + "brewery_type": "micro", + "address_1": "5410 Nc Highway 55 Ste V", + "address_2": null, + "address_3": null, + "city": "Durham", + "state_province": "North Carolina", + "postal_code": "27713-7802", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9198186907", + "website_url": "http://www.glass-jug.com", + "state": "North Carolina", + "street": "5410 Nc Highway 55 Ste V" + }, + { + "id": "bb6b4099-eb69-44f4-bf01-199037dc1d1e", + "name": "The Good Beer Company, Inc.", + "brewery_type": "micro", + "address_1": "309 W 4th St", + "address_2": null, + "address_3": null, + "city": "Santa Ana", + "state_province": "California", + "postal_code": "92701-4502", + "country": "United States", + "longitude": -117.8699581, + "latitude": 33.74807823, + "phone": "7147142988", + "website_url": "http://www.thegoodbeerco.com", + "state": "California", + "street": "309 W 4th St" + }, + { + "id": "ed927788-4e38-4875-9fcf-49cc2ca5410c", + "name": "The Good Shepherds Brewing Co", + "brewery_type": "micro", + "address_1": "31 Loop Rd Ste 1", + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "New York", + "postal_code": "13021-3823", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3154066498", + "website_url": "http://www.shepsbeer.com", + "state": "New York", + "street": "31 Loop Rd Ste 1" + }, + { + "id": "7f026cf2-8653-4960-b505-6feb41506385", + "name": "The Good Society", + "brewery_type": "brewpub", + "address_1": "2701 California Ave SW Unit A", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98116-2510", + "country": "United States", + "longitude": -122.38712295961, + "latitude": 47.579315043339, + "phone": "2064203528", + "website_url": "https://www.goodsocietybeer.com", + "state": "Washington", + "street": "2701 California Ave SW Unit A" + }, + { + "id": "8f03bd5e-8c09-43f3-b69b-f5e45f61e9db", + "name": "The Grain Shed", + "brewery_type": "brewpub", + "address_1": "1026 E Newark Ave", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99202", + "country": "United States", + "longitude": -117.3948236, + "latitude": 47.64927782, + "phone": "5092413853", + "website_url": "http://www.thegrainshed.coop", + "state": "Washington", + "street": "1026 E Newark Ave" + }, + { + "id": "3ff96c05-f45e-4806-9a08-919b262c8385", + "name": "The Grateful Gnome Sandwich Shoppe and Brewery", + "brewery_type": "brewpub", + "address_1": "4369 Stuart St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80212-2335", + "country": "United States", + "longitude": -105.0432655, + "latitude": 39.7764426, + "phone": "7205986863", + "website_url": "http://www.thegratefulgnome.com", + "state": "Colorado", + "street": "4369 Stuart St" + }, + { + "id": "a079d8be-71e9-41b7-a139-5b08b2ccaeb4", + "name": "The Gribble Brewery", + "brewery_type": "brewpub", + "address_1": "Gribble Lane", + "address_2": null, + "address_3": null, + "city": "Chichester", + "state_province": "West Sussex", + "postal_code": "PO20 2BP", + "country": "England", + "longitude": -0.723958, + "latitude": 50.838143, + "phone": "1243786893", + "website_url": "http://gribbleinn.co.uk/", + "state": "West Sussex", + "street": "Gribble Lane" + }, + { + "id": "fe63c11a-61d2-4863-89a3-6df1eaa93b31", + "name": "The Grifter", + "brewery_type": "micro", + "address_1": "391-397 Enmore Road", + "address_2": "1", + "address_3": null, + "city": "Marrickville", + "state_province": "NSW", + "postal_code": "2204", + "country": "Australia", + "longitude": 151.1676587, + "latitude": -33.9046933, + "phone": "+61 2 9550 5742", + "website_url": "http://thegrifter.com.au/", + "state": "NSW", + "street": "391-397 Enmore Road" + }, + { + "id": "e8090627-f973-4ff3-b23d-947bfa7228b1", + "name": "The Guardian Brewing Company", + "brewery_type": "micro", + "address_1": "514 E Jackson Street", + "address_2": null, + "address_3": null, + "city": "Muncie", + "state_province": "Indiana", + "postal_code": "47305", + "country": "United States", + "longitude": -85.38148786, + "latitude": 40.19281286, + "phone": "7652738918", + "website_url": "http://www.theguardianbrewingco.com", + "state": "Indiana", + "street": "514 E Jackson Street" + }, + { + "id": "c4320b4a-ef3c-4700-8ce3-26cf9c624099", + "name": "The Guild Brewing Co - Pawtucket Beer Hall", + "brewery_type": "brewpub", + "address_1": "461 Main St", + "address_2": null, + "address_3": null, + "city": "Pawtucket", + "state_province": "Rhode Island", + "postal_code": "02860-2913", + "country": "United States", + "longitude": -71.3890045, + "latitude": 41.8767586, + "phone": "4017241241", + "website_url": "https://www.theguildpawtucket.com", + "state": "Rhode Island", + "street": "461 Main St" + }, + { + "id": "c948fdb4-2d63-4bf2-9da8-0e0d37038136", + "name": "The Guild Brewing Co - Warren", + "brewery_type": "brewpub", + "address_1": "99 Water St Ste2", + "address_2": null, + "address_3": null, + "city": "Warren", + "state_province": "Rhode Island", + "postal_code": "02885", + "country": "United States", + "longitude": -71.28731013, + "latitude": 41.73399952, + "phone": "4012524275", + "website_url": "https://www.theguildwarren.com", + "state": "Rhode Island", + "street": "99 Water St Ste2" + }, + { + "id": "79e9e59b-e943-4b3a-ab0b-a72501845feb", + "name": "The Half Wall Brewery", + "brewery_type": "brewpub", + "address_1": "1887 SR 44", + "address_2": null, + "address_3": null, + "city": "New Smyrna Beach", + "state_province": "Florida", + "postal_code": "32168", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3864268410", + "website_url": "http://www.halfwallbrewery.com", + "state": "Florida", + "street": "1887 SR 44" + }, + { + "id": "40446a01-7d11-416b-9551-43903a30249e", + "name": "The Harmony Inn", + "brewery_type": "brewpub", + "address_1": "230 Mercer St", + "address_2": null, + "address_3": null, + "city": "Harmony", + "state_province": "Pennsylvania", + "postal_code": "16037-6812", + "country": "United States", + "longitude": -80.12650213, + "latitude": 40.8029435, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": "230 Mercer St" + }, + { + "id": "46840bf5-a825-4e7e-ad18-e52039e9dac9", + "name": "The Heavy Metal Brewing Co.", + "brewery_type": "brewpub", + "address_1": "809 Macarthur Blvd", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98661-7013", + "country": "United States", + "longitude": -122.6171177, + "latitude": 45.6275368, + "phone": "3602581691", + "website_url": "http://www.theheavymetalbrewingco.com", + "state": "Washington", + "street": "809 Macarthur Blvd" + }, + { + "id": "c464fe8a-4d1f-4a15-822f-2276616d719c", + "name": "The Hidden Mother Brewery", + "brewery_type": "micro", + "address_1": "412 W Sharp Ave", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99201-2421", + "country": "United States", + "longitude": -117.417792, + "latitude": 47.669775, + "phone": "5099193595", + "website_url": "https://thehiddenmotherbrewery.com", + "state": "Washington", + "street": "412 W Sharp Ave" + }, + { + "id": "fedd7659-93ad-477b-b1fd-114ea7286a0b", + "name": "The Highway Brewing Co.", + "brewery_type": "brewpub", + "address_1": "209 W Houghton Ave", + "address_2": null, + "address_3": null, + "city": "West Branch", + "state_province": "Michigan", + "postal_code": "48661-1219", + "country": "United States", + "longitude": -84.23751651, + "latitude": 44.27635208, + "phone": "9897090716", + "website_url": "http://www.highwaybrewingco.com", + "state": "Michigan", + "street": "209 W Houghton Ave" + }, + { + "id": "dfa5640f-a31b-4bad-b1d9-3143e94c22ea", + "name": "The Hold By Revelry Brewing", + "brewery_type": "micro", + "address_1": "36 Romney St", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "South Carolina", + "postal_code": "29403-3825", + "country": "United States", + "longitude": -79.94569372, + "latitude": 32.80761336, + "phone": null, + "website_url": "http://www.revelrybrewingco.com", + "state": "South Carolina", + "street": "36 Romney St" + }, + { + "id": "3e3b3dea-1b7c-4306-b685-c1ba4b854d44", + "name": "The Hop Brewery", + "brewery_type": "brewpub", + "address_1": "203 W Market St", + "address_2": null, + "address_3": null, + "city": "Christopher", + "state_province": "Illinois", + "postal_code": "62822", + "country": "United States", + "longitude": -89.05481692, + "latitude": 37.97270012, + "phone": "8667244677", + "website_url": "http://www.thehopbrewery.com", + "state": "Illinois", + "street": "203 W Market St" + }, + { + "id": "0f478977-9d95-4cf4-b296-2713196ec923", + "name": "The Hop Haus", + "brewery_type": "micro", + "address_1": "2568 SW Orchard Ct", + "address_2": null, + "address_3": null, + "city": "Gresham", + "state_province": "Oregon", + "postal_code": "97080-9532", + "country": "United States", + "longitude": -122.4497736, + "latitude": 45.4787523, + "phone": "5033108113", + "website_url": null, + "state": "Oregon", + "street": "2568 SW Orchard Ct" + }, + { + "id": "dceed539-92fe-42e7-8ca6-09eef06e3a2b", + "name": "The Humble Pint", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Round Rock", + "state_province": "Texas", + "postal_code": "78681-5504", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5129475913", + "website_url": "http://www.humblepint.com", + "state": "Texas", + "street": null + }, + { + "id": "ab5e80a9-bfeb-45b4-8f08-89d975fd90d8", + "name": "The Intrepid Sojourner Beer Project", + "brewery_type": "micro", + "address_1": "925 W 8th Ave", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80204-4333", + "country": "United States", + "longitude": -104.9993865, + "latitude": 39.7291386, + "phone": "8122498792", + "website_url": "http://sojournerbeers.com", + "state": "Colorado", + "street": "925 W 8th Ave" + }, + { + "id": "aa332036-3ce5-47dc-aa9b-73b2b457b3d3", + "name": "The Jolly Fox Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Pittsburg", + "state_province": "Kansas", + "postal_code": "66762", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://Www.thejollyfoxbrrewery.com", + "state": "Kansas", + "street": null + }, + { + "id": "16025731-a854-4661-8786-8151d8db7f15", + "name": "The Jolly Scholar", + "brewery_type": "brewpub", + "address_1": "11111 Euclid Ave", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44106-1715", + "country": "United States", + "longitude": -81.60836498, + "latitude": 41.5074076, + "phone": "2163680090", + "website_url": "http://www.thejollyscholar.com", + "state": "Ohio", + "street": "11111 Euclid Ave" + }, + { + "id": "0fd552f9-4945-4187-94c4-5372e3f645a5", + "name": "The Kiln Brewery", + "brewery_type": "micro", + "address_1": "Selsfield Road", + "address_2": null, + "address_3": null, + "city": "East Grinstead", + "state_province": "West Sussex", + "postal_code": "RH19 4QS", + "country": "England", + "longitude": -0.070719, + "latitude": 51.079995, + "phone": "7800556729", + "website_url": "https://www.thekilnbrewery.co.uk/", + "state": "West Sussex", + "street": "Selsfield Road" + }, + { + "id": "be30234d-bd7e-4525-80d6-bf4c1f3bcb57", + "name": "The Knickerbocker/ New Holland Brewing", + "brewery_type": "brewpub", + "address_1": "417 Bridge St NW", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49504-5305", + "country": "United States", + "longitude": -85.68044312, + "latitude": 42.97068214, + "phone": "6163455642", + "website_url": null, + "state": "Michigan", + "street": "417 Bridge St NW" + }, + { + "id": "dd538cde-772c-4874-8f51-586d93474068", + "name": "The Knuckle Brewing Company", + "brewery_type": "brewpub", + "address_1": "918 Harley Davidson Way", + "address_2": null, + "address_3": null, + "city": "Sturgis", + "state_province": "South Dakota", + "postal_code": "57785-8511", + "country": "United States", + "longitude": -103.5124614, + "latitude": 44.41556787, + "phone": "6055619846", + "website_url": "http://www.theknuckle.com", + "state": "South Dakota", + "street": "918 Harley Davidson Way" + }, + { + "id": "1c99b221-b06b-460d-abd9-530efa711fb2", + "name": "The Koontz Lake Brewing Company", + "brewery_type": "brewpub", + "address_1": "7747 N State Road 23", + "address_2": null, + "address_3": null, + "city": "Walkerton", + "state_province": "Indiana", + "postal_code": "46574-9360", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5745862019", + "website_url": null, + "state": "Indiana", + "street": "7747 N State Road 23" + }, + { + "id": "a56d515f-cf35-4f04-a0df-e8b57260580d", + "name": "The Laboratory Mill Brewery", + "brewery_type": "micro", + "address_1": "848 Southfork Rd", + "address_2": null, + "address_3": null, + "city": "Lincolnton", + "state_province": "North Carolina", + "postal_code": "28092", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "North Carolina", + "street": "848 Southfork Rd" + }, + { + "id": "5c34509f-9eb7-4321-ba65-68eefc23c536", + "name": "The Laird Arcade Brewery", + "brewery_type": "micro", + "address_1": "114 S Washington St Ste D", + "address_2": null, + "address_3": null, + "city": "Tiffin", + "state_province": "Ohio", + "postal_code": "44883-3915", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4196186489", + "website_url": null, + "state": "Ohio", + "street": "114 S Washington St Ste D" + }, + { + "id": "5ba7b38b-b805-4d49-a671-194a2c7975bf", + "name": "The Langham Brewery llp", + "brewery_type": "micro", + "address_1": "Langham Lane", + "address_2": null, + "address_3": null, + "city": "Petworth", + "state_province": "West Sussex", + "postal_code": "GU28 9BU", + "country": "England", + "longitude": -0.679379, + "latitude": 50.994711, + "phone": "1798860861", + "website_url": "https://langhambrewery.co.uk/", + "state": "West Sussex", + "street": "Langham Lane" + }, + { + "id": "eea8a695-5e5e-4eb4-8c36-38ef70799787", + "name": "The Larimer Beer Company", + "brewery_type": "contract", + "address_1": "3620 Newport St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80207-1508", + "country": "United States", + "longitude": -104.9093487, + "latitude": 39.76773768, + "phone": "7205076369", + "website_url": "http://www.thelarimer.com", + "state": "Colorado", + "street": "3620 Newport St" + }, + { + "id": "b4bad111-e8f4-45ac-bb74-c3dbac3cdceb", + "name": "The Levee Brewing Company, Inc", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Valdese", + "state_province": "North Carolina", + "postal_code": "28690", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8383901041", + "website_url": "http://www.theleveepub.com", + "state": "North Carolina", + "street": null + }, + { + "id": "81af98d0-0d70-4e84-8b4f-2804dd75e227", + "name": "The Livery", + "brewery_type": "brewpub", + "address_1": "190 5th St", + "address_2": null, + "address_3": null, + "city": "Benton Harbor", + "state_province": "Michigan", + "postal_code": "49022-3484", + "country": "United States", + "longitude": -86.45330019, + "latitude": 42.11813538, + "phone": "2699258760", + "website_url": "http://www.liverybrew.com", + "state": "Michigan", + "street": "190 5th St" + }, + { + "id": "ed81bb82-b081-445b-98f2-0af438ce3ddc", + "name": "The Lodge Restaurant & Microbrewery", + "brewery_type": "brewpub", + "address_1": "29042 Hide AWay Hills Rd", + "address_2": null, + "address_3": null, + "city": "Sugar Grove", + "state_province": "Ohio", + "postal_code": "43155", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7405697944", + "website_url": "http://www.hideawayhillslodge.com", + "state": "Ohio", + "street": "29042 Hide AWay Hills Rd" + }, + { + "id": "c091b80f-b526-406a-80bf-efe69faa3df0", + "name": "The Lone Girl Brewing Company", + "brewery_type": "brewpub", + "address_1": "114 E Main St Ste 101", + "address_2": null, + "address_3": null, + "city": "Waunakee", + "state_province": "Wisconsin", + "postal_code": "53597-1274", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6088507175", + "website_url": "http://www.thelonegirl.com", + "state": "Wisconsin", + "street": "114 E Main St Ste 101" + }, + { + "id": "1659960d-4953-4546-8008-e7f54c0fbdc7", + "name": "The Lone Wolfe Brewing Co.", + "brewery_type": "brewpub", + "address_1": "36 Mill St", + "address_2": null, + "address_3": null, + "city": "Wolfeboro", + "state_province": "New Hampshire", + "postal_code": "03894-4485", + "country": "United States", + "longitude": -71.21503305, + "latitude": 43.58572415, + "phone": "6035151273", + "website_url": "http://www.thelonewolfe.com", + "state": "New Hampshire", + "street": "36 Mill St" + }, + { + "id": "f940396c-fb8a-4849-a6b2-7d4a4653208f", + "name": "The Long Man Brewery", + "brewery_type": "micro", + "address_1": "Church Farm", + "address_2": null, + "address_3": null, + "city": "Polegate", + "state_province": "East Sussex", + "postal_code": "BN26 5RA", + "country": "England", + "longitude": 0.160243, + "latitude": 50.799904, + "phone": "1323871850", + "website_url": "https://www.longmanbrewery.com/", + "state": "East Sussex", + "street": "Church Farm" + }, + { + "id": "e9d9ae5d-f068-4cc5-bced-56218eb3f528", + "name": "The Lost Borough Brewing Company", + "brewery_type": "micro", + "address_1": "543 Atlantic Ave", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "New York", + "postal_code": "14609-7316", + "country": "United States", + "longitude": -77.56856467, + "latitude": 43.15638738, + "phone": "5854718122", + "website_url": "http://www.lostboroughbrewing.com", + "state": "New York", + "street": "543 Atlantic Ave" + }, + { + "id": "64bfb175-46f6-421c-9771-7fffb984c4c7", + "name": "The Lost Druid", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30307-2758", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Georgia", + "street": null + }, + { + "id": "9250d166-8224-4a1b-a75f-7470c2f7a268", + "name": "The Mack House Brewpub", + "brewery_type": "brewpub", + "address_1": "9118 W State Road 84", + "address_2": null, + "address_3": null, + "city": "Davie", + "state_province": "Florida", + "postal_code": "33324-4416", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9544745040", + "website_url": "http://www.themackhouse.com", + "state": "Florida", + "street": "9118 W State Road 84" + }, + { + "id": "a30a71ca-d8c6-4413-b939-f38667f4ef6e", + "name": "The Malai Kitchen", + "brewery_type": "brewpub", + "address_1": "3699 McKinney Ave Ste 319", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75204-4563", + "country": "United States", + "longitude": -96.796677, + "latitude": 32.808204, + "phone": "2145997857", + "website_url": "http://www.malaikitchen.com", + "state": "Texas", + "street": "3699 McKinney Ave Ste 319" + }, + { + "id": "392f102d-b772-47ab-bed8-641e5b70a2b6", + "name": "The Manhattan Project Beer Company", + "brewery_type": "micro", + "address_1": "15103 Surveyor Blvd", + "address_2": null, + "address_3": null, + "city": "Addison", + "state_province": "Texas", + "postal_code": "75001-4316", + "country": "United States", + "longitude": -96.845846, + "latitude": 32.951222, + "phone": null, + "website_url": "http://www.manhattanproject.beer", + "state": "Texas", + "street": "15103 Surveyor Blvd" + }, + { + "id": "0f1463ef-9547-4387-bcdd-cf2704a1f035", + "name": "The Maple Grille LLC", + "brewery_type": "brewpub", + "address_1": "13105 Gratiot Rd", + "address_2": null, + "address_3": null, + "city": "Hemlock", + "state_province": "Michigan", + "postal_code": "48626-8444", + "country": "United States", + "longitude": -84.1741049, + "latitude": 43.4157758, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "13105 Gratiot Rd" + }, + { + "id": "5d3e644a-e243-4bfb-ba06-f62b21bb94e7", + "name": "The Mason Jar Brewing Company", + "brewery_type": "micro", + "address_1": "29683 New Hub Dr Ste A", + "address_2": null, + "address_3": null, + "city": "Menifee", + "state_province": "California", + "postal_code": "92586-6545", + "country": "United States", + "longitude": -117.1772064, + "latitude": 33.68931288, + "phone": "9512445277", + "website_url": "http://www.masonjarbrewing.com", + "state": "California", + "street": "29683 New Hub Dr Ste A" + }, + { + "id": "00bca394-bc68-4c8f-bc2b-d81a75ab728b", + "name": "The Mill Brewery", + "brewery_type": "micro", + "address_1": "125 Johnston Street", + "address_2": null, + "address_3": null, + "city": "Collingwood", + "state_province": "VIC", + "postal_code": "3066", + "country": "Australia", + "longitude": 144.9891061, + "latitude": -37.7996125, + "phone": null, + "website_url": "http://www.themillbrewery.com.au/", + "state": "VIC", + "street": "125 Johnston Street" + }, + { + "id": "419f3a76-0970-4e3b-90f9-e242deb0a782", + "name": "The Millworks Brewery", + "brewery_type": "brewpub", + "address_1": "340 Verbeke St", + "address_2": null, + "address_3": null, + "city": "Harrisburg", + "state_province": "Pennsylvania", + "postal_code": "17102-2052", + "country": "United States", + "longitude": -76.8874206, + "latitude": 40.270538, + "phone": "7176954888", + "website_url": "http://www.millworksharrisburg.com", + "state": "Pennsylvania", + "street": "340 Verbeke St" + }, + { + "id": "f49b6091-444c-46ea-99d6-e798815ab4ee", + "name": "The Mitten Brewing Co", + "brewery_type": "brewpub", + "address_1": "527 Leonard St NW", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49504-4278", + "country": "United States", + "longitude": -85.68101, + "latitude": 42.98507733, + "phone": "6166085612", + "website_url": "http://www.mittenbrewing.com", + "state": "Michigan", + "street": "527 Leonard St NW" + }, + { + "id": "7550c372-1e49-49f5-b7d9-764e260fdba5", + "name": "The Mitten Brewing Company - Saugatuck", + "brewery_type": "brewpub", + "address_1": "329 Water St", + "address_2": null, + "address_3": null, + "city": "Saugatuck", + "state_province": "Michigan", + "postal_code": "49453", + "country": "United States", + "longitude": -86.20524129, + "latitude": 42.65689129, + "phone": "6166085612", + "website_url": null, + "state": "Michigan", + "street": "329 Water St" + }, + { + "id": "4d0ab1cf-bb3a-4432-8108-3bd91cb900d4", + "name": "The Mitten Brewing Company Production Facility", + "brewery_type": "micro", + "address_1": "540 Leonard St NW", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49504-4260", + "country": "United States", + "longitude": -85.68100276, + "latitude": 42.98491266, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "540 Leonard St NW" + }, + { + "id": "91557e74-fcdb-496c-b10c-43a488ae4e11", + "name": "The Neighborhood Beer Co.", + "brewery_type": "closed", + "address_1": "156 Epping Rd", + "address_2": null, + "address_3": null, + "city": "Exeter", + "state_province": "New Hampshire", + "postal_code": "03833-4521", + "country": "United States", + "longitude": -70.97431918, + "latitude": 42.99880009, + "phone": "6035126228", + "website_url": "http://nhbeerco.com", + "state": "New Hampshire", + "street": "156 Epping Rd" + }, + { + "id": "ea79cbe7-681e-4d92-8604-85cb892834ae", + "name": "The New Buffalo Brewing Co. Inc", + "brewery_type": "contract", + "address_1": "11163 Main St", + "address_2": null, + "address_3": null, + "city": "Clarence", + "state_province": "New York", + "postal_code": "14031-1701", + "country": "United States", + "longitude": -78.57052941, + "latitude": 42.98442517, + "phone": "7162007275", + "website_url": "http://www.newbuffalobrewing.com", + "state": "New York", + "street": "11163 Main St" + }, + { + "id": "2198a974-f3cd-4290-83b7-a3d0600ad12d", + "name": "The North Slope Brewing Company", + "brewery_type": "brewpub", + "address_1": "2439 Sr 309 Hwy", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Pennsylvania", + "postal_code": "18612-9251", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5702554012", + "website_url": "http://www.northslopebrewing.com", + "state": "Pennsylvania", + "street": "2439 Sr 309 Hwy" + }, + { + "id": "5e3c3edf-7aa5-4c52-92ef-769f6ac6e918", + "name": "The Norwich Inn - Jasper Murdock's Alehouse", + "brewery_type": "brewpub", + "address_1": "325 Main St", + "address_2": null, + "address_3": null, + "city": "Norwich", + "state_province": "Vermont", + "postal_code": "05055-9453", + "country": "United States", + "longitude": -72.3091387, + "latitude": 43.7150119, + "phone": "8026491143", + "website_url": "http://www.norwichinn.com", + "state": "Vermont", + "street": "325 Main St" + }, + { + "id": "ef7f6bae-48fd-4583-b5cf-342c7a5987fe", + "name": "The Old Bakery Beer Company", + "brewery_type": "brewpub", + "address_1": "400 Landmarks Blvd", + "address_2": null, + "address_3": null, + "city": "Alton", + "state_province": "Illinois", + "postal_code": "62002-2405", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6184631470", + "website_url": null, + "state": "Illinois", + "street": "400 Landmarks Blvd" + }, + { + "id": "5de171b9-729f-4203-bdb5-33aca95fdd46", + "name": "The Olde Mecklenburg Brewery", + "brewery_type": "regional", + "address_1": "4150 Yancey Rd", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28217-1738", + "country": "United States", + "longitude": -80.88195345, + "latitude": 35.18741705, + "phone": "7045255644", + "website_url": "http://www.oldemeckbrew.com", + "state": "North Carolina", + "street": "4150 Yancey Rd" + }, + { + "id": "b17e985e-6d4c-4887-9cd2-d88fce11b0c2", + "name": "The Oozlefinch Craft Brewery", + "brewery_type": "micro", + "address_1": "81 Patch Rd", + "address_2": null, + "address_3": null, + "city": "Fort Monroe", + "state_province": "Virginia", + "postal_code": "23651-1052", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7572247042", + "website_url": "http://www.oozlefinchbeers.com", + "state": "Virginia", + "street": "81 Patch Rd" + }, + { + "id": "f6715a67-222b-4bed-802c-25b228aed9e0", + "name": "The Other Farm Brewing Company", + "brewery_type": "brewpub", + "address_1": "128 E Philadelphia Ave Ste 1", + "address_2": null, + "address_3": null, + "city": "Boyertown", + "state_province": "Pennsylvania", + "postal_code": "19512-1161", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4844150741", + "website_url": "http://www.theotherfarmbrewingcompany.com", + "state": "Pennsylvania", + "street": "128 E Philadelphia Ave Ste 1" + }, + { + "id": "9ec433d3-96fc-4055-88ef-cdc1b2aa9caa", + "name": "The Other Side of the Moon - Jamestown", + "brewery_type": "brewpub", + "address_1": "103 W Main St", + "address_2": null, + "address_3": null, + "city": "Jamestown", + "state_province": "North Carolina", + "postal_code": "27282", + "country": "United States", + "longitude": -79.93765165, + "latitude": 35.99284597, + "phone": "3633072887", + "website_url": null, + "state": "North Carolina", + "street": "103 W Main St" + }, + { + "id": "f6a4ecaa-2045-43ed-8563-9d4bf0af345f", + "name": "The Outlaw Brewing Company", + "brewery_type": "micro", + "address_1": "215 Scotland Rd", + "address_2": null, + "address_3": null, + "city": "Winchester", + "state_province": "New Hampshire", + "postal_code": "03470-3006", + "country": "United States", + "longitude": -72.35620045, + "latitude": 42.75012519, + "phone": "6033363444", + "website_url": "http://www.theoutlawbrewingcompany.com", + "state": "New Hampshire", + "street": "215 Scotland Rd" + }, + { + "id": "451c1c4a-fd8d-4cda-a43d-7cc527c8ff37", + "name": "The Owls Brew", + "brewery_type": "large", + "address_1": "135 W 29th St Rm 602", + "address_2": null, + "address_3": null, + "city": "New York", + "state_province": "New York", + "postal_code": "10001-5175", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2125640218", + "website_url": "http://www.theowlsbrew.com", + "state": "New York", + "street": "135 W 29th St Rm 602" + }, + { + "id": "15c5f1c0-f36a-42a0-89ce-dfff6bf9636e", + "name": "The Parlor", + "brewery_type": "brewpub", + "address_1": "205 Lake Ave", + "address_2": null, + "address_3": null, + "city": "Traverse City", + "state_province": "Michigan", + "postal_code": "49684-2532", + "country": "United States", + "longitude": -85.6204308, + "latitude": 44.7601402, + "phone": "2319414422", + "website_url": "http://www.bigtoebrewery.com", + "state": "Michigan", + "street": "205 Lake Ave" + }, + { + "id": "ddf0bca8-b865-460a-a287-19c2fd69d061", + "name": "The Peak Brewing Company", + "brewery_type": "brewpub", + "address_1": "78491 US-40", + "address_2": null, + "address_3": null, + "city": "Winter Park", + "state_province": "Colorado", + "postal_code": "80482", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9707267951", + "website_url": "http://www.thepeakwp.com", + "state": "Colorado", + "street": "78491 US-40" + }, + { + "id": "1dd33c00-3a98-42bc-a33c-4c19da3a6a8b", + "name": "The Peddler", + "brewery_type": "brewpub", + "address_1": "835 3rd Ave", + "address_2": null, + "address_3": null, + "city": "Huntington", + "state_province": "West Virginia", + "postal_code": "25701", + "country": "United States", + "longitude": -82.44527196, + "latitude": 38.42165769, + "phone": "3046910415", + "website_url": null, + "state": "West Virginia", + "street": "835 3rd Ave" + }, + { + "id": "044fc194-fa8d-41cb-8a8c-6b1d18b4b3bd", + "name": "The Peoples Pint / Franklin County Brewing Co", + "brewery_type": "brewpub", + "address_1": "76 Hope St", + "address_2": null, + "address_3": null, + "city": "Greenfield", + "state_province": "Massachusetts", + "postal_code": "01301-3573", + "country": "United States", + "longitude": -72.59769229, + "latitude": 42.58187599, + "phone": "4137730333", + "website_url": "http://www.thepeoplespint.com", + "state": "Massachusetts", + "street": "76 Hope St" + }, + { + "id": "0bec1266-0d4a-4df2-bfb5-6b2c405c9983", + "name": "The Perch Pub & Brewery", + "brewery_type": "brewpub", + "address_1": "232 S Wall St", + "address_2": null, + "address_3": null, + "city": "Chandler", + "state_province": "Arizona", + "postal_code": "85225-9528", + "country": "United States", + "longitude": -111.8424808, + "latitude": 33.3000878, + "phone": "4805808044", + "website_url": "http://www.perchpubbrewery.com", + "state": "Arizona", + "street": "232 S Wall St" + }, + { + "id": "916c862e-98d5-4dcb-aba7-20389e5676fd", + "name": "The Phoenix Ale Brewery", + "brewery_type": "micro", + "address_1": "3002 E Washington St # 3002", + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85034-1518", + "country": "United States", + "longitude": -111.9642922, + "latitude": 33.4457883, + "phone": "6022755049", + "website_url": "http://phoenixale.com", + "state": "Arizona", + "street": "3002 E Washington St # 3002" + }, + { + "id": "b351f9ac-ec78-4778-8dbf-a5359bdf5bd0", + "name": "The Phoenix Brewing Company", + "brewery_type": "micro", + "address_1": "131 N Diamond St", + "address_2": null, + "address_3": null, + "city": "Mansfield", + "state_province": "Ohio", + "postal_code": "44902-1331", + "country": "United States", + "longitude": -82.51395188, + "latitude": 40.76201837, + "phone": "4195222552", + "website_url": "http://www.phoenixbrewing.com", + "state": "Ohio", + "street": "131 N Diamond St" + }, + { + "id": "3e98180b-d811-49d8-8085-f6a9f67af1ca", + "name": "The Phoenix On Westheimer", + "brewery_type": "brewpub", + "address_1": "1915 Westheimer Rd", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77098-1521", + "country": "United States", + "longitude": -95.4966157, + "latitude": 29.7377481, + "phone": "7135263100", + "website_url": "http://www.phoenixow.com", + "state": "Texas", + "street": "1915 Westheimer Rd" + }, + { + "id": "cdc5bcd0-ffab-47b9-a21b-bbd5f02c171b", + "name": "The Plains Brewing Company", + "brewery_type": "micro", + "address_1": "515 N FM 179", + "address_2": null, + "address_3": null, + "city": "Lubbock", + "state_province": "Texas", + "postal_code": "79416-9512", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8067868583", + "website_url": null, + "state": "Texas", + "street": "515 N FM 179" + }, + { + "id": "0c76b63a-b885-4f71-9c03-1274cc347cb9", + "name": "The Porterhouse Brewing Company", + "brewery_type": "micro", + "address_1": "3-4 Stag Industrial Estate", + "address_2": "Ballyboggan Road", + "address_3": "Dublin 11", + "city": "Dublin", + "state_province": "Dublin", + "postal_code": "D11 AY91", + "country": "Ireland", + "longitude": -6.2998473, + "latitude": 53.3735147, + "phone": "35318227415", + "website_url": "http://www.porterhousebrewco.ie/", + "state": "Dublin", + "street": "3-4 Stag Industrial Estate" + }, + { + "id": "7f7e73b4-7a05-4f3b-937a-b1dc33e43795", + "name": "The Portsmouth Brewery", + "brewery_type": "closed", + "address_1": "56 Market St", + "address_2": null, + "address_3": null, + "city": "Portsmouth", + "state_province": "New Hampshire", + "postal_code": "03801-3750", + "country": "United States", + "longitude": -70.7576875, + "latitude": 43.0780072, + "phone": "6034311115", + "website_url": "http://www.portsmouthbrewery.com", + "state": "New Hampshire", + "street": "56 Market St" + }, + { + "id": "8d658be9-25c4-4c6c-8067-f2f48ca84796", + "name": "The Post Brewing Co", + "brewery_type": "brewpub", + "address_1": "2027 13th St", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80302-5201", + "country": "United States", + "longitude": -105.2788942, + "latitude": 40.01847649, + "phone": "7203723341", + "website_url": "http://www.postbrewing.com", + "state": "Colorado", + "street": "2027 13th St" + }, + { + "id": "fccbb48b-551d-4751-8fbc-42debc14a8f6", + "name": "The Post Brewing Co", + "brewery_type": "brewpub", + "address_1": "105 W Emma St", + "address_2": null, + "address_3": null, + "city": "Lafayette", + "state_province": "Colorado", + "postal_code": "80026-1501", + "country": "United States", + "longitude": -105.0913165, + "latitude": 39.99461105, + "phone": "3035932066", + "website_url": "http://www.postbrewing.com", + "state": "Colorado", + "street": "105 W Emma St" + }, + { + "id": "64187393-244a-4e18-8fae-9628e3979dac", + "name": "The Pour Farm", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Union", + "state_province": "Maine", + "postal_code": "04862", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5083805372", + "website_url": "http://www.thepourfarm.com", + "state": "Maine", + "street": null + }, + { + "id": "26a82c03-9de0-4c7f-a2fc-3885f8ce961a", + "name": "The Prodigal Brewing Company", + "brewery_type": "micro", + "address_1": "9 Auburndale Ln", + "address_2": null, + "address_3": null, + "city": "Auburn", + "state_province": "New Hampshire", + "postal_code": "03032", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6036827381", + "website_url": null, + "state": "New Hampshire", + "street": "9 Auburndale Ln" + }, + { + "id": "1c5234da-6871-4fb3-8c42-3ec063d6474c", + "name": "The Proper Brewing Company", + "brewery_type": "brewpub", + "address_1": "117 W Broad St", + "address_2": null, + "address_3": null, + "city": "Quakertown", + "state_province": "Pennsylvania", + "postal_code": "18951-1200", + "country": "United States", + "longitude": -75.34137437, + "latitude": 40.44177523, + "phone": "2674905168", + "website_url": "http://www.theproperbrewing.com", + "state": "Pennsylvania", + "street": "117 W Broad St" + }, + { + "id": "c19087b5-c47d-4db7-ad1d-72a6b9d518d4", + "name": "The Public Option", + "brewery_type": "brewpub", + "address_1": "1601 Rhode Island Ave NE", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "District of Columbia", + "postal_code": "20018-1841", + "country": "United States", + "longitude": -76.9817377, + "latitude": 38.926148, + "phone": "2023975129", + "website_url": "http://www.thepublicoptiondc.com", + "state": "District of Columbia", + "street": "1601 Rhode Island Ave NE" + }, + { + "id": "5695e72b-9265-4f4e-9265-c82832f3b344", + "name": "The Purple Mango Cafe and Brewery", + "brewery_type": "micro", + "address_1": "294 Stephen Road", + "address_2": null, + "address_3": null, + "city": "Marrakai", + "state_province": "NT", + "postal_code": "822", + "country": "Australia", + "longitude": 131.4674986, + "latitude": -12.7652563, + "phone": "+61 407 739 738", + "website_url": "http://purplemangocafe.com.au/", + "state": "NT", + "street": "294 Stephen Road" + }, + { + "id": "864ffc76-4334-4f8e-baa2-42c2d3a6605c", + "name": "The Railyard Brewing Co", + "brewery_type": "brewpub", + "address_1": "12 W Jefferson St Ste 100", + "address_2": null, + "address_3": null, + "city": "Montgomery", + "state_province": "Alabama", + "postal_code": "36104-2573", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3342620080", + "website_url": "http://www.railyardbrewingcompany.com", + "state": "Alabama", + "street": "12 W Jefferson St Ste 100" + }, + { + "id": "549487d1-b744-4505-b3bf-47be3df2b59e", + "name": "The Rare Barrel", + "brewery_type": "micro", + "address_1": "940 Parker St", + "address_2": null, + "address_3": null, + "city": "Berkeley", + "state_province": "California", + "postal_code": "94710", + "country": "United States", + "longitude": -122.2914445, + "latitude": 37.8576209, + "phone": "5109846585", + "website_url": "http://www.therarebarrel.com", + "state": "California", + "street": "940 Parker St" + }, + { + "id": "fafb891c-aace-44e9-b4d1-b554f0e6d72a", + "name": "The Ravenous Pig / Cask & Larder", + "brewery_type": "brewpub", + "address_1": "565 W Fairbanks Ave", + "address_2": null, + "address_3": null, + "city": "Winter Park", + "state_province": "Florida", + "postal_code": "32789-5005", + "country": "United States", + "longitude": -81.3558211, + "latitude": 28.5933111, + "phone": "3212804200", + "website_url": "http://www.caskandlarder.com", + "state": "Florida", + "street": "565 W Fairbanks Ave" + }, + { + "id": "e7757500-d0bf-4060-8da7-be9734e4397d", + "name": "The Red Baron", + "brewery_type": "brewpub", + "address_1": "2495 S Center Rd", + "address_2": null, + "address_3": null, + "city": "Burton", + "state_province": "Michigan", + "postal_code": "48519-1145", + "country": "United States", + "longitude": -83.63373728, + "latitude": 42.9924788, + "phone": "8107441310", + "website_url": "http://www.baronburger.com", + "state": "Michigan", + "street": "2495 S Center Rd" + }, + { + "id": "724e6386-5227-4fce-908f-d8b863723c99", + "name": "The Red Yeti", + "brewery_type": "brewpub", + "address_1": "256 Spring St", + "address_2": null, + "address_3": null, + "city": "Jeffersonville", + "state_province": "Indiana", + "postal_code": "47130-3340", + "country": "United States", + "longitude": -85.7401585, + "latitude": 38.2718249, + "phone": "8122885788", + "website_url": "http://www.redyetijeff.com", + "state": "Indiana", + "street": "256 Spring St" + }, + { + "id": "b6948362-c439-4421-b6ec-ce0d56148f7e", + "name": "The Redding Beer Company", + "brewery_type": "micro", + "address_1": "7 Main St", + "address_2": null, + "address_3": null, + "city": "Redding", + "state_province": "Connecticut", + "postal_code": "06896-3203", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2035879000", + "website_url": "http://www.reddingbeer.com", + "state": "Connecticut", + "street": "7 Main St" + }, + { + "id": "9364246f-38bc-4ab9-bf81-d4b4b2ca4527", + "name": "The Referend Bier Blendery", + "brewery_type": "micro", + "address_1": "1595 Reed Rd Unit 2", + "address_2": null, + "address_3": null, + "city": "Pennington", + "state_province": "New Jersey", + "postal_code": "08534-5007", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6094740443", + "website_url": "http://www.thereferend.com", + "state": "New Jersey", + "street": "1595 Reed Rd Unit 2" + }, + { + "id": "a3d83ebc-e6b7-4fa0-b867-2c044200e21c", + "name": "The Root Cellar", + "brewery_type": "brewpub", + "address_1": "215 N Lbj Dr", + "address_2": null, + "address_3": null, + "city": "San Marcos", + "state_province": "Texas", + "postal_code": "78666-5621", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5123925158", + "website_url": "http://www.rootcellarcafe.com", + "state": "Texas", + "street": "215 N Lbj Dr" + }, + { + "id": "f53459e0-fe45-468b-aa09-f16deebab0ae", + "name": "The Runway By Patrick", + "brewery_type": "brewpub", + "address_1": "2044 Airport Rd", + "address_2": null, + "address_3": null, + "city": "Napa", + "state_province": "California", + "postal_code": "94558-6208", + "country": "United States", + "longitude": -122.2730244, + "latitude": 38.2171014, + "phone": "7072586115", + "website_url": "http://www.therunwaybypatrick.com", + "state": "California", + "street": "2044 Airport Rd" + }, + { + "id": "e31f2a40-51ea-433b-ab68-a327ddd1d59b", + "name": "The Runway Café and Bar", + "brewery_type": "bar", + "address_1": "20 Eastwood Road", + "address_2": "Eastwood Centre", + "address_3": "#01-14B", + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "486442", + "country": "Singapore", + "longitude": 1.3217099857977, + "latitude": 103.95543724233, + "phone": "+65 9859 5348", + "website_url": null, + "state": "Singapore", + "street": "20 Eastwood Road" + }, + { + "id": "dacd265f-723f-4318-bbed-e747655487bb", + "name": "The Sandlot Brewery At Coors Field", + "brewery_type": "large", + "address_1": "2145 Blake St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80205-2010", + "country": "United States", + "longitude": -104.9926484, + "latitude": 39.75571836, + "phone": "3032981587", + "website_url": "http://www.millercoors.com", + "state": "Colorado", + "street": "2145 Blake St" + }, + { + "id": "d9c28f8d-fe6b-4964-9e4e-df297410772c", + "name": "The Sanford Beverage Company, Inc. D.B.A. Steele Street Brewing", + "brewery_type": "brewpub", + "address_1": "300 S Steele St", + "address_2": null, + "address_3": null, + "city": "Ionia", + "state_province": "Michigan", + "postal_code": "48846-2008", + "country": "United States", + "longitude": -85.06766243, + "latitude": 42.98135831, + "phone": "6165234003", + "website_url": "http://www.steelestreetbrewing.com", + "state": "Michigan", + "street": "300 S Steele St" + }, + { + "id": "3dbff370-89c4-4b2e-a25f-6d2ab01e4d0c", + "name": "The Seasonal Brewing Co", + "brewery_type": "micro", + "address_1": "175 Guildford Road", + "address_2": null, + "address_3": null, + "city": "Maylands", + "state_province": "WA", + "postal_code": "6051", + "country": "Australia", + "longitude": 115.89257, + "latitude": -31.93025, + "phone": null, + "website_url": "https://seasonalbrewing.beer/", + "state": "WA", + "street": "175 Guildford Road" + }, + { + "id": "e46f6a31-62ee-4635-ad2d-d03ed6f0d69c", + "name": "The Seventh Tap Brewing Project", + "brewery_type": "micro", + "address_1": "2640 Linwood Ave", + "address_2": null, + "address_3": null, + "city": "Shreveport", + "state_province": "Louisiana", + "postal_code": "71103", + "country": "United States", + "longitude": -93.762508, + "latitude": 32.486727, + "phone": "3187544471", + "website_url": "http://www.theseventhtap.com", + "state": "Louisiana", + "street": "2640 Linwood Ave" + }, + { + "id": "8408c237-93da-4528-9127-4429128898fe", + "name": "The Shop Beer Co.", + "brewery_type": "micro", + "address_1": "922 W 1st St", + "address_2": null, + "address_3": null, + "city": "Tempe", + "state_province": "Arizona", + "postal_code": "85281-2674", + "country": "United States", + "longitude": -111.9514292, + "latitude": 33.42917384, + "phone": "6027174237", + "website_url": "http://www.theshop.beer", + "state": "Arizona", + "street": "922 W 1st St" + }, + { + "id": "6c14ba9d-86b9-4d26-befc-f49838604d3b", + "name": "The SoCo Taphouse", + "brewery_type": "brewpub", + "address_1": "113 E Concho Ave Ste 210", + "address_2": null, + "address_3": null, + "city": "San Angelo", + "state_province": "Texas", + "postal_code": "76903-5948", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3257036218", + "website_url": "http://www.socotaphouse.com", + "state": "Texas", + "street": "113 E Concho Ave Ste 210" + }, + { + "id": "29d07a78-b6dd-457d-9d29-887fc809ddeb", + "name": "The Southern Growl", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Greer", + "state_province": "South Carolina", + "postal_code": "29650-1285", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.thesoutherngrowl.com", + "state": "South Carolina", + "street": null + }, + { + "id": "e7113db6-8cc9-40b3-a17e-fceb42d28fa8", + "name": "The Split Batch Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Buford", + "state_province": "Georgia", + "postal_code": "30519-2236", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4049834303", + "website_url": "http://www.splitbatchbrewery.com", + "state": "Georgia", + "street": null + }, + { + "id": "c79755ff-d7f9-4879-8ff9-6493a771745c", + "name": "The St. George Brewing Company", + "brewery_type": "micro", + "address_1": "204 Challenger Way", + "address_2": null, + "address_3": null, + "city": "Hampton", + "state_province": "Virginia", + "postal_code": "23666-1365", + "country": "United States", + "longitude": -76.39442194, + "latitude": 37.09992525, + "phone": "7578657781", + "website_url": "http://www.stgbeer.com", + "state": "Virginia", + "street": "204 Challenger Way" + }, + { + "id": "793d1d94-9504-437a-9603-a5c0ad987c95", + "name": "The Stalking Horse", + "brewery_type": "brewpub", + "address_1": "10543 West Pico Blvd", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90064", + "country": "United States", + "longitude": -118.3273271, + "latitude": 34.0478786, + "phone": "4248327511", + "website_url": "http://www.thestalkinghorsepub.com", + "state": "California", + "street": "10543 West Pico Blvd" + }, + { + "id": "fd8670d9-f555-416a-b509-710d83602e87", + "name": "The Star Spangled Brewing Co.", + "brewery_type": "micro", + "address_1": "1030 Progress Dr Ste E", + "address_2": null, + "address_3": null, + "city": "Clarksville", + "state_province": "Tennessee", + "postal_code": "37040-5329", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6153981237", + "website_url": null, + "state": "Tennessee", + "street": "1030 Progress Dr Ste E" + }, + { + "id": "bfa759d5-5b8b-43c5-93ef-0a3a4f785417", + "name": "The Station U Brew", + "brewery_type": "micro", + "address_1": "211 W Stewart", + "address_2": null, + "address_3": null, + "city": "Puyallup", + "state_province": "Washington", + "postal_code": "98371-4393", + "country": "United States", + "longitude": -122.2913497, + "latitude": 47.19252511, + "phone": "2534663721", + "website_url": null, + "state": "Washington", + "street": "211 W Stewart" + }, + { + "id": "d131776d-42ee-47c7-a3dc-8283cb8904d0", + "name": "The Suburban Brew", + "brewery_type": "micro", + "address_1": "30 Provident Avenue", + "address_2": "26", + "address_3": null, + "city": "Glynde", + "state_province": "SA", + "postal_code": "5070", + "country": "Australia", + "longitude": 138.6549819, + "latitude": -34.8948191, + "phone": "+61 494 119 316", + "website_url": "http://www.thesuburbanbrew.com.au/", + "state": "SA", + "street": "30 Provident Avenue" + }, + { + "id": "2f09262d-c9a9-495a-94ca-e9bbd14d564d", + "name": "The Sycamore Brewing Cannery", + "brewery_type": "micro", + "address_1": "401 W 24th St", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28206-2664", + "country": "United States", + "longitude": -80.825601, + "latitude": 35.246262, + "phone": "7049103821", + "website_url": null, + "state": "North Carolina", + "street": "401 W 24th St" + }, + { + "id": "2e8426ce-ade4-43f3-8966-ee839e1152ee", + "name": "The Tank Brewing Company", + "brewery_type": "micro", + "address_1": "5100 NW 72nd Ave. Bay A-1", + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "Florida", + "postal_code": "33166", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7868011554", + "website_url": "http://www.thetankbrewing.com", + "state": "Florida", + "street": "5100 NW 72nd Ave. Bay A-1" + }, + { + "id": "31a04853-9975-43ef-94c0-311c40b29959", + "name": "The Tap Brewery", + "brewery_type": "brewpub", + "address_1": "204 W Kirkwood Ave", + "address_2": null, + "address_3": null, + "city": "Bloomington", + "state_province": "Indiana", + "postal_code": "47404-5144", + "country": "United States", + "longitude": -86.5350444, + "latitude": 39.16650797, + "phone": "8122878579", + "website_url": "http://www.thetapbeerbar.com", + "state": "Indiana", + "street": "204 W Kirkwood Ave" + }, + { + "id": "f726f11e-905b-4378-aefe-ab63a493900c", + "name": "The Tap Brewing Company", + "brewery_type": "brewpub", + "address_1": "100 Washington St", + "address_2": null, + "address_3": null, + "city": "Haverhill", + "state_province": "Massachusetts", + "postal_code": "01832-5500", + "country": "United States", + "longitude": -71.084935, + "latitude": 42.7728879, + "phone": "6178358315", + "website_url": "http://www.tapbrewingcompany.com", + "state": "Massachusetts", + "street": "100 Washington St" + }, + { + "id": "fc8adcf4-ac8c-4693-a113-c25aec1b15c3", + "name": "The Thirsty Devil Brewery", + "brewery_type": "micro", + "address_1": "289 Townsend Street", + "address_2": null, + "address_3": null, + "city": "South Albury", + "state_province": "NSW", + "postal_code": "2640", + "country": "Australia", + "longitude": 146.9105054, + "latitude": -36.0911459, + "phone": "+61 2 6021 1112", + "website_url": "http://www.thethirstydevil.com.au/", + "state": "NSW", + "street": "289 Townsend Street" + }, + { + "id": "cf1497a1-7064-4107-a8f9-8e8b40a01029", + "name": "The Three Legs Brewing Co", + "brewery_type": "taproom", + "address_1": "Udimore Road", + "address_2": null, + "address_3": null, + "city": "Rye", + "state_province": "East Sussex", + "postal_code": "TN31 6BX", + "country": "England", + "longitude": 0.611331, + "latitude": 50.945341, + "phone": "7939997622", + "website_url": "http://www.thethreelegs.co.uk/", + "state": "East Sussex", + "street": "Udimore Road" + }, + { + "id": "cd77bbc5-a335-4602-814a-a7f74f4e72e3", + "name": "The Top-Notch Brewing Company Ltd", + "brewery_type": "micro", + "address_1": "Wickham Way", + "address_2": null, + "address_3": null, + "city": "Haywards Heath", + "state_province": "West Sussex", + "postal_code": "RH16 1UQ", + "country": "England", + "longitude": -0.10313, + "latitude": 51.011152, + "phone": "7963829368", + "website_url": null, + "state": "West Sussex", + "street": "Wickham Way" + }, + { + "id": "30eb076f-c19a-4118-853e-af259d6fdd99", + "name": "The Traveler's Rest Brewpub", + "brewery_type": "brewpub", + "address_1": "22 Hemp Hill Rd", + "address_2": null, + "address_3": null, + "city": "Bristol", + "state_province": "New Hampshire", + "postal_code": "03222", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6034554477", + "website_url": null, + "state": "New Hampshire", + "street": "22 Hemp Hill Rd" + }, + { + "id": "8e3e58e5-d561-4159-a755-aa5a2188110e", + "name": "The Uraidla Brewery", + "brewery_type": "micro", + "address_1": "1196 B26", + "address_2": null, + "address_3": null, + "city": "Uraidla", + "state_province": "SA", + "postal_code": "5142", + "country": "Australia", + "longitude": 138.7450256, + "latitude": -34.9566288, + "phone": "+61 8 8390 0500", + "website_url": null, + "state": "SA", + "street": "1196 B26" + }, + { + "id": "ccd36d53-22ef-480e-b3b1-ccbca84f821c", + "name": "The Vanguard Brewpub & Distillery", + "brewery_type": "brewpub", + "address_1": "504 N King St", + "address_2": null, + "address_3": null, + "city": "Hampton", + "state_province": "Virginia", + "postal_code": "23669-3057", + "country": "United States", + "longitude": -76.34538304, + "latitude": 37.03124955, + "phone": "7576408100", + "website_url": "http://www.thevanguard757.com", + "state": "Virginia", + "street": "504 N King St" + }, + { + "id": "81089fba-f8db-41bf-83d2-d219bcf92f33", + "name": "The VB Brewery", + "brewery_type": "micro", + "address_1": "6606 State Route 96", + "address_2": null, + "address_3": null, + "city": "Victor", + "state_province": "New York", + "postal_code": "14564-1409", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5859028166", + "website_url": "http://www.thevbbrewery.com", + "state": "New York", + "street": "6606 State Route 96" + }, + { + "id": "5c9bacd3-14c6-4852-aea5-378e2f5ea523", + "name": "The Vegetable Hunter", + "brewery_type": "brewpub", + "address_1": "614 N 2nd St", + "address_2": null, + "address_3": null, + "city": "Harrisburg", + "state_province": "Pennsylvania", + "postal_code": "17101-1001", + "country": "United States", + "longitude": -76.8881545, + "latitude": 40.2638045, + "phone": "7176956229", + "website_url": "http://www.TheVegetableHunter.com", + "state": "Pennsylvania", + "street": "614 N 2nd St" + }, + { + "id": "d0eea2e9-77c1-4d78-82d6-3e3a07a928a8", + "name": "The Veil Brewing Company", + "brewery_type": "micro", + "address_1": "1301 Roseneath Rd", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23230-4623", + "country": "United States", + "longitude": -77.4753435, + "latitude": 37.56830695, + "phone": null, + "website_url": "http://www.theveilbrewing.com", + "state": "Virginia", + "street": "1301 Roseneath Rd" + }, + { + "id": "2a5bde61-4567-4617-9d72-a83063efef28", + "name": "The Viking Braggot Company", + "brewery_type": "micro", + "address_1": "520 Commercial St Unit F", + "address_2": null, + "address_3": null, + "city": "Eugene", + "state_province": "Oregon", + "postal_code": "97402-5347", + "country": "United States", + "longitude": -123.0910621, + "latitude": 44.03170858, + "phone": "5416538371", + "website_url": "http://www.drinkviking.com", + "state": "Oregon", + "street": "520 Commercial St Unit F" + }, + { + "id": "f2e2ffbe-e126-494d-925a-6d79f87cadfc", + "name": "The Village Corner", + "brewery_type": "brewpub", + "address_1": "6655 James B Rivers Dr", + "address_2": null, + "address_3": null, + "city": "Stone Mountain", + "state_province": "Georgia", + "postal_code": "30083-2232", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7704980329", + "website_url": "http://www.germanresturant.com", + "state": "Georgia", + "street": "6655 James B Rivers Dr" + }, + { + "id": "c1c83b65-fc4f-46ee-9570-819d7313ddd8", + "name": "The Vine Brewery", + "brewery_type": "brewpub", + "address_1": "High Street", + "address_2": null, + "address_3": null, + "city": "Worthing", + "state_province": "West Sussex", + "postal_code": "BN14 7NN", + "country": "England", + "longitude": -0.393395, + "latitude": 50.825427, + "phone": "1903201121", + "website_url": "http://www.vine-tarring.co.uk/", + "state": "West Sussex", + "street": "High Street" + }, + { + "id": "b94e8965-6f1f-4e08-b741-38484f8cb4a9", + "name": "The Vine N Hop Shop", + "brewery_type": "micro", + "address_1": "1327 N. Carpenter Rd.", + "address_2": null, + "address_3": null, + "city": "Brunswick", + "state_province": "Ohio", + "postal_code": "44212", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3306236940", + "website_url": "http://www.vinehop.com", + "state": "Ohio", + "street": "1327 N. Carpenter Rd." + }, + { + "id": "350e1253-9909-42bb-af12-d6885f149e97", + "name": "The Virginia Beer Company", + "brewery_type": "micro", + "address_1": "401 Second St", + "address_2": null, + "address_3": null, + "city": "Williamsburg", + "state_province": "Virginia", + "postal_code": "23185-4815", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7573782903", + "website_url": "http://www.virginiabeerco.com", + "state": "Virginia", + "street": "401 Second St" + }, + { + "id": "ed37f635-4971-4cd5-900a-7ac0d60e2cdf", + "name": "The Watchmakers Arms Brewery", + "brewery_type": "micro", + "address_1": "Goldstone Villas", + "address_2": null, + "address_3": null, + "city": "Hove", + "state_province": "East Sussex", + "postal_code": "BN3 3RU", + "country": "England", + "longitude": -0.17152, + "latitude": 50.834247, + "phone": "1273776307", + "website_url": "https://www.thewatchmakersarms.co.uk/", + "state": "East Sussex", + "street": "Goldstone Villas" + }, + { + "id": "130cc74f-b3a6-40e9-b2d1-ea8e3c7dbaed", + "name": "The Welcome Swallow Brewery", + "brewery_type": "micro", + "address_1": "99 Ring Road", + "address_2": null, + "address_3": null, + "city": "New Norfolk", + "state_province": "TAS", + "postal_code": "7140", + "country": "Australia", + "longitude": 147.0682983, + "latitude": -42.7856979, + "phone": "+61 438 302 621", + "website_url": "http://www.welcomeswallow.com.au/", + "state": "TAS", + "street": "99 Ring Road" + }, + { + "id": "0d782514-4463-44fb-bcc6-7745461a838f", + "name": "The Welder’s Dog", + "brewery_type": "micro", + "address_1": "101 Beardy Street", + "address_2": null, + "address_3": null, + "city": "Armidale", + "state_province": "NSW", + "postal_code": "2350", + "country": "Australia", + "longitude": 151.6701048, + "latitude": -30.5142565, + "phone": "+61 432 504 444", + "website_url": "https://www.theweldersdog.com.au/", + "state": "NSW", + "street": "101 Beardy Street" + }, + { + "id": "5a4a1710-58ca-42f9-985c-0d868860f00e", + "name": "The Welder’s Dog Brewery", + "brewery_type": "micro", + "address_1": "101 Beardy Street", + "address_2": null, + "address_3": null, + "city": "Armidale", + "state_province": "NSW", + "postal_code": "2350", + "country": "Australia", + "longitude": 151.6701048, + "latitude": -30.5142565, + "phone": "+61 432 504 444", + "website_url": "https://www.theweldersdog.com.au/", + "state": "NSW", + "street": "101 Beardy Street" + }, + { + "id": "95cdf2c9-d9ba-4114-9adc-619590c15688", + "name": "The White Hag Brewery", + "brewery_type": "micro", + "address_1": "Unit 1, Block 2", + "address_2": "Ballymote Business Park", + "address_3": null, + "city": "Ballymote", + "state_province": "Sligo", + "postal_code": "F56 YR52", + "country": "Ireland", + "longitude": -8.5249166, + "latitude": 54.0893242, + "phone": null, + "website_url": "http://www.thewhitehag.com/", + "state": "Sligo", + "street": "Unit 1, Block 2" + }, + { + "id": "5c1cd6fb-fea3-43d7-871b-54c2019d8271", + "name": "The Wicklow Brewery", + "brewery_type": "micro", + "address_1": "Main Street", + "address_2": "Ballygillaroe", + "address_3": null, + "city": "Redcross", + "state_province": "Wicklow", + "postal_code": "A67 H799", + "country": "Ireland", + "longitude": -6.1471627, + "latitude": 52.8893592, + "phone": "35340441661", + "website_url": "http://www.wicklowbrewery.ie/", + "state": "Wicklow", + "street": "Main Street" + }, + { + "id": "efcc1f93-659b-4e5b-aa97-5f8518c5ef36", + "name": "The Wild Rover Brewery", + "brewery_type": "micro", + "address_1": "13921 Lynmar Blvd", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33626", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8134755995", + "website_url": "http://www.thewildroverbrewery.com", + "state": "Florida", + "street": "13921 Lynmar Blvd" + }, + { + "id": "efc1fdf0-8856-4d35-b0e9-d6ac2736043a", + "name": "The Woodburn Brewery", + "brewery_type": "micro", + "address_1": "2800 Woodburn Ave", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45206-1793", + "country": "United States", + "longitude": -84.4768398, + "latitude": 39.1289592, + "phone": "5132212337", + "website_url": "http://www.woodburnbrewery.com", + "state": "Ohio", + "street": "2800 Woodburn Ave" + }, + { + "id": "e8d5827b-34d2-4e73-83e9-8f0f118c3587", + "name": "The Woodlands At SweetWater", + "brewery_type": "micro", + "address_1": "215 Ottley Dr", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30324-3924", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4046912537", + "website_url": null, + "state": "Georgia", + "street": "215 Ottley Dr" + }, + { + "id": "0d2a28a2-9eab-4f92-816a-4536275b23d0", + "name": "The Wrecking Bar Brewpub", + "brewery_type": "brewpub", + "address_1": "292 Moreland Ave NE", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30307-1953", + "country": "United States", + "longitude": -84.3496422, + "latitude": 33.762309, + "phone": "4042212600", + "website_url": "http://www.wreckingbarbrewpub.com", + "state": "Georgia", + "street": "292 Moreland Ave NE" + }, + { + "id": "82cf46b2-ab8d-4efd-9f75-a3e910c9a9bb", + "name": "There Does Not Exist", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "San Luis Obispo", + "state_province": "California", + "postal_code": "93401", + "country": "United States", + "longitude": -120.6596156, + "latitude": 35.2827525, + "phone": null, + "website_url": "http://www.theredoesnotexist.com", + "state": "California", + "street": null + }, + { + "id": "714524c7-19aa-4b05-9a40-72f641b91d3d", + "name": "These Guys Brewing Company", + "brewery_type": "brewpub", + "address_1": "78 Franklin St", + "address_2": null, + "address_3": null, + "city": "Norwich", + "state_province": "Connecticut", + "postal_code": "06360-5806", + "country": "United States", + "longitude": -72.07474352, + "latitude": 41.52487646, + "phone": "8609498550", + "website_url": "http://www.theseguysbrewig.com", + "state": "Connecticut", + "street": "78 Franklin St" + }, + { + "id": "b9faff23-c49c-4adb-a11c-5672cd383961", + "name": "Thew Brewing Company", + "brewery_type": "micro", + "address_1": "301 2nd Ave", + "address_2": null, + "address_3": null, + "city": "Cedar Rapids", + "state_province": "Iowa", + "postal_code": "52404", + "country": "United States", + "longitude": -91.67294, + "latitude": 42.035746, + "phone": "3193438439", + "website_url": "http://www.thewbrew.com", + "state": "Iowa", + "street": "301 2nd Ave" + }, + { + "id": "566c3a39-7a96-460d-b55a-89ea82f6ca34", + "name": "Thimble Island Brewery", + "brewery_type": "closed", + "address_1": "16 Business Park Dr", + "address_2": null, + "address_3": null, + "city": "Branford", + "state_province": "Connecticut", + "postal_code": "06405-2924", + "country": "United States", + "longitude": -72.77202768, + "latitude": 41.29695786, + "phone": "2032082827", + "website_url": "http://www.thimbleislandbrewery.com", + "state": "Connecticut", + "street": "16 Business Park Dr" + }, + { + "id": "f26c65be-a08b-4bb5-a053-5a0c63ae4ff0", + "name": "Thin Man Brewery", + "brewery_type": "brewpub", + "address_1": "486 Elmwood Ave", + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14222-2014", + "country": "United States", + "longitude": -78.87720285, + "latitude": 42.91037815, + "phone": "7169234100", + "website_url": "http://www.thinmanbrewery.com", + "state": "New York", + "street": "486 Elmwood Ave" + }, + { + "id": "e56e71b6-8a59-47b5-a4ee-b91451ad4d81", + "name": "Think Tank Brew Lab", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "South Carolina", + "postal_code": "29607", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.thinktankbrewlab.com", + "state": "South Carolina", + "street": null + }, + { + "id": "0fd31f1d-0bc5-402a-ab2c-86d414218398", + "name": "Third Barrel Brewing", + "brewery_type": "micro", + "address_1": "Bluebell Avenue", + "address_2": "Bluebell Industrial Estate", + "address_3": "Dublin 12", + "city": "Dublin", + "state_province": "Dublin", + "postal_code": "D12 NPF9", + "country": "Ireland", + "longitude": -6.3506651, + "latitude": 53.3308805, + "phone": "353014604387", + "website_url": "https://thirdbarrel.com/", + "state": "Dublin", + "street": "Bluebell Avenue" + }, + { + "id": "96286af2-3741-43d0-a059-a42f8ea584d0", + "name": "Third Base Brewery", + "brewery_type": "brewpub", + "address_1": "500 Blairs Ferry Rd NE Ste 2", + "address_2": null, + "address_3": null, + "city": "Cedar Rapids", + "state_province": "Iowa", + "postal_code": "52402-1466", + "country": "United States", + "longitude": -91.639755, + "latitude": 42.035164, + "phone": "3193789090", + "website_url": "http://www.Thirdbasebrew.com", + "state": "Iowa", + "street": "500 Blairs Ferry Rd NE Ste 2" + }, + { + "id": "261457bf-6164-49da-b03e-88ce62b1ce17", + "name": "Third Eye Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45246", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.thirdeyebrewingcompany.com", + "state": "Ohio", + "street": null + }, + { + "id": "f3c4eedf-18d8-4005-9b92-5bb286560290", + "name": "Third Monk Brewing Co", + "brewery_type": "micro", + "address_1": "228 S Lafayette St", + "address_2": null, + "address_3": null, + "city": "South Lyon", + "state_province": "Michigan", + "postal_code": "48178-1406", + "country": "United States", + "longitude": -83.65116644, + "latitude": 42.45482138, + "phone": "2482786366", + "website_url": "http://www.thirdmonkbrewingco.com", + "state": "Michigan", + "street": "228 S Lafayette St" + }, + { + "id": "33253e4f-6acd-4cf7-8ed6-2fbabee79b2b", + "name": "Third Nature Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Rockford", + "state_province": "Michigan", + "postal_code": "49341", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": null + }, + { + "id": "9a7195db-8207-4809-b558-6eea7cb928ea", + "name": "Third Place Brewing", + "brewery_type": "micro", + "address_1": "630 E Douglas Ave Suite #150", + "address_2": null, + "address_3": null, + "city": "Wichita", + "state_province": "Kansas", + "postal_code": "67202-3537", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.thirdplacebrew.com", + "state": "Kansas", + "street": "630 E Douglas Ave Suite #150" + }, + { + "id": "e63045b8-37a7-41c9-b5e3-6fbb87d2f388", + "name": "Third Rail Beer", + "brewery_type": "contract", + "address_1": "928 Broadway Ste 902", + "address_2": null, + "address_3": null, + "city": "New York", + "state_province": "New York", + "postal_code": "10010-8139", + "country": "United States", + "longitude": -73.9893474, + "latitude": 40.7400479, + "phone": null, + "website_url": "http://www.thirdrailbeer.com", + "state": "New York", + "street": "928 Broadway Ste 902" + }, + { + "id": "1280bcdc-bead-4120-9d6b-003ee242be0f", + "name": "Third Space Brewing", + "brewery_type": "micro", + "address_1": "1505 W Saint Paul Ave", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53233", + "country": "United States", + "longitude": -87.9146199, + "latitude": 43.0346679, + "phone": "4149092337", + "website_url": "http://www.thirdspacebrewing.com", + "state": "Wisconsin", + "street": "1505 W Saint Paul Ave" + }, + { + "id": "c1196b07-ded4-4877-9b8d-999a142f1378", + "name": "Third State Brewing", + "brewery_type": "micro", + "address_1": "352 High St", + "address_2": null, + "address_3": null, + "city": "Burlington", + "state_province": "New Jersey", + "postal_code": "08016-4412", + "country": "United States", + "longitude": -74.85841925, + "latitude": 40.07803141, + "phone": "6093871620", + "website_url": "http://www.thirdstatebrewing.com", + "state": "New Jersey", + "street": "352 High St" + }, + { + "id": "56670487-bac3-4ba0-aeff-5c75df7c3ad7", + "name": "Third Street Aleworks", + "brewery_type": "brewpub", + "address_1": "610 3rd St", + "address_2": null, + "address_3": null, + "city": "Santa Rosa", + "state_province": "California", + "postal_code": "95404-4418", + "country": "United States", + "longitude": -122.7132175, + "latitude": 38.43982595, + "phone": "7075233060", + "website_url": "http://www.thirdstreetaleworks.com", + "state": "California", + "street": "610 3rd St" + }, + { + "id": "d6548df7-6909-4410-84b6-ca15e02821ab", + "name": "Third Street Brewhouse", + "brewery_type": "regional", + "address_1": "219 Red River Ave N", + "address_2": null, + "address_3": null, + "city": "Cold Spring", + "state_province": "Minnesota", + "postal_code": "56320-1624", + "country": "United States", + "longitude": -94.42888016, + "latitude": 45.45859495, + "phone": "3206853690", + "website_url": "http://www.thirdstreetbrewhouse.com", + "state": "Minnesota", + "street": "219 Red River Ave N" + }, + { + "id": "cfd5ec0b-09e6-4d89-b56a-e0a46f1a89f2", + "name": "Third Wheel Brewing", + "brewery_type": "brewpub", + "address_1": "4008 N Service Rd", + "address_2": null, + "address_3": null, + "city": "Saint Peters", + "state_province": "Missouri", + "postal_code": "63376-6462", + "country": "United States", + "longitude": -90.57023315, + "latitude": 38.79578116, + "phone": "6363239810", + "website_url": "http://www.thirdwheelbrewing.com", + "state": "Missouri", + "street": "4008 N Service Rd" + }, + { + "id": "cb3230ed-ad40-4e87-88fa-e8086b13710d", + "name": "Third Window Brewing", + "brewery_type": "brewpub", + "address_1": "406 E Haley St Ste 3", + "address_2": null, + "address_3": null, + "city": "Santa Barbara", + "state_province": "California", + "postal_code": "93101-1740", + "country": "United States", + "longitude": -119.6905176, + "latitude": 34.42106268, + "phone": "8059795090", + "website_url": "http://www.thirdwindowbrewing.com", + "state": "California", + "street": "406 E Haley St Ste 3" + }, + { + "id": "cd923cb5-4ade-4303-888c-ab136b9fc616", + "name": "Thirsty Bro Brewing", + "brewery_type": "micro", + "address_1": "141 E Main St", + "address_2": null, + "address_3": null, + "city": "Royse City", + "state_province": "Texas", + "postal_code": "75189-3712", + "country": "United States", + "longitude": -96.33193039, + "latitude": 32.97521439, + "phone": "2818417246", + "website_url": "http://www.ThirstyBroBrewingCo.com", + "state": "Texas", + "street": "141 E Main St" + }, + { + "id": "3a6986ab-3cfc-4301-9689-aff66afb46d7", + "name": "Thirsty Dog Brewing Company", + "brewery_type": "micro", + "address_1": "529 Grant St Ste 103", + "address_2": null, + "address_3": null, + "city": "Akron", + "state_province": "Ohio", + "postal_code": "44311-1184", + "country": "United States", + "longitude": -81.51788487, + "latitude": 41.0698532, + "phone": "3302522739", + "website_url": "http://www.thirstydog.com", + "state": "Ohio", + "street": "529 Grant St Ste 103" + }, + { + "id": "1cb2123e-2834-48e5-a609-48294c80f741", + "name": "Thirsty Farmer Brew Works", + "brewery_type": "brewpub", + "address_1": "290 Cashtown Road", + "address_2": null, + "address_3": null, + "city": "Biglerville", + "state_province": "Pennsylvania", + "postal_code": "17307", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7176778842", + "website_url": null, + "state": "Pennsylvania", + "street": "290 Cashtown Road" + }, + { + "id": "52e38b1c-1030-4a53-8d2a-a46fc49f3c9e", + "name": "Thirsty Messiah", + "brewery_type": "micro", + "address_1": "140 Lambton Road", + "address_2": null, + "address_3": null, + "city": "Broadmeadow", + "state_province": "NSW", + "postal_code": "2292", + "country": "Australia", + "longitude": 151.7253886, + "latitude": -32.9231194, + "phone": "+61 494 359 940", + "website_url": "http://www.thirstymessiah.com.au/", + "state": "NSW", + "street": "140 Lambton Road" + }, + { + "id": "86bbdd3d-05eb-4bbc-a96f-acdf06161539", + "name": "Thirsty Monk Brewery", + "brewery_type": "brewpub", + "address_1": "92 Patton Ave", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28801-3315", + "country": "United States", + "longitude": -82.55531475, + "latitude": 35.59410425, + "phone": "8282545470", + "website_url": "http://www.monkpub.com", + "state": "North Carolina", + "street": "92 Patton Ave" + }, + { + "id": "5921ed43-ac72-4a70-800a-c29938c1feb5", + "name": "Thirsty Monk Pub Brewery", + "brewery_type": "micro", + "address_1": "1604 E 17th Ave", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80218-1621", + "country": "United States", + "longitude": -104.9682508, + "latitude": 39.743154, + "phone": null, + "website_url": null, + "state": "Colorado", + "street": "1604 E 17th Ave" + }, + { + "id": "9315fc33-084f-4cb6-857b-73b8afa0d7e7", + "name": "Thirsty Nomad Brewing", + "brewery_type": "micro", + "address_1": "4402 Stuart Andrew Blvd Ste A", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28217-1520", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7049400947", + "website_url": "http://www.thirstynomadbrewing.com", + "state": "North Carolina", + "street": "4402 Stuart Andrew Blvd Ste A" + }, + { + "id": "eec21616-2b23-4863-a3fd-9cc5fe3bf108", + "name": "Thirsty Pagan Brewing Co", + "brewery_type": "brewpub", + "address_1": "1623 Broadway St", + "address_2": null, + "address_3": null, + "city": "Superior", + "state_province": "Wisconsin", + "postal_code": "54880-1616", + "country": "United States", + "longitude": -92.1021385, + "latitude": 46.7267785, + "phone": "7153942500", + "website_url": "http://www.thirstypaganbrewing.com", + "state": "Wisconsin", + "street": "1623 Broadway St" + }, + { + "id": "04f0b99c-2b76-48a7-8314-bfeb665269c5", + "name": "Thirsty Planet Brewing Co", + "brewery_type": "micro", + "address_1": "8201 S Congress Ave", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78745-7305", + "country": "United States", + "longitude": -97.7487141, + "latitude": 30.2521655, + "phone": "5128260948", + "website_url": "http://www.thirstyplanet.net", + "state": "Texas", + "street": "8201 S Congress Ave" + }, + { + "id": "55d1e39f-f8ec-4b22-a153-a3ddc6a86615", + "name": "Thirsty Souls Community Brewing", + "brewery_type": "micro", + "address_1": "238 Market St", + "address_2": null, + "address_3": null, + "city": "Mount Airy", + "state_province": "North Carolina", + "postal_code": "27030-3514", + "country": "United States", + "longitude": -80.6087621, + "latitude": 36.5008814, + "phone": null, + "website_url": "http://www.thirstysoulscommunitybrewing.com", + "state": "North Carolina", + "street": "238 Market St" + }, + { + "id": "4abae0ae-51e8-4a47-99cd-83ec76e3a6df", + "name": "Thirsty Street Brewing", + "brewery_type": "brewpub", + "address_1": "3008 1st Ave N", + "address_2": null, + "address_3": null, + "city": "Billings", + "state_province": "Montana", + "postal_code": "59101-2134", + "country": "United States", + "longitude": -108.5083676, + "latitude": 45.78076846, + "phone": "4069693200", + "website_url": "http://www.thirstystreet.com", + "state": "Montana", + "street": "3008 1st Ave N" + }, + { + "id": "3ed13b51-5dd1-40a6-a6a8-6b27c1bce3e7", + "name": "ThirstyBear Organic Brewery", + "brewery_type": "brewpub", + "address_1": "661 Howard St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94105-3915", + "country": "United States", + "longitude": -122.399512, + "latitude": 37.785543, + "phone": "4159740905", + "website_url": "http://www.thirstybear.com", + "state": "California", + "street": "661 Howard St" + }, + { + "id": "6fbbea2c-a936-4db4-9583-f2bf661ed22f", + "name": "Thomas Creek Brewery", + "brewery_type": "micro", + "address_1": "2054 Piedmont Hwy", + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "South Carolina", + "postal_code": "29605-4840", + "country": "United States", + "longitude": -82.42335755, + "latitude": 34.7966767, + "phone": "8646051166", + "website_url": "http://www.thomascreekbeer.com", + "state": "South Carolina", + "street": "2054 Piedmont Hwy" + }, + { + "id": "c4ce03ed-4156-496f-a4b3-57d27cda9de4", + "name": "Thomas Hooker Brewing Co LLC", + "brewery_type": "micro", + "address_1": "16 Tobey Rd", + "address_2": null, + "address_3": null, + "city": "Bloomfield", + "state_province": "Connecticut", + "postal_code": "06002-3522", + "country": "United States", + "longitude": -72.7115431, + "latitude": 41.8089235, + "phone": "8602423111", + "website_url": "http://www.hookerbeer.com", + "state": "Connecticut", + "street": "16 Tobey Rd" + }, + { + "id": "354effc2-1628-434f-bf21-1badf4447b4b", + "name": "Thompson Brewing Co", + "brewery_type": "brewpub", + "address_1": "9900 Indiana Ave Ste 7", + "address_2": null, + "address_3": null, + "city": "Riverside", + "state_province": "California", + "postal_code": "92503-5498", + "country": "United States", + "longitude": -117.4495247, + "latitude": 33.90930805, + "phone": "9519560480", + "website_url": "http://www.thompsonbrewing.com", + "state": "California", + "street": "9900 Indiana Ave Ste 7" + }, + { + "id": "11074879-0fa1-4bbb-956e-d3d00a47262b", + "name": "Thorn Brewing Co", + "brewery_type": "micro", + "address_1": "1745 National Ave.", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92113-1010", + "country": "United States", + "longitude": -117.147735, + "latitude": 32.702171, + "phone": null, + "website_url": null, + "state": "California", + "street": "1745 National Ave." + }, + { + "id": "687e4cd5-76a2-4d9b-9ec8-78af03aa2027", + "name": "Thorn Street Brewery", + "brewery_type": "micro", + "address_1": "3174 Thorn St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92104-4636", + "country": "United States", + "longitude": -117.125379, + "latitude": 32.739337, + "phone": "6195012739", + "website_url": "http://www.thornstreetbrew.com", + "state": "California", + "street": "3174 Thorn St" + }, + { + "id": "0c110b22-05b3-4fc1-b5e4-7e8d370a1e15", + "name": "Thornapple Brewing Company", + "brewery_type": "micro", + "address_1": "6262 28th st SE", + "address_2": null, + "address_3": null, + "city": "Grand rapids", + "state_province": "Michigan", + "postal_code": "49546", + "country": "United States", + "longitude": -85.6506666, + "latitude": 42.9128114, + "phone": "6164226209", + "website_url": "http://Www.thornapplebrewing.com", + "state": "Michigan", + "street": "6262 28th st SE" + }, + { + "id": "6eb642b4-0006-4890-b163-87088711b8da", + "name": "Thornbridge Brewery", + "brewery_type": "micro", + "address_1": "245 Johnston Street", + "address_2": null, + "address_3": null, + "city": "Abbotsford", + "state_province": "VIC", + "postal_code": "3067", + "country": "Australia", + "longitude": 144.99446, + "latitude": -37.8001587, + "phone": "+61 3 9417 2293", + "website_url": "https://bodriggy.beer/", + "state": "VIC", + "street": "245 Johnston Street" + }, + { + "id": "9c871d2f-46e7-492f-917c-28bc9f27d4ee", + "name": "Thorny Devil", + "brewery_type": "micro", + "address_1": "185 Clifton Downs Road", + "address_2": null, + "address_3": null, + "city": "Herron", + "state_province": "WA", + "postal_code": "6211", + "country": "Australia", + "longitude": 115.6572346, + "latitude": -32.7460643, + "phone": "+61 8 9739 1360", + "website_url": "https://thornydevil.beer/", + "state": "WA", + "street": "185 Clifton Downs Road" + }, + { + "id": "4fb64914-6b83-4f34-b439-863aa2859e25", + "name": "Thousand Oaks Brewing Co.", + "brewery_type": "micro", + "address_1": "3200 Woodall Dr Unit C1", + "address_2": null, + "address_3": null, + "city": "Cedar Park", + "state_province": "Texas", + "postal_code": "78613-7773", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5126867999", + "website_url": "http://www.thousandoaksbrewing.com", + "state": "Texas", + "street": "3200 Woodall Dr Unit C1" + }, + { + "id": "83d92319-f24d-4946-a83b-b08362541b0a", + "name": "Thr3e Punks Ale", + "brewery_type": "micro", + "address_1": "259 Third Ave", + "address_2": null, + "address_3": null, + "city": "Chula Vista", + "state_province": "California", + "postal_code": "91910-2721", + "country": "United States", + "longitude": -117.080107, + "latitude": 32.642827, + "phone": "6198579092", + "website_url": "http://3punkales.com/red/index.html", + "state": "California", + "street": "259 Third Ave" + }, + { + "id": "33f3340a-9c62-4071-be56-9c352fcb9857", + "name": "Thr3e Wise Men Brewing Co", + "brewery_type": "brewpub", + "address_1": "1021 Broad Ripple Ave", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46220-2034", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3172555151", + "website_url": null, + "state": "Indiana", + "street": "1021 Broad Ripple Ave" + }, + { + "id": "9dfc4ee7-0740-448e-9d66-f6b06eafb36d", + "name": "Three 3's Brewery", + "brewery_type": "micro", + "address_1": "50 13th St", + "address_2": null, + "address_3": null, + "city": "Hammonton", + "state_province": "New Jersey", + "postal_code": "08037-1559", + "country": "United States", + "longitude": -74.81147261, + "latitude": 39.6385625, + "phone": "7328141396", + "website_url": "http://www.three3sbrewing.com", + "state": "New Jersey", + "street": "50 13th St" + }, + { + "id": "3a7a531f-4700-4a37-9ef7-573c1a3264ff", + "name": "Three Acre Brewery Limited", + "brewery_type": "micro", + "address_1": "Beechy Road", + "address_2": null, + "address_3": null, + "city": "Uckfield", + "state_province": "East Sussex", + "postal_code": "TN22 5JG", + "country": "England", + "longitude": 0.161644, + "latitude": 50.944538, + "phone": "1825891144", + "website_url": "https://threeacrebrewery.com/", + "state": "East Sussex", + "street": "Beechy Road" + }, + { + "id": "075e57e0-0eaf-482b-8ac2-41034f63c5a1", + "name": "Three Barrel Brewing Co", + "brewery_type": "brewpub", + "address_1": "475 Grand Ave", + "address_2": null, + "address_3": null, + "city": "del Norte", + "state_province": "Colorado", + "postal_code": "81132-2204", + "country": "United States", + "longitude": -106.3567109, + "latitude": 37.6790756, + "phone": "7196570681", + "website_url": "http://www.threebarrelbrew.com", + "state": "Colorado", + "street": "475 Grand Ave" + }, + { + "id": "5c8d8884-ab03-4de2-9370-2cd781eb7b07", + "name": "Three Blondes Brewing", + "brewery_type": "brewpub", + "address_1": "1875 Phoenix St", + "address_2": null, + "address_3": null, + "city": "South Haven", + "state_province": "Michigan", + "postal_code": "49090-7151", + "country": "United States", + "longitude": -86.2642391, + "latitude": 42.4033183, + "phone": null, + "website_url": "http://www.threeblondesbrewing.com", + "state": "Michigan", + "street": "1875 Phoenix St" + }, + { + "id": "19ad46cc-8102-47eb-bc11-0f91546e6e13", + "name": "Three Bridges Brewing / Off the Wagon Brewery", + "brewery_type": "brewpub", + "address_1": "2107 Tamiami Trl S", + "address_2": null, + "address_3": null, + "city": "Venice", + "state_province": "Florida", + "postal_code": "34293-5011", + "country": "United States", + "longitude": -82.3913649, + "latitude": 27.0497931, + "phone": "9414972048", + "website_url": "http://www.otwbar.com", + "state": "Florida", + "street": "2107 Tamiami Trl S" + }, + { + "id": "0d600fbf-886a-4337-9a3a-ddf34ee381a0", + "name": "Three Bull Brewing Co", + "brewery_type": "micro", + "address_1": "809 19th St", + "address_2": null, + "address_3": null, + "city": "Snohomish", + "state_province": "Washington", + "postal_code": "98290-1444", + "country": "United States", + "longitude": -122.0917086, + "latitude": 47.93474746, + "phone": "2065505244", + "website_url": "http://www.threebullbrewing.com", + "state": "Washington", + "street": "809 19th St" + }, + { + "id": "de20c7b0-de7a-486a-8602-554e483719aa", + "name": "Three Creeks Brewing Co", + "brewery_type": "brewpub", + "address_1": "721 Desperado Ct", + "address_2": null, + "address_3": null, + "city": "Sisters", + "state_province": "Oregon", + "postal_code": "97759-9514", + "country": "United States", + "longitude": -121.534944, + "latitude": 44.285254, + "phone": "5415491963", + "website_url": "http://www.threecreeksbrewing.com", + "state": "Oregon", + "street": "721 Desperado Ct" + }, + { + "id": "2bdd94ec-ba41-46d3-9835-05f1eb730391", + "name": "Three Creeks Production", + "brewery_type": "micro", + "address_1": "265 E. Barclay Dr.", + "address_2": null, + "address_3": null, + "city": "Sisters", + "state_province": "Oregon", + "postal_code": "97759-9514", + "country": "United States", + "longitude": -121.5480908, + "latitude": 44.29710192, + "phone": "5415491963", + "website_url": null, + "state": "Oregon", + "street": "265 E. Barclay Dr." + }, + { + "id": "27564880-047a-443c-a11b-848da3b04c62", + "name": "Three Empires Brewing Company, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Pearland", + "state_province": "Texas", + "postal_code": "77584", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "a72dd018-8329-4112-b81e-05efb191ca47", + "name": "Three Floyds Brewing Co", + "brewery_type": "regional", + "address_1": "9750 Indiana Pkwy", + "address_2": null, + "address_3": null, + "city": "Munster", + "state_province": "Indiana", + "postal_code": "46321-4004", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2199223565", + "website_url": "http://www.3floyds.com", + "state": "Indiana", + "street": "9750 Indiana Pkwy" + }, + { + "id": "853afac1-06cb-4b7c-874a-5b9c3edfd67d", + "name": "Three Forks Bakery & Brewing Company", + "brewery_type": "brewpub", + "address_1": "211 Commercial St", + "address_2": null, + "address_3": null, + "city": "Nevada City", + "state_province": "California", + "postal_code": "95959-2506", + "country": "United States", + "longitude": -121.017467, + "latitude": 39.26299798, + "phone": "5304708333", + "website_url": "http://threeforksnc.com", + "state": "California", + "street": "211 Commercial St" + }, + { + "id": "994b7ef7-6d89-4f01-ba5f-858c3bf76bcb", + "name": "Three Four Beer Company", + "brewery_type": "brewpub", + "address_1": "829 S Shields St", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80521-3599", + "country": "United States", + "longitude": -105.0959634, + "latitude": 40.5726176, + "phone": "9706821560", + "website_url": "http://www.threefourbeerco.com", + "state": "Colorado", + "street": "829 S Shields St" + }, + { + "id": "1e6a03d0-7697-45f2-b78e-362c43c9132c", + "name": "Three Heads Brewing", + "brewery_type": "micro", + "address_1": "186 Atlantic Ave", + "address_2": null, + "address_3": null, + "city": "Rochester", + "state_province": "New York", + "postal_code": "14607-1213", + "country": "United States", + "longitude": -77.58034655, + "latitude": 43.15611755, + "phone": "5852441224", + "website_url": "http://www.threeheadsbrewing.com", + "state": "New York", + "street": "186 Atlantic Ave" + }, + { + "id": "c56138f8-20c8-4e85-b951-8d68ceb70548", + "name": "Three Huskies Brewing & Dobber's Grill", + "brewery_type": "brewpub", + "address_1": "401 Lakeshore Dr", + "address_2": null, + "address_3": null, + "city": "Canandaigua", + "state_province": "New York", + "postal_code": "14424-2338", + "country": "United States", + "longitude": -77.251124, + "latitude": 42.8723885, + "phone": "5852603530", + "website_url": "http://www.threehuskiesbrewing.com", + "state": "New York", + "street": "401 Lakeshore Dr" + }, + { + "id": "873b4d10-f0c3-43ff-9efa-73b7a69c30b0", + "name": "Three Legged Cow Brewing Co.", + "brewery_type": "micro", + "address_1": "110 Northey Road", + "address_2": null, + "address_3": null, + "city": "Grahamvale", + "state_province": "VIC", + "postal_code": "3631", + "country": "Australia", + "longitude": 145.4449792, + "latitude": -36.3338572, + "phone": "+61 456 526 593", + "website_url": "https://threeleggedcow.com.au/", + "state": "VIC", + "street": "110 Northey Road" + }, + { + "id": "ac071177-1879-4422-aa0e-71d5df1b8ca3", + "name": "Three Magnets Brewing", + "brewery_type": "brewpub", + "address_1": "600 Franklin St SE Unit 105", + "address_2": null, + "address_3": null, + "city": "Olympia", + "state_province": "Washington", + "postal_code": "98501-1360", + "country": "United States", + "longitude": -122.89865057127, + "latitude": 47.04329602698, + "phone": "3609722481", + "website_url": "http://www.threemagnetsbrewing.com", + "state": "Washington", + "street": "600 Franklin St SE Unit 105" + }, + { + "id": "ca24d92d-fcd6-4f5f-b9f4-b30917acd834", + "name": "Three Mile Brewing Co", + "brewery_type": "micro", + "address_1": "231 G St", + "address_2": null, + "address_3": null, + "city": "Davis", + "state_province": "California", + "postal_code": "95616-4549", + "country": "United States", + "longitude": -121.739122, + "latitude": 38.54403522, + "phone": "5305644351", + "website_url": "http://www.threemilebrewing.com/", + "state": "California", + "street": "231 G St" + }, + { + "id": "01166a5e-a46a-44f8-b491-8f539853f0f0", + "name": "Three Monkeys Brewing Co", + "brewery_type": "contract", + "address_1": "455 S Pine St Ste 3", + "address_2": null, + "address_3": null, + "city": "Madera", + "state_province": "California", + "postal_code": "93637-5242", + "country": "United States", + "longitude": -120.0735866, + "latitude": 36.94939346, + "phone": "5593632709", + "website_url": "http://www.3monkeysbrewing.com", + "state": "California", + "street": "455 S Pine St Ste 3" + }, + { + "id": "bea9a114-7951-4ba3-b8bd-a60103b322f9", + "name": "Three Mugs Brewing Company", + "brewery_type": "micro", + "address_1": "2020 NE Aloclek Dr Ste 108", + "address_2": null, + "address_3": null, + "city": "Hillsboro", + "state_province": "Oregon", + "postal_code": "97124-8053", + "country": "United States", + "longitude": -122.8989638, + "latitude": 45.53469242, + "phone": "9713220232", + "website_url": "http://threemugsbrewing.com", + "state": "Oregon", + "street": "2020 NE Aloclek Dr Ste 108" + }, + { + "id": "c4101816-9cb4-4327-afd1-5ec710378b76", + "name": "Three Notch'd Brewing Company", + "brewery_type": "micro", + "address_1": "520 2nd St SE", + "address_2": null, + "address_3": null, + "city": "Charlottesville", + "state_province": "Virginia", + "postal_code": "22902-5794", + "country": "United States", + "longitude": -78.4820248, + "latitude": 38.0261159, + "phone": null, + "website_url": null, + "state": "Virginia", + "street": "520 2nd St SE" + }, + { + "id": "646c6561-3b4f-4d5a-9086-05713ee29465", + "name": "Three Notch'd RVA Collab House", + "brewery_type": "micro", + "address_1": "2930 W Broad St", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23230-5114", + "country": "United States", + "longitude": -77.47194883, + "latitude": 37.56369964, + "phone": "4342930610", + "website_url": "http://www.threenotchdbrewing.com", + "state": "Virginia", + "street": "2930 W Broad St" + }, + { + "id": "809b7edc-f509-4a3c-81ec-1dd40a74c0af", + "name": "Three Notch'd Sour House", + "brewery_type": "micro", + "address_1": "520 2nd St SE", + "address_2": null, + "address_3": null, + "city": "Charlottesville", + "state_province": "Virginia", + "postal_code": "22902-5794", + "country": "United States", + "longitude": -78.4820248, + "latitude": 38.0261159, + "phone": "4349563141", + "website_url": "http://threenotchdbrewing.com/", + "state": "Virginia", + "street": "520 2nd St SE" + }, + { + "id": "8a375f74-67e5-40a7-b284-07b93c747475", + "name": "Three Notch'd Valley Collab House", + "brewery_type": "micro", + "address_1": "241 E Market St", + "address_2": null, + "address_3": null, + "city": "Harrisonburg", + "state_province": "Virginia", + "postal_code": "22801", + "country": "United States", + "longitude": -78.8654965, + "latitude": 38.4487621, + "phone": "4342930610", + "website_url": null, + "state": "Virginia", + "street": "241 E Market St" + }, + { + "id": "bccd3b26-9e23-4311-a82f-a3c591dccc30", + "name": "Three Pints Brewpub", + "brewery_type": "brewpub", + "address_1": "610 W Mitchell Ave", + "address_2": null, + "address_3": null, + "city": "Martinsville", + "state_province": "Indiana", + "postal_code": "46151-2734", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7653499888", + "website_url": "http://www.threepints.com", + "state": "Indiana", + "street": "610 W Mitchell Ave" + }, + { + "id": "4aa52f48-c03f-45a4-833c-9526e37b2a69", + "name": "Three Points Urban Brewery", + "brewery_type": "micro", + "address_1": "331 E 13th St", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45202-7307", + "country": "United States", + "longitude": -84.509442, + "latitude": 39.11009082, + "phone": "5135555555", + "website_url": "http://www.3pointsbeer.com", + "state": "Ohio", + "street": "331 E 13th St" + }, + { + "id": "9d39924c-570a-47cb-afea-297a2de285b4", + "name": "Three Rings Brewery", + "brewery_type": "micro", + "address_1": "536 South Old Highway 81", + "address_2": null, + "address_3": null, + "city": "McPherson", + "state_province": "Kansas", + "postal_code": "67401-6026", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6205045022", + "website_url": null, + "state": "Kansas", + "street": "536 South Old Highway 81" + }, + { + "id": "63534fe3-fa73-49f0-8f5f-2fa0f2827424", + "name": "Three Rivers Brewing Co", + "brewery_type": "micro", + "address_1": "41763 Sierra Dr Ste B", + "address_2": null, + "address_3": null, + "city": "Three Rivers", + "state_province": "California", + "postal_code": "93271-9671", + "country": "United States", + "longitude": -118.9046115, + "latitude": 36.44021714, + "phone": "5599095483", + "website_url": "http://www.threeriversbrewingco.com", + "state": "California", + "street": "41763 Sierra Dr Ste B" + }, + { + "id": "9c92f2ed-a4b1-4347-884c-70f227b61c30", + "name": "Three Rivers Eatery and Brewery", + "brewery_type": "brewpub", + "address_1": "101 E Main St", + "address_2": null, + "address_3": null, + "city": "Farmington", + "state_province": "New Mexico", + "postal_code": "87401-2701", + "country": "United States", + "longitude": -108.205192, + "latitude": 36.729011, + "phone": "5053242187", + "website_url": "http://www.threeriversbrewery.com", + "state": "New Mexico", + "street": "101 E Main St" + }, + { + "id": "6275d4e7-2531-4855-870f-25616819d7ae", + "name": "Three Spirits Brewery", + "brewery_type": "micro", + "address_1": "5046 Old Pineville Rd Ste 200", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28217-3033", + "country": "United States", + "longitude": -80.87842302, + "latitude": 35.1718311, + "phone": "9802074881", + "website_url": "http://www.threespiritsbrewery.com", + "state": "North Carolina", + "street": "5046 Old Pineville Rd Ste 200" + }, + { + "id": "0efce704-e901-4d09-857c-6164cecd9a43", + "name": "Three Stacks and A Rock Brewing Co", + "brewery_type": "brewpub", + "address_1": "3118 Main St Ste D", + "address_2": null, + "address_3": null, + "city": "Morro Bay", + "state_province": "California", + "postal_code": "93442-1346", + "country": "United States", + "longitude": -120.8526982, + "latitude": 35.36398667, + "phone": "8057719286", + "website_url": "http://threestacksandarockbrewing.com", + "state": "California", + "street": "3118 Main St Ste D" + }, + { + "id": "4fe1eff2-e966-4204-8bb8-668c778470e4", + "name": "Three Stags Brewery", + "brewery_type": "micro", + "address_1": "25", + "address_2": " 6th Street", + "address_3": "Wynberg", + "city": "Sandton", + "state_province": "Gauteng", + "postal_code": "2090", + "country": "South Africa", + "longitude": 28.0931, + "latitude": -26.1102, + "phone": "+27 11 440 2800", + "website_url": "https://www.threestagsbrewery.com/", + "state": "Gauteng", + "street": "25" + }, + { + "id": "ad6980a6-0d89-4555-bb86-781bc2ef622f", + "name": "Three Tails Brewery", + "brewery_type": "micro", + "address_1": "13A Lewis Street", + "address_2": null, + "address_3": null, + "city": "Mudgee", + "state_province": "NSW", + "postal_code": "2850", + "country": "Australia", + "longitude": 149.5911263, + "latitude": -32.5927457, + "phone": null, + "website_url": "http://www.threetailsbrewery.com.au/", + "state": "NSW", + "street": "13A Lewis Street" + }, + { + "id": "47f56601-da08-42bc-97db-89f2e567faaf", + "name": "Three Taverns Craft Brewery", + "brewery_type": "micro", + "address_1": "121 New St", + "address_2": null, + "address_3": null, + "city": "Decatur", + "state_province": "Georgia", + "postal_code": "30030-4131", + "country": "United States", + "longitude": -84.28488078, + "latitude": 33.77305517, + "phone": "4046003355", + "website_url": "http://www.threetavernsbrewery.com", + "state": "Georgia", + "street": "121 New St" + }, + { + "id": "80277c37-d557-4a42-8c92-19126cc96dfc", + "name": "Three Tigers Brewing Company", + "brewery_type": "brewpub", + "address_1": "140 N Prospect St", + "address_2": null, + "address_3": null, + "city": "Granville", + "state_province": "Ohio", + "postal_code": "43023-1337", + "country": "United States", + "longitude": -82.51826713, + "latitude": 40.06839886, + "phone": "7409204680", + "website_url": "http://www.threetigersbrewing.com", + "state": "Ohio", + "street": "140 N Prospect St" + }, + { + "id": "6326f909-d30f-4139-b75a-36335db20309", + "name": "Three Twenty Brewing Co.", + "brewery_type": "micro", + "address_1": "135 5th St SE", + "address_2": null, + "address_3": null, + "city": "Pine City", + "state_province": "Minnesota", + "postal_code": "55063-1510", + "country": "United States", + "longitude": -92.96974968, + "latitude": 45.82796556, + "phone": "3203221237", + "website_url": "http://www.threetwentybrewing.com", + "state": "Minnesota", + "street": "135 5th St SE" + }, + { + "id": "2ca9897a-f7bb-402a-a83c-7ff2df71f5f6", + "name": "Three Weavers Brewing Company", + "brewery_type": "micro", + "address_1": "1031 W Manchester Blvd Unit A-B", + "address_2": null, + "address_3": null, + "city": "Inglewood", + "state_province": "California", + "postal_code": "90301-1509", + "country": "United States", + "longitude": -118.3746452, + "latitude": 33.96138274, + "phone": "3104005830", + "website_url": "http://www.threeweavers.la", + "state": "California", + "street": "1031 W Manchester Blvd Unit A-B" + }, + { + "id": "baf18871-08d8-4cf1-8ce1-5f2dfd3a611b", + "name": "Threefoot Brewing Company, LLC", + "brewery_type": "contract", + "address_1": "4010 23rd Avenue", + "address_2": null, + "address_3": null, + "city": "Meridian", + "state_province": "Mississippi", + "postal_code": "39305", + "country": "United States", + "longitude": -88.7010359, + "latitude": 32.4001022, + "phone": "6016931074", + "website_url": "http://www.threefootbrewing.com", + "state": "Mississippi", + "street": "4010 23rd Avenue" + }, + { + "id": "7796339a-277a-41ab-95a5-5b1d02a9387c", + "name": "Threes Brewing", + "brewery_type": "micro", + "address_1": "333 Douglass St", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11217-3115", + "country": "United States", + "longitude": -73.9821529, + "latitude": 40.6798144, + "phone": "7185222110", + "website_url": "http://www.threesbrewing.com", + "state": "New York", + "street": "333 Douglass St" + }, + { + "id": "3387dbaa-7163-4a4c-9f1a-fa031edcaa40", + "name": "Threshers Brewing Company", + "brewery_type": "micro", + "address_1": "22 Main St N Bldg 3B", + "address_2": null, + "address_3": null, + "city": "Searsmont", + "state_province": "Maine", + "postal_code": "04973-3409", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2079753225", + "website_url": "http://www.threshersbrewingco.com", + "state": "Maine", + "street": "22 Main St N Bldg 3B" + }, + { + "id": "dfdff781-6127-4db8-be9d-ce1cef869e20", + "name": "Throwback Brewery", + "brewery_type": "brewpub", + "address_1": "7 Hobbs Rd", + "address_2": null, + "address_3": null, + "city": "North Hampton", + "state_province": "New Hampshire", + "postal_code": "03862-2120", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6034980123", + "website_url": "http://www.throwbackbrewery.com", + "state": "New Hampshire", + "street": "7 Hobbs Rd" + }, + { + "id": "ae0cb939-c688-4a2e-92e5-096100397cbc", + "name": "Thumb Knuckle Brewing Company", + "brewery_type": "micro", + "address_1": "E0208 State Rd 54", + "address_2": null, + "address_3": null, + "city": "Luxemburg", + "state_province": "Wisconsin", + "postal_code": "54217", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.thumbknuckle.beer", + "state": "Wisconsin", + "street": "E0208 State Rd 54" + }, + { + "id": "21fcf2f2-1db4-4189-a3ef-cc4c629a6e8e", + "name": "Thunder Canyon Brewery", + "brewery_type": "brewpub", + "address_1": "220 E Broadway Blvd Ste 2", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85701-2043", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5203963480", + "website_url": "http://www.thundercanyonbrewery.com", + "state": "Arizona", + "street": "220 E Broadway Blvd Ste 2" + }, + { + "id": "cd16ecb3-09ce-40d8-8b63-47e36680559e", + "name": "Thunder Island Brewing", + "brewery_type": "micro", + "address_1": "515 NW Portage Rd", + "address_2": null, + "address_3": null, + "city": "Cascade Locks", + "state_province": "Oregon", + "postal_code": "97014-6699", + "country": "United States", + "longitude": -121.8962585, + "latitude": 45.66499993, + "phone": "9712314599", + "website_url": "http://www.thunderislandbrewing.com", + "state": "Oregon", + "street": "515 NW Portage Rd" + }, + { + "id": "e2f2ec74-e250-42b0-9992-61d7eb9d8e4f", + "name": "Thunder Road Brewing Company", + "brewery_type": "micro", + "address_1": "130 Barkly Street", + "address_2": null, + "address_3": null, + "city": "Brunswick", + "state_province": "VIC", + "postal_code": "3057", + "country": "Australia", + "longitude": 144.9701732, + "latitude": -37.7772934, + "phone": "+61 1800 831 817", + "website_url": "http://www.thunderroadbrewing.com/", + "state": "VIC", + "street": "130 Barkly Street" + }, + { + "id": "e914f95d-c014-4040-ada8-a73c4f3f37bc", + "name": "Thunderhawk Alements", + "brewery_type": "micro", + "address_1": "8675 Miralani Dr Ste 100", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92126-4355", + "country": "United States", + "longitude": -117.137467, + "latitude": 32.89575006, + "phone": "6199524832", + "website_url": "http://thunderhawkbeer.com", + "state": "California", + "street": "8675 Miralani Dr Ste 100" + }, + { + "id": "1d1f1c20-d34b-4fa5-85fa-7f2da4091b4c", + "name": "Thunderhead Brewing Co", + "brewery_type": "brewpub", + "address_1": "18 E 21st St", + "address_2": null, + "address_3": null, + "city": "Kearney", + "state_province": "Nebraska", + "postal_code": "68847-5402", + "country": "United States", + "longitude": -99.080732, + "latitude": 40.69665183, + "phone": "3082371558", + "website_url": "http://www.thunderheadbrewing.com", + "state": "Nebraska", + "street": "18 E 21st St" + }, + { + "id": "959d0c53-7a7e-4f9d-970e-6bb17e48586e", + "name": "Tibbs Brewing Co", + "brewery_type": "brewpub", + "address_1": "402 S Burdick St", + "address_2": null, + "address_3": null, + "city": "Kalamazoo", + "state_province": "Michigan", + "postal_code": "49007-5218", + "country": "United States", + "longitude": -85.58320831, + "latitude": 42.28859949, + "phone": "8777627397", + "website_url": null, + "state": "Michigan", + "street": "402 S Burdick St" + }, + { + "id": "28c6f58f-5b53-4116-a839-e10d68651aed", + "name": "Tideland Brewing", + "brewery_type": "micro", + "address_1": "4155 Dorchester Rd", + "address_2": null, + "address_3": null, + "city": "North Charleston", + "state_province": "South Carolina", + "postal_code": "29405", + "country": "United States", + "longitude": -80.00236, + "latitude": 32.85328, + "phone": "8434058280", + "website_url": "https://tidelandbrewing.com/", + "state": "South Carolina", + "street": "4155 Dorchester Rd" + }, + { + "id": "5aafd9ac-cb3b-4a21-9952-9baff7a7d3e4", + "name": "Tie and Timber Beer Company", + "brewery_type": "micro", + "address_1": "1459 E Cherry St", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Missouri", + "postal_code": "65802-3356", + "country": "United States", + "longitude": -93.2689605, + "latitude": 37.20378983, + "phone": "7202814664", + "website_url": "http://www.tieandtimberbeerco.com", + "state": "Missouri", + "street": "1459 E Cherry St" + }, + { + "id": "dadbaeba-117a-4e1a-bb9d-8aba74dd3754", + "name": "Tied House Cafe and Brewery-Mtn View", + "brewery_type": "brewpub", + "address_1": "954 Villa St", + "address_2": null, + "address_3": null, + "city": "Mountain View", + "state_province": "California", + "postal_code": "94041-1236", + "country": "United States", + "longitude": -122.0806432, + "latitude": 37.3946092, + "phone": "6509652739", + "website_url": "http://www.tiedhouse.com", + "state": "California", + "street": "954 Villa St" + }, + { + "id": "0db8caaa-153e-4fc4-a4b7-9c9a2dc4cd13", + "name": "Tig Bhric & West Kerry Brewery", + "brewery_type": "brewpub", + "address_1": "Reask", + "address_2": "Dingle Peninsula", + "address_3": null, + "city": "Ballyferriter", + "state_province": "Kerry", + "postal_code": "V92 P681", + "country": "Ireland", + "longitude": -10.3932719, + "latitude": 52.1697735, + "phone": "353876822834", + "website_url": "https://westkerrybrewery.ie/", + "state": "Kerry", + "street": "Reask" + }, + { + "id": "2eb793d3-b52c-4c6b-9944-578f12c4d30c", + "name": "Tight Lines Pub", + "brewery_type": "brewpub", + "address_1": "709 Arendell St", + "address_2": null, + "address_3": null, + "city": "Morehead City", + "state_province": "North Carolina", + "postal_code": "28557-4214", + "country": "United States", + "longitude": -76.71168962, + "latitude": 34.72107454, + "phone": "2527730641", + "website_url": "http://www.tightlinesbrewing.com", + "state": "North Carolina", + "street": "709 Arendell St" + }, + { + "id": "5098f6bc-9d22-4eb8-a68b-f8e26887f93c", + "name": "Tighthead Brewing Co", + "brewery_type": "micro", + "address_1": "161 N Archer Ave", + "address_2": null, + "address_3": null, + "city": "Mundelein", + "state_province": "Illinois", + "postal_code": "60060-2301", + "country": "United States", + "longitude": -88.00117584, + "latitude": 42.26626399, + "phone": null, + "website_url": null, + "state": "Illinois", + "street": "161 N Archer Ave" + }, + { + "id": "327bee18-1bde-49a2-a588-7fa0f7f69787", + "name": "Tightknit Brewing Co", + "brewery_type": "brewpub", + "address_1": "813 8th St", + "address_2": null, + "address_3": null, + "city": "Greeley", + "state_province": "Colorado", + "postal_code": "80631-3911", + "country": "United States", + "longitude": -104.6911371, + "latitude": 40.42495461, + "phone": "9703976146", + "website_url": "http://tightknitbrewing.com/", + "state": "Colorado", + "street": "813 8th St" + }, + { + "id": "55c072af-0a5c-4abe-aa73-15351ea4eef7", + "name": "Tilt Wurks Brewhouse & Casino", + "brewery_type": "micro", + "address_1": "420 Pacific Ave", + "address_2": null, + "address_3": null, + "city": "Miles City", + "state_province": "Montana", + "postal_code": "59301-4000", + "country": "United States", + "longitude": -105.8508049, + "latitude": 46.40206641, + "phone": "4068748458", + "website_url": "http://www.tiltwurks.com", + "state": "Montana", + "street": "420 Pacific Ave" + }, + { + "id": "37cde8b1-1aaf-4181-aee9-e6481769d59c", + "name": "Tilted Axis Brewing Company", + "brewery_type": "brewpub", + "address_1": "303 W Nepessing St", + "address_2": null, + "address_3": null, + "city": "Lapeer", + "state_province": "Michigan", + "postal_code": "48446-2105", + "country": "United States", + "longitude": -83.31247549, + "latitude": 43.05377576, + "phone": "8109694477", + "website_url": "http://www.tiltedaxis.beer", + "state": "Michigan", + "street": "303 W Nepessing St" + }, + { + "id": "62e08b27-ce3d-49a3-b579-70819bb13baf", + "name": "Tilted Barn Brewery", + "brewery_type": "micro", + "address_1": "1 Helmsley Pl", + "address_2": null, + "address_3": null, + "city": "Exeter", + "state_province": "Rhode Island", + "postal_code": "02822-3740", + "country": "United States", + "longitude": -71.523075, + "latitude": 41.554186, + "phone": "4018296088", + "website_url": "http://www.tiltedbarnbrewery.com", + "state": "Rhode Island", + "street": "1 Helmsley Pl" + }, + { + "id": "b8dc35f3-2869-46fb-a797-a5f38a04136d", + "name": "Tilted Barrel Brew Pub", + "brewery_type": "contract", + "address_1": "110 E 29th St", + "address_2": null, + "address_3": null, + "city": "Loveland", + "state_province": "Colorado", + "postal_code": "80538", + "country": "United States", + "longitude": -105.0773167, + "latitude": 40.42158016, + "phone": "9706198950", + "website_url": "http://www.tiltedbarrelbrewpub.com", + "state": "Colorado", + "street": "110 E 29th St" + }, + { + "id": "39a9df45-0fb9-4e29-96b2-b5b2b2a5dd3f", + "name": "Tilted Mash Brewery", + "brewery_type": "micro", + "address_1": "9175 Union Park Way", + "address_2": null, + "address_3": null, + "city": "Elk Grove", + "state_province": "California", + "postal_code": "95624-2792", + "country": "United States", + "longitude": -121.3611472, + "latitude": 38.38804656, + "phone": null, + "website_url": "http://www.tiltedmash.com", + "state": "California", + "street": "9175 Union Park Way" + }, + { + "id": "e2829cb7-d5e8-4401-8fb8-6f7af1150193", + "name": "Tim's Pumpkin Patch", + "brewery_type": "micro", + "address_1": "2901 Rose Hill Rd", + "address_2": null, + "address_3": null, + "city": "Marietta", + "state_province": "New York", + "postal_code": "13110-3236", + "country": "United States", + "longitude": -76.34398, + "latitude": 42.911678, + "phone": "3156739209", + "website_url": "http://www.timspumpkinpatch.com", + "state": "New York", + "street": "2901 Rose Hill Rd" + }, + { + "id": "50020337-f432-4dc6-b007-546c5afe914b", + "name": "Timber Creek Tap & Table", + "brewery_type": "brewpub", + "address_1": "11191 Highline Dr", + "address_2": null, + "address_3": null, + "city": "Meadville", + "state_province": "Pennsylvania", + "postal_code": "16335-6589", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8148071005", + "website_url": "http://www.timbercreektapandtable.com", + "state": "Pennsylvania", + "street": "11191 Highline Dr" + }, + { + "id": "96b81bfe-8ab7-4278-a202-dcd1ce05ede1", + "name": "Timber Monster Brewing Company", + "brewery_type": "micro", + "address_1": "410 Main Street", + "address_2": null, + "address_3": null, + "city": "Sultan", + "state_province": "Washington", + "postal_code": "98294", + "country": "United States", + "longitude": -121.8162158, + "latitude": 47.86241076, + "phone": "4257500814", + "website_url": null, + "state": "Washington", + "street": "410 Main Street" + }, + { + "id": "72466771-4af4-4da5-a120-06081eda08d8", + "name": "Timberyard Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "East Brookfield", + "state_province": "Massachusetts", + "postal_code": "01515", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4135526048", + "website_url": "http://timberyardbrewing.com", + "state": "Massachusetts", + "street": null + }, + { + "id": "3bacbef1-dd83-4eba-9fc8-93641f69454e", + "name": "Timbukbru", + "brewery_type": "micro", + "address_1": "215 6th St SW", + "address_2": null, + "address_3": null, + "city": "Clarion", + "state_province": "Iowa", + "postal_code": "50525", + "country": "United States", + "longitude": -93.740532, + "latitude": 42.731535, + "phone": "5155320015", + "website_url": "http://www.timbukbru.com", + "state": "Iowa", + "street": "215 6th St SW" + }, + { + "id": "592fd7bf-bd5e-4c40-a951-0a4af1c06727", + "name": "Timeless Pints Brewing Co", + "brewery_type": "closed", + "address_1": "3671 Industry Ave Ste C1", + "address_2": null, + "address_3": null, + "city": "Lakewood", + "state_province": "California", + "postal_code": "90712-4155", + "country": "United States", + "longitude": -118.1659197, + "latitude": 33.8236814, + "phone": "5624900099", + "website_url": "http://www.timelesspints.com", + "state": "California", + "street": "3671 Industry Ave Ste C1" + }, + { + "id": "82e6bab6-2ba9-4942-bf6b-5d5791a0b52e", + "name": "Timnath Beerwerks", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Timnath", + "state_province": "Colorado", + "postal_code": "80547", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9702224131", + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "2712000e-1581-481c-9422-63120e8c4026", + "name": "Timotheus Brothers Brewery", + "brewery_type": "micro", + "address_1": "2708 N Peoria Rd", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Illinois", + "postal_code": "62702-1248", + "country": "United States", + "longitude": -89.6309244, + "latitude": 39.846853, + "phone": "2179710027", + "website_url": null, + "state": "Illinois", + "street": "2708 N Peoria Rd" + }, + { + "id": "da072acf-a430-4fa7-9b49-39bd2a391fce", + "name": "Tin Bridge Brewing", + "brewery_type": "micro", + "address_1": "487 E Main St", + "address_2": null, + "address_3": null, + "city": "Westfield", + "state_province": "Massachusetts", + "postal_code": "01085", + "country": "United States", + "longitude": -72.71967336, + "latitude": 42.11268502, + "phone": "4136426418", + "website_url": "http://www.tinbridgebrewing.com", + "state": "Massachusetts", + "street": "487 E Main St" + }, + { + "id": "6c80e58c-accb-4ea0-9d22-5f2805d2ee01", + "name": "Tin Cannon Brewing Company", + "brewery_type": "micro", + "address_1": "7679 Limestone Dr Ste 130", + "address_2": null, + "address_3": null, + "city": "Gainesville", + "state_province": "Virginia", + "postal_code": "20155-4041", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5712480489", + "website_url": "http://www.tincannonbrewing.com", + "state": "Virginia", + "street": "7679 Limestone Dr Ste 130" + }, + { + "id": "8b52fa56-8b17-4ed8-b670-0bd3c4b39c2d", + "name": "Tin Dog Brewing", + "brewery_type": "micro", + "address_1": "309 S Cloverdale St Ste A2", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98108-4500", + "country": "United States", + "longitude": -122.32975510378, + "latitude": 47.525993524042, + "phone": "2064384257", + "website_url": "http://www.tindogbrewing.com", + "state": "Washington", + "street": "309 S Cloverdale St Ste A2" + }, + { + "id": "2fd62d9c-43e9-44a1-88a5-6209f1da84f6", + "name": "Tin Lizard Brewing Co", + "brewery_type": "brewpub", + "address_1": "1000 W Lancaster Ave", + "address_2": null, + "address_3": null, + "city": "Bryn Mawr", + "state_province": "Pennsylvania", + "postal_code": "19010-2611", + "country": "United States", + "longitude": -75.322789, + "latitude": 40.023568, + "phone": "6105251100", + "website_url": "http://www.tinlizardbrewingco.com", + "state": "Pennsylvania", + "street": "1000 W Lancaster Ave" + }, + { + "id": "82a64a53-38c6-4919-9c96-3181b0ce5e99", + "name": "Tin Man Brewing Company", + "brewery_type": "micro", + "address_1": "1430 W Franklin St", + "address_2": null, + "address_3": null, + "city": "Evansville", + "state_province": "Indiana", + "postal_code": "47710-1030", + "country": "United States", + "longitude": -87.58452457, + "latitude": 37.9802897, + "phone": "8126183227", + "website_url": "http://www.tinmanbrewing.com", + "state": "Indiana", + "street": "1430 W Franklin St" + }, + { + "id": "02760ee7-3975-4d69-82ce-fff5d62c0024", + "name": "Tin Man Brewing Kokomo", + "brewery_type": "micro", + "address_1": "500 N Buckeye St Ste A", + "address_2": null, + "address_3": null, + "city": "Kokomo", + "state_province": "Indiana", + "postal_code": "46901-4544", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5125176164", + "website_url": null, + "state": "Indiana", + "street": "500 N Buckeye St Ste A" + }, + { + "id": "07244546-6ab3-4193-a093-2c5eee31e61f", + "name": "Tin Mill Brewing Co", + "brewery_type": "brewpub", + "address_1": "114 Gutenberg St", + "address_2": null, + "address_3": null, + "city": "Hermann", + "state_province": "Missouri", + "postal_code": "65041-1138", + "country": "United States", + "longitude": -91.43303557, + "latitude": 38.706022, + "phone": "5734862275", + "website_url": "http://www.tinmillbrewing.com", + "state": "Missouri", + "street": "114 Gutenberg St" + }, + { + "id": "f8d441be-c395-485d-bc40-97fb4182e1e4", + "name": "Tin Roof Brewing Co", + "brewery_type": "micro", + "address_1": "1624 Wyoming St", + "address_2": null, + "address_3": null, + "city": "Baton Rouge", + "state_province": "Louisiana", + "postal_code": "70802-8514", + "country": "United States", + "longitude": -91.1884332, + "latitude": 30.419556, + "phone": "2253777022", + "website_url": "http://www.tinroofbeer.com", + "state": "Louisiana", + "street": "1624 Wyoming St" + }, + { + "id": "35b63fae-0c3d-4e39-a21a-6643fc97a1bd", + "name": "Tin Whiskers Brewing", + "brewery_type": "micro", + "address_1": "125 9th St E Unit 127", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55101-2308", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Minnesota", + "street": "125 9th St E Unit 127" + }, + { + "id": "9f4b0da0-b7e5-47a5-9477-d8f6ed9a23f6", + "name": "Tiny Fish Brew Co.", + "brewery_type": "micro", + "address_1": "6 Todd Street", + "address_2": null, + "address_3": null, + "city": "Port Adelaide", + "state_province": "SA", + "postal_code": "5015", + "country": "Australia", + "longitude": 138.5075402, + "latitude": -34.8434132, + "phone": "+61 431 102 417", + "website_url": "https://www.tinyfish.com.au/contact", + "state": "SA", + "street": "6 Todd Street" + }, + { + "id": "a9a6b549-6aa2-4e5d-9ceb-bfcde98b17c5", + "name": "Tiny Mountain Brewery", + "brewery_type": "micro", + "address_1": "20 Palmer Street", + "address_2": null, + "address_3": null, + "city": "South Townsville", + "state_province": "QLD", + "postal_code": "4810", + "country": "Australia", + "longitude": 146.8207322, + "latitude": -19.2594649, + "phone": "+61 7 4454 1767", + "website_url": "https://tinymountainbrewery.com.au/", + "state": "QLD", + "street": "20 Palmer Street" + }, + { + "id": "54ccc70d-db3f-4eae-aa75-842df0b1cd29", + "name": "Tiny Tim's Pizza /West Mountain Brewery", + "brewery_type": "brewpub", + "address_1": "21 W Mountain St", + "address_2": null, + "address_3": null, + "city": "Fayetteville", + "state_province": "Arkansas", + "postal_code": "72701-6086", + "country": "United States", + "longitude": -94.1602601, + "latitude": 36.0617393, + "phone": "4794429090", + "website_url": "http://www.facebook.com/pg/tinytimspizza", + "state": "Arkansas", + "street": "21 W Mountain St" + }, + { + "id": "9686860f-5970-4d38-8be8-83b15f36c286", + "name": "Tioga-Sequoia Brewing Co", + "brewery_type": "micro", + "address_1": "746 Broadway St", + "address_2": null, + "address_3": null, + "city": "Fresno", + "state_province": "California", + "postal_code": "93721-2808", + "country": "United States", + "longitude": -119.7883079, + "latitude": 36.73071679, + "phone": "5592645521", + "website_url": "http://www.tiogasequoia.com", + "state": "California", + "street": "746 Broadway St" + }, + { + "id": "45fd5e31-0d8e-4f20-be9b-673df9f03a52", + "name": "Tired Hands Brewing Co", + "brewery_type": "brewpub", + "address_1": "16 Ardmore Ave", + "address_2": null, + "address_3": null, + "city": "Ardmore", + "state_province": "Pennsylvania", + "postal_code": "19003-1302", + "country": "United States", + "longitude": -75.2936914, + "latitude": 40.0086029, + "phone": "6108967621", + "website_url": "http://www.tiredhands.com", + "state": "Pennsylvania", + "street": "16 Ardmore Ave" + }, + { + "id": "b847ebf5-148f-4e38-b05a-cd3771965cd0", + "name": "Tired Hands Brewing Co", + "brewery_type": "brewpub", + "address_1": "35 S Cricket Ter", + "address_2": null, + "address_3": null, + "city": "Ardmore", + "state_province": "Pennsylvania", + "postal_code": "19003-2203", + "country": "United States", + "longitude": -75.29076729, + "latitude": 40.00683337, + "phone": "4844132983", + "website_url": "http://www.tiredhands.com", + "state": "Pennsylvania", + "street": "35 S Cricket Ter" + }, + { + "id": "d60006b3-34eb-46e4-acd3-62a773d980ad", + "name": "Titanic Brewing Co", + "brewery_type": "brewpub", + "address_1": "5813 Ponce de Leon Blvd", + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "Florida", + "postal_code": "33146-2422", + "country": "United States", + "longitude": -80.271314, + "latitude": 25.719812, + "phone": "3056672537", + "website_url": "http://www.titanicbrewery.com", + "state": "Florida", + "street": "5813 Ponce de Leon Blvd" + }, + { + "id": "ae5e5f5f-b96d-4251-880c-ae129319e48f", + "name": "Titletown Brewing Co", + "brewery_type": "brewpub", + "address_1": "200 Dousman St", + "address_2": null, + "address_3": null, + "city": "Green Bay", + "state_province": "Wisconsin", + "postal_code": "54303-2712", + "country": "United States", + "longitude": -88.018517, + "latitude": 44.51892, + "phone": "9204372337", + "website_url": "http://www.titletownbrewing.com", + "state": "Wisconsin", + "street": "200 Dousman St" + }, + { + "id": "854e59da-10fb-4e4d-bd4b-e2b8255bc308", + "name": "Tivoli Brewing Company", + "brewery_type": "micro", + "address_1": "900 Auraria Pkwy Unit 240", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80204-1897", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3035826039", + "website_url": null, + "state": "Colorado", + "street": "900 Auraria Pkwy Unit 240" + }, + { + "id": "3fe64caf-3ed4-4954-b585-e2902ad820b5", + "name": "TKO Libations", + "brewery_type": "micro", + "address_1": "2520 King Arthur Blvd Ste 109", + "address_2": null, + "address_3": null, + "city": "Lewisville", + "state_province": "Texas", + "postal_code": "75056-6082", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4696302337", + "website_url": "http://www.tkolibations.com", + "state": "Texas", + "street": "2520 King Arthur Blvd Ste 109" + }, + { + "id": "bec7031d-6f25-4d7b-b0a2-c6205fa4b64f", + "name": "TNT Brewery", + "brewery_type": "micro", + "address_1": "Plot 164", + "address_2": " Elandsfontein", + "address_3": null, + "city": "Pretoria", + "state_province": "Gauteng", + "postal_code": "0027", + "country": "South Africa", + "longitude": 28.3297, + "latitude": -25.6264, + "phone": "+27 82 320 2362", + "website_url": null, + "state": "Gauteng", + "street": "Plot 164" + }, + { + "id": "96c943e8-92bb-48bd-8cd0-bb818ea3145b", + "name": "To Share Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Manchester", + "state_province": "New Hampshire", + "postal_code": "03104", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3012376579", + "website_url": "http://www.tosharebrewing.com", + "state": "New Hampshire", + "street": null + }, + { + "id": "64d9f2a1-17c1-4813-a5d5-ee3b45cf2419", + "name": "To-Ol", + "brewery_type": "micro", + "address_1": "3 Hilton Street", + "address_2": null, + "address_3": null, + "city": "Clifton Hill", + "state_province": "VIC", + "postal_code": "3068", + "country": "Australia", + "longitude": 144.987194, + "latitude": -37.7934422, + "phone": "+61 3 4828 7617", + "website_url": "https://www.localbrewing.co/", + "state": "VIC", + "street": "3 Hilton Street" + }, + { + "id": "f8dc2368-d963-4d93-9a24-208a6d07c87f", + "name": "Toast Ale", + "brewery_type": "contract", + "address_1": "601 W 26th St Ste 325-291", + "address_2": null, + "address_3": null, + "city": "New York", + "state_province": "New York", + "postal_code": "10001-1101", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9162023851", + "website_url": "http://www.toastale.com/us", + "state": "New York", + "street": "601 W 26th St Ste 325-291" + }, + { + "id": "93662afa-d0a7-48c1-a7b8-a81ca37c5594", + "name": "Toasted Barrel Brewery", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "salt lake city", + "state_province": "Utah", + "postal_code": "84103", + "country": "United States", + "longitude": -111.903198, + "latitude": 40.782833, + "phone": "8016576942", + "website_url": "http://www.toastedbarrelbrewery.com", + "state": "Utah", + "street": null + }, + { + "id": "70b7d406-90d7-460e-b473-9bfa759cb53f", + "name": "Tobacco Road Brewery", + "brewery_type": "brewpub", + "address_1": "505 W Jones St", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27603-1428", + "country": "United States", + "longitude": -78.64598965, + "latitude": 35.78269753, + "phone": "9193018793", + "website_url": "http://www.tobaccoroadsportscafe.com", + "state": "North Carolina", + "street": "505 W Jones St" + }, + { + "id": "dbdef60f-fa3c-42a4-8536-5b4c85c946b9", + "name": "Tobacco Wood Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Oxford", + "state_province": "North Carolina", + "postal_code": "27565", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9199391909", + "website_url": null, + "state": "North Carolina", + "street": null + }, + { + "id": "eb6b9afe-8efc-4179-ac49-1c46c7ef29a0", + "name": "Tocayo Brewing Company", + "brewery_type": "contract", + "address_1": "1 S Dearborn St Ste 1700", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60603-2308", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3122592189", + "website_url": null, + "state": "Illinois", + "street": "1 S Dearborn St Ste 1700" + }, + { + "id": "910f6318-1536-4e84-b0b8-bb5f1ce9f787", + "name": "Toltec Brewing Co", + "brewery_type": "brewpub", + "address_1": "10250 Cottonwood Park NW # S", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87114-7018", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5057307982", + "website_url": null, + "state": "New Mexico", + "street": "10250 Cottonwood Park NW # S" + }, + { + "id": "c947eb60-863c-4676-9961-6c52ba387fb9", + "name": "Tom's Urban Kitchen and Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80249-6310", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3035826039", + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "47df5771-9c01-422d-82f6-98a5d2e4e246", + "name": "Tombstone Brewing Company", + "brewery_type": "micro", + "address_1": "107 E Toughnut", + "address_2": null, + "address_3": null, + "city": "Tombstone", + "state_province": "Arizona", + "postal_code": "85638", + "country": "United States", + "longitude": -110.0722818, + "latitude": 31.71360268, + "phone": "5202226781", + "website_url": "http://www.tombstone.beer", + "state": "Arizona", + "street": "107 E Toughnut" + }, + { + "id": "60b5deda-ae21-44bc-834d-86c7df2a5f83", + "name": "Tomfoolery Brewing", + "brewery_type": "micro", + "address_1": "334 N Washington St Unit 24B", + "address_2": null, + "address_3": null, + "city": "Hammonton", + "state_province": "New Jersey", + "postal_code": "08037-1558", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6095611762", + "website_url": "http://www.tomfoolerybrewing.beer", + "state": "New Jersey", + "street": "334 N Washington St Unit 24B" + }, + { + "id": "7defa30d-bf4d-43e3-a824-6a9535cee2ea", + "name": "Tommyknocker Brewery & Pub", + "brewery_type": "micro", + "address_1": "1401 Miner St", + "address_2": null, + "address_3": null, + "city": "Idaho Springs", + "state_province": "Colorado", + "postal_code": "80452", + "country": "United States", + "longitude": -105.5176775, + "latitude": 39.7417505, + "phone": "3035674419", + "website_url": "http://www.tommyknocker.com", + "state": "Colorado", + "street": "1401 Miner St" + }, + { + "id": "ef25ed7b-5311-45d7-ad82-42e4f7714d2c", + "name": "Tomoka Brewing Company", + "brewery_type": "brewpub", + "address_1": "4647 Clyde Morris Blvd Unit 504", + "address_2": null, + "address_3": null, + "city": "Port Orange", + "state_province": "Florida", + "postal_code": "32129-3001", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3862564979", + "website_url": "http://www.tomokabrewingco.com", + "state": "Florida", + "street": "4647 Clyde Morris Blvd Unit 504" + }, + { + "id": "d388e05d-ba66-4a1e-bb23-67ed7c4890d1", + "name": "Tonewood Brewing", + "brewery_type": "micro", + "address_1": "215 W Clinton Ave", + "address_2": null, + "address_3": null, + "city": "Oaklyn", + "state_province": "New Jersey", + "postal_code": "08107-1500", + "country": "United States", + "longitude": -75.08338058, + "latitude": 39.90139895, + "phone": "8568331500", + "website_url": "http://www.tonewoodbrewing.com", + "state": "New Jersey", + "street": "215 W Clinton Ave" + }, + { + "id": "c508ae1d-6ec9-4975-bb8e-46f6509c7ef2", + "name": "Tongue River Brewing Company", + "brewery_type": "taproom", + "address_1": "530 US-14", + "address_2": null, + "address_3": null, + "city": "Ranchester", + "state_province": "Wyoming", + "postal_code": "82839-5017", + "country": "United States", + "longitude": -107.15706277448, + "latitude": 45.057703011972, + "phone": "13076551901", + "website_url": "https://www.trbrew.com", + "state": "Wyoming", + "street": "530 US-14" + }, + { + "id": "3c0588bd-7fd2-469c-98cb-778653502107", + "name": "Tonopah Brewing Co", + "brewery_type": "brewpub", + "address_1": "315 S Main St", + "address_2": null, + "address_3": null, + "city": "Tonopah", + "state_province": "Nevada", + "postal_code": "89049", + "country": "United States", + "longitude": -117.2319823, + "latitude": 38.07035024, + "phone": "7754822000", + "website_url": "http://www.tonopahbrewing.com", + "state": "Nevada", + "street": "315 S Main St" + }, + { + "id": "b0dd6b63-e818-4619-89ae-ec31ec227412", + "name": "Tooborac Hotel and Brewery", + "brewery_type": "micro", + "address_1": "5115 Northern Highway", + "address_2": null, + "address_3": null, + "city": "Tooborac", + "state_province": "VIC", + "postal_code": "3522", + "country": "Australia", + "longitude": 144.7984619, + "latitude": -37.0426063, + "phone": "+61 3 5433 5201", + "website_url": "http://www.tooborachotel.com.au/", + "state": "VIC", + "street": "5115 Northern Highway" + }, + { + "id": "31c868bb-2d78-4181-8213-df2935cdc29d", + "name": "Tooheys", + "brewery_type": "large", + "address_1": "1320 Malvern Road", + "address_2": null, + "address_3": null, + "city": "Malvern", + "state_province": "VIC", + "postal_code": "3144", + "country": "Australia", + "longitude": 145.0395845, + "latitude": -37.8531494, + "phone": "+61 3 9277 5800", + "website_url": null, + "state": "VIC", + "street": "1320 Malvern Road" + }, + { + "id": "15b37ef1-84bf-4c80-ba2e-74123482d2a1", + "name": "Toolbox Brewing Company", + "brewery_type": "micro", + "address_1": "1495 Poinsettia Ave Ste 148", + "address_2": null, + "address_3": null, + "city": "Vista", + "state_province": "California", + "postal_code": "92081-8539", + "country": "United States", + "longitude": -117.2239733, + "latitude": 33.13599334, + "phone": "7605981477", + "website_url": "http://Toolboxbrewing.Com", + "state": "California", + "street": "1495 Poinsettia Ave Ste 148" + }, + { + "id": "84c1e0e9-5adc-423b-a1db-08bc1d946412", + "name": "Tootsie's Brewery / Lone Oak Vineyard", + "brewery_type": "brewpub", + "address_1": "8400 Ann Arbor Rd", + "address_2": null, + "address_3": null, + "city": "Grass Lake", + "state_province": "Michigan", + "postal_code": "49240-9586", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5175228167", + "website_url": "http://www.tootsiesbrewery.com", + "state": "Michigan", + "street": "8400 Ann Arbor Rd" + }, + { + "id": "cfee19cf-73ea-4a7e-9037-1105b4dbecd8", + "name": "Top Frog Brewery", + "brewery_type": "micro", + "address_1": "221 Vista Dr", + "address_2": null, + "address_3": null, + "city": "Newport", + "state_province": "Washington", + "postal_code": "99156-7014", + "country": "United States", + "longitude": -117.16077576379, + "latitude": 48.313106841941, + "phone": "5096712884", + "website_url": null, + "state": "Washington", + "street": "221 Vista Dr" + }, + { + "id": "e498ccee-c405-451c-b27d-1426970983dc", + "name": "Top Of The Hill Restaurant and Brewery", + "brewery_type": "brewpub", + "address_1": "100 E Franklin St Ste F", + "address_2": null, + "address_3": null, + "city": "Chapel Hill", + "state_province": "North Carolina", + "postal_code": "27514-3629", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9199298676", + "website_url": "http://www.thetopofthehill.com", + "state": "North Carolina", + "street": "100 E Franklin St Ste F" + }, + { + "id": "3288ac09-54e4-46bb-bb90-89a6276a206e", + "name": "Top Rung Brewing Company", + "brewery_type": "micro", + "address_1": "8343 Hogum Bay Ln NE Ste E", + "address_2": null, + "address_3": null, + "city": "Lacey", + "state_province": "Washington", + "postal_code": "98516-3135", + "country": "United States", + "longitude": -122.76341099215, + "latitude": 47.075904804273, + "phone": "3609158766", + "website_url": "http://www.toprungbrewing.com", + "state": "Washington", + "street": "8343 Hogum Bay Ln NE Ste E" + }, + { + "id": "781b62b5-1009-4bd0-97af-7287c2a69627", + "name": "Topa Topa Brewing Co", + "brewery_type": "micro", + "address_1": "104 E Thompson Blvd", + "address_2": null, + "address_3": null, + "city": "Ventura", + "state_province": "California", + "postal_code": "93001-2723", + "country": "United States", + "longitude": -119.2994446, + "latitude": 34.2781592, + "phone": "8056289255", + "website_url": "http://www.topatopabrewingco.com", + "state": "California", + "street": "104 E Thompson Blvd" + }, + { + "id": "8ef9610b-bda9-4703-8205-34bcbac4cedf", + "name": "Toppling Goliath Brewing Co", + "brewery_type": "micro", + "address_1": "1600 Prosperity Rd", + "address_2": null, + "address_3": null, + "city": "Decorah", + "state_province": "Iowa", + "postal_code": "52101-7892", + "country": "United States", + "longitude": -91.7250841, + "latitude": 43.2727293, + "phone": "5633826198", + "website_url": "http://www.tgbrews.com", + "state": "Iowa", + "street": "1600 Prosperity Rd" + }, + { + "id": "4497e1be-0cb7-4778-90ff-a910b56659e3", + "name": "Topsy Turvy", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Hampshire", + "state_province": "Illinois", + "postal_code": "60140-9449", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8477787070", + "website_url": null, + "state": "Illinois", + "street": null + }, + { + "id": "d13d0b82-f800-4d2c-b631-f614e314d910", + "name": "Topsy's", + "brewery_type": "brewpub", + "address_1": "260 Kearny St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94108-4538", + "country": "United States", + "longitude": -122.4038779, + "latitude": 37.79052614, + "phone": "4157570290", + "website_url": "http://www.topsyssf.com", + "state": "California", + "street": "260 Kearny St" + }, + { + "id": "0cd8d2ab-c637-4f3f-b135-5d510fae588d", + "name": "Torc Brewing", + "brewery_type": "micro", + "address_1": "JD Industrial Park", + "address_2": "Scart", + "address_3": null, + "city": "Killarney", + "state_province": "Kerry", + "postal_code": "V93 H761", + "country": "Ireland", + "longitude": -9.5564852, + "latitude": 52.1402528, + "phone": "353876595858", + "website_url": "http://www.torcbrewing.ie/", + "state": "Kerry", + "street": "JD Industrial Park" + }, + { + "id": "d9c48be3-cc34-4624-b4c9-f5dfc04bb240", + "name": "Torched Hop Brewing Company", + "brewery_type": "brewpub", + "address_1": "249 Ponce de Leon Ave NE", + "address_2": null, + "address_3": null, + "city": "Atlanta", + "state_province": "Georgia", + "postal_code": "30308-1937", + "country": "United States", + "longitude": -84.37929776, + "latitude": 33.77232605, + "phone": "4048352040", + "website_url": "http://www.Torchedhopbrewing.com", + "state": "Georgia", + "street": "249 Ponce de Leon Ave NE" + }, + { + "id": "93271344-d85f-41c0-89f1-f57daf704d4c", + "name": "Torg Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55432", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7636390539", + "website_url": "http://www.torgbrewery.com", + "state": "Minnesota", + "street": null + }, + { + "id": "be539c44-e3bf-4344-af13-7d3daf10a539", + "name": "Torn Label Brewing Company", + "brewery_type": "micro", + "address_1": "1708 Campbell St", + "address_2": null, + "address_3": null, + "city": "Kansas City", + "state_province": "Missouri", + "postal_code": "64108-1524", + "country": "United States", + "longitude": -94.5731695, + "latitude": 39.0926934, + "phone": "8166565459", + "website_url": "http://www.tornlabel.com", + "state": "Missouri", + "street": "1708 Campbell St" + }, + { + "id": "53beda27-334d-46d5-8cb5-7336cc42f7b7", + "name": "Toro Creek Brewing Co", + "brewery_type": "micro", + "address_1": "1111 Riverside Ave, Ste 103", + "address_2": null, + "address_3": null, + "city": "Paso Robles", + "state_province": "California", + "postal_code": "93446", + "country": "United States", + "longitude": -120.6872603, + "latitude": 35.6262455, + "phone": "8055507007", + "website_url": "http://www.torocreekbrewingcompany.com", + "state": "California", + "street": "1111 Riverside Ave, Ste 103" + }, + { + "id": "542910b2-3af4-4b62-b5d4-d8edf440cd1a", + "name": "Torrent Brewing Co", + "brewery_type": "micro", + "address_1": "504 Burnett Ave", + "address_2": null, + "address_3": null, + "city": "Ames", + "state_province": "Iowa", + "postal_code": "50010-6178", + "country": "United States", + "longitude": -93.61526616, + "latitude": 42.02605341, + "phone": "5152333155", + "website_url": "http://www.torrentbrewingco.com", + "state": "Iowa", + "street": "504 Burnett Ave" + }, + { + "id": "543f9be5-b99f-4537-a641-67ecc55ca1a8", + "name": "Tortugo Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Inglewood", + "state_province": "California", + "postal_code": "90302-3308", + "country": "United States", + "longitude": -118.3550377, + "latitude": 33.96185, + "phone": null, + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "ab8862bc-e12d-4bf4-a9a7-7973a028f46e", + "name": "Toti Brewing Company", + "brewery_type": "brewpub", + "address_1": "316 Kingsway Road", + "address_2": null, + "address_3": null, + "city": "Amanzimtoti", + "state_province": "KwaZulu-Natal", + "postal_code": "4126", + "country": "South Africa", + "longitude": 30.8872, + "latitude": -30.0494, + "phone": "+27 78 458 9700", + "website_url": "https://www.totibrewingcompany.co.za/", + "state": "KwaZulu-Natal", + "street": "316 Kingsway Road" + }, + { + "id": "8ee26476-e33e-4940-95f9-75bb761d5324", + "name": "Touchstone Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95811-0618", + "country": "United States", + "longitude": -121.4943996, + "latitude": 38.5815719, + "phone": "4155701391", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "8768b214-ee24-40b3-b4cb-1b03862eabb8", + "name": "Tower Brewing Co", + "brewery_type": "micro", + "address_1": "1210 66th St Unit B", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95819-4327", + "country": "United States", + "longitude": -121.4266488, + "latitude": 38.55493463, + "phone": "9162724472", + "website_url": "http://towerbrewingcompany.com", + "state": "California", + "street": "1210 66th St Unit B" + }, + { + "id": "594a7d7b-1885-4697-863e-5d60203b8a8a", + "name": "Towerhill Brewery", + "brewery_type": "brewpub", + "address_1": "237 W Butler Ave", + "address_2": null, + "address_3": null, + "city": "Chalfont", + "state_province": "Pennsylvania", + "postal_code": "18914-3020", + "country": "United States", + "longitude": -75.21378231, + "latitude": 40.27984378, + "phone": "2158228788", + "website_url": "http://www.towerhillbrewery.com", + "state": "Pennsylvania", + "street": "237 W Butler Ave" + }, + { + "id": "16260ec1-907c-4e9b-bbac-ed70973e1ed2", + "name": "Town Branch Distillery", + "brewery_type": "micro", + "address_1": "401 Cross St", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "Kentucky", + "postal_code": "40508", + "country": "United States", + "longitude": -84.50889213, + "latitude": 38.04997369, + "phone": "8592552337", + "website_url": null, + "state": "Kentucky", + "street": "401 Cross St" + }, + { + "id": "24a7dd60-ad86-43d3-84ae-1e51aaf6d7f9", + "name": "Town In City Brewing Co, LLC", + "brewery_type": "micro", + "address_1": "1125 W Cavalcade St", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77009-2907", + "country": "United States", + "longitude": -95.3870438, + "latitude": 29.8036158, + "phone": "8328347151", + "website_url": "http://townincitybrewing.com", + "state": "Texas", + "street": "1125 W Cavalcade St" + }, + { + "id": "82f645a5-0677-4e18-af76-30c25e84ad88", + "name": "Towne Park Brew Co", + "brewery_type": "closed", + "address_1": "19191 Lawrence Cyn", + "address_2": null, + "address_3": null, + "city": "Silverado", + "state_province": "California", + "postal_code": "92676-9731", + "country": "United States", + "longitude": -117.6243323, + "latitude": 33.68926191, + "phone": "9496473562", + "website_url": "http://www.towneparkbrew.com", + "state": "California", + "street": "19191 Lawrence Cyn" + }, + { + "id": "8e300f8a-fce3-446f-bbb4-aac35ff1a08e", + "name": "Townies Brewery", + "brewery_type": "brewpub", + "address_1": "2350 W Liberty Rd", + "address_2": null, + "address_3": null, + "city": "Ann Arbor", + "state_province": "Michigan", + "postal_code": "48103", + "country": "United States", + "longitude": -83.7891745, + "latitude": 42.2730356, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "2350 W Liberty Rd" + }, + { + "id": "5929b669-4b2a-4369-bbbd-fff26a936c19", + "name": "Township 7 Brewing Co. LLC", + "brewery_type": "micro", + "address_1": "303 State Route 11b", + "address_2": null, + "address_3": null, + "city": "Dickinson Center", + "state_province": "New York", + "postal_code": "12930-2008", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5186519532", + "website_url": "http://www.township7brewing.com", + "state": "New York", + "street": "303 State Route 11b" + }, + { + "id": "dfd3c2e4-4a86-4fc6-bcf9-fdd86de5b402", + "name": "Townsville Brewing Co.", + "brewery_type": "micro", + "address_1": "252 Flinders Street", + "address_2": null, + "address_3": null, + "city": "Townsville City", + "state_province": "QLD", + "postal_code": "4810", + "country": "Australia", + "longitude": 146.8183398, + "latitude": -19.2586028, + "phone": "+61 7 4724 2999", + "website_url": "http://www.townsvillebrewingco.com/", + "state": "QLD", + "street": "252 Flinders Street" + }, + { + "id": "094745e6-3b1e-4549-a2db-76bf222e4561", + "name": "Tox Brewing Company", + "brewery_type": "micro", + "address_1": "635 Broad St", + "address_2": null, + "address_3": null, + "city": "New London", + "state_province": "Connecticut", + "postal_code": "06320-2543", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "https://www.toxbrewing.com", + "state": "Connecticut", + "street": "635 Broad St" + }, + { + "id": "f1f9309d-bf1e-4b7a-95b8-ea3505cad878", + "name": "Toxic Brew Company", + "brewery_type": "brewpub", + "address_1": "431 E 5th St", + "address_2": null, + "address_3": null, + "city": "Dayton", + "state_province": "Ohio", + "postal_code": "45402-2911", + "country": "United States", + "longitude": -84.1843655, + "latitude": 39.75724887, + "phone": "9379853618", + "website_url": "http://www.toxicbrewcompany.com", + "state": "Ohio", + "street": "431 E 5th St" + }, + { + "id": "9c82613b-d6ae-43bf-bd12-c00b05058fde", + "name": "Toy Soldier", + "brewery_type": "brewpub", + "address_1": "52 Belden Pl", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94104", + "country": "United States", + "longitude": -122.403671, + "latitude": 37.79129781, + "phone": "4159069048", + "website_url": "http://www.toysoldiersf.com", + "state": "California", + "street": "52 Belden Pl" + }, + { + "id": "9c55c622-8dbc-40ff-bfda-02e71952c2fc", + "name": "Trace Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37221-3967", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Tennessee", + "street": null + }, + { + "id": "34596a5d-9c0a-4b73-943d-e50b5cf07dbf", + "name": "Track 7 Brewing Co - Curtis Park", + "brewery_type": "micro", + "address_1": "3747 W Pacific Ave Ste F", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95820-1000", + "country": "United States", + "longitude": -121.4819794, + "latitude": 38.53890682, + "phone": "9165204677", + "website_url": "http://www.track7brewing.com", + "state": "California", + "street": "3747 W Pacific Ave Ste F" + }, + { + "id": "e2b7686b-885a-4114-b895-681557275183", + "name": "Track 7 Brewing Co - Natomas", + "brewery_type": "micro", + "address_1": "826 Professor Ln Ste 100", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95834-7743", + "country": "United States", + "longitude": -121.4908802, + "latitude": 38.6543681, + "phone": "9165204677", + "website_url": null, + "state": "California", + "street": "826 Professor Ln Ste 100" + }, + { + "id": "373559ad-c964-477c-a443-f0531e3f78b0", + "name": "Tractor Brewing Co", + "brewery_type": "micro", + "address_1": "1800 4th St NW", + "address_2": null, + "address_3": null, + "city": "Albuquerque", + "state_province": "New Mexico", + "postal_code": "87102-1426", + "country": "United States", + "longitude": -106.6478962, + "latitude": 35.1022749, + "phone": "5052436752", + "website_url": "http://www.getplowed.com", + "state": "New Mexico", + "street": "1800 4th St NW" + }, + { + "id": "2f9d7258-dbf0-44b0-bb2f-9b0cd5ad590d", + "name": "TractorLift Brewery", + "brewery_type": "micro", + "address_1": "708 Sumner Ave", + "address_2": null, + "address_3": null, + "city": "Humboldt", + "state_province": "Iowa", + "postal_code": "50548-1763", + "country": "United States", + "longitude": -94.21895665, + "latitude": 42.72094547, + "phone": "5158909484", + "website_url": null, + "state": "Iowa", + "street": "708 Sumner Ave" + }, + { + "id": "53f445a3-9f37-4357-a421-899ee1a1b99a", + "name": "Trade Brewing", + "brewery_type": "micro", + "address_1": "731 1st St", + "address_2": null, + "address_3": null, + "city": "Napa", + "state_province": "California", + "postal_code": "94559-2624", + "country": "United States", + "longitude": -122.2821838, + "latitude": 38.30073396, + "phone": "7074928223", + "website_url": "http://www.tradebrewing.com", + "state": "California", + "street": "731 1st St" + }, + { + "id": "d98dcb64-5f67-4815-84c0-5bb77228fd57", + "name": "Trader Joes - West Coast Office", + "brewery_type": "contract", + "address_1": "800 S. Shamrock Ave", + "address_2": null, + "address_3": null, + "city": "Monrovia", + "state_province": "California", + "postal_code": "91016", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6265993700", + "website_url": null, + "state": "California", + "street": "800 S. Shamrock Ave" + }, + { + "id": "4e2d1963-f8b7-4680-b972-97de485bbbf9", + "name": "Traders Brewing Company", + "brewery_type": "micro", + "address_1": "8587 ZIONSVILLE ROAD", + "address_2": null, + "address_3": null, + "city": "INDIANAPOLIS", + "state_province": "Indiana", + "postal_code": "46268", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3172807505", + "website_url": "http://www.tradersbrewingcompany.com", + "state": "Indiana", + "street": "8587 ZIONSVILLE ROAD" + }, + { + "id": "f441dad2-da0b-43b0-86e6-5fc1cc720c2d", + "name": "Tradesman Brewing Company", + "brewery_type": "micro", + "address_1": "1639 Tatum St", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "South Carolina", + "postal_code": "29412-2646", + "country": "United States", + "longitude": -79.97321382, + "latitude": 32.76013923, + "phone": "8434101315", + "website_url": "http://www.tradesmanbrewing.com", + "state": "South Carolina", + "street": "1639 Tatum St" + }, + { + "id": "c05a5aeb-acfe-454b-8596-b04edddf1bc5", + "name": "Tradition Brewing Company", + "brewery_type": "micro", + "address_1": "700 Thimble Shoals Blvd Ste 103", + "address_2": null, + "address_3": null, + "city": "Newport News", + "state_province": "Virginia", + "postal_code": "23606-4532", + "country": "United States", + "longitude": -76.4770317, + "latitude": 37.0845471, + "phone": "7575929393", + "website_url": "http://www.traditionbrewing.com", + "state": "Virginia", + "street": "700 Thimble Shoals Blvd Ste 103" + }, + { + "id": "9a256c21-3a8b-480b-9cb5-fc52084fedca", + "name": "Traffic Jam and Snug", + "brewery_type": "brewpub", + "address_1": "4268 2nd Ave", + "address_2": null, + "address_3": null, + "city": "Detroit", + "state_province": "Michigan", + "postal_code": "48201-1706", + "country": "United States", + "longitude": -83.086546, + "latitude": 42.384371, + "phone": "3138319470", + "website_url": "http://www.trafficjamdetroit.com", + "state": "Michigan", + "street": "4268 2nd Ave" + }, + { + "id": "0f1ed8ab-a282-40c9-8a58-1dfc03e7ce6f", + "name": "Trail Crest Brewing Company", + "brewery_type": "brewpub", + "address_1": "1800 S Milton Rd Ste 11", + "address_2": null, + "address_3": null, + "city": "Flagstaff", + "state_province": "Arizona", + "postal_code": "86001", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9284405085", + "website_url": "http://www.trailcrestbrewing.com", + "state": "Arizona", + "street": "1800 S Milton Rd Ste 11" + }, + { + "id": "abcd1ceb-8283-4d5f-aeb9-bda3778067c7", + "name": "Trail Dog Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Novato", + "state_province": "California", + "postal_code": "94945-3318", + "country": "United States", + "longitude": -122.5681191, + "latitude": 38.1061979, + "phone": "4157580411", + "website_url": "http://traildogbrewing.com", + "state": "California", + "street": null + }, + { + "id": "4ed098f5-5ff6-40b9-b238-538961222e90", + "name": "Trail Point Brewing Co.", + "brewery_type": "micro", + "address_1": "6035 Lake Michigan Dr", + "address_2": null, + "address_3": null, + "city": "Allendale", + "state_province": "Michigan", + "postal_code": "49401-9101", + "country": "United States", + "longitude": -85.93541536, + "latitude": 42.97207782, + "phone": "6168952739", + "website_url": "http://www.trailpointbrewing.com", + "state": "Michigan", + "street": "6035 Lake Michigan Dr" + }, + { + "id": "64e8e735-2d18-48d8-8dbd-f6729513da71", + "name": "Trailhead Brewing Co", + "brewery_type": "closed", + "address_1": "921 S Riverside Dr", + "address_2": null, + "address_3": null, + "city": "Saint Charles", + "state_province": "Missouri", + "postal_code": "63301-3489", + "country": "United States", + "longitude": -90.48424843, + "latitude": 38.77419057, + "phone": "6369462739", + "website_url": "http://www.trailheadbrewing.com", + "state": "Missouri", + "street": "921 S Riverside Dr" + }, + { + "id": "c9f36d18-efb4-419c-8acf-b4598bbf2326", + "name": "Transient Artisan Ales", + "brewery_type": "micro", + "address_1": "4229 Lake St", + "address_2": null, + "address_3": null, + "city": "Bridgman", + "state_province": "Michigan", + "postal_code": "49106-9109", + "country": "United States", + "longitude": -86.55570937, + "latitude": 41.94299804, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "4229 Lake St" + }, + { + "id": "477bfcda-4e96-4f41-a17b-3b1d0407eae0", + "name": "Transmission Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Oxnard", + "state_province": "California", + "postal_code": "93030-8231", + "country": "United States", + "longitude": -119.1803818, + "latitude": 34.1976308, + "phone": "8054076133", + "website_url": "http://jonkercarey@gmail.com", + "state": "California", + "street": null + }, + { + "id": "145e08e2-df7d-4dfb-a67d-d4f342e9aa6d", + "name": "Transmitter Brewing", + "brewery_type": "micro", + "address_1": "5302 11th St", + "address_2": null, + "address_3": null, + "city": "Long Island City", + "state_province": "New York", + "postal_code": "11101-5917", + "country": "United States", + "longitude": -73.9511062, + "latitude": 40.7431826, + "phone": "6463788529", + "website_url": "http://www.transmitterbrew.com", + "state": "New York", + "street": "5302 11th St" + }, + { + "id": "1fd4733e-3c00-46a6-a358-36877f23cc09", + "name": "Transparent Brewing Company", + "brewery_type": "micro", + "address_1": "14501 White Ave", + "address_2": null, + "address_3": null, + "city": "Grandview", + "state_province": "Missouri", + "postal_code": "64030", + "country": "United States", + "longitude": -94.525651, + "latitude": 38.893126, + "phone": "8164998888", + "website_url": "http://www.transparentbrewingcompany.com", + "state": "Missouri", + "street": "14501 White Ave" + }, + { + "id": "dcc8e5fc-a531-4bed-be1f-c5ae640053e0", + "name": "Transplants Brewing Company", + "brewery_type": "micro", + "address_1": "40242 La Quinta Ln Ste 101", + "address_2": null, + "address_3": null, + "city": "Palmdale", + "state_province": "California", + "postal_code": "93551-3630", + "country": "United States", + "longitude": -118.1397352, + "latitude": 34.61452922, + "phone": "6612667911", + "website_url": "http://www.transplantsbrewing.com", + "state": "California", + "street": "40242 La Quinta Ln Ste 101" + }, + { + "id": "1a25fc20-de4d-4e06-aed5-0013bc2446ee", + "name": "Transport Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Shawnee", + "state_province": "Kansas", + "postal_code": "66203-2749", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.transportbrewery.com", + "state": "Kansas", + "street": null + }, + { + "id": "0bbdd47a-69a9-4e92-b688-b1afa2031390", + "name": "Trap Door Brewing", + "brewery_type": "micro", + "address_1": "2315 Main St", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98660-2641", + "country": "United States", + "longitude": -122.6713099, + "latitude": 45.63904644, + "phone": "5037582569", + "website_url": "http://www.trapdoorbrewing.com", + "state": "Washington", + "street": "2315 Main St" + }, + { + "id": "e41000c2-f355-4cad-ab5c-bd1b96185861", + "name": "Trap Rock Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Saint Croix Falls", + "state_province": "Wisconsin", + "postal_code": "54024", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://traprockbrewing.com", + "state": "Wisconsin", + "street": null + }, + { + "id": "b266cce2-641c-4069-ab75-972b98b14310", + "name": "Trap Rock Restaurant And Brewery", + "brewery_type": "brewpub", + "address_1": "279 Springfield Ave", + "address_2": null, + "address_3": null, + "city": "Berkeley Heights", + "state_province": "New Jersey", + "postal_code": "07922-1214", + "country": "United States", + "longitude": -74.43481217, + "latitude": 40.6890382, + "phone": "9086651755", + "website_url": "http://www.traprockrestaurant.net", + "state": "New Jersey", + "street": "279 Springfield Ave" + }, + { + "id": "693bd0ce-0c4b-4f22-ab99-9103827096d0", + "name": "Trapezium Brewing Company", + "brewery_type": "brewpub", + "address_1": "423 3rd St", + "address_2": null, + "address_3": null, + "city": "Petersburg", + "state_province": "Virginia", + "postal_code": "23803-", + "country": "United States", + "longitude": -77.4014401, + "latitude": 37.23348663, + "phone": "8046775728", + "website_url": "http://www.trapeziumbrewing.com", + "state": "Virginia", + "street": "423 3rd St" + }, + { + "id": "2043d4a7-0356-4c97-bc40-739598829e90", + "name": "Traust Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28205", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9805053111", + "website_url": "http://www.traustbrewing.com", + "state": "North Carolina", + "street": null + }, + { + "id": "3225e829-cb95-45ac-b95b-c4abe0307b0c", + "name": "Treaty City Brewing Co.", + "brewery_type": "micro", + "address_1": "24 & 25 Nicholas St", + "address_2": "Medieval Quarter", + "address_3": null, + "city": "Limerick", + "state_province": "Limerick", + "postal_code": "V94 EH57", + "country": "Ireland", + "longitude": -8.6264874, + "latitude": 52.6696543, + "phone": "353871405560", + "website_url": "http://treatycitybrewery.ie/", + "state": "Limerick", + "street": "24 & 25 Nicholas St" + }, + { + "id": "413f12ba-347c-4343-8da7-63261f878669", + "name": "Tree Farm Brewing Company, LLC", + "brewery_type": "contract", + "address_1": "3020 Papa Bear Dr", + "address_2": null, + "address_3": null, + "city": "College Station", + "state_province": "Texas", + "postal_code": "77845-1402", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9798200535", + "website_url": "http://www.treefarmbrewing.com", + "state": "Texas", + "street": "3020 Papa Bear Dr" + }, + { + "id": "1c0e323d-45ab-4d0c-9f27-8e8a62df3703", + "name": "Tree House Brewery", + "brewery_type": "regional", + "address_1": "129 Sturbridge Rd", + "address_2": null, + "address_3": null, + "city": "Charlton", + "state_province": "Massachusetts", + "postal_code": "01507-5330", + "country": "United States", + "longitude": -72.0125532, + "latitude": 42.1366948, + "phone": "4139491891", + "website_url": "http://www.treehousebrew.com", + "state": "Massachusetts", + "street": "129 Sturbridge Rd" + }, + { + "id": "ac5b056f-49e7-4785-b58a-4ce34e6934c6", + "name": "Trek Brewing", + "brewery_type": "micro", + "address_1": "1486 Granville Rd", + "address_2": null, + "address_3": null, + "city": "Newark", + "state_province": "Ohio", + "postal_code": "43055-1538", + "country": "United States", + "longitude": -82.45564409, + "latitude": 40.05722817, + "phone": null, + "website_url": "http://www.trekbeer.com", + "state": "Ohio", + "street": "1486 Granville Rd" + }, + { + "id": "100fc1b1-c30f-4aeb-80bd-ab2914e7483a", + "name": "Tri City Brewing Co", + "brewery_type": "micro", + "address_1": "4170 Shrestha Dr", + "address_2": null, + "address_3": null, + "city": "Bay City", + "state_province": "Michigan", + "postal_code": "48706-2184", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9896861340", + "website_url": "http://www.tricitybrewing.com", + "state": "Michigan", + "street": "4170 Shrestha Dr" + }, + { + "id": "112fac9b-4810-42fb-a5b6-046f43f74cb7", + "name": "Tribe Breweries", + "brewery_type": "micro", + "address_1": "2 Ducks Lane", + "address_2": null, + "address_3": null, + "city": "Goulburn", + "state_province": "NSW", + "postal_code": "2580", + "country": "Australia", + "longitude": 149.6914062, + "latitude": -34.770874, + "phone": "+61 2 4647 7368", + "website_url": "https://www.tribebreweries.com/", + "state": "NSW", + "street": "2 Ducks Lane" + }, + { + "id": "2544997a-17f7-4e5e-8d65-13c10c05da4b", + "name": "Tribes Beer Company", + "brewery_type": "brewpub", + "address_1": "11220 Lincoln Hwy", + "address_2": null, + "address_3": null, + "city": "Mokena", + "state_province": "Illinois", + "postal_code": "60448-8208", + "country": "United States", + "longitude": -87.8886903, + "latitude": 41.5033149, + "phone": "8154640248", + "website_url": "http://www.tribesalehouse.com", + "state": "Illinois", + "street": "11220 Lincoln Hwy" + }, + { + "id": "042461eb-cc89-4c95-bc61-8a6a95bbf989", + "name": "Tributary Brewing Company", + "brewery_type": "micro", + "address_1": "10 Shapleigh Rd", + "address_2": null, + "address_3": null, + "city": "Kittery", + "state_province": "Maine", + "postal_code": "03904-1480", + "country": "United States", + "longitude": -70.736801, + "latitude": 43.090863, + "phone": null, + "website_url": "http://www.tributarybrewingcompany.com", + "state": "Maine", + "street": "10 Shapleigh Rd" + }, + { + "id": "895ddfb0-8827-49d4-914e-c289559e854d", + "name": "Tribute Brewing Co", + "brewery_type": "micro", + "address_1": "1106 N Bluebird Rd", + "address_2": null, + "address_3": null, + "city": "Eagle River", + "state_province": "Wisconsin", + "postal_code": "54521-7557", + "country": "United States", + "longitude": -89.2579185, + "latitude": 45.92935062, + "phone": "7154802337", + "website_url": "http://www.tributebrewing.com", + "state": "Wisconsin", + "street": "1106 N Bluebird Rd" + }, + { + "id": "542bf46a-1c9c-4e70-a8ad-4df6ad0fe5c6", + "name": "Triceratops Brewing", + "brewery_type": "proprietor", + "address_1": "8036 River Dr SE Ste 203", + "address_2": null, + "address_3": null, + "city": "Tumwater", + "state_province": "Washington", + "postal_code": "98501", + "country": "United States", + "longitude": -122.88455742709, + "latitude": 46.97069876596, + "phone": "3604805626", + "website_url": "http://www.triceratopsbrewing.com", + "state": "Washington", + "street": "8036 River Dr SE Ste 203" + }, + { + "id": "e2e84e69-b8cd-486a-9a65-6a9d0ec3243b", + "name": "Trickster's Brewing Company", + "brewery_type": "micro", + "address_1": "3850 N Schreiber Way", + "address_2": null, + "address_3": null, + "city": "Coeur D Alene", + "state_province": "Idaho", + "postal_code": "83815-8362", + "country": "United States", + "longitude": -116.80346, + "latitude": 47.712429, + "phone": "9707647128", + "website_url": "http://www.trickstersbrewing.com", + "state": "Idaho", + "street": "3850 N Schreiber Way" + }, + { + "id": "b44ee45f-694b-474a-a802-a28856b51183", + "name": "Triggerfish Brewing", + "brewery_type": "brewpub", + "address_1": "9 de Beers Avenue", + "address_2": "Paardevlei", + "address_3": null, + "city": "Somerset West", + "state_province": "Western Cape", + "postal_code": "7130", + "country": "South Africa", + "longitude": 18.8189, + "latitude": -34.0858, + "phone": "+27 21 851 5861", + "website_url": "https://www.triggerfishbrewing.co.za/", + "state": "Western Cape", + "street": "9 de Beers Avenue" + }, + { + "id": "c03a12eb-9a25-4841-8f41-e78d0053fa3d", + "name": "Trillium Brewing", + "brewery_type": "regional", + "address_1": "110 Shawmut Rd", + "address_2": null, + "address_3": null, + "city": "Canton", + "state_province": "Massachusetts", + "postal_code": "02021-1412", + "country": "United States", + "longitude": -71.1527702, + "latitude": 42.1847202, + "phone": "6174538745", + "website_url": "http://www.trilliumbrewing.com", + "state": "Massachusetts", + "street": "110 Shawmut Rd" + }, + { + "id": "ffaf9ab2-0357-4109-a086-0cf83291c006", + "name": "Trim Tab Brewing", + "brewery_type": "micro", + "address_1": "2721 5th Ave S", + "address_2": null, + "address_3": null, + "city": "Birmingham", + "state_province": "Alabama", + "postal_code": "35233-3401", + "country": "United States", + "longitude": -86.79140006, + "latitude": 33.51284923, + "phone": "2057030536", + "website_url": "http://www.trimtabbrewing.com", + "state": "Alabama", + "street": "2721 5th Ave S" + }, + { + "id": "792bd285-3d5f-4594-b5a0-4a212cd36219", + "name": "Trinity Brewhouse", + "brewery_type": "brewpub", + "address_1": "186 Fountain St", + "address_2": null, + "address_3": null, + "city": "Providence", + "state_province": "Rhode Island", + "postal_code": "02903-1813", + "country": "United States", + "longitude": -71.4168238, + "latitude": 41.8223638, + "phone": "4014532337", + "website_url": "http://www.trinitybrewhouse.com", + "state": "Rhode Island", + "street": "186 Fountain St" + }, + { + "id": "6230d54c-2de5-41c3-b5b3-60dc70d6b2ac", + "name": "Trinity Brewing", + "brewery_type": "brewpub", + "address_1": "1466 Garden of The Gods Rd Ste 184", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80907-9464", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7196340029", + "website_url": "http://www.trinitybrew.com", + "state": "Colorado", + "street": "1466 Garden of The Gods Rd Ste 184" + }, + { + "id": "1065e4e8-e366-4b90-8461-f7bbb8ea6653", + "name": "Tripelroot", + "brewery_type": "brewpub", + "address_1": "146 E Main Ave", + "address_2": null, + "address_3": null, + "city": "Zeeland", + "state_province": "Michigan", + "postal_code": "49464-1736", + "country": "United States", + "longitude": -86.01463482, + "latitude": 42.81211765, + "phone": "6169530050", + "website_url": "http://www.tripelroot.com", + "state": "Michigan", + "street": "146 E Main Ave" + }, + { + "id": "277d6217-6c92-4f58-a227-7fb0a79ab3a4", + "name": "Tripelroot Production Facility", + "brewery_type": "micro", + "address_1": "2262 112th Ave", + "address_2": null, + "address_3": null, + "city": "Holland", + "state_province": "Michigan", + "postal_code": "49424-9638", + "country": "United States", + "longitude": -86.0580859, + "latitude": 42.802587, + "phone": null, + "website_url": null, + "state": "Michigan", + "street": "2262 112th Ave" + }, + { + "id": "46b43b36-9668-4b37-9a23-5f4784ed47b8", + "name": "TripEnd Brewing", + "brewery_type": "micro", + "address_1": "3072 Prutsman Rd", + "address_2": null, + "address_3": null, + "city": "Troupsburg", + "state_province": "New York", + "postal_code": "14885-9613", + "country": "United States", + "longitude": -77.55268946, + "latitude": 42.09121034, + "phone": "6073467472", + "website_url": "http://www.tripendbrewing.com", + "state": "New York", + "street": "3072 Prutsman Rd" + }, + { + "id": "d5a71367-f7f6-47fa-8bf0-d6f25db113d0", + "name": "Triphammer Bierwerks", + "brewery_type": "micro", + "address_1": "111 Parce Ave Ste 3A-1", + "address_2": null, + "address_3": null, + "city": "Fairport", + "state_province": "New York", + "postal_code": "14450-1467", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5853888281", + "website_url": "http://www.triphammerbierwerks.com", + "state": "New York", + "street": "111 Parce Ave Ste 3A-1" + }, + { + "id": "808d7280-d349-4db2-8082-ac9673697483", + "name": "Triple 7 Restaurant & Brewery at Main St Station", + "brewery_type": "brewpub", + "address_1": "200 N Main St Main Street Station Casino", + "address_2": null, + "address_3": null, + "city": "Las Vegas", + "state_province": "Nevada", + "postal_code": "89101-2910", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7023871896", + "website_url": "http://www.mainstreetcasino.com", + "state": "Nevada", + "street": "200 N Main St Main Street Station Casino" + }, + { + "id": "7c4c41ee-e482-4f94-9815-1f46759444d9", + "name": "Triple C Brewing", + "brewery_type": "micro", + "address_1": "2900 Griffith St", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28203-5430", + "country": "United States", + "longitude": -80.8695658, + "latitude": 35.20109925, + "phone": "7043723212", + "website_url": "http://www.triplecbrewing.com", + "state": "North Carolina", + "street": "2900 Griffith St" + }, + { + "id": "97b87b2c-c954-4a64-93b5-186dadd0c568", + "name": "Triple Crossing Brewing Company (Downtown)", + "brewery_type": "micro", + "address_1": "113 S. Foushee St.", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23220-5616", + "country": "United States", + "longitude": -77.4455177, + "latitude": 37.5415927, + "phone": "8043991780", + "website_url": "https://www.triplecrossing.com", + "state": "Virginia", + "street": "113 S. Foushee St." + }, + { + "id": "9975e52b-e507-4751-bfbc-4850f431ed94", + "name": "Triple Crossing Brewing Company (Fullton)", + "brewery_type": "brewpub", + "address_1": "5203 Hatcher St", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23231-3199", + "country": "United States", + "longitude": -77.40752567, + "latitude": 37.51296194, + "phone": "8044951955", + "website_url": "https://www.triplecrossing.com", + "state": "Virginia", + "street": "5203 Hatcher St" + }, + { + "id": "f2a5563e-b5cb-46da-a6a5-d1dae0b1c93e", + "name": "Triple Crossing Brewing Company (Midlothian)", + "brewery_type": "brewpub", + "address_1": "1101 Winterfield Crossing", + "address_2": null, + "address_3": null, + "city": "Midlothian", + "state_province": "Virginia", + "postal_code": "23113", + "country": "United States", + "longitude": -77.665342316948, + "latitude": 37.508114126118, + "phone": "7038520212", + "website_url": "https://www.triplecrossing.com", + "state": "Virginia", + "street": "1101 Winterfield Crossing" + }, + { + "id": "e57d55f3-ee8c-45b0-a092-c77def6cd561", + "name": "Triple Dog Brewing Company", + "brewery_type": "micro", + "address_1": "675 1st St W", + "address_2": null, + "address_3": null, + "city": "Havre", + "state_province": "Montana", + "postal_code": "59501-3415", + "country": "United States", + "longitude": -109.694577, + "latitude": 48.55500303, + "phone": "4068798103", + "website_url": null, + "state": "Montana", + "street": "675 1st St W" + }, + { + "id": "76b0ca40-20bf-4a32-a0de-e89de141a96b", + "name": "Triple J Chophouse and Brew Co", + "brewery_type": "brewpub", + "address_1": "1807 Buddy Holly Ave", + "address_2": null, + "address_3": null, + "city": "Lubbock", + "state_province": "Texas", + "postal_code": "79401-5136", + "country": "United States", + "longitude": -101.8440375, + "latitude": 33.5785911, + "phone": "8067716555", + "website_url": "http://www.triplejchophouseandbrewco.com", + "state": "Texas", + "street": "1807 Buddy Holly Ave" + }, + { + "id": "7b3d0bb0-cb50-48e9-bf3b-8fb420660c96", + "name": "Triple R Brewing", + "brewery_type": "micro", + "address_1": "916 NE 64th Street", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98115", + "country": "United States", + "longitude": -122.3178868, + "latitude": 47.6752147, + "phone": "2065793370", + "website_url": "http://triplerbrewery.com", + "state": "Washington", + "street": "916 NE 64th Street" + }, + { + "id": "05fd4015-bf99-43dc-ab16-500e161eb23a", + "name": "Triple Rock Brewery and Alehouse", + "brewery_type": "brewpub", + "address_1": "1920 Shattuck Ave", + "address_2": null, + "address_3": null, + "city": "Berkeley", + "state_province": "California", + "postal_code": "94704-1022", + "country": "United States", + "longitude": -122.268746, + "latitude": 37.873419, + "phone": "5108432739", + "website_url": "http://www.triplerock.com", + "state": "California", + "street": "1920 Shattuck Ave" + }, + { + "id": "92ce913c-8326-4bd6-ad3e-74f42946b436", + "name": "Triple Voodoo Brewing Co", + "brewery_type": "micro", + "address_1": "2245 3rd St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94107-3125", + "country": "United States", + "longitude": -122.3884378, + "latitude": 37.7611618, + "phone": "4155988811", + "website_url": "http://www.triplevoodoo.com", + "state": "California", + "street": "2245 3rd St" + }, + { + "id": "3d88d2a6-d57c-432b-9d10-745a257a1495", + "name": "Triplehorn Brewing Co", + "brewery_type": "micro", + "address_1": "19510 144th Ave NE Ste E6", + "address_2": null, + "address_3": null, + "city": "Woodinville", + "state_province": "Washington", + "postal_code": "98072-8429", + "country": "United States", + "longitude": -122.1455134596, + "latitude": 47.769368091847, + "phone": "4252427979", + "website_url": "http://www.triplehornbrewing.com", + "state": "Washington", + "street": "19510 144th Ave NE Ste E6" + }, + { + "id": "8b595726-8d21-4a14-84a0-1dd76aecf55a", + "name": "Triptych Brewing", + "brewery_type": "micro", + "address_1": "1703 Woodfield Dr", + "address_2": null, + "address_3": null, + "city": "Savoy", + "state_province": "Illinois", + "postal_code": "61874-9504", + "country": "United States", + "longitude": -88.24927593, + "latitude": 40.0768564, + "phone": "2176071176", + "website_url": "http://www.triptychbrewing.com", + "state": "Illinois", + "street": "1703 Woodfield Dr" + }, + { + "id": "ad729d81-7f38-4f14-ad4b-fc75d9c740d6", + "name": "Triskelion Brewing Company", + "brewery_type": "micro", + "address_1": "340 7th Avenue East", + "address_2": null, + "address_3": null, + "city": "Hendersonville", + "state_province": "North Carolina", + "postal_code": "28792", + "country": "United States", + "longitude": -82.45789699, + "latitude": 35.32060017, + "phone": "8283887051", + "website_url": "http://www.triskelionbrewing.com", + "state": "North Carolina", + "street": "340 7th Avenue East" + }, + { + "id": "e225df86-c175-4cd4-a5c0-42dbea2e0cbe", + "name": "Triton Brewing Company", + "brewery_type": "micro", + "address_1": "5764 Wheeler Rd", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46216-1038", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3177352706", + "website_url": "http://www.tritonbrewing.com", + "state": "Indiana", + "street": "5764 Wheeler Rd" + }, + { + "id": "e76fb79e-4dcc-4731-90d5-3d87f1d94cb7", + "name": "Triumph Brewing Co of New Hope", + "brewery_type": "brewpub", + "address_1": "400 Union Square Dr", + "address_2": null, + "address_3": null, + "city": "New Hope", + "state_province": "Pennsylvania", + "postal_code": "18938-1367", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2158628300", + "website_url": "http://www.triumphbrew.com", + "state": "Pennsylvania", + "street": "400 Union Square Dr" + }, + { + "id": "9aaecb31-ffd2-490e-b6b8-c9037beaf5cf", + "name": "Triumph Brewing Co of Princeton", + "brewery_type": "brewpub", + "address_1": "138 Nassau St Ste A", + "address_2": null, + "address_3": null, + "city": "Princeton", + "state_province": "New Jersey", + "postal_code": "08542-7011", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6099247855", + "website_url": "http://www.triumphbrew.com", + "state": "New Jersey", + "street": "138 Nassau St Ste A" + }, + { + "id": "b65eb539-cf66-424a-8e8b-bce335a3295b", + "name": "Triune Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Leavenworth", + "state_province": "Washington", + "postal_code": "98826-1413", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5095483300", + "website_url": null, + "state": "Washington", + "street": null + }, + { + "id": "bf19789e-0711-4e0e-80e7-98a0084c1388", + "name": "Troegs Brewing Co", + "brewery_type": "regional", + "address_1": "200 E Hershey Park Dr", + "address_2": null, + "address_3": null, + "city": "Hershey", + "state_province": "Pennsylvania", + "postal_code": "17033-2719", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7175341297", + "website_url": "http://www.troegs.com", + "state": "Pennsylvania", + "street": "200 E Hershey Park Dr" + }, + { + "id": "0c579f50-de3e-4b39-b404-cb2dec4227df", + "name": "Trolley Barn Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Quakertown", + "state_province": "Pennsylvania", + "postal_code": "18951", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2154998959", + "website_url": "http://www.trolleybarnpublicmarket.com", + "state": "Pennsylvania", + "street": null + }, + { + "id": "a09a3e43-9898-41d6-a426-4ee68780f8a9", + "name": "Trollingwood Taproom & Brewery", + "brewery_type": "micro", + "address_1": "707 Dickinson Ave", + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "North Carolina", + "postal_code": "27834-3147", + "country": "United States", + "longitude": -77.37544525, + "latitude": 35.60994375, + "phone": "2522106295", + "website_url": "http://www.trollingwoodbrewery.com", + "state": "North Carolina", + "street": "707 Dickinson Ave" + }, + { + "id": "e44d1827-714b-4860-9a8a-63fca6eb0680", + "name": "Troon Brewing", + "brewery_type": "micro", + "address_1": "130 Hopewell Rocky Hill Rd # 5", + "address_2": null, + "address_3": null, + "city": "Hopewell", + "state_province": "New Jersey", + "postal_code": "08525-3111", + "country": "United States", + "longitude": -74.75022889, + "latitude": 40.3922451, + "phone": null, + "website_url": "http://www.troonbrewing.com", + "state": "New Jersey", + "street": "130 Hopewell Rocky Hill Rd # 5" + }, + { + "id": "03e0afb0-b86a-4b47-a9cd-7a302ac2cb75", + "name": "Trophy Brewing Company", + "brewery_type": "micro", + "address_1": "656 Maywood Ave", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27603-2340", + "country": "United States", + "longitude": -78.65744714, + "latitude": 35.76136262, + "phone": "9198034849", + "website_url": "http://www.trophybrewing.com", + "state": "North Carolina", + "street": "656 Maywood Ave" + }, + { + "id": "92ebf606-d8f9-4c93-a9b0-afc704575d75", + "name": "Trouble Brewing", + "brewery_type": "micro", + "address_1": "Unit A", + "address_2": "Oldmill Industrial Estate", + "address_3": null, + "city": "Kill", + "state_province": "Kildare", + "postal_code": "W91 DR58", + "country": "Ireland", + "longitude": -6.5406264, + "latitude": 53.2523451, + "phone": "353879086658", + "website_url": "https://troublebrewing.ie/", + "state": "Kildare", + "street": "Unit A" + }, + { + "id": "7a2fe357-8cbf-45c4-9195-9b261846da32", + "name": "troubled waters brewing co.", + "brewery_type": "contract", + "address_1": "670 Main Street", + "address_2": null, + "address_3": null, + "city": "Safety Harbor", + "state_province": "Florida", + "postal_code": "34695", + "country": "United States", + "longitude": -82.69391186, + "latitude": 27.99073329, + "phone": "6303357890", + "website_url": "http://www.troubledwatersbeer.com", + "state": "Florida", + "street": "670 Main Street" + }, + { + "id": "f8768842-899b-4df1-841e-d377b7f9c337", + "name": "Trout River Brewing Co", + "brewery_type": "micro", + "address_1": "100 River Street RR 5", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Vermont", + "postal_code": "05156", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.troutriverbrewing.com", + "state": "Vermont", + "street": "100 River Street RR 5" + }, + { + "id": "193ddcd0-43ef-49de-a8cb-5f595fb7d663", + "name": "Trubble Brewing", + "brewery_type": "micro", + "address_1": "2725 Broadway", + "address_2": null, + "address_3": null, + "city": "Fort Wayne", + "state_province": "Indiana", + "postal_code": "46807-1111", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2602676082", + "website_url": "http://www.trubblebrewing.com", + "state": "Indiana", + "street": "2725 Broadway" + }, + { + "id": "7b231fe0-34a4-4e5d-84a9-c04cc5d9d8a8", + "name": "True Anomaly Brewing", + "brewery_type": "micro", + "address_1": "2012 Dallas St", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77003", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3467045701", + "website_url": "http://www.trueanomalybrewing.com", + "state": "Texas", + "street": "2012 Dallas St" + }, + { + "id": "3212e300-8e52-4f6a-a845-e68ca7492c6b", + "name": "True North Ale Company", + "brewery_type": "micro", + "address_1": "116 County Rd", + "address_2": null, + "address_3": null, + "city": "Ipswich", + "state_province": "Massachusetts", + "postal_code": "01938-2501", + "country": "United States", + "longitude": -70.837236, + "latitude": 42.669841, + "phone": "9783126473", + "website_url": "http://www.TrueNorthAles.com", + "state": "Massachusetts", + "street": "116 County Rd" + }, + { + "id": "f8c87072-d4bd-49c5-8f24-736f9b85280f", + "name": "True Respite Brewing Company", + "brewery_type": "micro", + "address_1": "7301 Calhoun Pl Ste 600", + "address_2": null, + "address_3": null, + "city": "Derwood", + "state_province": "Maryland", + "postal_code": "20855-2740", + "country": "United States", + "longitude": -77.152035, + "latitude": 39.108112, + "phone": "3012848447", + "website_url": "http://www.truerespite.com", + "state": "Maryland", + "street": "7301 Calhoun Pl Ste 600" + }, + { + "id": "d76e7016-097d-481d-a510-effd1d4fcd6d", + "name": "True Symmetry Brewing Company", + "brewery_type": "micro", + "address_1": "315 Marina Ctr", + "address_2": null, + "address_3": null, + "city": "Suisun City", + "state_province": "California", + "postal_code": "94585-2518", + "country": "United States", + "longitude": -122.0345391, + "latitude": 38.24359051, + "phone": "7072026000", + "website_url": "http://Www.truesymmetry.beer", + "state": "California", + "street": "315 Marina Ctr" + }, + { + "id": "97ae87b9-74f3-40c8-8773-967c92450fa5", + "name": "True Vine Brewing Company", + "brewery_type": "micro", + "address_1": "219 S Englewood Ave", + "address_2": null, + "address_3": null, + "city": "Tyler", + "state_province": "Texas", + "postal_code": "75702-6926", + "country": "United States", + "longitude": -95.31600025, + "latitude": 32.34866425, + "phone": "9036000124", + "website_url": "http://www.truevinebrewing.com", + "state": "Texas", + "street": "219 S Englewood Ave" + }, + { + "id": "4e46363e-54f7-454f-91e7-2aa59c95361d", + "name": "True West Brewing Company", + "brewery_type": "brewpub", + "address_1": "525 Massachusetts Ave Ste 107", + "address_2": null, + "address_3": null, + "city": "Acton", + "state_province": "Massachusetts", + "postal_code": "01720-2962", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9782061600", + "website_url": "http://www.brewtruewest.com", + "state": "Massachusetts", + "street": "525 Massachusetts Ave Ste 107" + }, + { + "id": "239ded16-d444-429b-b6d7-fd30631c05d1", + "name": "Trumer Brewery", + "brewery_type": "regional", + "address_1": "1404 4th St", + "address_2": null, + "address_3": null, + "city": "Berkeley", + "state_province": "California", + "postal_code": "94710-1323", + "country": "United States", + "longitude": -122.3030265, + "latitude": 37.87686526, + "phone": "5105261160", + "website_url": "http://www.trumer-international.com", + "state": "California", + "street": "1404 4th St" + }, + { + "id": "fdc05c0a-59db-4ffd-b289-10996f4d9e2f", + "name": "Trusty Brewing Co.", + "brewery_type": "brewpub", + "address_1": "114 E Evergreen Blvd", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98660-3219", + "country": "United States", + "longitude": -122.6707614, + "latitude": 45.6289331, + "phone": "3602580413", + "website_url": "http://www.trustybrewing.com", + "state": "Washington", + "street": "114 E Evergreen Blvd" + }, + { + "id": "e512a4c1-76aa-485e-b12a-331ff2859f2a", + "name": "Truth Or Consequences Brewing Company", + "brewery_type": "micro", + "address_1": "410 N Broadway St", + "address_2": null, + "address_3": null, + "city": "Truth or Consequences", + "state_province": "New Mexico", + "postal_code": "87901-2836", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5752970289", + "website_url": "http://www.torc.beer", + "state": "New Mexico", + "street": "410 N Broadway St" + }, + { + "id": "d5b1d385-bb34-4a69-a37c-7c6c41894029", + "name": "TRVE Brewing Co", + "brewery_type": "micro", + "address_1": "2600 W. 2nd Ave Unit 8", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80219", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3033511021", + "website_url": "http://trvebrewing.com", + "state": "Colorado", + "street": "2600 W. 2nd Ave Unit 8" + }, + { + "id": "0bd2b60b-f75e-4a26-a93e-e7b1277a004d", + "name": "TRVE Brewing Co. - The Acid Temple", + "brewery_type": "micro", + "address_1": "2600 W. 2nd Ave Unit 8", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80219", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3033511021", + "website_url": null, + "state": "Colorado", + "street": "2600 W. 2nd Ave Unit 8" + }, + { + "id": "c89b72ee-4a9e-4987-84aa-55b8de34ad73", + "name": "Tsitsikamma Microbrewery", + "brewery_type": "micro", + "address_1": "Darnell Street", + "address_2": null, + "address_3": null, + "city": "Storms River", + "state_province": "Eastern Cape", + "postal_code": "6308", + "country": "South Africa", + "longitude": 23.8863, + "latitude": -33.9715, + "phone": "+27 42 281 1711", + "website_url": "https://www.tsitsikammavillageinn.co.za/brewery/", + "state": "Eastern Cape", + "street": "Darnell Street" + }, + { + "id": "020aa383-378b-43d0-b91a-f8b4e5641be1", + "name": "TTs Old Iron Brewery", + "brewery_type": "micro", + "address_1": "154 S Madison St", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99201-4542", + "country": "United States", + "longitude": -117.4281651, + "latitude": 47.655248, + "phone": null, + "website_url": "http://www.ttsoldironbrewery.com", + "state": "Washington", + "street": "154 S Madison St" + }, + { + "id": "36e4c1c9-8ffe-4096-9153-765a99550f2b", + "name": "Tuckahoe Brewing Co", + "brewery_type": "micro", + "address_1": "3092 English Creek Ave", + "address_2": null, + "address_3": null, + "city": "Egg Harbor Township", + "state_province": "New Jersey", + "postal_code": "08234-5245", + "country": "United States", + "longitude": -74.61365675, + "latitude": 39.42606663, + "phone": "6096452739", + "website_url": "http://www.tuckahoebrewing.com", + "state": "New Jersey", + "street": "3092 English Creek Ave" + }, + { + "id": "bee37e69-0e10-4076-849a-fd6ee2d5f35f", + "name": "Tucked Away Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Manassas", + "state_province": "Virginia", + "postal_code": "22010", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9373712176", + "website_url": null, + "state": "Virginia", + "street": null + }, + { + "id": "443536da-82d9-447f-811f-0d3e069e9086", + "name": "Tucker Brewing Company", + "brewery_type": "micro", + "address_1": "2003 S Bibb Dr", + "address_2": null, + "address_3": null, + "city": "Tucker", + "state_province": "Georgia", + "postal_code": "30084-6240", + "country": "United States", + "longitude": -84.20758809, + "latitude": 33.84269209, + "phone": "8337522400", + "website_url": "http://www.tuckerbrewing.com", + "state": "Georgia", + "street": "2003 S Bibb Dr" + }, + { + "id": "568fcb4a-f5cd-4554-84b1-8ce90052e21d", + "name": "Tuckerman Brewing Co", + "brewery_type": "micro", + "address_1": "66 Hobbs St", + "address_2": null, + "address_3": null, + "city": "Conway", + "state_province": "New Hampshire", + "postal_code": "03818-1058", + "country": "United States", + "longitude": -71.12983196, + "latitude": 43.97582858, + "phone": "6034475400", + "website_url": "http://www.tuckermanbrewing.com", + "state": "New Hampshire", + "street": "66 Hobbs St" + }, + { + "id": "c90a15c5-1a4d-495a-94f5-62fe78425b81", + "name": "Tujax Tavern", + "brewery_type": "brewpub", + "address_1": "103 S Grove St", + "address_2": null, + "address_3": null, + "city": "Delton", + "state_province": "Michigan", + "postal_code": "49046-9470", + "country": "United States", + "longitude": -85.407991, + "latitude": 42.496258, + "phone": "2696238310", + "website_url": null, + "state": "Michigan", + "street": "103 S Grove St" + }, + { + "id": "eeec3aa8-164f-4cf2-9232-fbf3b2f8a53f", + "name": "Tuk Tuk Microbrewery", + "brewery_type": "brewpub", + "address_1": "14 Huguenot Road", + "address_2": null, + "address_3": null, + "city": "Franschhoek", + "state_province": "Western Cape", + "postal_code": "7690", + "country": "South Africa", + "longitude": 19.1175, + "latitude": -33.9113, + "phone": "+27 21 492 2207", + "website_url": "https://tuktukbrew.com/", + "state": "Western Cape", + "street": "14 Huguenot Road" + }, + { + "id": "7b08b3ee-5d16-47fa-ac17-7d7dee9c0ba0", + "name": "Tumbledown Brewing LLC", + "brewery_type": "micro", + "address_1": "805 Farmington Falls Rd Ste 7", + "address_2": null, + "address_3": null, + "city": "Farmington", + "state_province": "Maine", + "postal_code": "04938-6454", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2079440697", + "website_url": "http://www.tumbledownbrewing.com", + "state": "Maine", + "street": "805 Farmington Falls Rd Ste 7" + }, + { + "id": "ad99d8ce-7e57-4544-89e7-894eaaf58457", + "name": "Tumbleroot Brewery And Distillery", + "brewery_type": "micro", + "address_1": "32 Bisbee Court Unit 3-4", + "address_2": null, + "address_3": null, + "city": "Santa Fe", + "state_province": "New Mexico", + "postal_code": "87508", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5052217894", + "website_url": "http://www.tumblerootbreweryanddistillery.com", + "state": "New Mexico", + "street": "32 Bisbee Court Unit 3-4" + }, + { + "id": "6aae0645-3f00-46f7-89d2-9ebd4aad9cd2", + "name": "Tumbleweed Brewing and Wine Company", + "brewery_type": "brewpub", + "address_1": "124 S Main St", + "address_2": null, + "address_3": null, + "city": "Yuma", + "state_province": "Colorado", + "postal_code": "80759", + "country": "United States", + "longitude": -102.7238865, + "latitude": 40.12462759, + "phone": "9706302818", + "website_url": "http://www.tumbleweedbrewing.com", + "state": "Colorado", + "street": "124 S Main St" + }, + { + "id": "68ac318f-608a-468b-a05f-339e871721f4", + "name": "Tumut River Brewing Co", + "brewery_type": "micro", + "address_1": "5 Capper Street", + "address_2": "1", + "address_3": null, + "city": "Tumut", + "state_province": "NSW", + "postal_code": "2720", + "country": "Australia", + "longitude": 148.2152901, + "latitude": -35.2954172, + "phone": "+61 1300 042 337", + "website_url": "http://www.trbc.com.au/", + "state": "NSW", + "street": "5 Capper Street" + }, + { + "id": "c117ea70-40d8-42d3-846b-80dd5aceacf2", + "name": "Tumut River Brewing Co.", + "brewery_type": "micro", + "address_1": "5 Capper Street", + "address_2": "1", + "address_3": null, + "city": "Tumut", + "state_province": "NSW", + "postal_code": "2720", + "country": "Australia", + "longitude": 148.2152901, + "latitude": -35.2954172, + "phone": "+61 1300 042 337", + "website_url": "http://www.trbc.com.au/", + "state": "NSW", + "street": "5 Capper Street" + }, + { + "id": "7decf5ce-3597-4b0a-84c9-da60ad030a2e", + "name": "Tun Tavern Brewery and Restaurant", + "brewery_type": "brewpub", + "address_1": "2 Convention Blvd Ste 3", + "address_2": null, + "address_3": null, + "city": "Atlantic City", + "state_province": "New Jersey", + "postal_code": "08401-4137", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6093477800", + "website_url": "http://www.tuntavern.com", + "state": "New Jersey", + "street": "2 Convention Blvd Ste 3" + }, + { + "id": "498f8ea8-f909-4378-b437-7be8f5d01993", + "name": "Tuned Up Brewing Company", + "brewery_type": "micro", + "address_1": "135 N Main St", + "address_2": null, + "address_3": null, + "city": "Spring City", + "state_province": "Pennsylvania", + "postal_code": "19475-1874", + "country": "United States", + "longitude": -75.54752163, + "latitude": 40.17990279, + "phone": "6103063182", + "website_url": null, + "state": "Pennsylvania", + "street": "135 N Main St" + }, + { + "id": "b0ff46ea-e5fe-4086-9773-8632ecf1ff28", + "name": "Tunnel Vision Brewery", + "brewery_type": "brewpub", + "address_1": "5699 S Lake Shore Dr", + "address_2": null, + "address_3": null, + "city": "Harbor Springs", + "state_province": "Michigan", + "postal_code": "49740-9784", + "country": "United States", + "longitude": -85.065042, + "latitude": 45.471828, + "phone": "2315263276", + "website_url": "http://www.pondhill.com", + "state": "Michigan", + "street": "5699 S Lake Shore Dr" + }, + { + "id": "ed15a267-a12c-4343-a94f-46ee2488c42a", + "name": "Tuppers Hop Pocket Ale", + "brewery_type": "contract", + "address_1": "6404 Redwing Rd", + "address_2": null, + "address_3": null, + "city": "Bethesda", + "state_province": "Maryland", + "postal_code": "20817-5920", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3012292027", + "website_url": "http://www.tuppersbeers.com", + "state": "Maryland", + "street": "6404 Redwing Rd" + }, + { + "id": "898d4d98-92c7-4e57-9b3f-310a60bc45c9", + "name": "Tupps Brewery", + "brewery_type": "micro", + "address_1": "721 Anderson St", + "address_2": null, + "address_3": null, + "city": "McKinney", + "state_province": "Texas", + "postal_code": "75069-7149", + "country": "United States", + "longitude": -96.61169549, + "latitude": 33.18370422, + "phone": "2147045039", + "website_url": "http://www.tuppsbrewery.com", + "state": "Texas", + "street": "721 Anderson St" + }, + { + "id": "b6631112-1916-4334-a5cf-f2937c70a976", + "name": "Turgua Brewing Co", + "brewery_type": "micro", + "address_1": "27 Firefly Hollow Dr", + "address_2": null, + "address_3": null, + "city": "Fairview", + "state_province": "North Carolina", + "postal_code": "28730-1648", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8282220984", + "website_url": "http://www.turguabrewing.com", + "state": "North Carolina", + "street": "27 Firefly Hollow Dr" + }, + { + "id": "41b29d2c-64d2-4b0e-948c-66f6a93fc226", + "name": "Turkey Forrest Brewing", + "brewery_type": "micro", + "address_1": "1848 Airline Dr. Suite C", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77009", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": "1848 Airline Dr. Suite C" + }, + { + "id": "af9086ee-bd51-4290-a609-8d3e35806c40", + "name": "Turkey Hill Brewing Co Pub", + "brewery_type": "brewpub", + "address_1": "991 Central Rd", + "address_2": null, + "address_3": null, + "city": "Bloomsburg", + "state_province": "Pennsylvania", + "postal_code": "17815-8990", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5703878422", + "website_url": "http://www.turkeyhillbrewing.com", + "state": "Pennsylvania", + "street": "991 Central Rd" + }, + { + "id": "ffe5f5cd-242c-4da3-96ed-d8468a342284", + "name": "Turn 2 Brewing Company Inc.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Sebring", + "state_province": "Florida", + "postal_code": "33872-9253", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.turn2brew.com", + "state": "Florida", + "street": null + }, + { + "id": "940232f8-d664-42b4-aa8c-2b663d877252", + "name": "Turnagain Brewing", + "brewery_type": "micro", + "address_1": "7920 King St", + "address_2": null, + "address_3": null, + "city": "Anchorage", + "state_province": "Alaska", + "postal_code": "99518-3058", + "country": "United States", + "longitude": -149.878675, + "latitude": 61.14944, + "phone": "9076462337", + "website_url": "https://www.turnagainbrewing.com", + "state": "Alaska", + "street": "7920 King St" + }, + { + "id": "b7130d67-9eb1-48e8-9c28-0fc26e4b2bd5", + "name": "Turning Point Beer, LLC", + "brewery_type": "micro", + "address_1": "1307 Brown Trl", + "address_2": null, + "address_3": null, + "city": "Bedford", + "state_province": "Texas", + "postal_code": "76022-6401", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8179251131", + "website_url": "http://Www.turningpointbeer.com", + "state": "Texas", + "street": "1307 Brown Trl" + }, + { + "id": "f8891e9b-c233-4c2c-aa2f-fb0a59d06dce", + "name": "Turtle Anarchy Brewing Co", + "brewery_type": "micro", + "address_1": "5901 California Ave Ste 105", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37209-1370", + "country": "United States", + "longitude": -86.85861737, + "latitude": 36.16458388, + "phone": null, + "website_url": "http://www.turtleanarchy.com", + "state": "Tennessee", + "street": "5901 California Ave Ste 105" + }, + { + "id": "e4230c83-bfbc-4e17-a3da-7966a859d4af", + "name": "Turtle Mountain Brewing Co", + "brewery_type": "brewpub", + "address_1": "905 36th Pl SE Ste C", + "address_2": null, + "address_3": null, + "city": "Rio Rancho", + "state_province": "New Mexico", + "postal_code": "87124-4850", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5059949497", + "website_url": "http://www.turtlemountainbrewing.com", + "state": "New Mexico", + "street": "905 36th Pl SE Ste C" + }, + { + "id": "7c79df16-b284-4388-99f8-7960b6d66504", + "name": "Turtle Stack Brewery", + "brewery_type": "micro", + "address_1": "125 2nd St S", + "address_2": null, + "address_3": null, + "city": "La Crosse", + "state_province": "Wisconsin", + "postal_code": "54601-3206", + "country": "United States", + "longitude": -91.2539366, + "latitude": 43.81301528, + "phone": "6085192284", + "website_url": "http://www.turtlestackbrewery.com", + "state": "Wisconsin", + "street": "125 2nd St S" + }, + { + "id": "d80aff0a-64a7-4a7f-b609-4386dc7a1d59", + "name": "Turtle Swamp Brewing", + "brewery_type": "micro", + "address_1": "3377 Washington St", + "address_2": null, + "address_3": null, + "city": "Jamaica Plain", + "state_province": "Massachusetts", + "postal_code": "02130-2617", + "country": "United States", + "longitude": -71.1123668, + "latitude": 42.3014592, + "phone": "6175220038", + "website_url": "http://www.turtleswampbrewing.com", + "state": "Massachusetts", + "street": "3377 Washington St" + }, + { + "id": "f1f61792-e88e-4d36-8892-fa9ddc7499f8", + "name": "Tusculum Farm Enterprises, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Laytonsville", + "state_province": "Maryland", + "postal_code": "20882-2117", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8337332216", + "website_url": "http://tusculumfarm.com", + "state": "Maryland", + "street": null + }, + { + "id": "5891a22a-ac15-4646-a0bb-4b9127899213", + "name": "Tusculum Holdings, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Boerne", + "state_province": "Texas", + "postal_code": "78006-2334", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3612286227", + "website_url": "http://www.tusculumbrewing.com", + "state": "Texas", + "street": null + }, + { + "id": "5a17161e-23d6-4b05-bf60-70b4fbdbbadf", + "name": "Tustin Brewing Co", + "brewery_type": "brewpub", + "address_1": "13011 Newport Ave Ste 100", + "address_2": null, + "address_3": null, + "city": "Tustin", + "state_province": "California", + "postal_code": "92780-3517", + "country": "United States", + "longitude": -117.8107616, + "latitude": 33.75003812, + "phone": "7146652337", + "website_url": "http://www.tustinbrewery.com", + "state": "California", + "street": "13011 Newport Ave Ste 100" + }, + { + "id": "e1bdce52-7dc7-4377-a5c2-4506452da993", + "name": "Tuthilltown Spirits", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Gardiner", + "state_province": "New York", + "postal_code": "12525-5528", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8452551527", + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "6c0d332d-0cb5-4b00-aa81-d04650eefe9a", + "name": "TUYA SuperBrewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Santa Cruz", + "state_province": "California", + "postal_code": "95062-1411", + "country": "United States", + "longitude": -122.0297182, + "latitude": 36.974201, + "phone": "8444878892", + "website_url": "http://www.tuyasuperbrew.com", + "state": "California", + "street": null + }, + { + "id": "ce6068ab-2993-4129-a451-c304506f817a", + "name": "TW Pitchers Brewing Co", + "brewery_type": "contract", + "address_1": "1329 17th Ave", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94122-1912", + "country": "United States", + "longitude": -122.4750486, + "latitude": 37.76307771, + "phone": "4159992009", + "website_url": "http://www.twpitchers.com", + "state": "California", + "street": "1329 17th Ave" + }, + { + "id": "6fa0be54-2886-4a87-98cf-189e9432310c", + "name": "Twain's Brewpub & Billiards", + "brewery_type": "brewpub", + "address_1": "211 E Trinity Pl", + "address_2": null, + "address_3": null, + "city": "Decatur", + "state_province": "Georgia", + "postal_code": "30030-3414", + "country": "United States", + "longitude": -84.294616, + "latitude": 33.77228, + "phone": "4043730063", + "website_url": "http://www.twains.net", + "state": "Georgia", + "street": "211 E Trinity Pl" + }, + { + "id": "4203409e-7d4b-4ca0-8adc-c7f24ecceacc", + "name": "Tweaking Frog Brewing Company", + "brewery_type": "micro", + "address_1": "211 Main St Ste A", + "address_2": null, + "address_3": null, + "city": "Farmingdale", + "state_province": "New York", + "postal_code": "11735-2675", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6318975509", + "website_url": "http://www.tweakingfrogbrewing.com", + "state": "New York", + "street": "211 Main St Ste A" + }, + { + "id": "0b083637-2a0d-46e0-b0be-f86aa755a92e", + "name": "Twelve String Brewing Co", + "brewery_type": "closed", + "address_1": "11616 E Montgomery Dr Ste 26", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99206-6608", + "country": "United States", + "longitude": -117.24896931727, + "latitude": 47.677533941406, + "phone": "5092413697", + "website_url": "http://www.twelvestringbrewingco.com", + "state": "Washington", + "street": "11616 E Montgomery Dr Ste 26" + }, + { + "id": "4a8da7bd-80fb-4b2f-9447-eee7bd87781f", + "name": "Twenty Below Brewing @ Twenty Tap", + "brewery_type": "brewpub", + "address_1": "5406 N College Ave", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46220-3126", + "country": "United States", + "longitude": -86.1449174, + "latitude": 39.8095687, + "phone": "3176028840", + "website_url": "http://www.twentytap.com", + "state": "Indiana", + "street": "5406 N College Ave" + }, + { + "id": "84f3121a-293b-4a1e-89c8-c7fa0ca735d5", + "name": "Twenty-Six Acres Brewing Company", + "brewery_type": "micro", + "address_1": "7285 Westwinds Blvd NW", + "address_2": null, + "address_3": null, + "city": "Concord", + "state_province": "North Carolina", + "postal_code": "28027-3310", + "country": "United States", + "longitude": -80.72192703, + "latitude": 35.38617748, + "phone": "9802772337", + "website_url": "http://www.26acres.com", + "state": "North Carolina", + "street": "7285 Westwinds Blvd NW" + }, + { + "id": "e53fb44b-d194-49f0-9549-c8355297616d", + "name": "TwentyNine Brewpub", + "brewery_type": "brewpub", + "address_1": "1775 Marion-Waldo Rd", + "address_2": null, + "address_3": null, + "city": "Marion", + "state_province": "Ohio", + "postal_code": "43302", + "country": "United States", + "longitude": -83.1163533, + "latitude": 40.55509204, + "phone": "7407514586", + "website_url": null, + "state": "Ohio", + "street": "1775 Marion-Waldo Rd" + }, + { + "id": "dbcac9db-5ede-49f9-8990-64616e5d3352", + "name": "Twin Barns Brewing Co", + "brewery_type": "brewpub", + "address_1": "99 Main St", + "address_2": null, + "address_3": null, + "city": "North Woodstock", + "state_province": "New Hampshire", + "postal_code": "03262", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6037457068", + "website_url": "https://www.twinbarnsbrewing.com/", + "state": "New Hampshire", + "street": "99 Main St" + }, + { + "id": "6382851d-cf32-4ba2-b725-6d8732fa4fcc", + "name": "Twin Creeks Brewing Company", + "brewery_type": "micro", + "address_1": "111 S Pollard St", + "address_2": null, + "address_3": null, + "city": "Vinton", + "state_province": "Virginia", + "postal_code": "24179-2414", + "country": "United States", + "longitude": -79.8974689, + "latitude": 37.28075143, + "phone": "5404000882", + "website_url": "http://www.twincreeksbrewing.com", + "state": "Virginia", + "street": "111 S Pollard St" + }, + { + "id": "9e9f44ff-cb3e-4e58-b8b0-ce820379abc1", + "name": "Twin Elephant Brewing Company", + "brewery_type": "micro", + "address_1": "13 Watchung Ave Ste 103", + "address_2": null, + "address_3": null, + "city": "Chatham", + "state_province": "New Jersey", + "postal_code": "07928-2759", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9735079862", + "website_url": "http://www.twinelephant.com", + "state": "New Jersey", + "street": "13 Watchung Ave Ste 103" + }, + { + "id": "50f520a2-4a7e-4c39-90b2-e440e7d38c49", + "name": "Twin Lakes Brewing Co", + "brewery_type": "micro", + "address_1": "405 Marsh Ln Ste 7", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "Delaware", + "postal_code": "19804-2445", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3029952337", + "website_url": "http://www.twinlakesbrewingcompany.com", + "state": "Delaware", + "street": "405 Marsh Ln Ste 7" + }, + { + "id": "44113b77-122d-4680-85e7-cc0662cc6da0", + "name": "Twin Leaf Brewery", + "brewery_type": "micro", + "address_1": "144 Coxe Ave", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28801-4026", + "country": "United States", + "longitude": -82.55454185, + "latitude": 35.58942485, + "phone": "8283332221", + "website_url": "http://www.twinleafbrewery.com", + "state": "North Carolina", + "street": "144 Coxe Ave" + }, + { + "id": "3d49e8be-de9a-4688-8483-9ffdf3037bf3", + "name": "Twin Oast Brewing", + "brewery_type": "brewpub", + "address_1": "3630 NE Catawba Rd", + "address_2": null, + "address_3": null, + "city": "Catawba Island", + "state_province": "Ohio", + "postal_code": "43452", + "country": "United States", + "longitude": -82.832581, + "latitude": 41.578044, + "phone": "4195736126", + "website_url": "http://www.twinoast.com", + "state": "Ohio", + "street": "3630 NE Catawba Rd" + }, + { + "id": "a2738df3-5b54-4a76-80ee-1e799bc9f9cb", + "name": "Twin Peaks Brewery", + "brewery_type": "micro", + "address_1": "1500 Market Place Blvd", + "address_2": null, + "address_3": null, + "city": "Irving", + "state_province": "Texas", + "postal_code": "75063", + "country": "United States", + "longitude": -96.96767266, + "latitude": 32.91862635, + "phone": "4699642921", + "website_url": "http://twinpeaksrestaurants.com/brewery", + "state": "Texas", + "street": "1500 Market Place Blvd" + }, + { + "id": "6a8fdfd9-8419-4e4a-828e-0dea8bcf5bcb", + "name": "TWIN SISTERS", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78210", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2108186515", + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "4917afcb-f644-48c9-81f2-a57c232e6052", + "name": "Twin Sisters Brewing Company", + "brewery_type": "brewpub", + "address_1": "500 Carolina St", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98225-4106", + "country": "United States", + "longitude": -122.468971, + "latitude": 48.760265, + "phone": "3609226700", + "website_url": "https://www.twinsistersbrewing.com", + "state": "Washington", + "street": "500 Carolina St" + }, + { + "id": "cf19b93c-f80d-4c5b-80b5-70cf6cdb0e3f", + "name": "Twinpanzee Brewing Company", + "brewery_type": "micro", + "address_1": "101 Executive Dr Ste D", + "address_2": null, + "address_3": null, + "city": "Sterling", + "state_province": "Virginia", + "postal_code": "20166-9557", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7037919363", + "website_url": "http://www.twinpanzee.com", + "state": "Virginia", + "street": "101 Executive Dr Ste D" + }, + { + "id": "78da44c9-24f2-47f1-8dfb-e9e38b213fe5", + "name": "Twisted Ales Craft Brewing Co.", + "brewery_type": "micro", + "address_1": "212 W 6th St", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23224-2349", + "country": "United States", + "longitude": -77.4420409, + "latitude": 37.5259842, + "phone": "8042309439", + "website_url": "http://www.twistedales.com", + "state": "Virginia", + "street": "212 W 6th St" + }, + { + "id": "d54e5f65-dc4f-4db3-8b21-0cbde3d83680", + "name": "Twisted Barley Brewing Company", + "brewery_type": "micro", + "address_1": "520 19th St W", + "address_2": null, + "address_3": null, + "city": "Jasper", + "state_province": "Alabama", + "postal_code": "35501-5351", + "country": "United States", + "longitude": -87.28338, + "latitude": 33.832359, + "phone": "2052653253", + "website_url": null, + "state": "Alabama", + "street": "520 19th St W" + }, + { + "id": "29d82828-d18f-4ad7-9e7c-88bd7a652a7b", + "name": "Twisted Bine Beer Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mount Joy", + "state_province": "Pennsylvania", + "postal_code": "17552-1424", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7179178577", + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "a063bcc2-6017-4131-b6b5-e34ddedf077a", + "name": "Twisted Cypress Brewing Company", + "brewery_type": "closed", + "address_1": "1897 Sam Rittenberg Blvd", + "address_2": null, + "address_3": null, + "city": "Charleston", + "state_province": "South Carolina", + "postal_code": "29407-4870", + "country": "United States", + "longitude": -80.0219063, + "latitude": 32.79905412, + "phone": "8436081899", + "website_url": "http://www.twistedcypressbrewingco.com", + "state": "South Carolina", + "street": "1897 Sam Rittenberg Blvd" + }, + { + "id": "f16ee8bc-0ac3-4403-b7a8-4c4bc0582938", + "name": "Twisted Hippo", + "brewery_type": "contract", + "address_1": "2925 W Montrose Ave", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60618-1403", + "country": "United States", + "longitude": -87.7019463, + "latitude": 41.961125, + "phone": "7088447768", + "website_url": "http://Www.twistedhippo.com", + "state": "Illinois", + "street": "2925 W Montrose Ave" + }, + { + "id": "35d329e7-2608-44c0-b328-c3d54dd764cf", + "name": "Twisted Pine Brewing Co", + "brewery_type": "brewpub", + "address_1": "3201 Walnut St Ste A", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301-2645", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3037869270", + "website_url": "http://www.twistedpinebrewing.com", + "state": "Colorado", + "street": "3201 Walnut St Ste A" + }, + { + "id": "6151ad7d-80a5-457a-9b2d-138e3a6ae77a", + "name": "Twisted Rail Brewing Company", + "brewery_type": "micro", + "address_1": "169 Lakeshore Dr", + "address_2": null, + "address_3": null, + "city": "Canandaigua", + "state_province": "New York", + "postal_code": "14424-2309", + "country": "United States", + "longitude": -77.262436, + "latitude": 42.87507, + "phone": "5853960683", + "website_url": "http://www.twistedrailbrewing.com", + "state": "New York", + "street": "169 Lakeshore Dr" + }, + { + "id": "218d3127-127b-4e78-a192-db5617c2f6fa", + "name": "Twisted Roots Brewing", + "brewery_type": "micro", + "address_1": "3690 Forest Park Ave", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63108", + "country": "United States", + "longitude": -90.238117, + "latitude": 38.637188, + "phone": "3144496363", + "website_url": "http://www.twistedrootsbrewing.com", + "state": "Missouri", + "street": "3690 Forest Park Ave" + }, + { + "id": "f4954559-b115-469a-824e-afa6e37cd9a3", + "name": "Twisted Spike Brewing Company", + "brewery_type": "micro", + "address_1": "1 NW 10th St", + "address_2": null, + "address_3": null, + "city": "Oklahoma City", + "state_province": "Oklahoma", + "postal_code": "73103-4901", + "country": "United States", + "longitude": -97.6785729, + "latitude": 35.4787783, + "phone": "4052979961", + "website_url": "http://twistedspike.com", + "state": "Oklahoma", + "street": "1 NW 10th St" + }, + { + "id": "e6f28e79-056e-4995-9e6e-9747c06ae023", + "name": "Twisted Spur Brewing", + "brewery_type": "brewpub", + "address_1": "705 Gervais St Ste A", + "address_2": null, + "address_3": null, + "city": "Columbia", + "state_province": "South Carolina", + "postal_code": "29201-6012", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8037640203", + "website_url": null, + "state": "South Carolina", + "street": "705 Gervais St Ste A" + }, + { + "id": "7570bfc2-7a5e-444e-bbb4-995703ea572b", + "name": "Twisted Trunk Brewing Company", + "brewery_type": "micro", + "address_1": "2000 Pga Blvd Ste 5506", + "address_2": null, + "address_3": null, + "city": "North Palm Beach", + "state_province": "Florida", + "postal_code": "33408-2726", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5616712337", + "website_url": "http://www.twistedtrunkbrewing.com", + "state": "Florida", + "street": "2000 Pga Blvd Ste 5506" + }, + { + "id": "cee9d52e-b11f-489e-ace5-d67641dbd713", + "name": "Twisted Vine Brewery", + "brewery_type": "micro", + "address_1": "3320 Westown Pkwy", + "address_2": null, + "address_3": null, + "city": "West Des Moines", + "state_province": "Iowa", + "postal_code": "50266-1111", + "country": "United States", + "longitude": -93.7489517, + "latitude": 41.5936597, + "phone": "5157202940", + "website_url": "http://www.twistedvinebrewery.com", + "state": "Iowa", + "street": "3320 Westown Pkwy" + }, + { + "id": "90131c8a-a9c4-4c9f-86ea-08d631535a56", + "name": "Twisted X Brewing Co", + "brewery_type": "micro", + "address_1": "23455 West RR 150", + "address_2": null, + "address_3": null, + "city": "Dripping Springs", + "state_province": "Texas", + "postal_code": "78620", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5128295323", + "website_url": "http://www.twistedxbrewing.com", + "state": "Texas", + "street": "23455 West RR 150" + }, + { + "id": "56959793-d728-4902-809a-5d075c5b2836", + "name": "Two Bald Guys Beverage Co", + "brewery_type": "contract", + "address_1": "18090 Hazelnut Dr", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89508-6898", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.drinktwobaldguys.com", + "state": "Nevada", + "street": "18090 Hazelnut Dr" + }, + { + "id": "183f1e6c-ef70-449f-a77b-de8913b19e2b", + "name": "Two Bandits Brewing Company", + "brewery_type": "brewpub", + "address_1": "106 E High St", + "address_2": null, + "address_3": null, + "city": "Hicksville", + "state_province": "Ohio", + "postal_code": "43526", + "country": "United States", + "longitude": -84.76170108, + "latitude": 41.29361163, + "phone": "4195421087", + "website_url": null, + "state": "Ohio", + "street": "106 E High St" + }, + { + "id": "1bc963a8-bc05-4e51-ad51-79bf80e8e426", + "name": "Two Beagles Brewpub", + "brewery_type": "brewpub", + "address_1": "910 2nd Ave N", + "address_2": null, + "address_3": null, + "city": "Onalaska", + "state_province": "Wisconsin", + "postal_code": "54650-2277", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6085191921", + "website_url": "http://www.twobeaglesbrewpub.com", + "state": "Wisconsin", + "street": "910 2nd Ave N" + }, + { + "id": "9cfdd057-49b9-4134-85a9-88f579cb0137", + "name": "Two Birds Brewing", + "brewery_type": "large", + "address_1": "136 Hall Street", + "address_2": null, + "address_3": null, + "city": "Spotswood", + "state_province": "VIC", + "postal_code": "3015", + "country": "Australia", + "longitude": 144.8852885, + "latitude": -37.8347067, + "phone": "+61 3 9762 0000", + "website_url": null, + "state": "VIC", + "street": "136 Hall Street" + }, + { + "id": "b658090d-6800-432d-9825-2988f375bc13", + "name": "Two Blokes Brewing Co.", + "brewery_type": "micro", + "address_1": "547 Long Point Rd Ste 101", + "address_2": null, + "address_3": null, + "city": "Mount Pleasant", + "state_province": "South Carolina", + "postal_code": "29464-8337", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8436544564", + "website_url": "http://www.twoblokesbrewing.com", + "state": "South Carolina", + "street": "547 Long Point Rd Ste 101" + }, + { + "id": "5c8ee4a7-a254-4325-9715-1110c71753d3", + "name": "Two Brothers Brewing Co", + "brewery_type": "regional", + "address_1": "30W315 Calumet Ave W", + "address_2": null, + "address_3": null, + "city": "Warrenville", + "state_province": "Illinois", + "postal_code": "60555-1565", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6303934800", + "website_url": "http://www.TwoBrothersBrewing.com", + "state": "Illinois", + "street": "30W315 Calumet Ave W" + }, + { + "id": "287e8cd1-bfb6-4c9c-b38f-bcde56ccb472", + "name": "Two Brothers Scottsdale Tap House and Brewery", + "brewery_type": "brewpub", + "address_1": "4321 N Scottsdale Rd", + "address_2": null, + "address_3": null, + "city": "Scottsdale", + "state_province": "Arizona", + "postal_code": "85251-3329", + "country": "United States", + "longitude": -111.9254955, + "latitude": 33.658427, + "phone": "4803783001", + "website_url": null, + "state": "Arizona", + "street": "4321 N Scottsdale Rd" + }, + { + "id": "c242fde5-04e3-4059-8b08-565b899ebea5", + "name": "Two Cities Brewing", + "brewery_type": "micro", + "address_1": "2 Trewhitt Court", + "address_2": "Unit 1", + "address_3": null, + "city": "Dromana", + "state_province": "VIC", + "postal_code": "3936", + "country": "Australia", + "longitude": 144.9876337, + "latitude": -38.3370899, + "phone": "+61 3 5910 0880", + "website_url": "https://www.twobays.beer/?utm_source=GMBlisting&utm_medium=organic", + "state": "VIC", + "street": "2 Trewhitt Court" + }, + { + "id": "353afc36-cb18-4de5-a77f-1a065ab1d6d1", + "name": "Two Coast Brewing Co.", + "brewery_type": "micro", + "address_1": "14928 S Figueroa St", + "address_2": null, + "address_3": null, + "city": "Gardena", + "state_province": "California", + "postal_code": "90248", + "country": "United States", + "longitude": -118.2819715, + "latitude": 33.89680488, + "phone": "3107300055", + "website_url": "http://www.twocoastbrewing.com", + "state": "California", + "street": "14928 S Figueroa St" + }, + { + "id": "e151bd5e-806b-44d0-aa9e-c321f7a566b9", + "name": "Two Docs Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lubbock", + "state_province": "Texas", + "postal_code": "79401", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://twodocsbrewing.com", + "state": "Texas", + "street": null + }, + { + "id": "5cccb3f6-eb09-4a57-9709-d6ea09547e9c", + "name": "Two Dude Brew", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Clearlake", + "state_province": "California", + "postal_code": "95422-8159", + "country": "United States", + "longitude": -122.6263728, + "latitude": 38.9582307, + "phone": "7075337600", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "1b2e6967-a506-4e9e-9a34-470ae9101074", + "name": "Two Fathers Beer Co", + "brewery_type": "contract", + "address_1": "2016 Belvidere Rd", + "address_2": null, + "address_3": null, + "city": "Virginia Beach", + "state_province": "Virginia", + "postal_code": "23454-2233", + "country": "United States", + "longitude": -76.0389065, + "latitude": 36.86874825, + "phone": "7573092518", + "website_url": "http://www.twofathersbeer.com", + "state": "Virginia", + "street": "2016 Belvidere Rd" + }, + { + "id": "fa21605f-18f8-48da-9302-97dcf2d3ac64", + "name": "Two Frogs Brewing Company", + "brewery_type": "micro", + "address_1": "151 E Tarpon Ave", + "address_2": null, + "address_3": null, + "city": "Tarpon Springs", + "state_province": "Florida", + "postal_code": "34689-3451", + "country": "United States", + "longitude": -82.75503088, + "latitude": 28.14632482, + "phone": "7279406077", + "website_url": null, + "state": "Florida", + "street": "151 E Tarpon Ave" + }, + { + "id": "b30278b8-ab10-4bc3-b983-2203008e7b12", + "name": "Two Goats Brewing", + "brewery_type": "brewpub", + "address_1": "5027 State Route 414", + "address_2": null, + "address_3": null, + "city": "Burdett", + "state_province": "New York", + "postal_code": "14818-9816", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "607546", + "website_url": "http://www.twogoatsbrewing.com", + "state": "New York", + "street": "5027 State Route 414" + }, + { + "id": "36b75972-6f6a-4e3e-b1ac-0b137f9c6410", + "name": "Two Gramps Brewing", + "brewery_type": "brewpub", + "address_1": "266 Water St", + "address_2": null, + "address_3": null, + "city": "Gardiner", + "state_province": "Maine", + "postal_code": "04345", + "country": "United States", + "longitude": -69.77292634, + "latitude": 44.22957832, + "phone": "2075920776", + "website_url": "http://www.twogrampsbrewing.com", + "state": "Maine", + "street": "266 Water St" + }, + { + "id": "86e19596-1bfd-480d-9fc9-21f897c2a1ce", + "name": "Two Heads Brewing", + "brewery_type": "micro", + "address_1": "2 Trewhitt Court", + "address_2": "Unit 1", + "address_3": null, + "city": "Dromana", + "state_province": "VIC", + "postal_code": "3936", + "country": "Australia", + "longitude": 144.9876337, + "latitude": -38.3370899, + "phone": "+61 3 5910 0880", + "website_url": "https://www.twobays.beer/?utm_source=GMBlisting&utm_medium=organic", + "state": "VIC", + "street": "2 Trewhitt Court" + }, + { + "id": "02c2b09f-d059-4888-9164-e7d963c709e5", + "name": "Two Henrys Brewing Company", + "brewery_type": "micro", + "address_1": "5210 Thonotosassa Rd", + "address_2": null, + "address_3": null, + "city": "Plant City", + "state_province": "Florida", + "postal_code": "33565-5700", + "country": "United States", + "longitude": -82.1366836, + "latitude": 28.0158875, + "phone": "8137529100", + "website_url": null, + "state": "Florida", + "street": "5210 Thonotosassa Rd" + }, + { + "id": "f5723c43-2256-4abb-9d9e-66d388050870", + "name": "Two Kilts Brewing", + "brewery_type": "micro", + "address_1": "14841 SW Tualatin Sherwood Rd Ste 501", + "address_2": null, + "address_3": null, + "city": "Sherwood", + "state_province": "Oregon", + "postal_code": "97140-7127", + "country": "United States", + "longitude": -122.8308802, + "latitude": 45.36773305, + "phone": "5036251700", + "website_url": "http://www.twokiltsbrewing.com", + "state": "Oregon", + "street": "14841 SW Tualatin Sherwood Rd Ste 501" + }, + { + "id": "8b8dec5f-62d9-4970-8425-446c9f72026f", + "name": "Two Knights Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78701-3720", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5124176561", + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "7219ed53-5663-4fa8-918b-efde842262c0", + "name": "Two Mates Brewing", + "brewery_type": "micro", + "address_1": "7 Engine Street", + "address_2": null, + "address_3": null, + "city": "South Lismore", + "state_province": "NSW", + "postal_code": "2480", + "country": "Australia", + "longitude": 153.2660782, + "latitude": -28.8110542, + "phone": "+61 477 192 337", + "website_url": "http://twomatesbrewing.com.au/", + "state": "NSW", + "street": "7 Engine Street" + }, + { + "id": "5edd07f2-5db8-4527-b234-227b23129c43", + "name": "Two Monks Brewing Company", + "brewery_type": "micro", + "address_1": "352 Massillon Rd", + "address_2": null, + "address_3": null, + "city": "Akron", + "state_province": "Ohio", + "postal_code": "44312-2021", + "country": "United States", + "longitude": -81.46292368, + "latitude": 41.05205025, + "phone": "2347382337", + "website_url": "http://www.2monksbru.com", + "state": "Ohio", + "street": "352 Massillon Rd" + }, + { + "id": "a893c395-8dab-41a1-9b57-eee9e396ecb9", + "name": "Two Plumbers Brewery and Arcade", + "brewery_type": "micro", + "address_1": "2236 1st Capitol Dr", + "address_2": null, + "address_3": null, + "city": "Saint Charles", + "state_province": "Missouri", + "postal_code": "63301", + "country": "United States", + "longitude": -90.511795, + "latitude": 38.791625, + "phone": "6362248626", + "website_url": "http://www.twoplumbers.com", + "state": "Missouri", + "street": "2236 1st Capitol Dr" + }, + { + "id": "1f1af7ee-3a2a-4c3e-ae68-584d60381d80", + "name": "Two Rascals Brewing Co", + "brewery_type": "micro", + "address_1": "147 N 1st St", + "address_2": null, + "address_3": null, + "city": "Montrose", + "state_province": "Colorado", + "postal_code": "81401-3601", + "country": "United States", + "longitude": -107.8800003, + "latitude": 38.4788199, + "phone": "9702498689", + "website_url": "http://www.tworascalsbrewing.com", + "state": "Colorado", + "street": "147 N 1st St" + }, + { + "id": "1d4b058c-f5ac-4884-9ab5-d0d0d5cbf11c", + "name": "Two Rivers Brewing Co", + "brewery_type": "brewpub", + "address_1": "542 Northampton St", + "address_2": null, + "address_3": null, + "city": "Easton", + "state_province": "Pennsylvania", + "postal_code": "18042-3517", + "country": "United States", + "longitude": -75.214292, + "latitude": 40.69072655, + "phone": "6108291131", + "website_url": "http://www.tworiversbrewing.com", + "state": "Pennsylvania", + "street": "542 Northampton St" + }, + { + "id": "0c45746b-fe2f-4171-b1e7-181027857e22", + "name": "Two Roads Brewing Co", + "brewery_type": "regional", + "address_1": "1700 Stratford Ave", + "address_2": null, + "address_3": null, + "city": "Stratford", + "state_province": "Connecticut", + "postal_code": "06615-6419", + "country": "United States", + "longitude": -73.151247, + "latitude": 41.184374, + "phone": "2033352010", + "website_url": "http://www.tworoadsbrewing.com", + "state": "Connecticut", + "street": "1700 Stratford Ave" + }, + { + "id": "3c6ba9ee-3f7e-475f-a3d5-76d9924068ad", + "name": "Two Rows Restaurant and Brewery - Allen", + "brewery_type": "contract", + "address_1": "711 Central Expy S", + "address_2": null, + "address_3": null, + "city": "Allen", + "state_province": "Texas", + "postal_code": "75013-8012", + "country": "United States", + "longitude": -96.67987289, + "latitude": 33.0921542, + "phone": "9723968670", + "website_url": "http://www.tworows.com/", + "state": "Texas", + "street": "711 Central Expy S" + }, + { + "id": "ec650c63-7266-4177-abe7-9eabdc5a6c73", + "name": "Two Tides Brewing Company", + "brewery_type": "micro", + "address_1": "12 West 41st St", + "address_2": null, + "address_3": null, + "city": "Savannah", + "state_province": "Georgia", + "postal_code": "31401", + "country": "United States", + "longitude": -81.10216092, + "latitude": 32.054127, + "phone": "9126670706", + "website_url": "http://www.twotidesbrewing.com", + "state": "Georgia", + "street": "12 West 41st St" + }, + { + "id": "ad179174-6550-4b63-8055-301c822af22b", + "name": "Two Ton Brewing", + "brewery_type": "micro", + "address_1": "730 Federal Ave", + "address_2": null, + "address_3": null, + "city": "Kenilworth", + "state_province": "New Jersey", + "postal_code": "07033", + "country": "United States", + "longitude": -74.28663992, + "latitude": 40.67871822, + "phone": null, + "website_url": "http://www.twotonbrewing.com", + "state": "New Jersey", + "street": "730 Federal Ave" + }, + { + "id": "7712331d-cff9-48e9-a76a-da423aadc841", + "name": "Two Wheel Brewing Company", + "brewery_type": "micro", + "address_1": "535 S Loop 4", + "address_2": null, + "address_3": null, + "city": "Buda", + "state_province": "Texas", + "postal_code": "78610-9388", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5123613401", + "website_url": "http://www.twowheelbrewing.com", + "state": "Texas", + "street": "535 S Loop 4" + }, + { + "id": "64d344a6-fdd2-4e92-9838-2c360f783fd5", + "name": "Two-Shy Brewing", + "brewery_type": "micro", + "address_1": "1308 NW Park St Ste 100", + "address_2": null, + "address_3": null, + "city": "Roseburg", + "state_province": "Oregon", + "postal_code": "97470-2058", + "country": "United States", + "longitude": -123.3553263, + "latitude": 43.22538387, + "phone": "5412362055", + "website_url": "http://www.twoshybrewing.com", + "state": "Oregon", + "street": "1308 NW Park St Ste 100" + }, + { + "id": "91673432-855c-469a-a703-18f8451b6365", + "name": "Two22 Brew", + "brewery_type": "micro", + "address_1": "4550 S Reservoir Rd", + "address_2": null, + "address_3": null, + "city": "Centennial", + "state_province": "Colorado", + "postal_code": "80015-2878", + "country": "United States", + "longitude": -104.7601698, + "latitude": 39.63429093, + "phone": "7203289038", + "website_url": "http://www.two22brew.com", + "state": "Colorado", + "street": "4550 S Reservoir Rd" + }, + { + "id": "45a2f90c-8466-4ca6-81cd-c992009dc1d7", + "name": "TWØBays Brewing Co.", + "brewery_type": "micro", + "address_1": "2 Trewhitt Court", + "address_2": "Unit 1", + "address_3": null, + "city": "Dromana", + "state_province": "VIC", + "postal_code": "3936", + "country": "Australia", + "longitude": 144.9876337, + "latitude": -38.3370899, + "phone": "+61 3 5910 0880", + "website_url": "https://www.twobays.beer/?utm_source=GMBlisting&utm_medium=organic", + "state": "VIC", + "street": "2 Trewhitt Court" + }, + { + "id": "179899fd-256c-42c1-8fc5-7b68c340320b", + "name": "TwoDEEP Brewing", + "brewery_type": "brewpub", + "address_1": "714 N Capitol Ave", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46204-1114", + "country": "United States", + "longitude": -86.161428, + "latitude": 39.777426, + "phone": "3176531884", + "website_url": "http://www.twodeepbrewing.com", + "state": "Indiana", + "street": "714 N Capitol Ave" + }, + { + "id": "de49adbf-37b7-4f7f-8ae1-58210e67f073", + "name": "TwoGuys Brewing", + "brewery_type": "brewpub", + "address_1": "2356 Porter St SW", + "address_2": null, + "address_3": null, + "city": "Wyoming", + "state_province": "Michigan", + "postal_code": "49519", + "country": "United States", + "longitude": -85.72355013, + "latitude": 42.92114925, + "phone": "6165529690", + "website_url": "http://www.twoguysbrewing.beer", + "state": "Michigan", + "street": "2356 Porter St SW" + }, + { + "id": "33178929-9e93-4e46-ab90-72c5a91a128f", + "name": "Tyranena Brewing Co", + "brewery_type": "micro", + "address_1": "1025 Owen St", + "address_2": null, + "address_3": null, + "city": "Lake Mills", + "state_province": "Wisconsin", + "postal_code": "53551-0736", + "country": "United States", + "longitude": -88.8965312, + "latitude": 43.0861774, + "phone": "9206488699", + "website_url": "http://www.tyranena.com", + "state": "Wisconsin", + "street": "1025 Owen St" + }, + { + "id": "f997d03c-9301-4ce2-b71c-ac67dca594bd", + "name": "U4ic Brewing, Inc.", + "brewery_type": "micro", + "address_1": "23436 Union Trl Ste 1", + "address_2": null, + "address_3": null, + "city": "Belle Plaine", + "state_province": "Minnesota", + "postal_code": "56011-9008", + "country": "United States", + "longitude": -93.8017001, + "latitude": 44.6232246, + "phone": "9528733303", + "website_url": "http://www.u4icbrewing.com", + "state": "Minnesota", + "street": "23436 Union Trl Ste 1" + }, + { + "id": "2f4e3d86-1b06-4a0e-9335-acfb6abfed37", + "name": "Uberbrew", + "brewery_type": "brewpub", + "address_1": "2305 Montana Ave", + "address_2": null, + "address_3": null, + "city": "Billings", + "state_province": "Montana", + "postal_code": "59101-2421", + "country": "United States", + "longitude": -108.4990456, + "latitude": 45.78417106, + "phone": "4065346960", + "website_url": "http://uberbrewmt.com", + "state": "Montana", + "street": "2305 Montana Ave" + }, + { + "id": "a14412d4-f656-45df-a0ea-453201dc5f31", + "name": "UBrew Nanobrewery", + "brewery_type": "micro", + "address_1": "3054 Cass Rd Unit F", + "address_2": null, + "address_3": null, + "city": "Traverse City", + "state_province": "Michigan", + "postal_code": "49684-8800", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2319432016", + "website_url": "http://www.ubrewtc.com", + "state": "Michigan", + "street": "3054 Cass Rd Unit F" + }, + { + "id": "611f8c45-a929-433d-b1a1-a590f85c456f", + "name": "Uinta Brewing Co", + "brewery_type": "regional", + "address_1": "1722 S Fremont Dr", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84104-4215", + "country": "United States", + "longitude": -111.954182, + "latitude": 40.732607, + "phone": "8014670909", + "website_url": "http://www.uintabrewing.com", + "state": "Utah", + "street": "1722 S Fremont Dr" + }, + { + "id": "591996cc-7431-45a1-b7f4-3b1f9c506cd5", + "name": "Ukiah Brewing Co", + "brewery_type": "brewpub", + "address_1": "102 S State St", + "address_2": null, + "address_3": null, + "city": "Ukiah", + "state_province": "California", + "postal_code": "95482-4903", + "country": "United States", + "longitude": -123.2076383, + "latitude": 39.14945851, + "phone": "7074685898", + "website_url": "http://www.ukiahbrewingco.com", + "state": "California", + "street": "102 S State St" + }, + { + "id": "f3e74162-e002-43ad-acc8-2e55d563cd4a", + "name": "Ulele Spring Brewery", + "brewery_type": "brewpub", + "address_1": "1810 N Highland Ave", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33602-2605", + "country": "United States", + "longitude": -82.46281904, + "latitude": 27.9599097, + "phone": null, + "website_url": null, + "state": "Florida", + "street": "1810 N Highland Ave" + }, + { + "id": "637f25db-22ec-4376-ac90-c723340287c1", + "name": "UnBarred Brewery", + "brewery_type": "taproom", + "address_1": "Elder Place", + "address_2": null, + "address_3": null, + "city": "Brighton", + "state_province": "East Sussex", + "postal_code": "BN1 4GF", + "country": "England", + "longitude": -0.138599, + "latitude": 50.832867, + "phone": "1273894563", + "website_url": "https://www.unbarredbrewery.com/", + "state": "East Sussex", + "street": "Elder Place" + }, + { + "id": "c339e1ba-09e5-4f0e-933a-b18fff765eba", + "name": "Uncle Bear's Brewery", + "brewery_type": "brewpub", + "address_1": "4921 E Ray Rd Ste 103", + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85044-6495", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4802770765", + "website_url": "http://www.unclebearsaz.com", + "state": "Arizona", + "street": "4921 E Ray Rd Ste 103" + }, + { + "id": "d9a65f61-f901-40fe-85d1-620af49e72fb", + "name": "Uncle Billy's Brewery", + "brewery_type": "micro", + "address_1": "1530 Barton Springs Rd", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78704-1013", + "country": "United States", + "longitude": -97.76126939, + "latitude": 30.262109, + "phone": "5124760100", + "website_url": "http://www.unclebillys.com", + "state": "Texas", + "street": "1530 Barton Springs Rd" + }, + { + "id": "a980eb42-934a-4bca-8044-43fc23b43eb9", + "name": "Uncle Buck's Brewery And Steakhouse", + "brewery_type": "brewpub", + "address_1": "2501 Bass Pro Dr", + "address_2": null, + "address_3": null, + "city": "Grapevine", + "state_province": "Texas", + "postal_code": "76051-2009", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9726915100", + "website_url": "http://restaurants.basspro.com/UncleBucksSteakhouse/", + "state": "Texas", + "street": "2501 Bass Pro Dr" + }, + { + "id": "684dfd0e-c132-413a-bb46-9daf08ed35e7", + "name": "Uncle Ernies Bayfront Grill & Brew House", + "brewery_type": "contract", + "address_1": "1151 Bayview Ave", + "address_2": null, + "address_3": null, + "city": "Panama City", + "state_province": "Florida", + "postal_code": "32401-1452", + "country": "United States", + "longitude": -85.702765, + "latitude": 30.1698125, + "phone": "8507638427", + "website_url": "http://uncleerniesbayfrontgrill.com/welcome/", + "state": "Florida", + "street": "1151 Bayview Ave" + }, + { + "id": "45e1a706-1fb7-4a98-8007-817f9ffce1c8", + "name": "Uncommon Brewers", + "brewery_type": "closed", + "address_1": "303 Potrero St Ste 40H", + "address_2": null, + "address_3": null, + "city": "Santa Cruz", + "state_province": "California", + "postal_code": "95060-2778", + "country": "United States", + "longitude": -122.0310356, + "latitude": 36.98208037, + "phone": "8316216270", + "website_url": "http://www.uncommonbrewers.com", + "state": "California", + "street": "303 Potrero St Ste 40H" + }, + { + "id": "8d0e0a59-2799-4825-a275-bb109dc0fc10", + "name": "Uncrafted Territory Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Beaver Dam", + "state_province": "Kentucky", + "postal_code": "42320-1915", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2707753131", + "website_url": null, + "state": "Kentucky", + "street": null + }, + { + "id": "bb57eee2-6d46-4318-a503-e3b003f9a5b6", + "name": "Under Pressure Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Plymouth", + "state_province": "Minnesota", + "postal_code": "55442-3211", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6128509779", + "website_url": "http://www.underpressurebrewing.com", + "state": "Minnesota", + "street": null + }, + { + "id": "b212b659-6819-42c5-b5f2-93e735486d10", + "name": "Under The Radar Brewery", + "brewery_type": "micro", + "address_1": "1506 Truxillo St", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77004-3960", + "country": "United States", + "longitude": -95.3759411, + "latitude": 29.7342113, + "phone": "7133202766", + "website_url": "http://www.undertheradarbrewery.com", + "state": "Texas", + "street": "1506 Truxillo St" + }, + { + "id": "2a549416-59b9-4ed0-9b76-4a649f29ee80", + "name": "Under the Rose Brewing Company", + "brewery_type": "micro", + "address_1": "559 E 4th St", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89512-3317", + "country": "United States", + "longitude": -119.8063947, + "latitude": 39.5315258, + "phone": "7756576619", + "website_url": null, + "state": "Nevada", + "street": "559 E 4th St" + }, + { + "id": "2dbbcfbc-636d-4cd8-9a57-7ae324adb66c", + "name": "Under the Rose Brewing Company MidTown Location", + "brewery_type": "brewpub", + "address_1": "1041 S Virginia St", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89502", + "country": "United States", + "longitude": -119.8072604, + "latitude": 39.51387478, + "phone": null, + "website_url": null, + "state": "Nevada", + "street": "1041 S Virginia St" + }, + { + "id": "6cb41bae-ffe9-4d38-b89c-b272be7070aa", + "name": "Underbite Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Knoxville", + "state_province": "Tennessee", + "postal_code": "37909-1079", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Tennessee", + "street": null + }, + { + "id": "c7e27537-ec4b-4e6c-9e3e-6d93ce2f3127", + "name": "Underground Brewing", + "brewery_type": "nano", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Woodinville", + "state_province": "Washington", + "postal_code": "98072", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.underground-brewing.com", + "state": "Washington", + "street": null + }, + { + "id": "43cbe517-bf1b-4a4d-b20b-b13ec74fff4d", + "name": "Underground Brewing Co.", + "brewery_type": "brewpub", + "address_1": "3940 Broad St # 7415", + "address_2": null, + "address_3": null, + "city": "San Luis Obispo", + "state_province": "California", + "postal_code": "93401-7017", + "country": "United States", + "longitude": -120.6420324, + "latitude": 35.2493387, + "phone": null, + "website_url": null, + "state": "California", + "street": "3940 Broad St # 7415" + }, + { + "id": "4292bd71-a7f6-4cb8-88af-f1f1b60f2272", + "name": "Une Annee Brewery", + "brewery_type": "micro", + "address_1": "9082 W Golf Rd", + "address_2": null, + "address_3": null, + "city": "Niles", + "state_province": "Illinois", + "postal_code": "60714-5805", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8476350655", + "website_url": "http://uneannee.com", + "state": "Illinois", + "street": "9082 W Golf Rd" + }, + { + "id": "a645a825-1f6a-4b58-884b-cc3b88276a73", + "name": "Unified Beerworks", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Ballston Lake", + "state_province": "New York", + "postal_code": "12019-1734", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5184284185", + "website_url": "http://unified-beerworks.com", + "state": "New York", + "street": null + }, + { + "id": "83e8ad76-de1e-4d1d-9b78-05acc55b343c", + "name": "Unify Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Glenwood Springs", + "state_province": "Colorado", + "postal_code": "81601-3215", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8164566374", + "website_url": "http://www.UnifyBrewing.com", + "state": "Colorado", + "street": null + }, + { + "id": "03f236ab-d400-4a43-b4b9-e91adf9dc13f", + "name": "Union 32 Crafthouse", + "brewery_type": "micro", + "address_1": "2864 Highway 55 Ste 200", + "address_2": null, + "address_3": null, + "city": "Eagan", + "state_province": "Minnesota", + "postal_code": "55121-1455", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9528079777", + "website_url": "http://www.union32crafthouse.com", + "state": "Minnesota", + "street": "2864 Highway 55 Ste 200" + }, + { + "id": "378ffe8e-5cb8-4749-b5d6-797064394436", + "name": "Union Barrel Works", + "brewery_type": "brewpub", + "address_1": "6 N Reamstown Rd", + "address_2": null, + "address_3": null, + "city": "Stevens", + "state_province": "Pennsylvania", + "postal_code": "17578", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7173357837", + "website_url": null, + "state": "Pennsylvania", + "street": "6 N Reamstown Rd" + }, + { + "id": "e8bb776f-eaeb-4132-ac76-54d9c5f4c8ec", + "name": "Union Bear Brewing Co.", + "brewery_type": "brewpub", + "address_1": "5880 State Highway 121 Ste 101", + "address_2": null, + "address_3": null, + "city": "Plano", + "state_province": "Texas", + "postal_code": "75024", + "country": "United States", + "longitude": -96.8494045, + "latitude": 33.083072, + "phone": "2142972337", + "website_url": "http://www.unionbear.com", + "state": "Texas", + "street": "5880 State Highway 121 Ste 101" + }, + { + "id": "6f07acc5-3db8-4380-b30f-98d256184c56", + "name": "Union Brewing", + "brewery_type": "micro", + "address_1": "622 S Rangeline Rd Ste Q", + "address_2": null, + "address_3": null, + "city": "Carmel", + "state_province": "Indiana", + "postal_code": "46032-2152", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3175644466", + "website_url": "http://www.unionbrewingco.com", + "state": "Indiana", + "street": "622 S Rangeline Rd Ste Q" + }, + { + "id": "09d390e3-f8db-47d3-a37f-039f67950c76", + "name": "Union Craft Brewing", + "brewery_type": "micro", + "address_1": "1700 Union Ave Ste D", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21211-1499", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4106169282", + "website_url": "http://www.unioncraftbrewing.com", + "state": "Maryland", + "street": "1700 Union Ave Ste D" + }, + { + "id": "b1ef75c0-ad17-4e34-aaf1-761af30aee08", + "name": "Union House Brewing LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Plum City", + "state_province": "Wisconsin", + "postal_code": "54761-0055", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Wisconsin", + "street": null + }, + { + "id": "85fca49d-7715-4238-b3ab-4252a5299795", + "name": "Union Pizza & Brewing Co", + "brewery_type": "brewpub", + "address_1": "114 S Union Ave", + "address_2": null, + "address_3": null, + "city": "Fergus Falls", + "state_province": "Minnesota", + "postal_code": "56537-", + "country": "United States", + "longitude": -96.07792093, + "latitude": 46.28264407, + "phone": "2189988888", + "website_url": "http://www.unionpizzaandbrewing.com", + "state": "Minnesota", + "street": "114 S Union Ave" + }, + { + "id": "6fba2263-8f73-4ed4-805f-d25d63f18cde", + "name": "Union Station Brewery", + "brewery_type": "brewpub", + "address_1": "36 Exchange Ter Ste 2", + "address_2": null, + "address_3": null, + "city": "Providence", + "state_province": "Rhode Island", + "postal_code": "02903-1798", + "country": "United States", + "longitude": -71.414009, + "latitude": 41.825558, + "phone": "4012742739", + "website_url": "https://www.unionstationpvd.com", + "state": "Rhode Island", + "street": "36 Exchange Ter Ste 2" + }, + { + "id": "0101bc6d-8868-4673-9ed5-f15c5e545b96", + "name": "Union Works Brewery LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Humboldt", + "state_province": "Kansas", + "postal_code": "66748-1050", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Kansas", + "street": null + }, + { + "id": "6812f970-918c-4d57-be26-4b33baff46f0", + "name": "Uniontown Brewing Co.", + "brewery_type": "brewpub", + "address_1": "105 W Main St", + "address_2": null, + "address_3": null, + "city": "Ashland", + "state_province": "Ohio", + "postal_code": "44805-2221", + "country": "United States", + "longitude": -82.31638932, + "latitude": 40.8686238, + "phone": "4199088542", + "website_url": "http://www.uniontownbrewing.com", + "state": "Ohio", + "street": "105 W Main St" + }, + { + "id": "1a2e0257-a0c5-4ea9-b786-5d5585674596", + "name": "Unknown Brewing Company", + "brewery_type": "micro", + "address_1": "1327 S Mint St", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28203-4121", + "country": "United States", + "longitude": -80.8575419, + "latitude": 35.2205129, + "phone": "9802372628", + "website_url": "http://www.unknownbrewing.com", + "state": "North Carolina", + "street": "1327 S Mint St" + }, + { + "id": "eddf1dc7-c32f-490f-8180-afe44f36438a", + "name": "Unlawful Assembly Brewing Company", + "brewery_type": "brewpub", + "address_1": "7800 Windrose Ave", + "address_2": null, + "address_3": null, + "city": "Plano", + "state_province": "Texas", + "postal_code": "75024-0114", + "country": "United States", + "longitude": -96.8267889, + "latitude": 33.078317, + "phone": "9728967668", + "website_url": "http://www.unlawfulassembly.com", + "state": "Texas", + "street": "7800 Windrose Ave" + }, + { + "id": "89f7f1eb-3dbd-40d1-b530-aad3166b8ef0", + "name": "Unleashed Brewing Company", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Stonington", + "state_province": "Connecticut", + "postal_code": "06378-1628", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.unleashedbrewing.com", + "state": "Connecticut", + "street": null + }, + { + "id": "6eab32b5-1f19-44bf-9901-285deb3581f8", + "name": "Unmapped Brewing Co.", + "brewery_type": "micro", + "address_1": "14625 Excelsior Blvd", + "address_2": null, + "address_3": null, + "city": "Minnetonka", + "state_province": "Minnesota", + "postal_code": "55345-6605", + "country": "United States", + "longitude": -93.46551151, + "latitude": 44.90425928, + "phone": "9525009622", + "website_url": "http://www.unmappedbrewing.com", + "state": "Minnesota", + "street": "14625 Excelsior Blvd" + }, + { + "id": "00ea9c67-130c-4fa0-9b92-8cfb2b6ca81f", + "name": "Unnamed Beer Company, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.unnamedbeer.com", + "state": "Colorado", + "street": null + }, + { + "id": "a2a27dba-f20a-4d98-a29c-005a2dfbe724", + "name": "Unruly Brewing Company", + "brewery_type": "micro", + "address_1": "360 W Western Ave", + "address_2": null, + "address_3": null, + "city": "Muskegon", + "state_province": "Michigan", + "postal_code": "49440-1273", + "country": "United States", + "longitude": -86.25381541, + "latitude": 43.23504367, + "phone": "2312881068", + "website_url": "http://www.unrulybrewing.com", + "state": "Michigan", + "street": "360 W Western Ave" + }, + { + "id": "6cfe7bce-ee7d-4fa4-ab54-1584566f9ac2", + "name": "Unsung Brewing Company", + "brewery_type": "closed", + "address_1": "1332 Bell Ave Ste 2D", + "address_2": null, + "address_3": null, + "city": "Tustin", + "state_province": "California", + "postal_code": "92780-6439", + "country": "United States", + "longitude": -117.8385795, + "latitude": 33.71474692, + "phone": null, + "website_url": null, + "state": "California", + "street": "1332 Bell Ave Ste 2D" + }, + { + "id": "4000ba2a-c486-431c-a9ca-c4b170696aea", + "name": "Unsung Brewing Company- Taproom", + "brewery_type": "micro", + "address_1": "500 S Anaheim Blvd Ste B", + "address_2": null, + "address_3": null, + "city": "Anaheim", + "state_province": "California", + "postal_code": "92805-4725", + "country": "United States", + "longitude": -117.9121478, + "latitude": 33.83113335, + "phone": null, + "website_url": null, + "state": "California", + "street": "500 S Anaheim Blvd Ste B" + }, + { + "id": "b9abbfd2-4a52-4d64-80ac-e236e2ce40da", + "name": "Untapped Territory, LLC", + "brewery_type": "contract", + "address_1": "326 E Main St Ste 1735", + "address_2": null, + "address_3": null, + "city": "Lincolnton", + "state_province": "North Carolina", + "postal_code": "28092-3335", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7042586466", + "website_url": null, + "state": "North Carolina", + "street": "326 E Main St Ste 1735" + }, + { + "id": "0aa072bb-50cc-49b2-bda0-a4d8fd2ce34f", + "name": "Untold Brewing", + "brewery_type": "micro", + "address_1": "6 Old Country Way", + "address_2": null, + "address_3": null, + "city": "Scituate", + "state_province": "Massachusetts", + "postal_code": "02066-3773", + "country": "United States", + "longitude": -70.74750286, + "latitude": 42.18080776, + "phone": "7813780559", + "website_url": "http://www.untoldbrewing.com", + "state": "Massachusetts", + "street": "6 Old Country Way" + }, + { + "id": "4064247b-325f-4f0a-8269-d7c061bf1c53", + "name": "UpCountry Brewing", + "brewery_type": "brewpub", + "address_1": "1042 Haywood Rd", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28806-2639", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8285752400", + "website_url": "http://upcountrybrewing.com/", + "state": "North Carolina", + "street": "1042 Haywood Rd" + }, + { + "id": "fb26164e-82c1-4bf7-80a7-a60da692482e", + "name": "Upland Brewing Co", + "brewery_type": "micro", + "address_1": "4060 W Profile Pkwy", + "address_2": null, + "address_3": null, + "city": "Bloomington", + "state_province": "Indiana", + "postal_code": "47404-2554", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8123362337", + "website_url": null, + "state": "Indiana", + "street": "4060 W Profile Pkwy" + }, + { + "id": "9a6ed651-787f-47de-9f0a-1a4fc3fb5d15", + "name": "Upland Brewing Co - Bloomington Brewpub", + "brewery_type": "regional", + "address_1": "350 W 11th St", + "address_2": null, + "address_3": null, + "city": "Bloomington", + "state_province": "Indiana", + "postal_code": "47404-3720", + "country": "United States", + "longitude": -86.53747927, + "latitude": 39.173423, + "phone": "8123362337", + "website_url": "http://www.uplandbeer.com", + "state": "Indiana", + "street": "350 W 11th St" + }, + { + "id": "fe976b5b-744d-4ba8-b9b8-af2c2e249b8b", + "name": "Upper Hand Brewery", + "brewery_type": "micro", + "address_1": "3525 Airport Rd", + "address_2": null, + "address_3": null, + "city": "Escanaba", + "state_province": "Michigan", + "postal_code": "49829-1096", + "country": "United States", + "longitude": -87.097528, + "latitude": 45.7164279, + "phone": "2693822338", + "website_url": "http://www.upperhandbrewery.com", + "state": "Michigan", + "street": "3525 Airport Rd" + }, + { + "id": "edefea44-cd3f-42b5-8a5d-9f5db3eac76e", + "name": "Upper Room Brewery", + "brewery_type": "micro", + "address_1": "1540 W 56th St Ste D", + "address_2": null, + "address_3": null, + "city": "Kearny", + "state_province": "Nebraska", + "postal_code": "68845-1036", + "country": "United States", + "longitude": -99.097487536616, + "latitude": 40.744814148118, + "phone": "3082516227", + "website_url": "https://upperroombrewery.com", + "state": "Nebraska", + "street": "1540 W 56th St Ste D" + }, + { + "id": "3c6dd3b5-0f9e-44f0-b21c-e664a66538e3", + "name": "Upright Brewing Co", + "brewery_type": "micro", + "address_1": "240 N Broadway Ste 2", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97227-1880", + "country": "United States", + "longitude": -122.6703323, + "latitude": 45.5346842, + "phone": null, + "website_url": "http://www.uprightbrewing.com", + "state": "Oregon", + "street": "240 N Broadway Ste 2" + }, + { + "id": "8c96cee4-a3ef-411a-aacf-962370865f80", + "name": "Uproar Brewing", + "brewery_type": "brewpub", + "address_1": "439 S 1st St", + "address_2": null, + "address_3": null, + "city": "San Jose", + "state_province": "California", + "postal_code": "95113-2816", + "country": "United States", + "longitude": -121.8856373, + "latitude": 37.32939189, + "phone": "4086732266", + "website_url": "http://www.uproarbrewing.com", + "state": "California", + "street": "439 S 1st St" + }, + { + "id": "4e18f3a1-a457-412a-a724-e48c5cf72dc2", + "name": "Upside Brewing", + "brewery_type": "brewpub", + "address_1": "5692 N Main St", + "address_2": null, + "address_3": null, + "city": "Sylvania", + "state_province": "Ohio", + "postal_code": "43560-1928", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4198826061", + "website_url": "http://www.facebook.com/UpsideBrewing", + "state": "Ohio", + "street": "5692 N Main St" + }, + { + "id": "d6349994-f0fb-4b87-a49d-b1647f711e26", + "name": "Upslope Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3033961898", + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "05b3f6bc-e7cf-40bb-8bdb-1dfc1a619c5f", + "name": "Upslope Brewing Company - Flatiron Park", + "brewery_type": "micro", + "address_1": "1898 S Flatiron Ct Ste 110", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301-2860", + "country": "United States", + "longitude": -105.2183136, + "latitude": 40.0203098, + "phone": null, + "website_url": "http://www.upslopebrewing.com", + "state": "Colorado", + "street": "1898 S Flatiron Ct Ste 110" + }, + { + "id": "ece6204a-29eb-47e1-868d-55c2a78bc06c", + "name": "Upslope Brewing Company - Lee Hill", + "brewery_type": "regional", + "address_1": "1501 Lee Hill Rd Unit 20", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80304-5602", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3033961898", + "website_url": "http://www.upslopebrewing.com", + "state": "Colorado", + "street": "1501 Lee Hill Rd Unit 20" + }, + { + "id": "4a555dfb-ea6b-4ee5-bc6a-fae6b0dd8395", + "name": "Upstate Brewing Co", + "brewery_type": "micro", + "address_1": "3028 Lake Rd", + "address_2": null, + "address_3": null, + "city": "Elmira", + "state_province": "New York", + "postal_code": "14903-1409", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6175198381", + "website_url": "http://www.upstatebrewing.com", + "state": "New York", + "street": "3028 Lake Rd" + }, + { + "id": "aafdae25-0224-4d28-a276-9031cc550066", + "name": "Upstate Craft Beer Company", + "brewery_type": "brewpub", + "address_1": "400 Augusta St Ste 120", + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "South Carolina", + "postal_code": "29601-3552", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8646094590", + "website_url": "http://www.upstatecraftbeer.com", + "state": "South Carolina", + "street": "400 Augusta St Ste 120" + }, + { + "id": "076ee5fa-1801-4360-9727-3a3620c1013d", + "name": "Upstream Brewing Co (#1)", + "brewery_type": "brewpub", + "address_1": "514 S 11th St", + "address_2": null, + "address_3": null, + "city": "Omaha", + "state_province": "Nebraska", + "postal_code": "68102-2808", + "country": "United States", + "longitude": -95.9308408, + "latitude": 41.2547107, + "phone": "4023440200", + "website_url": "http://www.upstreambrewing.com", + "state": "Nebraska", + "street": "514 S 11th St" + }, + { + "id": "422294e8-cbf4-4e06-8983-603bf57b5a55", + "name": "Uptown Brewing Co", + "brewery_type": "micro", + "address_1": "418 Evans St", + "address_2": null, + "address_3": null, + "city": "Greenville", + "state_province": "North Carolina", + "postal_code": "27858-1834", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2526712633", + "website_url": "http://www.uptownbrewingcompany.com", + "state": "North Carolina", + "street": "418 Evans St" + }, + { + "id": "b754ef5f-2b82-4523-b2e8-42df9d6a9b63", + "name": "Uptown Market Brewing", + "brewery_type": "micro", + "address_1": "6620 SW Scholls Ferry Rd", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97223-7166", + "country": "United States", + "longitude": -122.7423002, + "latitude": 45.4958797, + "phone": "5033364783", + "website_url": "http://www.uptownmarketpdx.com", + "state": "Oregon", + "street": "6620 SW Scholls Ferry Rd" + }, + { + "id": "e10497e6-85a6-4ed8-a643-80696a566375", + "name": "Upward Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Livingston Manor", + "state_province": "New York", + "postal_code": "12758-", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8457980471", + "website_url": "http://www.upwardbrewing.com", + "state": "New York", + "street": null + }, + { + "id": "7b2fe435-2c61-4045-a631-c87c309ca8c2", + "name": "Uranus Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Saint Robert", + "state_province": "Missouri", + "postal_code": "65584", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5735282924", + "website_url": "http://www.UranusMissouri.com", + "state": "Missouri", + "street": null + }, + { + "id": "09115f55-cccc-4bbc-bdf2-f206e134fd10", + "name": "Urban Alley Brewery", + "brewery_type": "micro", + "address_1": "12 Star Circus", + "address_2": null, + "address_3": null, + "city": "Docklands", + "state_province": "VIC", + "postal_code": "3008", + "country": "Australia", + "longitude": 144.936629, + "latitude": -37.812277, + "phone": "+61 3 4149 7011", + "website_url": "https://urbanalley.com.au/", + "state": "VIC", + "street": "12 Star Circus" + }, + { + "id": "c5f18c89-13af-4176-8e2d-9c58ffa7c4b2", + "name": "Urban Artifact", + "brewery_type": "micro", + "address_1": "1660 Blue Rock St", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45223-2554", + "country": "United States", + "longitude": -84.54196282, + "latitude": 39.1607827, + "phone": null, + "website_url": "http://www.artifactbeer.com", + "state": "Ohio", + "street": "1660 Blue Rock St" + }, + { + "id": "c0a08183-e953-4b1a-a010-a637a2451f91", + "name": "Urban Brewing Company", + "brewery_type": "micro", + "address_1": "31 Heath Circle", + "address_2": "Parklands", + "address_3": null, + "city": "Cape Town", + "state_province": "Western Cape", + "postal_code": "7441", + "country": "South Africa", + "longitude": 18.5126, + "latitude": -33.8118, + "phone": "+27 76 607 7226", + "website_url": "https://urbanbrewing.co.za/", + "state": "Western Cape", + "street": "31 Heath Circle" + }, + { + "id": "f336bf99-b21e-41ae-8c4a-717e66d35b93", + "name": "Urban Chestnut Brewing Co", + "brewery_type": "regional", + "address_1": "4465 Manchester Ave", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63110-2113", + "country": "United States", + "longitude": -90.261143, + "latitude": 38.626662, + "phone": "3142220143", + "website_url": "http://www.urbanchestnut.com", + "state": "Missouri", + "street": "4465 Manchester Ave" + }, + { + "id": "779fbf58-ba7b-4f78-858c-db3a19aa6a04", + "name": "Urban Comfort Restaurant and Brewery", + "brewery_type": "brewpub", + "address_1": "2601 Central Ave", + "address_2": null, + "address_3": null, + "city": "Saint Petersburg", + "state_province": "Florida", + "postal_code": "33713-8722", + "country": "United States", + "longitude": -82.668678, + "latitude": 27.771098, + "phone": "7272018157", + "website_url": "http://www.urbancomfortstpete.com", + "state": "Florida", + "street": "2601 Central Ave" + }, + { + "id": "41359b46-ffc7-49db-ac25-7da9551462c0", + "name": "Urban Family Brewing", + "brewery_type": "micro", + "address_1": "4441 26th Ave W", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98199-1218", + "country": "United States", + "longitude": -122.3902975, + "latitude": 47.6605861, + "phone": "2069468533", + "website_url": "http://www.urbanfamilybrewing.com", + "state": "Washington", + "street": "4441 26th Ave W" + }, + { + "id": "4b3ddf69-f7b2-4292-8966-2fca894c87b1", + "name": "Urban Growler Brewing Co", + "brewery_type": "brewpub", + "address_1": "2325 Endicott St", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55114-1223", + "country": "United States", + "longitude": -93.19284766, + "latitude": 44.9701392, + "phone": "6513405793", + "website_url": "http://www.urbangrowlerbrewing.com", + "state": "Minnesota", + "street": "2325 Endicott St" + }, + { + "id": "28b9934a-0dcf-40eb-9a9c-815e9f3eb62b", + "name": "Urban Harvest Brewing Company", + "brewery_type": "micro", + "address_1": "1024 S 5th St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53204-1733", + "country": "United States", + "longitude": -87.91672749, + "latitude": 43.02080941, + "phone": "4142494074", + "website_url": "http://www.urbanharvestbrewing.com", + "state": "Wisconsin", + "street": "1024 S 5th St" + }, + { + "id": "9000f7f7-dc89-442b-9e22-9a9cbf9ddd0d", + "name": "Urban Lodge Brewery", + "brewery_type": "brewpub", + "address_1": "415 N Benton Dr", + "address_2": null, + "address_3": null, + "city": "Sauk Rapids", + "state_province": "Minnesota", + "postal_code": "56379-1534", + "country": "United States", + "longitude": -94.1628025, + "latitude": 45.58571953, + "phone": "3202815454", + "website_url": "http://urbanlodgebrewery.com", + "state": "Minnesota", + "street": "415 N Benton Dr" + }, + { + "id": "716c0a61-1880-4229-a2bf-41f061eb6d69", + "name": "Urban Renewal Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60640", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7744874619", + "website_url": "http://www.urbanrenewbrew.com", + "state": "Illinois", + "street": null + }, + { + "id": "bb7f7dc2-64dc-4d59-a13a-8162440a3f5a", + "name": "Urban Research Brewery", + "brewery_type": "brewpub", + "address_1": "4501 Manchester Ave", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63110-2113", + "country": "United States", + "longitude": -90.274034, + "latitude": 38.627933, + "phone": "3144740935", + "website_url": "http://www.urbpizzaandbeer.com", + "state": "Missouri", + "street": "4501 Manchester Ave" + }, + { + "id": "8a5276f4-1004-462f-8d1e-3adf53125343", + "name": "Urban Roots Brewing", + "brewery_type": "brewpub", + "address_1": "1322 V St", + "address_2": null, + "address_3": null, + "city": "Sacramento", + "state_province": "California", + "postal_code": "95818-1418", + "country": "United States", + "longitude": -121.4945908, + "latitude": 38.56579627, + "phone": "9167063741", + "website_url": "http://www.urbanrootsbrewing.com", + "state": "California", + "street": "1322 V St" + }, + { + "id": "bfbcc407-1328-4791-bf71-7cc77e2a5feb", + "name": "Urban South Brewery", + "brewery_type": "micro", + "address_1": "1645 Tchoupitoulas St", + "address_2": null, + "address_3": null, + "city": "New Orleans", + "state_province": "Louisiana", + "postal_code": "70130-1852", + "country": "United States", + "longitude": -90.0666607, + "latitude": 29.9296799, + "phone": null, + "website_url": "http://www.urbansouthbrewery.com", + "state": "Louisiana", + "street": "1645 Tchoupitoulas St" + }, + { + "id": "7eb42505-4dd3-452f-847b-2bf8f2155a79", + "name": "Urban Village Brewing Company", + "brewery_type": "brewpub", + "address_1": "1001 N 2nd St", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19123-1612", + "country": "United States", + "longitude": -75.1400237, + "latitude": 39.9662701, + "phone": "2676871961", + "website_url": "http://www.urbanvillagebrewing.com", + "state": "Pennsylvania", + "street": "1001 N 2nd St" + }, + { + "id": "eae54355-ebca-400e-a9d9-7ce4ce866341", + "name": "Urbanrest Brewing Company", + "brewery_type": "micro", + "address_1": "2615 Wolcott St", + "address_2": null, + "address_3": null, + "city": "Ferndale", + "state_province": "Michigan", + "postal_code": "48220-1422", + "country": "United States", + "longitude": -83.1274188, + "latitude": 42.4679929, + "phone": null, + "website_url": "http://www.urbanrest.com", + "state": "Michigan", + "street": "2615 Wolcott St" + }, + { + "id": "e16cb5ff-1d95-4cae-9719-ff9951b746a3", + "name": "Urge Gastropub & Common House/Mason Ale Works", + "brewery_type": "brewpub", + "address_1": "255 Redel Rd", + "address_2": null, + "address_3": null, + "city": "San Marcos", + "state_province": "California", + "postal_code": "92078-4347", + "country": "United States", + "longitude": -117.158627, + "latitude": 33.135679, + "phone": null, + "website_url": null, + "state": "California", + "street": "255 Redel Rd" + }, + { + "id": "9b0f39aa-f7db-4378-a80c-7cfc88541776", + "name": "Ursa Minor Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Duluth", + "state_province": "Minnesota", + "postal_code": "55806", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2182690537", + "website_url": "http://www.ursaminorbrewing.com", + "state": "Minnesota", + "street": null + }, + { + "id": "3ce0ed18-9044-4ffa-9b18-366d0cbc657e", + "name": "Ursula Brewery", + "brewery_type": "micro", + "address_1": "2101 N Ursula St Unit 10", + "address_2": null, + "address_3": null, + "city": "Aurora", + "state_province": "Colorado", + "postal_code": "80045-7448", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7203248529", + "website_url": "http://www.ursulabrewery.com", + "state": "Colorado", + "street": "2101 N Ursula St Unit 10" + }, + { + "id": "f478a38b-fc50-485e-94ed-043655e2a716", + "name": "US Beer Brewers At the Cellar Door", + "brewery_type": "brewpub", + "address_1": "17 W Cayuga St", + "address_2": null, + "address_3": null, + "city": "Oswego", + "state_province": "New York", + "postal_code": "13126-4000", + "country": "United States", + "longitude": -76.51260925, + "latitude": 43.45769813, + "phone": "3152072381", + "website_url": "http://www.usbeerbrewers.beer", + "state": "New York", + "street": "17 W Cayuga St" + }, + { + "id": "968d9c63-9c9b-4456-bb34-4c5b0eb255c0", + "name": "Utah Brewers Cooperative", + "brewery_type": "regional", + "address_1": "1735 S 300 W", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84115-1802", + "country": "United States", + "longitude": -111.8993199, + "latitude": 40.73267145, + "phone": "8014668855", + "website_url": "http://www.wasatchbeers.com", + "state": "Utah", + "street": "1735 S 300 W" + }, + { + "id": "41ade603-cf7a-4991-8ae9-bd87d8d9f56d", + "name": "Ute Pass Brewing Co", + "brewery_type": "brewpub", + "address_1": "209 E Midland Ave", + "address_2": null, + "address_3": null, + "city": "Woodland Park", + "state_province": "Colorado", + "postal_code": "80863-3101", + "country": "United States", + "longitude": -105.0513357, + "latitude": 38.9944899, + "phone": "7196868722", + "website_url": "http://www.utepassbrewingcompany.com", + "state": "Colorado", + "street": "209 E Midland Ave" + }, + { + "id": "9ba3356c-8888-410b-ac2e-1f0550aeb43f", + "name": "Utepils Brewing Co", + "brewery_type": "micro", + "address_1": "225 Thomas Ave N Apt 700", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55405-3397", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6122497800", + "website_url": "http://www.utepilsbrewing.com", + "state": "Minnesota", + "street": "225 Thomas Ave N Apt 700" + }, + { + "id": "cfd51d05-11a3-487f-af99-ce3ce3f4ee2f", + "name": "Utility Brewing Company", + "brewery_type": "brewpub", + "address_1": "206 N. Vienna Street", + "address_2": null, + "address_3": null, + "city": "Ruston", + "state_province": "Louisiana", + "postal_code": "71270", + "country": "United States", + "longitude": -92.63790404, + "latitude": 32.52986335, + "phone": null, + "website_url": "http://www.utilitybrewing.com", + "state": "Louisiana", + "street": "206 N. Vienna Street" + }, + { + "id": "73fdbccc-dbf8-4b7d-bf03-49c0e4a4e28a", + "name": "UTOG Brewing Company", + "brewery_type": "brewpub", + "address_1": "2331 Grant Ave", + "address_2": null, + "address_3": null, + "city": "Ogden", + "state_province": "Utah", + "postal_code": "84401-1407", + "country": "United States", + "longitude": -111.973557, + "latitude": 41.224087, + "phone": "8016893476", + "website_url": "http://www.utogbrewing.com", + "state": "Utah", + "street": "2331 Grant Ave" + }, + { + "id": "16af6b57-7519-47f6-a119-2e045a870fdd", + "name": "Uturn BBQ", + "brewery_type": "brewpub", + "address_1": "599 Crossing Dr", + "address_2": null, + "address_3": null, + "city": "Lafayette", + "state_province": "Colorado", + "postal_code": "80026-1797", + "country": "United States", + "longitude": -105.1016163, + "latitude": 40.0035307, + "phone": "3039936033", + "website_url": "http://www.uturnbbq.com", + "state": "Colorado", + "street": "599 Crossing Dr" + }, + { + "id": "c9130fd3-a4f7-42f1-bc3f-fcfb74a945d1", + "name": "V Twin Brewing Company", + "brewery_type": "micro", + "address_1": "2302 N Argonne Rd Ste H", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99212-2366", + "country": "United States", + "longitude": -117.28198920193, + "latitude": 47.677936474053, + "phone": "5098680182", + "website_url": "http://www.facebook.com/vtwinbrewingco", + "state": "Washington", + "street": "2302 N Argonne Rd Ste H" + }, + { + "id": "4a20bd57-f979-4ad8-82a4-4da5b02f8147", + "name": "V's Restaurant and Brewpub", + "brewery_type": "brewpub", + "address_1": "3461 Main St", + "address_2": null, + "address_3": null, + "city": "Keokuk", + "state_province": "Iowa", + "postal_code": "52632-2227", + "country": "United States", + "longitude": -91.40894211, + "latitude": 40.42055614, + "phone": "3193138384", + "website_url": null, + "state": "Iowa", + "street": "3461 Main St" + }, + { + "id": "ee327467-c3ea-499f-8fbb-a158e9cd0f6c", + "name": "Vacay", + "brewery_type": "micro", + "address_1": "1471 Wakley Road", + "address_2": null, + "address_3": null, + "city": "Yenda", + "state_province": "NSW", + "postal_code": "2681", + "country": "Australia", + "longitude": 146.2187469, + "latitude": -34.2467608, + "phone": null, + "website_url": "https://www.australianbeerco.com.au/", + "state": "NSW", + "street": "1471 Wakley Road" + }, + { + "id": "bcc9f869-4952-4137-a502-5ac716b0a360", + "name": "Vadia", + "brewery_type": "brewpub", + "address_1": "Rua Comendador Artur J. G. Barbosa nº576", + "address_2": null, + "address_3": null, + "city": "Oliveira de Azemeis", + "state_province": "Aveiro", + "postal_code": "3720-005", + "country": "Portugal", + "longitude": 40.841334616245, + "latitude": -8.4342709768244, + "phone": "+351 256 482 151", + "website_url": "https://www.cervejavadia.pt", + "state": "Aveiro", + "street": "Rua Comendador Artur J. G. Barbosa nº576" + }, + { + "id": "f460d4f3-c666-425d-83b6-36692195ea49", + "name": "Vagabond Brewing", + "brewery_type": "brewpub", + "address_1": "2195 Hyacinth St NE Ste 172", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "Oregon", + "postal_code": "97301-3118", + "country": "United States", + "longitude": -123.0010873, + "latitude": 44.9820399, + "phone": "5035129007", + "website_url": "http://www.vagabondbrewing.com", + "state": "Oregon", + "street": "2195 Hyacinth St NE Ste 172" + }, + { + "id": "093d96cf-2aa2-41f1-a941-39f7f16b37fa", + "name": "Vail Brewing Company", + "brewery_type": "micro", + "address_1": "41290 US Hwy 6", + "address_2": null, + "address_3": null, + "city": "Vail", + "state_province": "Colorado", + "postal_code": "81657", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9704704351", + "website_url": "http://www.vailbrewingco.com", + "state": "Colorado", + "street": "41290 US Hwy 6" + }, + { + "id": "d2fa1ab7-b50a-4ffb-ab59-daa4110e1193", + "name": "Valcour Brewing Company LLC", + "brewery_type": "micro", + "address_1": "49 Ohio Rd", + "address_2": null, + "address_3": null, + "city": "Plattsburgh", + "state_province": "New York", + "postal_code": "12903-4409", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5183242337", + "website_url": "http://www.valcourbrewery.com", + "state": "New York", + "street": "49 Ohio Rd" + }, + { + "id": "6c6fe5fb-a26b-4e76-a93f-a80eca0a6d4b", + "name": "Vale Brewing", + "brewery_type": "large", + "address_1": "128 Ingoldby Road", + "address_2": null, + "address_3": null, + "city": "McLaren Flat", + "state_province": "SA", + "postal_code": "5171", + "country": "Australia", + "longitude": 138.5960528, + "latitude": -35.1949647, + "phone": "+61 8 8151 0404", + "website_url": "https://www.valebrewing.com.au/vale-restaurant-and-bar/", + "state": "SA", + "street": "128 Ingoldby Road" + }, + { + "id": "25d60262-0d68-4a22-a05e-7aecacff096b", + "name": "Valhalla Brewing Co", + "brewery_type": "micro", + "address_1": "13-35 Mackey Street", + "address_2": "E17", + "address_3": null, + "city": "North Geelong", + "state_province": "VIC", + "postal_code": "3215", + "country": "Australia", + "longitude": 144.3574676, + "latitude": -38.1133346, + "phone": "+61 412 997 329", + "website_url": null, + "state": "VIC", + "street": "13-35 Mackey Street" + }, + { + "id": "6e193741-61b7-4cc8-9731-45770307547a", + "name": "Valholl Brewing Company", + "brewery_type": "micro", + "address_1": "18970 3rd Ave", + "address_2": null, + "address_3": null, + "city": "Poulsbo", + "state_province": "Washington", + "postal_code": "98370", + "country": "United States", + "longitude": -122.64536831727, + "latitude": 47.735288075943, + "phone": "3609300172", + "website_url": "http://www.valhollbrewing.com", + "state": "Washington", + "street": "18970 3rd Ave" + }, + { + "id": "f009d054-be17-483a-a58c-d7f9021aea80", + "name": "Valkyrie Brewing", + "brewery_type": "micro", + "address_1": "234 W Dallas St", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Wisconsin", + "postal_code": "54733-9706", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7158371824", + "website_url": "http://www.valkyriebrewery.com", + "state": "Wisconsin", + "street": "234 W Dallas St" + }, + { + "id": "be1fa1c4-ec5e-4cde-bf24-96858b2bc560", + "name": "Vallensons Brewing Co.", + "brewery_type": "micro", + "address_1": "4081 Rice Drier Road", + "address_2": null, + "address_3": null, + "city": "Pearland", + "state_province": "Texas", + "postal_code": "77581", + "country": "United States", + "longitude": -95.28716205, + "latitude": 29.57569295, + "phone": "2817054063", + "website_url": "http://www.vallensons.com", + "state": "Texas", + "street": "4081 Rice Drier Road" + }, + { + "id": "8d49c923-a8fa-429d-aa0d-21d7a170289b", + "name": "Valley Brewery & Taproom", + "brewery_type": "brewpub", + "address_1": "8 Unie Street", + "address_2": null, + "address_3": null, + "city": "Hopefield", + "state_province": "Western Cape", + "postal_code": "7355", + "country": "South Africa", + "longitude": 18.3503, + "latitude": -33.0645, + "phone": "+27 72 254 8848", + "website_url": "https://www.facebook.com/ValleyBrewerySA/", + "state": "Western Cape", + "street": "8 Unie Street" + }, + { + "id": "9a1bed12-a9be-4b59-a4b3-7760ed7380a8", + "name": "Valley Brewing Co", + "brewery_type": "micro", + "address_1": "3215 River Rd", + "address_2": null, + "address_3": null, + "city": "Yakima", + "state_province": "Washington", + "postal_code": "98902-1142", + "country": "United States", + "longitude": -120.553068, + "latitude": 46.618456, + "phone": "5099495944", + "website_url": "http://www.valleybrewingco.com", + "state": "Washington", + "street": "3215 River Rd" + }, + { + "id": "49044ec6-74fc-4cca-8225-64035cec3922", + "name": "Valley Brewing Co", + "brewery_type": "brewpub", + "address_1": "157 W Adams St", + "address_2": null, + "address_3": null, + "city": "Stockton", + "state_province": "California", + "postal_code": "95204-5337", + "country": "United States", + "longitude": -121.300391, + "latitude": 37.97295175, + "phone": "2094642739", + "website_url": "http://www.valleybrew.com", + "state": "California", + "street": "157 W Adams St" + }, + { + "id": "c704117c-e499-4687-b3b1-b9b74cf5a4b7", + "name": "Valley Hops Brewing", + "brewery_type": "micro", + "address_1": "641 Ann Street", + "address_2": null, + "address_3": null, + "city": "Fortitude Valley", + "state_province": "QLD", + "postal_code": "4006", + "country": "Australia", + "longitude": 153.0349951, + "latitude": -27.4588935, + "phone": "+61 7 3114 7447", + "website_url": "https://valleyhopsbrewing.com.au/", + "state": "QLD", + "street": "641 Ann Street" + }, + { + "id": "ee527ffb-6e85-4a38-856c-10db17bb4b7e", + "name": "Valley House Brewing", + "brewery_type": "brewpub", + "address_1": "16111 Main St NE", + "address_2": null, + "address_3": null, + "city": "Duvall", + "state_province": "Washington", + "postal_code": "98019-8490", + "country": "United States", + "longitude": -121.9858846, + "latitude": 47.74315286, + "phone": "4253186363", + "website_url": "http://www.valleyhousebrewing.com", + "state": "Washington", + "street": "16111 Main St NE" + }, + { + "id": "0d4174b9-66de-4f8c-8e61-8a5d38f3a999", + "name": "Valley River Brewery & Eatery", + "brewery_type": "brewpub", + "address_1": "71 Tennessee St", + "address_2": null, + "address_3": null, + "city": "Murphy", + "state_province": "North Carolina", + "postal_code": "28906-2938", + "country": "United States", + "longitude": -84.03520817, + "latitude": 35.08890404, + "phone": "8288372337", + "website_url": "http://www.valleyriverbrewery.com", + "state": "North Carolina", + "street": "71 Tennessee St" + }, + { + "id": "76aca7b3-9521-49b0-bc20-96fa67e4b42f", + "name": "Valley Vineyards Winery & Cellar Dweller Brewing", + "brewery_type": "brewpub", + "address_1": "2276 E US Highway 22 and 3", + "address_2": null, + "address_3": null, + "city": "Morrow", + "state_province": "Ohio", + "postal_code": "45152-9414", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5138992485", + "website_url": "http://www.valleyvineyards.com", + "state": "Ohio", + "street": "2276 E US Highway 22 and 3" + }, + { + "id": "032e8235-e88f-4a5c-97a5-77e536a29e2d", + "name": "Van Der Brew", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Winthrop", + "state_province": "Maine", + "postal_code": "04364-1253", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2074411102", + "website_url": null, + "state": "Maine", + "street": null + }, + { + "id": "de4ccb18-ecbd-4717-a086-51526278d551", + "name": "Van Dieman Brewing", + "brewery_type": "micro", + "address_1": "537 White Hills Road", + "address_2": null, + "address_3": null, + "city": "Evandale", + "state_province": "TAS", + "postal_code": "7258", + "country": "Australia", + "longitude": 147.2574504, + "latitude": -41.5375432, + "phone": "+61 3 6391 9035", + "website_url": "http://www.vandiemanbrewing.com.au/", + "state": "TAS", + "street": "537 White Hills Road" + }, + { + "id": "729aa416-177d-4e58-8700-9e9c51d6808d", + "name": "Vander Mill", + "brewery_type": "brewpub", + "address_1": "505 Ball Ave NE", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Michigan", + "postal_code": "49503-2011", + "country": "United States", + "longitude": -85.6305954, + "latitude": 42.9712724, + "phone": "6162598828", + "website_url": "http://www.vandermill.com", + "state": "Michigan", + "street": "505 Ball Ave NE" + }, + { + "id": "d9579c97-3ecd-4133-922a-d1bc5dc58b31", + "name": "Vanessa House Beer Company", + "brewery_type": "micro", + "address_1": "118 NW 8th St", + "address_2": null, + "address_3": null, + "city": "Oklahoma City", + "state_province": "Oklahoma", + "postal_code": "73107-5723", + "country": "United States", + "longitude": -97.515375, + "latitude": 35.475896, + "phone": "4057249330", + "website_url": "http://www.vanessahousebeerco.com", + "state": "Oklahoma", + "street": "118 NW 8th St" + }, + { + "id": "8b6d0375-b572-4b21-9a81-504aa91d39c5", + "name": "Vanguard Brewing Company", + "brewery_type": "micro", + "address_1": "27501 SW 95th Ave Ste 945", + "address_2": null, + "address_3": null, + "city": "Wilsonville", + "state_province": "Oregon", + "postal_code": "97070-5705", + "country": "United States", + "longitude": -122.7733742, + "latitude": 45.3211582, + "phone": "5039293774", + "website_url": "http://www.vanguardbrewing.com", + "state": "Oregon", + "street": "27501 SW 95th Ave Ste 945" + }, + { + "id": "4e1f9466-2173-458d-b58d-0656112eb918", + "name": "Vanish Farmwoods Brewery", + "brewery_type": "brewpub", + "address_1": "42245 Black Hops Ln", + "address_2": null, + "address_3": null, + "city": "Leesburg", + "state_province": "Virginia", + "postal_code": "20176-5498", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7037797407", + "website_url": "http://vanishbeer.com", + "state": "Virginia", + "street": "42245 Black Hops Ln" + }, + { + "id": "6aa5bb2f-7b2f-43b6-8291-216bdc545f8e", + "name": "Vanished Valley Brewing Company", + "brewery_type": "micro", + "address_1": "782 Center Street", + "address_2": null, + "address_3": null, + "city": "Ludlow", + "state_province": "Massachusetts", + "postal_code": "01056", + "country": "United States", + "longitude": -72.47021639, + "latitude": 42.18292741, + "phone": "4132710503", + "website_url": "http://www.vanishedvalley.com", + "state": "Massachusetts", + "street": "782 Center Street" + }, + { + "id": "7ce7a516-c6e4-42c2-b357-a4dfd53f7236", + "name": "VanMax Brewing Company LLC", + "brewery_type": "micro", + "address_1": "103 N Phelps St", + "address_2": null, + "address_3": null, + "city": "Decatur", + "state_province": "Michigan", + "postal_code": "49045-1008", + "country": "United States", + "longitude": -85.97454749, + "latitude": 42.10876694, + "phone": "2692171720", + "website_url": "http://www.vanmaxbrewing.com", + "state": "Michigan", + "street": "103 N Phelps St" + }, + { + "id": "78cb7d62-ff5b-4e03-a5fc-0553b9fa3428", + "name": "Vanport Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97211-2907", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5032670219", + "website_url": null, + "state": "Oregon", + "street": null + }, + { + "id": "b961ff9e-4495-4db5-aa88-dea50bc3a02b", + "name": "Variant Brewing Company", + "brewery_type": "micro", + "address_1": "66 Norcross St", + "address_2": null, + "address_3": null, + "city": "Roswell", + "state_province": "Georgia", + "postal_code": "30075-3866", + "country": "United States", + "longitude": -84.35907858, + "latitude": 34.02576775, + "phone": "6782428189", + "website_url": null, + "state": "Georgia", + "street": "66 Norcross St" + }, + { + "id": "cefefb6f-577c-43e0-81e1-12f6125a86d6", + "name": "Varietal Beer Company", + "brewery_type": "micro", + "address_1": "416 E Edison Ave", + "address_2": null, + "address_3": null, + "city": "Sunnyside", + "state_province": "Washington", + "postal_code": "98944-1459", + "country": "United States", + "longitude": -120.0157684, + "latitude": 46.32370319, + "phone": "5093074622", + "website_url": "http://www.varietalbeer.com", + "state": "Washington", + "street": "416 E Edison Ave" + }, + { + "id": "d521368b-3245-4084-9f94-4783ba1f3238", + "name": "Vasen Brewing Company", + "brewery_type": "micro", + "address_1": "3331 Moore St", + "address_2": null, + "address_3": null, + "city": "Richmond", + "state_province": "Virginia", + "postal_code": "23230-4423", + "country": "United States", + "longitude": -77.4517779, + "latitude": 37.5574905, + "phone": "8045885678", + "website_url": "http://www.vasenbrewing.com", + "state": "Virginia", + "street": "3331 Moore St" + }, + { + "id": "615a73ce-eb1a-44bb-8a8d-0cc1b5573e72", + "name": "Vashon Brewing Co", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Vashon", + "state_province": "Washington", + "postal_code": "98070-5900", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.vashonbrewingco.com", + "state": "Washington", + "street": null + }, + { + "id": "86157812-980d-4f66-b355-5aed2438ccc5", + "name": "Vault Brewing Co", + "brewery_type": "brewpub", + "address_1": "10 S Main St", + "address_2": null, + "address_3": null, + "city": "Morrisville", + "state_province": "Pennsylvania", + "postal_code": "19067-1511", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2675734291", + "website_url": "http://www.vaultbrewing.com", + "state": "Pennsylvania", + "street": "10 S Main St" + }, + { + "id": "5dafecff-6ef6-430d-87ed-1f9e315f3f92", + "name": "Vecino Brewing", + "brewery_type": "brewpub", + "address_1": "300 E Main St", + "address_2": null, + "address_3": null, + "city": "Carrboro", + "state_province": "North Carolina", + "postal_code": "27510-2359", + "country": "United States", + "longitude": -79.0689722, + "latitude": 35.9100127, + "phone": "9196495101", + "website_url": "http://www.vecinobrewing.com", + "state": "North Carolina", + "street": "300 E Main St" + }, + { + "id": "376af0a3-abdd-42e8-850d-0635374c2e86", + "name": "Velveteen Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mamaroneck", + "state_province": "New York", + "postal_code": "10543-4719", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "New York", + "street": null + }, + { + "id": "e4e8348e-71ba-41df-b571-b866fffbf050", + "name": "Venice Ale House Brewing Co", + "brewery_type": "contract", + "address_1": "2 Rose Ave", + "address_2": null, + "address_3": null, + "city": "Venice", + "state_province": "California", + "postal_code": "90291-2411", + "country": "United States", + "longitude": -118.480274, + "latitude": 33.994634, + "phone": "3103148253", + "website_url": "http://www.venicealehouse.com", + "state": "California", + "street": "2 Rose Ave" + }, + { + "id": "be340e56-0609-44de-a684-eca999c2b5a4", + "name": "Venice Duck Brewery", + "brewery_type": "contract", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Venice", + "state_province": "California", + "postal_code": "90291-3833", + "country": "United States", + "longitude": -118.4668875, + "latitude": 33.995044, + "phone": "3103834927", + "website_url": "http://www.veniceduckbrewery.com", + "state": "California", + "street": null + }, + { + "id": "cdb0ccdd-a7c9-457e-aaef-2aacb17954b9", + "name": "Venn Brewing Company", + "brewery_type": "micro", + "address_1": "3550 E 46th St Suite 140", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55406-3965", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.vennbrewing.com", + "state": "Minnesota", + "street": "3550 E 46th St Suite 140" + }, + { + "id": "1c40a8a7-72a4-4c94-ba50-58b36f36eda3", + "name": "Ventura Brewing", + "brewery_type": "micro", + "address_1": "141 Lundberg Drive", + "address_2": "Unit 10", + "address_3": null, + "city": "Murwillumbah", + "state_province": "NSW", + "postal_code": "2484", + "country": "Australia", + "longitude": 153.4198249, + "latitude": -28.3396864, + "phone": null, + "website_url": "https://venturabrewing.co/", + "state": "NSW", + "street": "141 Lundberg Drive" + }, + { + "id": "f74cf0da-72f1-449c-b2ec-81b5fcd848bf", + "name": "Ventura Coast Brewing Company", + "brewery_type": "micro", + "address_1": "76 S Oak St", + "address_2": null, + "address_3": null, + "city": "Ventura", + "state_province": "California", + "postal_code": "93001-2702", + "country": "United States", + "longitude": -119.2945588, + "latitude": 34.27988394, + "phone": "8056678640", + "website_url": "http://www.vcbc.beer", + "state": "California", + "street": "76 S Oak St" + }, + { + "id": "007923ef-19cb-4433-be8e-355ff64b34e7", + "name": "Veracious Brewing Company", + "brewery_type": "closed", + "address_1": "246 Main St", + "address_2": null, + "address_3": null, + "city": "Monroe", + "state_province": "Connecticut", + "postal_code": "06468-1171", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2038805670", + "website_url": "http://www.veraciousbrewing.com", + "state": "Connecticut", + "street": "246 Main St" + }, + { + "id": "d217a26e-7eec-4618-b32c-2689c76b92c3", + "name": "Verboten Brewing", + "brewery_type": "micro", + "address_1": "127 E 5th St", + "address_2": null, + "address_3": null, + "city": "Loveland", + "state_province": "Colorado", + "postal_code": "80537-5503", + "country": "United States", + "longitude": -105.0749674, + "latitude": 40.39658612, + "phone": "9707757371", + "website_url": "http://www.verbotenbrewing.com", + "state": "Colorado", + "street": "127 E 5th St" + }, + { + "id": "2d9ff9d8-6a92-49fd-b03c-d77bbb371600", + "name": "Verde Brewing Company", + "brewery_type": "micro", + "address_1": "724 Industrial Dr Unit 7A", + "address_2": null, + "address_3": null, + "city": "Camp Verde", + "state_province": "Arizona", + "postal_code": "86322", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9285678626", + "website_url": "http://www.verdebrewing.com", + "state": "Arizona", + "street": "724 Industrial Dr Unit 7A" + }, + { + "id": "5504068e-77c6-41c1-a1a2-01b796b52cd1", + "name": "Verdugo West Brewing Company", + "brewery_type": "micro", + "address_1": "156 W Verdugo Ave", + "address_2": null, + "address_3": null, + "city": "Burbank", + "state_province": "California", + "postal_code": "91502-2132", + "country": "United States", + "longitude": -118.3103682, + "latitude": 34.17375015, + "phone": "8188415040", + "website_url": "http://www.verdugowestbrewing.com", + "state": "California", + "street": "156 W Verdugo Ave" + }, + { + "id": "784b40eb-252d-4e8e-a002-e11de9c3b59a", + "name": "Vermont Pub and Brewery", + "brewery_type": "brewpub", + "address_1": "144 College St", + "address_2": null, + "address_3": null, + "city": "Burlington", + "state_province": "Vermont", + "postal_code": "05401-8416", + "country": "United States", + "longitude": -73.2143746, + "latitude": 44.4772683, + "phone": "8028650500", + "website_url": "http://www.vermontbrewery.com", + "state": "Vermont", + "street": "144 College St" + }, + { + "id": "9a4d9c4e-fc5f-4af0-9fed-9374d1c2ee4f", + "name": "Vernal Brewing Company", + "brewery_type": "micro", + "address_1": "510 E Main St", + "address_2": null, + "address_3": null, + "city": "Vernal", + "state_province": "Utah", + "postal_code": "84078-2700", + "country": "United States", + "longitude": -109.5161701, + "latitude": 40.45578612, + "phone": "4357812337", + "website_url": "http://www.vernalbrewingcompany.com", + "state": "Utah", + "street": "510 E Main St" + }, + { + "id": "427d559f-ec7b-4e5f-b973-c8cd9cbf15d9", + "name": "Vertigo Brewing", + "brewery_type": "micro", + "address_1": "21420 NW Nicholas Ct Ste D-7", + "address_2": null, + "address_3": null, + "city": "Hillsboro", + "state_province": "Oregon", + "postal_code": "97124-6633", + "country": "United States", + "longitude": -122.8955804, + "latitude": 45.53189006, + "phone": "5036456644", + "website_url": "http://www.vertigobrew.com", + "state": "Oregon", + "street": "21420 NW Nicholas Ct Ste D-7" + }, + { + "id": "f48f194a-adbb-4309-8138-72f89f53d4c7", + "name": "Very Nice Brewing Co", + "brewery_type": "micro", + "address_1": "20 Lakeview Drive Unit 112", + "address_2": null, + "address_3": null, + "city": "Nederland", + "state_province": "Colorado", + "postal_code": "80466", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3032583770", + "website_url": "http://www.verynicebrewing.com", + "state": "Colorado", + "street": "20 Lakeview Drive Unit 112" + }, + { + "id": "d3b92246-604a-45f4-bbe0-bd02451924b8", + "name": "Vessel Ales & Taphouse", + "brewery_type": "closed", + "address_1": "19405 144th Ave NE Bldg D", + "address_2": null, + "address_3": null, + "city": "Woodinville", + "state_province": "Washington", + "postal_code": "98072-6485", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2066295024", + "website_url": "http://www.vesselwines.com", + "state": "Washington", + "street": "19405 144th Ave NE Bldg D" + }, + { + "id": "4c7bdc81-c8a2-49a4-90c5-5297e796e7a9", + "name": "Veteran Beer Co / Veteran Beverage Company", + "brewery_type": "proprietor", + "address_1": "320 W Ohio St Ste 501", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60654-7816", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6192498081", + "website_url": "http://www.veteranbeercompany.com", + "state": "Illinois", + "street": "320 W Ohio St Ste 501" + }, + { + "id": "aa0393b5-3623-4eeb-98c8-56547386d4eb", + "name": "Veteran Brewhouse", + "brewery_type": "micro", + "address_1": "829 CR 801", + "address_2": null, + "address_3": null, + "city": "Ashland", + "state_province": "Ohio", + "postal_code": "44805", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4196064014", + "website_url": "http://www.veteranbrewhouse.com", + "state": "Ohio", + "street": "829 CR 801" + }, + { + "id": "75a0701e-0f94-4550-afaf-892cd31774ee", + "name": "Veteran Brothers Brewing Company", + "brewery_type": "brewpub", + "address_1": "21 N Parish Ave", + "address_2": null, + "address_3": null, + "city": "Johnstown", + "state_province": "Colorado", + "postal_code": "80534", + "country": "United States", + "longitude": -104.9061919, + "latitude": 40.33713, + "phone": "9705876786", + "website_url": "https://www.facebook.com/veteranbrothersbrew", + "state": "Colorado", + "street": "21 N Parish Ave" + }, + { + "id": "2d3c288c-ecb1-47fc-bca3-c277c7728944", + "name": "Veterans United Craft Brewery", + "brewery_type": "micro", + "address_1": "8999 Western Way Ste 104", + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Florida", + "postal_code": "32256", + "country": "United States", + "longitude": -81.5570848, + "latitude": 30.2008038, + "phone": "9042533326", + "website_url": "http://www.vubrew.com", + "state": "Florida", + "street": "8999 Western Way Ste 104" + }, + { + "id": "3895d6bc-06f0-4440-8350-9b929b95cda2", + "name": "Veza Sur Brewing Co", + "brewery_type": "large", + "address_1": "55 NW 25th St", + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "Florida", + "postal_code": "33127-4415", + "country": "United States", + "longitude": -80.19614871, + "latitude": 25.80089733, + "phone": null, + "website_url": null, + "state": "Florida", + "street": "55 NW 25th St" + }, + { + "id": "add3dcfb-12fd-4d9f-be5d-5119961df9ce", + "name": "Vibrant Shore Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Virginia Beach", + "state_province": "Virginia", + "postal_code": "23451-2005", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8082805895", + "website_url": null, + "state": "Virginia", + "street": null + }, + { + "id": "b9f63a8d-4145-4e1f-8613-1bb45dba84dc", + "name": "Vice District Tap Room", + "brewery_type": "micro", + "address_1": "1454 S Michigan Ave Ste 1", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60605-2811", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3122919022", + "website_url": "http://www.vicedistrictbrewing.com", + "state": "Illinois", + "street": "1454 S Michigan Ave Ste 1" + }, + { + "id": "4c321585-4c57-400b-9a56-fb95767b8cee", + "name": "Vicious Fishes Brewery", + "brewery_type": "micro", + "address_1": "219 Fish Dr", + "address_2": null, + "address_3": null, + "city": "Angier", + "state_province": "North Carolina", + "postal_code": "27501-6077", + "country": "United States", + "longitude": -78.749408, + "latitude": 35.507541, + "phone": "9196393369", + "website_url": "http://www.viciousfishes.com", + "state": "North Carolina", + "street": "219 Fish Dr" + }, + { + "id": "ccae7ca3-7457-44cf-8138-f6f5d8959b8c", + "name": "Victor 23 Craft Brewery", + "brewery_type": "brewpub", + "address_1": "2905 St Johns Blvd", + "address_2": null, + "address_3": null, + "city": "Vancouver", + "state_province": "Washington", + "postal_code": "98661-3718", + "country": "United States", + "longitude": -122.6464236, + "latitude": 45.6426306, + "phone": "3609845413", + "website_url": "http://www.Victor23.com", + "state": "Washington", + "street": "2905 St Johns Blvd" + }, + { + "id": "1b8122fc-3b03-49c0-9ae2-e344a3510030", + "name": "Victory Brewing Co", + "brewery_type": "regional", + "address_1": "420 Acorn Ln", + "address_2": null, + "address_3": null, + "city": "Downingtown", + "state_province": "Pennsylvania", + "postal_code": "19335-3040", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6108730881", + "website_url": "http://www.victorybeer.com", + "state": "Pennsylvania", + "street": "420 Acorn Ln" + }, + { + "id": "caa654e3-bfa9-4019-8e83-2aca7a423720", + "name": "Victory Brewing Co", + "brewery_type": "brewpub", + "address_1": "650 W Cypress St Ste 1", + "address_2": null, + "address_3": null, + "city": "Kennett Square", + "state_province": "Pennsylvania", + "postal_code": "19348-3059", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4847301870", + "website_url": "http://www.victorybeer.com", + "state": "Pennsylvania", + "street": "650 W Cypress St Ste 1" + }, + { + "id": "392b4940-7333-4a2e-9e64-3b12e0290354", + "name": "Victory Brewing Co", + "brewery_type": "regional", + "address_1": "3127 Lower Valley Rd", + "address_2": null, + "address_3": null, + "city": "Parkesburg", + "state_province": "Pennsylvania", + "postal_code": "19365-9617", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6108730881", + "website_url": "http://www.victorybeer.com", + "state": "Pennsylvania", + "street": "3127 Lower Valley Rd" + }, + { + "id": "60fad081-4a4e-4415-95d8-b478cb0ce9c1", + "name": "Vierling Restaurant & Marquette Harbor Brewery", + "brewery_type": "brewpub", + "address_1": "119 S Front St", + "address_2": null, + "address_3": null, + "city": "Marquette", + "state_province": "Michigan", + "postal_code": "49855-4642", + "country": "United States", + "longitude": -87.3928955, + "latitude": 46.5425586, + "phone": "9062283533", + "website_url": "http://www.thevierling.com", + "state": "Michigan", + "street": "119 S Front St" + }, + { + "id": "b3be1ab8-d34b-465c-9704-b50364cfd061", + "name": "Viewpoint Brewing Co", + "brewery_type": "brewpub", + "address_1": "2201 San Dieguito Dr Ste F", + "address_2": null, + "address_3": null, + "city": "del Mar", + "state_province": "California", + "postal_code": "92014-2257", + "country": "United States", + "longitude": -117.2618232, + "latitude": 32.970049, + "phone": "8583569346", + "website_url": "http://www.viewpointbrewing.com", + "state": "California", + "street": "2201 San Dieguito Dr Ste F" + }, + { + "id": "9fb445cd-bd7c-4b97-a249-ef17e9856cc0", + "name": "Viking Brewpub", + "brewery_type": "brewpub", + "address_1": "211 E Main St", + "address_2": null, + "address_3": null, + "city": "Stoughton", + "state_province": "Wisconsin", + "postal_code": "53589-1700", + "country": "United States", + "longitude": -89.2188242, + "latitude": 42.9166357, + "phone": "6087195041", + "website_url": null, + "state": "Wisconsin", + "street": "211 E Main St" + }, + { + "id": "f51b3f3d-be14-40da-914a-3b5c83f75bbf", + "name": "Villacher Brauerei (Heineken)", + "brewery_type": "large", + "address_1": "Brauhausgasse 6", + "address_2": null, + "address_3": null, + "city": "Villach", + "state_province": "K�rnten", + "postal_code": "9500", + "country": "Austria", + "longitude": 13.851682458581, + "latitude": 46.616624634222, + "phone": "+434242277770", + "website_url": "https://www.villacher.com", + "state": "K�rnten", + "street": "Brauhausgasse 6" + }, + { + "id": "d0d114e1-e4ff-495f-b5df-d02e9336bf76", + "name": "Village Days Brewing Co.", + "brewery_type": "micro", + "address_1": "484 Victoria Road", + "address_2": "436", + "address_3": null, + "city": "Gladesville", + "state_province": "NSW", + "postal_code": "2111", + "country": "Australia", + "longitude": 151.1218123, + "latitude": -33.8233509, + "phone": "+61 2 8859 2354", + "website_url": "http://villagedays.com.au/", + "state": "NSW", + "street": "484 Victoria Road" + }, + { + "id": "4d87a123-b93b-4f06-9c57-8f197a9b2ad9", + "name": "Village Idiot Brewing Company", + "brewery_type": "micro", + "address_1": "42 High St", + "address_2": null, + "address_3": null, + "city": "Mount Holly", + "state_province": "New Jersey", + "postal_code": "08060-1702", + "country": "United States", + "longitude": -74.78801924, + "latitude": 39.99417605, + "phone": "6099759270", + "website_url": "http://www.villageidiotbrewing.com", + "state": "New Jersey", + "street": "42 High St" + }, + { + "id": "71ac4ae1-27a3-45bb-a309-fa41cff28e4d", + "name": "Village Vintner Winery & Brewery", + "brewery_type": "brewpub", + "address_1": "2380 Esplanade Dr Ste 100", + "address_2": null, + "address_3": null, + "city": "Algonquin", + "state_province": "Illinois", + "postal_code": "60102-5450", + "country": "United States", + "longitude": -88.33838098, + "latitude": 42.14408948, + "phone": "8476584900", + "website_url": "http://www.thevillagevintner.com", + "state": "Illinois", + "street": "2380 Esplanade Dr Ste 100" + }, + { + "id": "7acd06bc-672e-4bc0-85ae-efa205f92b25", + "name": "Vine Park Brewing Co", + "brewery_type": "micro", + "address_1": "1254 7th St W", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55102-4123", + "country": "United States", + "longitude": -93.1655001, + "latitude": 44.9040455, + "phone": "6512281355", + "website_url": "http://www.vinepark.com", + "state": "Minnesota", + "street": "1254 7th St W" + }, + { + "id": "05d5110e-1f3c-40d0-b6b4-d00b5fdac6c1", + "name": "Vine Street Pub & Brewery", + "brewery_type": "brewpub", + "address_1": "1700 Vine St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80206-1120", + "country": "United States", + "longitude": -104.9627421, + "latitude": 39.7434087, + "phone": "3033882337", + "website_url": "http://www.mountainsunpub.com", + "state": "Colorado", + "street": "1700 Vine St" + }, + { + "id": "17995f06-7c5d-4a2c-b3cf-b8cc855ba10e", + "name": "Vino's Pizza Pub Brewery", + "brewery_type": "brewpub", + "address_1": "923 W 7th St", + "address_2": null, + "address_3": null, + "city": "Little Rock", + "state_province": "Arkansas", + "postal_code": "72201-4005", + "country": "United States", + "longitude": -92.28140212, + "latitude": 34.7434392, + "phone": "5013758466", + "website_url": "http://www.vinosbrewpub.com", + "state": "Arkansas", + "street": "923 W 7th St" + }, + { + "id": "d2cf661a-d6dc-4e6e-b15d-a5100adc6ef4", + "name": "Vintage Brewing Co", + "brewery_type": "brewpub", + "address_1": "674 S Whitney Way", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Wisconsin", + "postal_code": "53711-1035", + "country": "United States", + "longitude": -89.47266345, + "latitude": 43.05171633, + "phone": "6082042739", + "website_url": "http://www.vintagebrewingco.com", + "state": "Wisconsin", + "street": "674 S Whitney Way" + }, + { + "id": "f7660e19-369a-41f8-b77e-10d094e67142", + "name": "Vintage Brewing Co", + "brewery_type": "brewpub", + "address_1": "600 Water Street", + "address_2": null, + "address_3": null, + "city": "Sauk City", + "state_province": "Wisconsin", + "postal_code": "53583", + "country": "United States", + "longitude": -89.7180892, + "latitude": 43.2820804, + "phone": "6082042739", + "website_url": null, + "state": "Wisconsin", + "street": "600 Water Street" + }, + { + "id": "e66239b3-a3ec-4b2b-8738-0710ec300f25", + "name": "Vinyl Brewing Company, LLC", + "brewery_type": "micro", + "address_1": "300B 12th St", + "address_2": null, + "address_3": null, + "city": "Hammonton", + "state_province": "New Jersey", + "postal_code": "08037-", + "country": "United States", + "longitude": -74.80690714, + "latitude": 39.6330492, + "phone": "6096665460", + "website_url": "http://www.vinylbrewingnj.com", + "state": "New Jersey", + "street": "300B 12th St" + }, + { + "id": "1c9765e4-b86d-4127-8403-ba0eaa4a6e68", + "name": "Virant Family Winery / Black Angus Brewery", + "brewery_type": "micro", + "address_1": "541 Atkins Rd", + "address_2": null, + "address_3": null, + "city": "Geneva", + "state_province": "Ohio", + "postal_code": "44041", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4404666279", + "website_url": "http://www.virantfamilywinery.com", + "state": "Ohio", + "street": "541 Atkins Rd" + }, + { + "id": "0c325218-d9f7-47c5-8305-d4a6058ec3bc", + "name": "Virginia City Brewery & Taphouse", + "brewery_type": "brewpub", + "address_1": "62 North C Street", + "address_2": null, + "address_3": null, + "city": "Virginia City", + "state_province": "Nevada", + "postal_code": "89440", + "country": "United States", + "longitude": -119.648264, + "latitude": 39.314358, + "phone": "7758477064", + "website_url": "http://www.virginiacitybreweryandtaphouse.com", + "state": "Nevada", + "street": "62 North C Street" + }, + { + "id": "e3f7a311-cddb-4810-9fb8-32bca371f72c", + "name": "Vis Major Brewing Co", + "brewery_type": "brewpub", + "address_1": "3501 Center St", + "address_2": null, + "address_3": null, + "city": "Omaha", + "state_province": "Nebraska", + "postal_code": "68105-2423", + "country": "United States", + "longitude": -95.964461, + "latitude": 41.241419, + "phone": "4028844082", + "website_url": "http://www.vismajorbrewing.com", + "state": "Nebraska", + "street": "3501 Center St" + }, + { + "id": "b8005ec5-1fc7-43bd-96e6-a5b185c927d8", + "name": "Vision Quest Brewing Company", + "brewery_type": "micro", + "address_1": "2510 47th St Ste A2", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301-2301", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3038986802", + "website_url": "http://www.visionquestbrewing.com", + "state": "Colorado", + "street": "2510 47th St Ste A2" + }, + { + "id": "c09360db-487f-487c-9c6b-d3acca6cef44", + "name": "Vista Brewing", + "brewery_type": "brewpub", + "address_1": "13551 Ranch To Market Rd 150", + "address_2": null, + "address_3": null, + "city": "Driftwood", + "state_province": "Texas", + "postal_code": "78619", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5127661842", + "website_url": "http://www.vistabrewingtx.com", + "state": "Texas", + "street": "13551 Ranch To Market Rd 150" + }, + { + "id": "affe57b1-0891-4df3-aef1-28a3546e6571", + "name": "Vitamin Sea Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Hull", + "state_province": "Massachusetts", + "postal_code": "02045-2907", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7815894569", + "website_url": null, + "state": "Massachusetts", + "street": null + }, + { + "id": "ba813e75-fa19-44a3-bab2-7927849962c2", + "name": "Vivio's Food", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Detroit", + "state_province": "Michigan", + "postal_code": "48207-4516", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3133931711", + "website_url": "http://www.viviosdetroit.com", + "state": "Michigan", + "street": null + }, + { + "id": "bb4c4339-f573-4e27-a046-11c153eca83d", + "name": "Volcanic Brewing", + "brewery_type": "micro", + "address_1": "161 James Street", + "address_2": "2", + "address_3": null, + "city": "Toowoomba City", + "state_province": "QLD", + "postal_code": "4350", + "country": "Australia", + "longitude": 151.9549713, + "latitude": -27.5686302, + "phone": "+61 466 187 210", + "website_url": null, + "state": "QLD", + "street": "161 James Street" + }, + { + "id": "38ea89d3-a701-473e-a3cb-f46ede4706e7", + "name": "Volunteer Brewing Company", + "brewery_type": "micro", + "address_1": "120 W Main St", + "address_2": null, + "address_3": null, + "city": "Middletown", + "state_province": "Delaware", + "postal_code": "19709-1040", + "country": "United States", + "longitude": -75.71959161, + "latitude": 39.44942786, + "phone": "3024640822", + "website_url": "http://www.VolunteerBrewing.com", + "state": "Delaware", + "street": "120 W Main St" + }, + { + "id": "70fe5224-37e2-431e-81ef-8b28168d4da4", + "name": "Von Ebert Brewing", + "brewery_type": "planning", + "address_1": "14021 NE Glisan St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97230", + "country": "United States", + "longitude": -122.5187026, + "latitude": 45.52726898, + "phone": null, + "website_url": null, + "state": "Oregon", + "street": "14021 NE Glisan St" + }, + { + "id": "4d346ad7-4bc6-4f61-b993-f066f610b7ef", + "name": "Von Ebert Brewing", + "brewery_type": "brewpub", + "address_1": "131 NW 13th Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97209-4110", + "country": "United States", + "longitude": -122.6843058, + "latitude": 45.52389727, + "phone": "5038207721", + "website_url": "http://vonebertbrewing.com", + "state": "Oregon", + "street": "131 NW 13th Ave" + }, + { + "id": "8b66ecf1-22be-4088-a57a-40cc876b554b", + "name": "Von Jakob Winery", + "brewery_type": "brewpub", + "address_1": "230 Illinois Hwy 127", + "address_2": null, + "address_3": null, + "city": "Alto Pass", + "state_province": "Illinois", + "postal_code": "62905", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6188934600", + "website_url": "http://www.vonjakob.com", + "state": "Illinois", + "street": "230 Illinois Hwy 127" + }, + { + "id": "bc0330df-68a5-497a-9a11-9ebb97352733", + "name": "Von Scheidt Brewing Co", + "brewery_type": "closed", + "address_1": "157 2nd Ave W", + "address_2": null, + "address_3": null, + "city": "Twin Falls", + "state_province": "Idaho", + "postal_code": "83301-6015", + "country": "United States", + "longitude": -114.471756, + "latitude": 42.55561943, + "phone": "2083299608", + "website_url": "http://www.vonscheidtbrewing.com", + "state": "Idaho", + "street": "157 2nd Ave W" + }, + { + "id": "77a8265c-2d3b-4f30-babe-87a1e0a4c37d", + "name": "Von Trapp Brewing", + "brewery_type": "micro", + "address_1": "1333 Luce Hill Rd", + "address_2": null, + "address_3": null, + "city": "Stowe", + "state_province": "Vermont", + "postal_code": "05672", + "country": "United States", + "longitude": -72.791432, + "latitude": 44.470714, + "phone": "8022535750", + "website_url": "http://www.trappfamily.com", + "state": "Vermont", + "street": "1333 Luce Hill Rd" + }, + { + "id": "c665c18b-4117-4c25-a4c9-df815a5bc1e0", + "name": "VonSeitz TheoreticAles", + "brewery_type": "micro", + "address_1": "175 Hurricane Ridge Rd", + "address_2": null, + "address_3": null, + "city": "Smithville", + "state_province": "Tennessee", + "postal_code": "37166", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6153184008", + "website_url": "http://www.theoreticales.com", + "state": "Tennessee", + "street": "175 Hurricane Ridge Rd" + }, + { + "id": "496767e9-72ae-432a-aa87-a530acb459ea", + "name": "Voodoo Brewing Co", + "brewery_type": "brewpub", + "address_1": "215 1/2 Arch St", + "address_2": null, + "address_3": null, + "city": "Meadville", + "state_province": "Pennsylvania", + "postal_code": "16335-3432", + "country": "United States", + "longitude": -80.154209, + "latitude": 41.637124, + "phone": "8143373676", + "website_url": "http://www.voodoobrewery.com", + "state": "Pennsylvania", + "street": "215 1/2 Arch St" + }, + { + "id": "7df505f8-b60c-4824-8334-b71b7eabb15f", + "name": "Voodoo Brewing Production Facility", + "brewery_type": "brewpub", + "address_1": "834 Bessemer St", + "address_2": null, + "address_3": null, + "city": "Meadville", + "state_province": "Pennsylvania", + "postal_code": "16335", + "country": "United States", + "longitude": -80.15610217, + "latitude": 41.64610467, + "phone": "8143339123", + "website_url": null, + "state": "Pennsylvania", + "street": "834 Bessemer St" + }, + { + "id": "2acbb347-c871-4db3-938f-13192f208b47", + "name": "Vortex Alley Brewery", + "brewery_type": "micro", + "address_1": "220 E. Central Ave", + "address_2": null, + "address_3": null, + "city": "Ponca City", + "state_province": "Oklahoma", + "postal_code": "74601", + "country": "United States", + "longitude": -97.08161761, + "latitude": 36.7024929, + "phone": "5803044781", + "website_url": "http://www.vortexalleybrewing.com", + "state": "Oklahoma", + "street": "220 E. Central Ave" + }, + { + "id": "8bd0a895-229e-4e74-af13-771ddddf6562", + "name": "Voyageur Brewing Co", + "brewery_type": "brewpub", + "address_1": "233 W Hwy 61", + "address_2": null, + "address_3": null, + "city": "Grand Marais", + "state_province": "Minnesota", + "postal_code": "55604", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2183873163", + "website_url": null, + "state": "Minnesota", + "street": "233 W Hwy 61" + }, + { + "id": "9c00fd09-dced-443f-abe7-b6cee7d2fc6b", + "name": "Vulgar Brewing Company", + "brewery_type": "brewpub", + "address_1": "375 Central St", + "address_2": null, + "address_3": null, + "city": "Franklin", + "state_province": "New Hampshire", + "postal_code": "03235", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6033331439", + "website_url": "https://vbc.beer/", + "state": "New Hampshire", + "street": "375 Central St" + }, + { + "id": "975c847e-393d-4d2e-9e03-da0147218238", + "name": "Wabash Brewing", + "brewery_type": "micro", + "address_1": "5328 W 79th St", + "address_2": null, + "address_3": null, + "city": "Indianapolis", + "state_province": "Indiana", + "postal_code": "46268-1631", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3179384458", + "website_url": "http://www.wabashbrew.com", + "state": "Indiana", + "street": "5328 W 79th St" + }, + { + "id": "5d79c64c-7bdd-4287-9703-deeb3465f807", + "name": "Wabasha Brewing Company", + "brewery_type": "micro", + "address_1": "429 Wabasha St S", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55107-1126", + "country": "United States", + "longitude": -93.08472893, + "latitude": 44.93295265, + "phone": "6512242102", + "website_url": "http://www.wabashabrewing.com", + "state": "Minnesota", + "street": "429 Wabasha St S" + }, + { + "id": "5f6a874b-33de-4387-928e-b095e03a58f8", + "name": "Wachusett Brewing Co", + "brewery_type": "regional", + "address_1": "175 State Rd E", + "address_2": null, + "address_3": null, + "city": "Westminster", + "state_province": "Massachusetts", + "postal_code": "01473-1208", + "country": "United States", + "longitude": -71.87294016, + "latitude": 42.55783542, + "phone": "9788749965", + "website_url": "http://www.wachusettbrew.com", + "state": "Massachusetts", + "street": "175 State Rd E" + }, + { + "id": "8c9a9c66-ac4e-42b4-9dc7-1628eaf00af5", + "name": "Wacker Brewing Co", + "brewery_type": "micro", + "address_1": "417 W Grant St", + "address_2": null, + "address_3": null, + "city": "Lancaster", + "state_province": "Pennsylvania", + "postal_code": "17603", + "country": "United States", + "longitude": -76.31365439, + "latitude": 40.03799427, + "phone": "7176172711", + "website_url": "http://www.wackerbrewing.com", + "state": "Pennsylvania", + "street": "417 W Grant St" + }, + { + "id": "bbea4e34-3881-457b-a8d5-764b12c2517d", + "name": "Waconia Brewing Company", + "brewery_type": "micro", + "address_1": "255 W Main St", + "address_2": null, + "address_3": null, + "city": "Waconia", + "state_province": "Minnesota", + "postal_code": "55387-1025", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6128882739", + "website_url": "http://www.waconiabrewing.com", + "state": "Minnesota", + "street": "255 W Main St" + }, + { + "id": "f4234744-1369-4cb2-8680-bef8b058c5bc", + "name": "Waddell's Brewing Co.", + "brewery_type": "closed", + "address_1": "6501 N Cedar Rd Ste 1", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99208-4571", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5093217818", + "website_url": "http://www.waddellsbrewery.com", + "state": "Washington", + "street": "6501 N Cedar Rd Ste 1" + }, + { + "id": "298c427c-b928-4d61-a268-9f09b793699f", + "name": "Wadsworth Brewing Company", + "brewery_type": "brewpub", + "address_1": "126 Main St", + "address_2": null, + "address_3": null, + "city": "Wadsworth", + "state_province": "Ohio", + "postal_code": "44281-1432", + "country": "United States", + "longitude": -81.72980288, + "latitude": 41.02478661, + "phone": "3304754935", + "website_url": "http://www.wadsworthbrewingcompany.com", + "state": "Ohio", + "street": "126 Main St" + }, + { + "id": "735992cf-009c-457b-962a-28574c77db3c", + "name": "Waganupa Brewing", + "brewery_type": "micro", + "address_1": "289 Clifford Dr Unit B", + "address_2": null, + "address_3": null, + "city": "Lake Almanor", + "state_province": "California", + "postal_code": "96137-9641", + "country": "United States", + "longitude": -121.1301151, + "latitude": 40.27765103, + "phone": "5302593705", + "website_url": "http://www.waganupa.com", + "state": "California", + "street": "289 Clifford Dr Unit B" + }, + { + "id": "bd5f13e7-c53f-4bfb-9845-619a7ad059e7", + "name": "Wages Brewing Company", + "brewery_type": "micro", + "address_1": "1382 Bill Virdon Blvd", + "address_2": null, + "address_3": null, + "city": "West Plains", + "state_province": "Missouri", + "postal_code": "65775-3383", + "country": "United States", + "longitude": -91.835109, + "latitude": 36.72461005, + "phone": "4172933119", + "website_url": "http://www.wagesbrewco.com", + "state": "Missouri", + "street": "1382 Bill Virdon Blvd" + }, + { + "id": "2821037d-83b8-494d-bebd-da8bb7ed1481", + "name": "Wagner Valley Brewing Co", + "brewery_type": "micro", + "address_1": "9322 Route 414", + "address_2": null, + "address_3": null, + "city": "Lodi", + "state_province": "New York", + "postal_code": "14860-9641", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6075826450", + "website_url": "http://www.wagnerbrewing.com", + "state": "New York", + "street": "9322 Route 414" + }, + { + "id": "150e5041-28b6-4a3c-9dbe-2b739c4f1a1f", + "name": "Waikiki Brewing Company", + "brewery_type": "brewpub", + "address_1": "1945 Kalakaua Ave", + "address_2": null, + "address_3": null, + "city": "Honolulu", + "state_province": "Hawaii", + "postal_code": "96815-1851", + "country": "United States", + "longitude": -157.8334964, + "latitude": 21.2858755, + "phone": null, + "website_url": "http://www.waikikibrewing.com", + "state": "Hawaii", + "street": "1945 Kalakaua Ave" + }, + { + "id": "7e06716a-cf35-431f-8097-611364da644c", + "name": "Waikiki Brewing Company, Kaka'ako", + "brewery_type": "micro", + "address_1": "831 Queen St", + "address_2": null, + "address_3": null, + "city": "Honolulu", + "state_province": "Hawaii", + "postal_code": "96813-5203", + "country": "United States", + "longitude": -157.8559271, + "latitude": 21.29964432, + "phone": null, + "website_url": null, + "state": "Hawaii", + "street": "831 Queen St" + }, + { + "id": "32b7bb46-102b-45a3-800a-6dc7222fd731", + "name": "Wake Brewing", + "brewery_type": "micro", + "address_1": "2529 5th Ave", + "address_2": null, + "address_3": null, + "city": "Rock Island", + "state_province": "Illinois", + "postal_code": "61201", + "country": "United States", + "longitude": -90.50132856, + "latitude": 41.51035669, + "phone": "3095580878", + "website_url": "http://www.wakebrewing.com", + "state": "Illinois", + "street": "2529 5th Ave" + }, + { + "id": "07fc25d5-1782-4022-a941-305925d8c9ab", + "name": "Waldmann Brewery & Wurstery", + "brewery_type": "brewpub", + "address_1": "445 Smith Ave N", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55102-2725", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6512221857", + "website_url": "http://www.waldmannbrewery.com", + "state": "Minnesota", + "street": "445 Smith Ave N" + }, + { + "id": "d046c044-cd15-464d-87b0-2bb25e634200", + "name": "Walkabout Brewing Co", + "brewery_type": "micro", + "address_1": "921 Mason Way", + "address_2": null, + "address_3": null, + "city": "Medford", + "state_province": "Oregon", + "postal_code": "97501", + "country": "United States", + "longitude": -122.9027355, + "latitude": 42.34806544, + "phone": "5417344677", + "website_url": null, + "state": "Oregon", + "street": "921 Mason Way" + }, + { + "id": "bbd5c52e-ce60-4b89-a0fe-6c5f15324f40", + "name": "Walking Man Brewing Co", + "brewery_type": "micro", + "address_1": "240 SW 1st St", + "address_2": null, + "address_3": null, + "city": "Stevenson", + "state_province": "Washington", + "postal_code": "98648-6649", + "country": "United States", + "longitude": -121.88385512899, + "latitude": 45.692482431816, + "phone": "5094275520", + "website_url": "http://www.walkingmanbeer.com", + "state": "Washington", + "street": "240 SW 1st St" + }, + { + "id": "eadec31f-a82e-40c6-97ce-a160689e95cd", + "name": "Walking Tree Brewery", + "brewery_type": "micro", + "address_1": "3209 Dodger Rd", + "address_2": null, + "address_3": null, + "city": "Vero Beach", + "state_province": "Florida", + "postal_code": "32960-7976", + "country": "United States", + "longitude": -80.41852475, + "latitude": 27.6455742, + "phone": "3055623717", + "website_url": "http://www.walkingtreebrewery.com", + "state": "Florida", + "street": "3209 Dodger Rd" + }, + { + "id": "58d8f296-48fb-4385-bdfe-88ecc9d2684f", + "name": "Wallace Brewing Co", + "brewery_type": "micro", + "address_1": "610 Bank St", + "address_2": null, + "address_3": null, + "city": "Wallace", + "state_province": "Idaho", + "postal_code": "83873-2227", + "country": "United States", + "longitude": -115.9227103, + "latitude": 47.47153133, + "phone": "2085565600", + "website_url": "http://www.wallacebrewing.com", + "state": "Idaho", + "street": "610 Bank St" + }, + { + "id": "6a6b79df-5cd8-4b54-9cf7-021fd47069bb", + "name": "Walldorff Brewpub & Bistro", + "brewery_type": "brewpub", + "address_1": "105 E State St", + "address_2": null, + "address_3": null, + "city": "Hastings", + "state_province": "Michigan", + "postal_code": "49058-1808", + "country": "United States", + "longitude": -85.284584, + "latitude": 42.6487487, + "phone": "2699454400", + "website_url": "http://www.walldorffbrewpub.com", + "state": "Michigan", + "street": "105 E State St" + }, + { + "id": "6a7acc2e-1fd6-47a7-ab20-83ac86aad50c", + "name": "Wallenpaupack Brewing Company", + "brewery_type": "brewpub", + "address_1": "73 Welwood Ave", + "address_2": null, + "address_3": null, + "city": "Hawley", + "state_province": "Pennsylvania", + "postal_code": "18428-1500", + "country": "United States", + "longitude": -75.17619182, + "latitude": 41.46873956, + "phone": "5703907933", + "website_url": "http://www.wallenpaupackbrewingco.com", + "state": "Pennsylvania", + "street": "73 Welwood Ave" + }, + { + "id": "32cee56d-132f-404d-a744-598476b6351c", + "name": "Walnut River Brewing Company", + "brewery_type": "micro", + "address_1": "111 W Locust Ave", + "address_2": null, + "address_3": null, + "city": "El Dorado", + "state_province": "Kansas", + "postal_code": "67042-3513", + "country": "United States", + "longitude": -96.85004869, + "latitude": 37.81367549, + "phone": "3163518086", + "website_url": "http://www.walnutriverbrewing.com", + "state": "Kansas", + "street": "111 W Locust Ave" + }, + { + "id": "506021c9-6f03-49a4-b7f2-55f68f23f365", + "name": "Walter Brewing Company", + "brewery_type": "micro", + "address_1": "126 Oneida St", + "address_2": null, + "address_3": null, + "city": "Pueblo", + "state_province": "Colorado", + "postal_code": "81003-3424", + "country": "United States", + "longitude": -104.6103677, + "latitude": 38.26241645, + "phone": "7195420766", + "website_url": "http://www.waltersbeer.com", + "state": "Colorado", + "street": "126 Oneida St" + }, + { + "id": "4435d82d-70bf-4e0d-90df-d9b849ed8931", + "name": "Walter Station Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85034-1820", + "country": "United States", + "longitude": -112.0773456, + "latitude": 33.4485866, + "phone": "2674216316", + "website_url": "http://www.walterstation.beer", + "state": "Arizona", + "street": null + }, + { + "id": "1b75785d-e64b-4c39-bc06-8650d653e2a6", + "name": "Waltz Brewing", + "brewery_type": "micro", + "address_1": "1900 A St", + "address_2": null, + "address_3": null, + "city": "Forest Grove", + "state_province": "Oregon", + "postal_code": "97116-2303", + "country": "United States", + "longitude": -123.1142562, + "latitude": 45.5185238, + "phone": "5038966057", + "website_url": "http://www.waltzbrewing.com", + "state": "Oregon", + "street": "1900 A St" + }, + { + "id": "40b20727-0d2a-4abd-b578-d5396f0a8ca9", + "name": "Wandana Brewing Co.", + "brewery_type": "micro", + "address_1": "20 Manns Road", + "address_2": null, + "address_3": null, + "city": "Mullumbimby", + "state_province": "NSW", + "postal_code": "2482", + "country": "Australia", + "longitude": 153.5148956, + "latitude": -28.5541054, + "phone": "+61 491 083 849", + "website_url": "http://wandanabrewingco.com.au/", + "state": "NSW", + "street": "20 Manns Road" + }, + { + "id": "b93629ce-5fd4-407e-88dc-af339c012b2e", + "name": "Wander Brewing", + "brewery_type": "micro", + "address_1": "1807 Dean Ave", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98225-4616", + "country": "United States", + "longitude": -122.4737559, + "latitude": 48.75410947, + "phone": "3606476152", + "website_url": "http://www.wanderbrewing.com", + "state": "Washington", + "street": "1807 Dean Ave" + }, + { + "id": "4bf53592-21c4-46b8-96a8-595144ed971d", + "name": "Wandering Griffin", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Beavercreek", + "state_province": "Ohio", + "postal_code": "45324-9095", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9379565216", + "website_url": "http://www.wanderinggriffin.com", + "state": "Ohio", + "street": null + }, + { + "id": "e4889e72-ac10-44c1-8dc8-ede75496a898", + "name": "Wandering Hop Brewery", + "brewery_type": "micro", + "address_1": "508 N 20th Ave", + "address_2": null, + "address_3": null, + "city": "Yakima", + "state_province": "Washington", + "postal_code": "98902-1839", + "country": "United States", + "longitude": -120.5356617, + "latitude": 46.60627214, + "phone": "5099018011", + "website_url": "http://www.wanderinghop.com", + "state": "Washington", + "street": "508 N 20th Ave" + }, + { + "id": "60cc92dc-9216-4fff-81cf-24d84adfe8aa", + "name": "Wandering Star Brewing Co", + "brewery_type": "micro", + "address_1": "11 Gifford St", + "address_2": null, + "address_3": null, + "city": "Pittsfield", + "state_province": "Massachusetts", + "postal_code": "01201-3701", + "country": "United States", + "longitude": -73.21202303, + "latitude": 42.45706449, + "phone": "9175733942", + "website_url": "http://www.wanderingstarbrewing.com", + "state": "Massachusetts", + "street": "11 Gifford St" + }, + { + "id": "97442f4a-e025-4be1-b523-20b48e48e0b2", + "name": "WanderLinger Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Chattanooga", + "state_province": "Tennessee", + "postal_code": "37403-4331", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6156535407", + "website_url": "http://www.wanderlinger.com", + "state": "Tennessee", + "street": null + }, + { + "id": "4c4bc3c0-81f1-483c-831f-64994ae72105", + "name": "Wanderlust Brewing Company", + "brewery_type": "micro", + "address_1": "1519 N Main St Ste 102", + "address_2": null, + "address_3": null, + "city": "Flagstaff", + "state_province": "Arizona", + "postal_code": "86004-4970", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9283517952", + "website_url": "http://www.wanderlustbrewing.com", + "state": "Arizona", + "street": "1519 N Main St Ste 102" + }, + { + "id": "cd97ead9-98b6-43c6-802b-cb943b9ae469", + "name": "Wapnö Gård", + "brewery_type": "micro", + "address_1": "Wapnö Gård 215", + "address_2": null, + "address_3": null, + "city": "Halmstad", + "state_province": "Halland", + "postal_code": "305 91", + "country": "Sweden", + "longitude": null, + "latitude": null, + "phone": "+46 35 299 03 00", + "website_url": "https://www.wapno.se/en-gb/", + "state": "Halland", + "street": "Wapnö Gård 215" + }, + { + "id": "fe1a5d83-f9d0-4f80-9e0e-5553442a99a5", + "name": "War Flag Brewing Co", + "brewery_type": "proprietor", + "address_1": "649 Morgan Ave Ste B16-5", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11222-3940", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6466968096", + "website_url": "http://www.warflag.nyc", + "state": "New York", + "street": "649 Morgan Ave Ste B16-5" + }, + { + "id": "760e1abe-0311-49a4-b025-893d6da40335", + "name": "War Horse Brewing Company", + "brewery_type": "brewpub", + "address_1": "623 Lerch Rd Ste 5", + "address_2": null, + "address_3": null, + "city": "Geneva", + "state_province": "New York", + "postal_code": "14456-9295", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3155854432", + "website_url": "http://www.3brotherswinery.com", + "state": "New York", + "street": "623 Lerch Rd Ste 5" + }, + { + "id": "86ac6974-4c49-4e84-8d51-47f97fda5ac4", + "name": "WAR WATER BREWERY", + "brewery_type": "brewpub", + "address_1": "201 N Riverside Ave Ste C1-11", + "address_2": null, + "address_3": null, + "city": "Saint Clair", + "state_province": "Michigan", + "postal_code": "48079-5498", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8102893921", + "website_url": "http://www.warwaterbrewery.com", + "state": "Michigan", + "street": "201 N Riverside Ave Ste C1-11" + }, + { + "id": "8f33f7f4-d4af-4252-8db0-3acab330b602", + "name": "Ward House Brewery", + "brewery_type": "micro", + "address_1": "111 Elm Ave W", + "address_2": null, + "address_3": null, + "city": "Waseca", + "state_province": "Minnesota", + "postal_code": "56093-2433", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.wardhousebrewing.com", + "state": "Minnesota", + "street": "111 Elm Ave W" + }, + { + "id": "5f6df9e7-d434-4648-bb36-ff53a54640f3", + "name": "Ward’s Brewery", + "brewery_type": "micro", + "address_1": "131 Auckland Street", + "address_2": null, + "address_3": null, + "city": "Gladstone Central", + "state_province": "QLD", + "postal_code": "4680", + "country": "Australia", + "longitude": 151.2596117, + "latitude": -23.8458485, + "phone": "+61 447 363 388", + "website_url": "https://www.wardsbrewery.com/", + "state": "QLD", + "street": "131 Auckland Street" + }, + { + "id": "d48f7e45-6ea1-45c2-b0a7-c4e60036d903", + "name": "Waredaca Brewing Company", + "brewery_type": "micro", + "address_1": "4017 Damascus Rd", + "address_2": null, + "address_3": null, + "city": "Gaithersburg", + "state_province": "Maryland", + "postal_code": "20882-2105", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2404322255", + "website_url": "http://www.waredacabrewing.com", + "state": "Maryland", + "street": "4017 Damascus Rd" + }, + { + "id": "72bfa421-0e54-45a5-877d-3c26cedfae48", + "name": "Warehouse Gourmet Bistro & Brew Pub", + "brewery_type": "micro", + "address_1": "7 Pennsylvania Ave", + "address_2": null, + "address_3": null, + "city": "Hanover", + "state_province": "Pennsylvania", + "postal_code": "17331-2432", + "country": "United States", + "longitude": -76.98976977, + "latitude": 39.80232948, + "phone": "7174519898", + "website_url": "http://www.warehousegourmet.net", + "state": "Pennsylvania", + "street": "7 Pennsylvania Ave" + }, + { + "id": "c4631ee5-2531-4cce-881f-9232c75002fa", + "name": "Warfield Distillery and Brewery", + "brewery_type": "brewpub", + "address_1": "280 N. Main St.", + "address_2": null, + "address_3": null, + "city": "Ketchum", + "state_province": "Idaho", + "postal_code": "83340-2759", + "country": "United States", + "longitude": -114.36394, + "latitude": 43.681482, + "phone": "2087262739", + "website_url": "http://www.warfielddistillery.com", + "state": "Idaho", + "street": "280 N. Main St." + }, + { + "id": "12af83ba-36ce-4066-b886-af36123e0644", + "name": "Warped Wing Brewing Co", + "brewery_type": "micro", + "address_1": "26 Wyandot St", + "address_2": null, + "address_3": null, + "city": "Dayton", + "state_province": "Ohio", + "postal_code": "45402-2145", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9372227003", + "website_url": "http://www.warpedwing.com", + "state": "Ohio", + "street": "26 Wyandot St" + }, + { + "id": "6401037b-c1b1-42f4-98fa-1189857bc6cc", + "name": "WarPigs USA Brewing Co.", + "brewery_type": "contract", + "address_1": "9750 Indiana Pkwy", + "address_2": null, + "address_3": null, + "city": "Munster", + "state_province": "Indiana", + "postal_code": "46321-4004", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2199223565", + "website_url": "http://warpigs.com", + "state": "Indiana", + "street": "9750 Indiana Pkwy" + }, + { + "id": "f1eff6f6-0871-4a67-96b5-4c5815147056", + "name": "Wartega", + "brewery_type": "micro", + "address_1": "33 35th St Unit 6A", + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11232-2210", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9173971171", + "website_url": "http://www.wartega.com", + "state": "New York", + "street": "33 35th St Unit 6A" + }, + { + "id": "e7ac801e-29e3-4357-89b7-5c1e907f8f81", + "name": "Wasatch Brew Pub - Park City", + "brewery_type": "micro", + "address_1": "250 Main St", + "address_2": null, + "address_3": null, + "city": "Park City", + "state_province": "Utah", + "postal_code": "84060-5113", + "country": "United States", + "longitude": -111.9933029, + "latitude": 40.6418424, + "phone": "4356490900", + "website_url": "http://www.wasatchbeers.com", + "state": "Utah", + "street": "250 Main St" + }, + { + "id": "bcc3a506-1067-482c-90a4-0979423987d9", + "name": "Wasatch Brew Pub - SLC Airport", + "brewery_type": "brewpub", + "address_1": "2930 W Terminal Dr", + "address_2": "Concourse B Level 2", + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84116", + "country": "United States", + "longitude": -111.990646, + "latitude": 8411640.789, + "phone": "8018839033", + "website_url": "https://www.saltlakebrewingco.com/wasatch", + "state": "Utah", + "street": "2930 W Terminal Dr" + }, + { + "id": "3be60e54-c794-4df5-b7af-cae8e7b5df1e", + "name": "Wasatch Brew Pub - Sugarhouse", + "brewery_type": "brewpub", + "address_1": "2110 S Highland Dr", + "address_2": null, + "address_3": null, + "city": "Salt Lake City", + "state_province": "Utah", + "postal_code": "84106-2807", + "country": "United States", + "longitude": -111.8503182, + "latitude": 40.6987539, + "phone": "8017831127", + "website_url": "http://www.wasatchbeers.com", + "state": "Utah", + "street": "2110 S Highland Dr" + }, + { + "id": "9b3c11f7-2b67-49b9-98f4-3fecf1d4e6dc", + "name": "Washington Brewing Co", + "brewery_type": "brewpub", + "address_1": "28 E Maiden St", + "address_2": null, + "address_3": null, + "city": "Washington", + "state_province": "Pennsylvania", + "postal_code": "15301-4912", + "country": "United States", + "longitude": -80.02076781, + "latitude": 40.07308431, + "phone": "7242225050", + "website_url": "http://thewashingtonbrewingcompany.com", + "state": "Pennsylvania", + "street": "28 E Maiden St" + }, + { + "id": "d2f3ee61-b49c-4392-b40c-f35eafab445f", + "name": "Wasser Brewing Company", + "brewery_type": "brewpub", + "address_1": "102 E Franklin St", + "address_2": null, + "address_3": null, + "city": "Greencastle", + "state_province": "Indiana", + "postal_code": "46135-1220", + "country": "United States", + "longitude": -86.86331023, + "latitude": 39.64467171, + "phone": "7653019363", + "website_url": "http://www.wasserbrewing.com", + "state": "Indiana", + "street": "102 E Franklin St" + }, + { + "id": "a4e4c217-4509-4a3a-a9c1-31e24ada83ae", + "name": "Wasserhund Brewing Company", + "brewery_type": "brewpub", + "address_1": "1805 Laskin Rd Ste 102", + "address_2": null, + "address_3": null, + "city": "Virginia Beach", + "state_province": "Virginia", + "postal_code": "23454-4553", + "country": "United States", + "longitude": -76.02762147, + "latitude": 36.849165, + "phone": "7573511326", + "website_url": "http://www.wasserhundbrewing.com", + "state": "Virginia", + "street": "1805 Laskin Rd Ste 102" + }, + { + "id": "7290db73-1ca8-48bd-b2a7-2e2d3ee41fc1", + "name": "Water Buffalo Brewery", + "brewery_type": "micro", + "address_1": "136 Russet Rd", + "address_2": null, + "address_3": null, + "city": "Walla Walla", + "state_province": "Washington", + "postal_code": "99362-8253", + "country": "United States", + "longitude": -118.4060748, + "latitude": 46.05220327, + "phone": "5092407139", + "website_url": "http://www.waterbuffalobrewery.com", + "state": "Washington", + "street": "136 Russet Rd" + }, + { + "id": "0a9c77ee-1b34-4746-8c96-33c22a20d95c", + "name": "Water Street Brewery", + "brewery_type": "micro", + "address_1": "1101 N Water St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53202-3107", + "country": "United States", + "longitude": -87.9112223, + "latitude": 43.0447248, + "phone": "4142721195", + "website_url": "http://www.waterstreetbrewery.com", + "state": "Wisconsin", + "street": "1101 N Water St" + }, + { + "id": "ff58cf5e-a4d6-4cfb-9a20-fc43f8d219fa", + "name": "Water Street Brewery - Grafton", + "brewery_type": "brewpub", + "address_1": "1251 Gateway Dr 143 & Highway 60", + "address_2": null, + "address_3": null, + "city": "Grafton", + "state_province": "Wisconsin", + "postal_code": "53024-9336", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2623752222", + "website_url": "http://www.waterstreetbrewery.com", + "state": "Wisconsin", + "street": "1251 Gateway Dr 143 & Highway 60" + }, + { + "id": "8c82cec9-aaad-4f63-acd9-8bd13b1b0f60", + "name": "Water Street Brewery - Lake County", + "brewery_type": "brewpub", + "address_1": "3191 Golf Rd", + "address_2": null, + "address_3": null, + "city": "Delafield", + "state_province": "Wisconsin", + "postal_code": "53018-2156", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2626467878", + "website_url": "http://www.waterstreetbrewery.com", + "state": "Wisconsin", + "street": "3191 Golf Rd" + }, + { + "id": "3d232e50-e58a-4343-a372-6885c76c38c0", + "name": "Water Street Brewery - Oak Creek", + "brewery_type": "brewpub", + "address_1": "140 W Town Square Way", + "address_2": null, + "address_3": null, + "city": "Oak Creek", + "state_province": "Wisconsin", + "postal_code": "53154-6811", + "country": "United States", + "longitude": -87.91210007, + "latitude": 42.90064865, + "phone": "4143015288", + "website_url": null, + "state": "Wisconsin", + "street": "140 W Town Square Way" + }, + { + "id": "7d0c32f8-09a9-4363-944f-3a836c4d8b17", + "name": "Water Street Brewing Co", + "brewery_type": "brewpub", + "address_1": "168 Water St Fl 1", + "address_2": null, + "address_3": null, + "city": "Binghamton", + "state_province": "New York", + "postal_code": "13901-2736", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6072174546", + "website_url": "http://www.waterstreetbrewingco.com", + "state": "New York", + "street": "168 Water St Fl 1" + }, + { + "id": "d6e518a0-56f4-49ea-b073-3348d9e25faa", + "name": "Water's End Brewery", + "brewery_type": "micro", + "address_1": "12425 Dillingham Sq", + "address_2": null, + "address_3": null, + "city": "Lake Ridge", + "state_province": "Virginia", + "postal_code": "22192-5252", + "country": "United States", + "longitude": -77.31791007, + "latitude": 38.68474967, + "phone": "5409075689", + "website_url": "http://watersendbrewery.com", + "state": "Virginia", + "street": "12425 Dillingham Sq" + }, + { + "id": "82cb77d5-b49e-43c4-b604-2ba532006d06", + "name": "Waterfront Brewery LLC", + "brewery_type": "brewpub", + "address_1": "201 William St", + "address_2": null, + "address_3": null, + "city": "Key West", + "state_province": "Florida", + "postal_code": "33040-6679", + "country": "United States", + "longitude": -81.801344, + "latitude": 24.561016, + "phone": "3054402270", + "website_url": "http://www.thewaterfrontbrewery.com", + "state": "Florida", + "street": "201 William St" + }, + { + "id": "540ec31e-ebbf-40d9-858a-09f23e1ff802", + "name": "Waterline Brewing Co.", + "brewery_type": "micro", + "address_1": "721 Surrey St", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "North Carolina", + "postal_code": "28401-5043", + "country": "United States", + "longitude": -77.94884067, + "latitude": 34.22609746, + "phone": "9107778955", + "website_url": "http://www.waterlinebrewing.com", + "state": "North Carolina", + "street": "721 Surrey St" + }, + { + "id": "e758d0d5-5e1e-4eb5-acfc-d8354602cc19", + "name": "Waterman Brewing Company", + "brewery_type": "micro", + "address_1": "9824 Dino Dr Unit 150", + "address_2": null, + "address_3": null, + "city": "Elk Grove", + "state_province": "California", + "postal_code": "95624-1277", + "country": "United States", + "longitude": -121.3572043, + "latitude": 38.40045408, + "phone": "9167142337", + "website_url": "http://www.watermanbrewing.com", + "state": "California", + "street": "9824 Dino Dr Unit 150" + }, + { + "id": "02813c09-43d2-4f5e-a098-0b69a1278ca9", + "name": "Waterman's Brewing Co", + "brewery_type": "brewpub", + "address_1": "1610 Pavillion Pl", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "North Carolina", + "postal_code": "28403-3735", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9108393103", + "website_url": "http://www.watermansbrewing.com", + "state": "North Carolina", + "street": "1610 Pavillion Pl" + }, + { + "id": "309cfb01-0cde-4775-91c6-95e492b5eb4b", + "name": "Watermark Brewing Company", + "brewery_type": "micro", + "address_1": "5781 Saint Joseph Ave", + "address_2": null, + "address_3": null, + "city": "Stevensville", + "state_province": "Michigan", + "postal_code": "49127-1238", + "country": "United States", + "longitude": -86.51963025, + "latitude": 42.01286668, + "phone": "2692810872", + "website_url": "http://www.watermarkbrewing.com", + "state": "Michigan", + "street": "5781 Saint Joseph Ave" + }, + { + "id": "3a80fe8b-9d4f-43dc-81a9-4145c5132bcb", + "name": "Watertown Brewing Company", + "brewery_type": "micro", + "address_1": "113 E Kemp Ave", + "address_2": null, + "address_3": null, + "city": "Watertown", + "state_province": "South Dakota", + "postal_code": "57201-3641", + "country": "United States", + "longitude": -97.11158716, + "latitude": 44.90104997, + "phone": "6058782739", + "website_url": "http://watertownbrewing.com", + "state": "South Dakota", + "street": "113 E Kemp Ave" + }, + { + "id": "d544b132-8957-4eb5-be3b-69b3ebd47cc5", + "name": "Watsacowie Brewing Co.", + "brewery_type": "micro", + "address_1": "9 Depot Road", + "address_2": null, + "address_3": null, + "city": "Minlaton", + "state_province": "SA", + "postal_code": "5575", + "country": "Australia", + "longitude": 137.5961583, + "latitude": -34.76398, + "phone": "+61 8 8822 7117", + "website_url": "http://www.watsacowie.com.au/", + "state": "SA", + "street": "9 Depot Road" + }, + { + "id": "e2eef525-02a8-47d0-951c-05fead8bcb7d", + "name": "Watts Brewing Company", + "brewery_type": "micro", + "address_1": "15510 Redmond-Woodinville Rd NE #E110", + "address_2": null, + "address_3": null, + "city": "Woodinville", + "state_province": "Washington", + "postal_code": "98072-6998", + "country": "United States", + "longitude": -122.15388414426, + "latitude": 47.739993903523, + "phone": "2066583646", + "website_url": "http://www.wattsbrewingcompany.com", + "state": "Washington", + "street": "15510 Redmond-Woodinville Rd NE #E110" + }, + { + "id": "f9801938-bef2-4dc4-a683-9c6865cfd167", + "name": "Watts River Brewing", + "brewery_type": "micro", + "address_1": "7 Hunter Road", + "address_2": null, + "address_3": null, + "city": "Healesville", + "state_province": "VIC", + "postal_code": "3777", + "country": "Australia", + "longitude": 145.506696, + "latitude": -37.65818, + "phone": "+61 493 776 686", + "website_url": "http://www.wattsriverbrewing.com.au/", + "state": "VIC", + "street": "7 Hunter Road" + }, + { + "id": "7796b50f-6d32-4253-8650-c7c254abba71", + "name": "Wavelength Brewing Company", + "brewery_type": "micro", + "address_1": "236 Main St", + "address_2": null, + "address_3": null, + "city": "Vista", + "state_province": "California", + "postal_code": "92084-6008", + "country": "United States", + "longitude": -117.2418841, + "latitude": 33.2028185, + "phone": "7608209283", + "website_url": "http://www.wavelengthbrewco.com", + "state": "California", + "street": "236 Main St" + }, + { + "id": "b0b2d8dd-742f-40ab-8b17-fb335084e5bd", + "name": "Waverly Brewing Company", + "brewery_type": "micro", + "address_1": "1625-C Union Ave", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21211", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4434385765", + "website_url": "http://www.waverlybrewingcompany.com", + "state": "Maryland", + "street": "1625-C Union Ave" + }, + { + "id": "3486d742-3bd5-449a-b66e-d3a881c3c103", + "name": "Wayfinder Beer", + "brewery_type": "brewpub", + "address_1": "304 SE 2nd Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97214-1008", + "country": "United States", + "longitude": -122.6634881, + "latitude": 45.5208914, + "phone": "5037182337", + "website_url": "http://www.wayfinder.beer", + "state": "Oregon", + "street": "304 SE 2nd Ave" + }, + { + "id": "8e46e558-55b6-4c93-bf99-2ba3f2ba2a59", + "name": "Waypost Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Fennville", + "state_province": "Michigan", + "postal_code": "49408", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6169162362", + "website_url": "http://waypostbeer.com", + "state": "Michigan", + "street": null + }, + { + "id": "95342180-23a0-41fe-8d9c-d6fa6125f358", + "name": "Wayward Brewing Co", + "brewery_type": "micro", + "address_1": "1 Gehrig Lane", + "address_2": null, + "address_3": null, + "city": "Camperdown", + "state_province": "NSW", + "postal_code": "2050", + "country": "Australia", + "longitude": 151.1748604, + "latitude": -33.8857455, + "phone": "+61 2 7903 2445", + "website_url": "http://www.wayward.com.au/", + "state": "NSW", + "street": "1 Gehrig Lane" + }, + { + "id": "542d689d-77a4-41ad-9ab6-1f8e8c906b1e", + "name": "Wayward Owl Brewing Company", + "brewery_type": "micro", + "address_1": "3940 Thalia St", + "address_2": null, + "address_3": null, + "city": "New Orleans", + "state_province": "Louisiana", + "postal_code": "70125-2008", + "country": "United States", + "longitude": -90.09759137, + "latitude": 29.9521547, + "phone": "5048271646", + "website_url": "http://www.waywardowlbrewing.com", + "state": "Louisiana", + "street": "3940 Thalia St" + }, + { + "id": "8c7c9ef9-1232-4e9d-8bf4-ba02e30cbc78", + "name": "Wayzata Brew Works, LLC", + "brewery_type": "micro", + "address_1": "294 Grove Lane E, ste 150", + "address_2": null, + "address_3": null, + "city": "wayzata", + "state_province": "Minnesota", + "postal_code": "55391", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9527371023", + "website_url": "http://www.wayzatabrewworks.com", + "state": "Minnesota", + "street": "294 Grove Lane E, ste 150" + }, + { + "id": "4a48f4f8-fa5f-48d1-9576-b9fff7d87e63", + "name": "Wayzata Brew Works, LLC.", + "brewery_type": "proprietor", + "address_1": "294 Grove Ln E", + "address_2": null, + "address_3": null, + "city": "Wayzata", + "state_province": "Minnesota", + "postal_code": "55391-1680", + "country": "United States", + "longitude": -93.5172166, + "latitude": 44.9696023, + "phone": "9527371023", + "website_url": "http://www.wayzatabrewworks.com/", + "state": "Minnesota", + "street": "294 Grove Ln E" + }, + { + "id": "a828db31-d32a-4fb3-a96b-46ba8c1cb9f8", + "name": "Weasel Boy Brewing Co LLC", + "brewery_type": "brewpub", + "address_1": "126 Muskingum Ave Unit E", + "address_2": null, + "address_3": null, + "city": "Zanesville", + "state_province": "Ohio", + "postal_code": "43701-4921", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7404553767", + "website_url": "http://www.weaselboybrewing.com", + "state": "Ohio", + "street": "126 Muskingum Ave Unit E" + }, + { + "id": "c5b50d77-0a38-43e3-82fc-c240281c0139", + "name": "Weathered Ground Brewery", + "brewery_type": "micro", + "address_1": "2027 Flat Top Rd", + "address_2": null, + "address_3": null, + "city": "Ghent", + "state_province": "West Virginia", + "postal_code": "25843-9303", + "country": "United States", + "longitude": -81.09682583, + "latitude": 37.64833857, + "phone": "3047166230", + "website_url": "http://www.weatheredgroundbrewery.com", + "state": "West Virginia", + "street": "2027 Flat Top Rd" + }, + { + "id": "2e8178de-963e-47fe-bb90-55cd67f2224c", + "name": "Weathered Souls Brewing Co.", + "brewery_type": "brewpub", + "address_1": "606 Embassy Oaks Ste 500", + "address_2": null, + "address_3": null, + "city": "San Antonio", + "state_province": "Texas", + "postal_code": "78216-1501", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7047706605", + "website_url": "http://www.weatheredsouls.beer", + "state": "Texas", + "street": "606 Embassy Oaks Ste 500" + }, + { + "id": "d6b31994-a389-40bc-8b34-f37c71c69030", + "name": "WeBe Brewing Company", + "brewery_type": "micro", + "address_1": "796 Pre-Emption Road", + "address_2": null, + "address_3": null, + "city": "Geneva", + "state_province": "New York", + "postal_code": "14456", + "country": "United States", + "longitude": -77.01110326, + "latitude": 42.86463714, + "phone": "3153254834", + "website_url": "http://www.WeBeBrewing.com", + "state": "New York", + "street": "796 Pre-Emption Road" + }, + { + "id": "cbe89f10-6763-4ed1-90d0-80cabea11a29", + "name": "Wedge Brewing Co", + "brewery_type": "micro", + "address_1": "37 Paynes Way Ste 100", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28801-2626", + "country": "United States", + "longitude": -82.56659201, + "latitude": 35.5865571, + "phone": "8285052792", + "website_url": "http://www.wedgebrewing.com", + "state": "North Carolina", + "street": "37 Paynes Way Ste 100" + }, + { + "id": "8968d98d-b553-4b7d-ae11-1b60a0a323a1", + "name": "Weeping Radish Farm Brewery", + "brewery_type": "micro", + "address_1": "6810 Caratoke Hwy", + "address_2": null, + "address_3": null, + "city": "Grandy", + "state_province": "North Carolina", + "postal_code": "27939-9635", + "country": "United States", + "longitude": -75.891944, + "latitude": 36.253775, + "phone": "2524915205", + "website_url": "http://www.weepingradish.com", + "state": "North Carolina", + "street": "6810 Caratoke Hwy" + }, + { + "id": "9fa40256-171d-4372-ab21-1d87863f677c", + "name": "Weilbacher Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "New Braunfels", + "state_province": "Texas", + "postal_code": "78130-5104", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5126637507", + "website_url": "http://www.weilbacherbeer.com", + "state": "Texas", + "street": null + }, + { + "id": "70f8c3ef-94c7-4e2f-8954-711bdb684bcb", + "name": "WeldWerks Brewing Co.", + "brewery_type": "micro", + "address_1": "508 8th Ave", + "address_2": null, + "address_3": null, + "city": "Greeley", + "state_province": "Colorado", + "postal_code": "80631-3921", + "country": "United States", + "longitude": -104.6911497, + "latitude": 40.3998251, + "phone": "9705185226", + "website_url": "http://www.weldwerksbrewing.com", + "state": "Colorado", + "street": "508 8th Ave" + }, + { + "id": "41170ddd-2eab-483e-9dec-acf1db56e852", + "name": "Well 80 Brewing Company", + "brewery_type": "brewpub", + "address_1": "514 4th Ave E", + "address_2": null, + "address_3": null, + "city": "Olympia", + "state_province": "Washington", + "postal_code": "98501-1111", + "country": "United States", + "longitude": -122.8964287, + "latitude": 47.04534486, + "phone": "3609156653", + "website_url": "http://www.well80.com", + "state": "Washington", + "street": "514 4th Ave E" + }, + { + "id": "e7f0a2c0-dd17-48ff-8d9f-5ab8b6803bb1", + "name": "Wellhead Restaurant/Brewpub", + "brewery_type": "brewpub", + "address_1": "332 W Main St", + "address_2": null, + "address_3": null, + "city": "Artesia", + "state_province": "New Mexico", + "postal_code": "88210-2161", + "country": "United States", + "longitude": -104.399337, + "latitude": 32.842417, + "phone": "5757460640", + "website_url": "http://www.thewellhead.com", + "state": "New Mexico", + "street": "332 W Main St" + }, + { + "id": "6b197016-089f-4fa7-ac77-4d08c03035c2", + "name": "Wellspent Brewing Company", + "brewery_type": "micro", + "address_1": "2917 Olive Street", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63103", + "country": "United States", + "longitude": -90.22073676, + "latitude": 38.6348785, + "phone": "3143280505", + "website_url": "http://www.wellspentbeer.com", + "state": "Missouri", + "street": "2917 Olive Street" + }, + { + "id": "4f92a80e-b6ec-43a8-bdfe-0156c015c343", + "name": "Welltown Brewing", + "brewery_type": "micro", + "address_1": "114 S. Archer Street", + "address_2": null, + "address_3": null, + "city": "Tulsa", + "state_province": "Oklahoma", + "postal_code": "74103-2202", + "country": "United States", + "longitude": -95.9950548, + "latitude": 36.1565497, + "phone": "9182218893", + "website_url": "http://www.welltownbrewing.com", + "state": "Oklahoma", + "street": "114 S. Archer Street" + }, + { + "id": "4f20644c-efbe-4c66-932e-712507f9e99e", + "name": "Welpman Springs Brewing Company, LLC.", + "brewery_type": "closed", + "address_1": "517 Hatchery Rd", + "address_2": null, + "address_3": null, + "city": "Stover", + "state_province": "Missouri", + "postal_code": "65078-1132", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5733772343", + "website_url": "http://www.welpmanspringsbrewing.weebly.com", + "state": "Missouri", + "street": "517 Hatchery Rd" + }, + { + "id": "ee1c61ff-a24e-44db-87ac-a22a0add4559", + "name": "Weltons Brewery", + "brewery_type": "micro", + "address_1": "Foundry Lane", + "address_2": null, + "address_3": null, + "city": "Horsham", + "state_province": "West Sussex", + "postal_code": "RH13 5PX", + "country": "England", + "longitude": -0.315544, + "latitude": 51.070853, + "phone": "1403242901", + "website_url": "https://weltonsbeer.co.uk/", + "state": "West Sussex", + "street": "Foundry Lane" + }, + { + "id": "9049078f-8094-4082-95b7-8a3173469ad2", + "name": "Wenatchee Valley Brewing Co.", + "brewery_type": "micro", + "address_1": "108 Island Vw", + "address_2": null, + "address_3": null, + "city": "Wenatchee", + "state_province": "Washington", + "postal_code": "98801-2039", + "country": "United States", + "longitude": -120.31472591233, + "latitude": 47.43503279883, + "phone": "5098888088", + "website_url": "http://wenatcheevalleybrewing.com/", + "state": "Washington", + "street": "108 Island Vw" + }, + { + "id": "376ea613-f4d4-400e-8bda-93cffe5e7314", + "name": "Werk Force Brewing Co", + "brewery_type": "micro", + "address_1": "14903 S Center St # 107", + "address_2": null, + "address_3": null, + "city": "Plainfield", + "state_province": "Illinois", + "postal_code": "60544-2177", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8155315557", + "website_url": "http://www.werkforcebrewing.com", + "state": "Illinois", + "street": "14903 S Center St # 107" + }, + { + "id": "8a33e210-9d8a-4337-b04c-8cfe15e0c213", + "name": "Werner Brewing Company", + "brewery_type": "micro", + "address_1": "2807 3rd St", + "address_2": null, + "address_3": null, + "city": "Tillamook", + "state_province": "Oregon", + "postal_code": "97141", + "country": "United States", + "longitude": -123.8425805, + "latitude": 45.4563275, + "phone": "5038126040", + "website_url": null, + "state": "Oregon", + "street": "2807 3rd St" + }, + { + "id": "97785f2d-ca0d-41a0-8aeb-fc513eb02a4e", + "name": "West Bend Lithia Beer Co", + "brewery_type": "contract", + "address_1": "825 Schoenhaar Dr", + "address_2": null, + "address_3": null, + "city": "West Bend", + "state_province": "Wisconsin", + "postal_code": "53090-2633", + "country": "United States", + "longitude": -88.15775153, + "latitude": 43.43136188, + "phone": "2623343000", + "website_url": "http://www.lithiabeer.com", + "state": "Wisconsin", + "street": "825 Schoenhaar Dr" + }, + { + "id": "15e01076-cfa6-461e-9117-cbed3ef0759e", + "name": "West City Brewing", + "brewery_type": "micro", + "address_1": "36 Alfred Street", + "address_2": null, + "address_3": null, + "city": "South Melbourne", + "state_province": "VIC", + "postal_code": "3205", + "country": "Australia", + "longitude": 144.949474, + "latitude": -37.83206, + "phone": "+61 3 9694 2124", + "website_url": "http://www.westsidealeworks.com.au/", + "state": "VIC", + "street": "36 Alfred Street" + }, + { + "id": "029d8456-c2b0-4a9e-950c-39046b1d850e", + "name": "West Cork Brewing Co.", + "brewery_type": "brewpub", + "address_1": "C/O Casey's Hotel", + "address_2": "Church Strand", + "address_3": null, + "city": "Baltimore", + "state_province": "Cork", + "postal_code": "P81 YW66", + "country": "Ireland", + "longitude": -9.3708544, + "latitude": 51.4870695, + "phone": "353834156186", + "website_url": "http://www.westcorkbrewingco.ie/", + "state": "Cork", + "street": "C/O Casey's Hotel" + }, + { + "id": "80d05615-2f61-4e0e-8d1e-d3f25d70d960", + "name": "West East Brewing Co", + "brewery_type": "contract", + "address_1": "4125 Lorain Ave", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44113-3718", + "country": "United States", + "longitude": -81.7140045, + "latitude": 41.4799605, + "phone": "2162021386", + "website_url": null, + "state": "Ohio", + "street": "4125 Lorain Ave" + }, + { + "id": "9ffda059-096e-4ae7-805b-49709737f941", + "name": "West Flanders Brewing Co", + "brewery_type": "brewpub", + "address_1": "1125 Pearl St", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80302-5103", + "country": "United States", + "longitude": -105.260866, + "latitude": 40.0217453, + "phone": "3034472739", + "website_url": "http://www.wfbrews.com", + "state": "Colorado", + "street": "1125 Pearl St" + }, + { + "id": "391847c9-a5ad-496f-a74e-586ff829fc0d", + "name": "West Kill Brewing", + "brewery_type": "micro", + "address_1": "2173 Spruceton Rd", + "address_2": null, + "address_3": null, + "city": "West Kill", + "state_province": "New York", + "postal_code": "12492-5823", + "country": "United States", + "longitude": -74.382878, + "latitude": 42.205758, + "phone": "5189896001", + "website_url": "http://www.westkillbrewing.com", + "state": "New York", + "street": "2173 Spruceton Rd" + }, + { + "id": "e0c4bb78-9720-4af7-8188-a5b132646ede", + "name": "West LA Beer Company", + "brewery_type": "closed", + "address_1": "647 West Swanzey Rd", + "address_2": null, + "address_3": null, + "city": "Swanzey", + "state_province": "New Hampshire", + "postal_code": "03446-3310", + "country": "United States", + "longitude": -72.33262282, + "latitude": 42.87499023, + "phone": "6039030724", + "website_url": "http://westlabeercompany.com/", + "state": "New Hampshire", + "street": "647 West Swanzey Rd" + }, + { + "id": "752dfbd2-fa6e-43e8-98fd-602dcff7eb04", + "name": "West O Beer", + "brewery_type": "micro", + "address_1": "503 Terrace Park Blvd", + "address_2": null, + "address_3": null, + "city": "Milford", + "state_province": "Iowa", + "postal_code": "51351-7300", + "country": "United States", + "longitude": -95.14996965, + "latitude": 43.34657697, + "phone": "7123328090", + "website_url": "http://www.westobeer.com", + "state": "Iowa", + "street": "503 Terrace Park Blvd" + }, + { + "id": "493d8254-89e2-407a-986b-5ddb06a572e2", + "name": "West Palm Beach Brewery & Wine Vault", + "brewery_type": "brewpub", + "address_1": "332 Evernia St", + "address_2": null, + "address_3": null, + "city": "West Palm Beach", + "state_province": "Florida", + "postal_code": "33401-5404", + "country": "United States", + "longitude": -80.05314345, + "latitude": 26.7110654, + "phone": "5616198813", + "website_url": "http://www.WestPalmBeer.com", + "state": "Florida", + "street": "332 Evernia St" + }, + { + "id": "3107d918-5bae-4a9f-a834-3592199dffc5", + "name": "West Passage Brewing Co", + "brewery_type": "micro", + "address_1": "7835 Post Rd", + "address_2": null, + "address_3": null, + "city": "North Kingstown", + "state_province": "Rhode Island", + "postal_code": "02852-2911", + "country": "United States", + "longitude": -71.4592129, + "latitude": 41.5849618, + "phone": "4016619662", + "website_url": "http://www.westpassagebrewing.com", + "state": "Rhode Island", + "street": "7835 Post Rd" + }, + { + "id": "7566cfbf-694e-43a6-8c4b-d91754906db8", + "name": "West Seattle Brewing Co", + "brewery_type": "micro", + "address_1": "4415 Fauntleroy Way SW", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98126-2631", + "country": "United States", + "longitude": -122.3776296, + "latitude": 47.5643605, + "phone": "2064050972", + "website_url": "http://www.westseattlebrewing.com", + "state": "Washington", + "street": "4415 Fauntleroy Way SW" + }, + { + "id": "cb9cae9a-a133-48d8-a63e-b82fcf1c4c9e", + "name": "West Seattle Brewing Co (TapShack)", + "brewery_type": "micro", + "address_1": "2536 Alki Ave SW", + "address_2": null, + "address_3": null, + "city": "Seattle", + "state_province": "Washington", + "postal_code": "98116-2262", + "country": "United States", + "longitude": -122.406811, + "latitude": 47.580335, + "phone": "2064204523", + "website_url": "http://www.westseattlebrewing.com", + "state": "Washington", + "street": "2536 Alki Ave SW" + }, + { + "id": "13bcbdcc-50e5-4669-bfad-8001c7b17d90", + "name": "West Shore Brewing Co", + "brewery_type": "micro", + "address_1": "10995 Main St", + "address_2": null, + "address_3": null, + "city": "Clarence", + "state_province": "New York", + "postal_code": "14031-1735", + "country": "United States", + "longitude": -78.57810318, + "latitude": 42.98200648, + "phone": "7169983752", + "website_url": "http://westshorebrewing.com", + "state": "New York", + "street": "10995 Main St" + }, + { + "id": "6d54504b-074c-417a-bb3a-008e26e0b662", + "name": "West Side Brewing", + "brewery_type": "micro", + "address_1": "3044 Harrison Ave", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45211-5752", + "country": "United States", + "longitude": -84.598433, + "latitude": 39.14890246, + "phone": "5136612337", + "website_url": "http://www.westsidebrewing.com", + "state": "Ohio", + "street": "3044 Harrison Ave" + }, + { + "id": "86c32e2f-4135-4421-ad6f-03d71c73347a", + "name": "West Sixth Brewing Co", + "brewery_type": "micro", + "address_1": "501 W Sixth St", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "Kentucky", + "postal_code": "40508-1341", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8597050915", + "website_url": "http://www.westsixth.com", + "state": "Kentucky", + "street": "501 W Sixth St" + }, + { + "id": "11e292b9-777d-4818-b231-1de6c8a4e1cb", + "name": "West Sixth Greenroom", + "brewery_type": "micro", + "address_1": "109 W Main St", + "address_2": null, + "address_3": null, + "city": "Lexington", + "state_province": "Kentucky", + "postal_code": "40507", + "country": "United States", + "longitude": -84.49712824, + "latitude": 38.04658314, + "phone": "8597050915", + "website_url": null, + "state": "Kentucky", + "street": "109 W Main St" + }, + { + "id": "22edeb4c-52ba-463e-a23f-3f27762505eb", + "name": "Westallion Brewing Company", + "brewery_type": "micro", + "address_1": "1825 S 72nd St", + "address_2": null, + "address_3": null, + "city": "West Allis", + "state_province": "Wisconsin", + "postal_code": "53214-4714", + "country": "United States", + "longitude": -88.0027165, + "latitude": 43.01130525, + "phone": "4145787998", + "website_url": "http://www.westallionbrewing.com", + "state": "Wisconsin", + "street": "1825 S 72nd St" + }, + { + "id": "1ab4a268-90ec-4506-944d-545e126fa337", + "name": "Westbend Winery and Brewery", + "brewery_type": "micro", + "address_1": "5394 Williams Rd", + "address_2": null, + "address_3": null, + "city": "Lewisville", + "state_province": "North Carolina", + "postal_code": "27023-8278", + "country": "United States", + "longitude": -80.50459165, + "latitude": 36.08868228, + "phone": "3369459999", + "website_url": "http://www.westbendwineryandbrewery.com", + "state": "North Carolina", + "street": "5394 Williams Rd" + }, + { + "id": "f5ec6774-0b8c-485e-ac5c-fec7ad4332d0", + "name": "Westbound & Down Brewing Company", + "brewery_type": "brewpub", + "address_1": "1617 Miner St", + "address_2": null, + "address_3": null, + "city": "Idaho Springs", + "state_province": "Colorado", + "postal_code": "80452", + "country": "United States", + "longitude": -105.5155002, + "latitude": 39.7419049, + "phone": "7205023121", + "website_url": "http://www.westboundanddown.com", + "state": "Colorado", + "street": "1617 Miner St" + }, + { + "id": "d2c47650-77bb-4a11-bf6d-7be3103014d0", + "name": "Westbound and Down", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80204", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7205023121", + "website_url": null, + "state": "Colorado", + "street": null + }, + { + "id": "c4176795-13f1-4e5c-8da8-275447df6cdf", + "name": "Westbrook Brewing Co", + "brewery_type": "regional", + "address_1": "510 Ridge Rd", + "address_2": null, + "address_3": null, + "city": "Mount Pleasant", + "state_province": "South Carolina", + "postal_code": "29464-7811", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8436549114", + "website_url": "http://www.westbrookbrewing.com", + "state": "South Carolina", + "street": "510 Ridge Rd" + }, + { + "id": "c2bb4039-7e82-4456-99c7-9ce22327d06d", + "name": "Westby Edge Brewing", + "brewery_type": "taproom", + "address_1": "714 W 20th St", + "address_2": null, + "address_3": null, + "city": "Cheyenne", + "state_province": "Wyoming", + "postal_code": "82001-3402", + "country": "United States", + "longitude": -104.81533827185, + "latitude": 41.172439136714, + "phone": "3073691555", + "website_url": "https://www.westbyedge.com", + "state": "Wyoming", + "street": "714 W 20th St" + }, + { + "id": "8bc44d8f-07dd-4118-aecd-0bf08f70c26b", + "name": "Western Pennsylvania Brewing Co", + "brewery_type": "regional", + "address_1": "119 Jefferson St", + "address_2": null, + "address_3": null, + "city": "Latrobe", + "state_province": "Pennsylvania", + "postal_code": "15650", + "country": "United States", + "longitude": -79.38989645, + "latitude": 40.31903018, + "phone": null, + "website_url": "http://www.citybreiwng.com", + "state": "Pennsylvania", + "street": "119 Jefferson St" + }, + { + "id": "8c1f3653-056b-40a4-8421-f9ce8b2979bd", + "name": "Western Red Brewing", + "brewery_type": "brewpub", + "address_1": "19168 Jensen Way NE Ste 100", + "address_2": null, + "address_3": null, + "city": "Poulsbo", + "state_province": "Washington", + "postal_code": "98370", + "country": "United States", + "longitude": -122.64664011727, + "latitude": 47.736859297523, + "phone": "3606261280", + "website_url": "http://westernredbrewing.com", + "state": "Washington", + "street": "19168 Jensen Way NE Ste 100" + }, + { + "id": "c53b2034-e708-46b3-8f21-20d847198b78", + "name": "Western Ridge Brewing", + "brewery_type": "micro", + "address_1": "263 Hampshire Road", + "address_2": null, + "address_3": null, + "city": "Sunshine", + "state_province": "VIC", + "postal_code": "3020", + "country": "Australia", + "longitude": 144.8318105, + "latitude": -37.784077, + "phone": "+61 433 919 886", + "website_url": null, + "state": "VIC", + "street": "263 Hampshire Road" + }, + { + "id": "31c082a9-357c-47d6-b65c-56e28b9423a0", + "name": "WestFax Brewing Co.", + "brewery_type": "micro", + "address_1": "6733 W Colfax Ave", + "address_2": null, + "address_3": null, + "city": "Lakewood", + "state_province": "Colorado", + "postal_code": "80214-1807", + "country": "United States", + "longitude": -105.0710839, + "latitude": 39.7415749, + "phone": "3032333742", + "website_url": "http://www.westfaxbrewingcompany.com", + "state": "Colorado", + "street": "6733 W Colfax Ave" + }, + { + "id": "44c00cc8-f329-452b-9d37-1ba777144535", + "name": "Westfield River Brewing Co", + "brewery_type": "micro", + "address_1": "707 College Hwy", + "address_2": null, + "address_3": null, + "city": "Southwick", + "state_province": "Massachusetts", + "postal_code": "01077-9733", + "country": "United States", + "longitude": -72.765248, + "latitude": 42.062268, + "phone": "4133748425", + "website_url": "http://www.westfieldriverbrewing.com", + "state": "Massachusetts", + "street": "707 College Hwy" + }, + { + "id": "73e1509c-8410-4bf6-a752-9758781aacb7", + "name": "Westlake Brewing & Libation", + "brewery_type": "micro", + "address_1": "31111 Via Colinas # 200", + "address_2": null, + "address_3": null, + "city": "Thousand Oaks", + "state_province": "California", + "postal_code": "91362-3909", + "country": "United States", + "longitude": -118.809516, + "latitude": 34.161542, + "phone": "7472227231", + "website_url": "http://westlakebrewingcompany.com", + "state": "California", + "street": "31111 Via Colinas # 200" + }, + { + "id": "00950932-b737-4232-a18b-84106a891c93", + "name": "Westlake Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75226-1607", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8779942337", + "website_url": "http://www.westlakebeer.com", + "state": "Texas", + "street": null + }, + { + "id": "093897b0-1926-4570-a398-b0aad0f59c63", + "name": "Westminster Brewing Co", + "brewery_type": "micro", + "address_1": "7655 W 108th Ave Ste 600", + "address_2": null, + "address_3": null, + "city": "Westminster", + "state_province": "Colorado", + "postal_code": "80021-2805", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3032841864", + "website_url": "http://westminsterbrewingco.com", + "state": "Colorado", + "street": "7655 W 108th Ave Ste 600" + }, + { + "id": "90b580a3-4c08-4dd4-a69e-4a69fe8499f4", + "name": "Weston Brewing Co / O'Malley's Pub", + "brewery_type": "micro", + "address_1": "500 Welt St", + "address_2": null, + "address_3": null, + "city": "Weston", + "state_province": "Missouri", + "postal_code": "64098-1242", + "country": "United States", + "longitude": -94.899934, + "latitude": 39.411378, + "phone": "8166405235", + "website_url": "http://www.westonirish.com", + "state": "Missouri", + "street": "500 Welt St" + }, + { + "id": "e15a800c-73e4-4e6a-bbf1-c3c76879d27c", + "name": "Westside Ale Works", + "brewery_type": "micro", + "address_1": "36 Alfred Street", + "address_2": null, + "address_3": null, + "city": "South Melbourne", + "state_province": "VIC", + "postal_code": "3205", + "country": "Australia", + "longitude": 144.949474, + "latitude": -37.83206, + "phone": "+61 3 9694 2124", + "website_url": "http://www.westsidealeworks.com.au/", + "state": "VIC", + "street": "36 Alfred Street" + }, + { + "id": "6121940c-efce-406a-aa66-192515c4a63b", + "name": "Westslope Brewing, LLC", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lolo", + "state_province": "Montana", + "postal_code": "59847-9757", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4065316959", + "website_url": "http://www.westslopebrewing.com", + "state": "Montana", + "street": null + }, + { + "id": "54e4ea1c-6210-48c0-a3d1-c7edd491a640", + "name": "Westtown Brew Works", + "brewery_type": "micro", + "address_1": "236 Schefflers Rd", + "address_2": null, + "address_3": null, + "city": "Westtown", + "state_province": "New York", + "postal_code": "10998-", + "country": "United States", + "longitude": -74.53707955, + "latitude": 41.31431295, + "phone": "8453044152", + "website_url": "http://www.westtownbrewworks.com", + "state": "New York", + "street": "236 Schefflers Rd" + }, + { + "id": "c63f9f73-f694-4668-8e90-977ec08e1604", + "name": "Westwind Brewery Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Elkhart", + "state_province": "Indiana", + "postal_code": "46514-2204", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5742745073", + "website_url": "http://www.westwindbrewery.com", + "state": "Indiana", + "street": null + }, + { + "id": "ab04508d-14bc-41cb-bf1d-b09d86838fb3", + "name": "Wet Coast Brewing Co.", + "brewery_type": "micro", + "address_1": "6820 Kimball Dr Ste C", + "address_2": null, + "address_3": null, + "city": "Gig Harbor", + "state_province": "Washington", + "postal_code": "98335-5124", + "country": "United States", + "longitude": -122.58780323438, + "latitude": 47.321692141626, + "phone": "2534324966", + "website_url": "http://www.wetcoastbrewing.com", + "state": "Washington", + "street": "6820 Kimball Dr Ste C" + }, + { + "id": "0ab3dca4-244e-4efd-bf34-92687747499a", + "name": "Wet Dog Cafe & Brewery", + "brewery_type": "brewpub", + "address_1": "990 Astor St", + "address_2": null, + "address_3": null, + "city": "Astoria", + "state_province": "Oregon", + "postal_code": "97103-4201", + "country": "United States", + "longitude": -123.835821, + "latitude": 46.190557, + "phone": "5033256975", + "website_url": "http://www.wetdogcafe.com", + "state": "Oregon", + "street": "990 Astor St" + }, + { + "id": "1d5af7ca-3850-4894-8dbb-0104afcb03ce", + "name": "Wet Ticket Brewing", + "brewery_type": "micro", + "address_1": "1435 Main St", + "address_2": null, + "address_3": null, + "city": "Rahway", + "state_province": "New Jersey", + "postal_code": "07065-", + "country": "United States", + "longitude": -74.27425215, + "latitude": 40.60586312, + "phone": "9086169091", + "website_url": "http://www.wetticketbrewing.com", + "state": "New Jersey", + "street": "1435 Main St" + }, + { + "id": "aa40cdb4-5b17-46fb-94e5-b972f6cc0b86", + "name": "Weyerbacher Brewing Co", + "brewery_type": "regional", + "address_1": "905 Line St Ste G", + "address_2": null, + "address_3": null, + "city": "Easton", + "state_province": "Pennsylvania", + "postal_code": "18042-7379", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6105595561", + "website_url": "http://www.weyerbacher.com", + "state": "Pennsylvania", + "street": "905 Line St Ste G" + }, + { + "id": "8f6a9891-99b2-4f5a-b7bb-23266dbf5760", + "name": "Whalebone Brewing Co.", + "brewery_type": "micro", + "address_1": "27 Patterson Way", + "address_2": null, + "address_3": null, + "city": "Exmouth", + "state_province": "WA", + "postal_code": "6707", + "country": "Australia", + "longitude": 114.1279013, + "latitude": -21.9422159, + "phone": "+61 8 9949 1858", + "website_url": "https://www.whalebonebrewing.com.au/", + "state": "WA", + "street": "27 Patterson Way" + }, + { + "id": "ee09ef76-e626-48ba-8eeb-47b57db63388", + "name": "Whalers Brewing Company", + "brewery_type": "micro", + "address_1": "1174 Kingstown Rd", + "address_2": null, + "address_3": null, + "city": "South Kingstown", + "state_province": "Rhode Island", + "postal_code": "02879-8316", + "country": "United States", + "longitude": -71.49706731, + "latitude": 41.4506997, + "phone": "4015520002", + "website_url": "https://whalers.com", + "state": "Rhode Island", + "street": "1174 Kingstown Rd" + }, + { + "id": "3b85a707-ff0a-483a-a5da-d2ab53aa66ce", + "name": "Wharf Hill Brewing", + "brewery_type": "brewpub", + "address_1": "25 Main St", + "address_2": null, + "address_3": null, + "city": "Smithfield", + "state_province": "Virginia", + "postal_code": "23430-1320", + "country": "United States", + "longitude": -76.63061077, + "latitude": 36.98242438, + "phone": "7573577100", + "website_url": "http://www.wharfhillbrewing.com", + "state": "Virginia", + "street": "25 Main St" + }, + { + "id": "8dfd9c89-ac49-475c-8caa-b210120a8229", + "name": "Wheatland Spring Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Alexandria", + "state_province": "Virginia", + "postal_code": "22314-4308", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Virginia", + "street": null + }, + { + "id": "809ba3fb-feae-426e-9fca-b0fe3020cfd6", + "name": "Wheaty Brewing Corps", + "brewery_type": "micro", + "address_1": "39 George Street", + "address_2": null, + "address_3": null, + "city": "Thebarton", + "state_province": "SA", + "postal_code": "5031", + "country": "Australia", + "longitude": 138.575292, + "latitude": -34.9189155, + "phone": "+61 8 8443 4546", + "website_url": "http://wheatsheafhotel.com.au/", + "state": "SA", + "street": "39 George Street" + }, + { + "id": "ca4dec0f-a148-492a-80c5-b78aa252b288", + "name": "Wheeling Brewing Co", + "brewery_type": "closed", + "address_1": "2247 Market St", + "address_2": null, + "address_3": null, + "city": "Wheeling", + "state_province": "West Virginia", + "postal_code": "26003-3839", + "country": "United States", + "longitude": -80.72429082, + "latitude": 40.05925145, + "phone": "3049058757", + "website_url": "http://www.wheelingbrewing.com", + "state": "West Virginia", + "street": "2247 Market St" + }, + { + "id": "0609948f-d8d4-4d29-899a-9983abe982fa", + "name": "Whetstone Craft Beers @ Whetstone Station", + "brewery_type": "brewpub", + "address_1": "36 Bridge St", + "address_2": null, + "address_3": null, + "city": "Brattleboro", + "state_province": "Vermont", + "postal_code": "05301-3301", + "country": "United States", + "longitude": -72.55627012, + "latitude": 42.85164595, + "phone": "8024902354", + "website_url": "http://www.whetstonestation.com", + "state": "Vermont", + "street": "36 Bridge St" + }, + { + "id": "57d2e357-67f2-4d21-8116-ca0403eb50ce", + "name": "WhichCraft Brews", + "brewery_type": "brewpub", + "address_1": "1900 Empire Blvd", + "address_2": null, + "address_3": null, + "city": "Webster", + "state_province": "New York", + "postal_code": "14580-1934", + "country": "United States", + "longitude": -77.501948, + "latitude": 43.193429, + "phone": "5852222739", + "website_url": "http://www.whichcraftbrews.com", + "state": "New York", + "street": "1900 Empire Blvd" + }, + { + "id": "7e464f88-ef88-4890-be4b-e7694f31b640", + "name": "Whiner Beer Company", + "brewery_type": "micro", + "address_1": "1400 W 46th St", + "address_2": null, + "address_3": null, + "city": "Chicago", + "state_province": "Illinois", + "postal_code": "60609-3225", + "country": "United States", + "longitude": -87.6606688, + "latitude": 41.810614, + "phone": "3128102271", + "website_url": "http://whinerbeer.com", + "state": "Illinois", + "street": "1400 W 46th St" + }, + { + "id": "04fda7ff-4bf9-4a3e-b65a-1136ed3ebc87", + "name": "Whiplash Brewing", + "brewery_type": "micro", + "address_1": "Cherry Orchard Industrial Estate", + "address_2": "Unit 67B", + "address_3": "Dublin 10", + "city": "Ballyfermot", + "state_province": "Dublin", + "postal_code": "D10 F627", + "country": "Ireland", + "longitude": -6.3773273, + "latitude": 53.3468597, + "phone": null, + "website_url": "http://www.whiplashbeer.com/", + "state": "Dublin", + "street": "Cherry Orchard Industrial Estate" + }, + { + "id": "85c77773-c9af-4863-9f74-43d1e690346a", + "name": "Whipsaw Brewing LLC", + "brewery_type": "micro", + "address_1": "704 N Wenas St", + "address_2": null, + "address_3": null, + "city": "Ellensburg", + "state_province": "Washington", + "postal_code": "98926-2862", + "country": "United States", + "longitude": -120.5552612, + "latitude": 46.9989453, + "phone": "5099685111", + "website_url": "http://www.whipsawbrewing.com", + "state": "Washington", + "street": "704 N Wenas St" + }, + { + "id": "35279122-92ea-403b-a946-dbc578ce4bcd", + "name": "Whirling Skirmish Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Scottsdale", + "state_province": "Arizona", + "postal_code": "85254-2513", + "country": "United States", + "longitude": -111.8992365, + "latitude": 33.5091215, + "phone": "6023592489", + "website_url": null, + "state": "Arizona", + "street": null + }, + { + "id": "debc3cf5-e1c4-4de1-adb0-d6bd5f001ec3", + "name": "Whiskey Point Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Beaver Island", + "state_province": "Michigan", + "postal_code": "49782-5105", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2313737842", + "website_url": "http://www.whiskeypointbrewing.com", + "state": "Michigan", + "street": null + }, + { + "id": "f08836a0-a759-48a1-b8ae-22bfae945d22", + "name": "Whisper Creek Farm: Kitchen and Brewery", + "brewery_type": "brewpub", + "address_1": "4040 Central Florida Pkwy", + "address_2": null, + "address_3": null, + "city": "Orlando", + "state_province": "Florida", + "postal_code": "32837-7662", + "country": "United States", + "longitude": -81.42861801, + "latitude": 28.40168865, + "phone": "4073934755", + "website_url": "http://www.grandelakes.com", + "state": "Florida", + "street": "4040 Central Florida Pkwy" + }, + { + "id": "cd74c02e-30a1-4e9e-9774-aa8d39788ae3", + "name": "Whistle Hop Brewing Company", + "brewery_type": "micro", + "address_1": "1288 Charlotte Hwy", + "address_2": null, + "address_3": null, + "city": "Fairview", + "state_province": "North Carolina", + "postal_code": "28730-8797", + "country": "United States", + "longitude": -82.41693073, + "latitude": 35.52314413, + "phone": "8283389447", + "website_url": "http://www.whistlehop.com", + "state": "North Carolina", + "street": "1288 Charlotte Hwy" + }, + { + "id": "fc51057f-e541-4931-92eb-e79d1bc93f46", + "name": "Whistle Pig Brewing Company", + "brewery_type": "micro", + "address_1": "1840 Dominion Way", + "address_2": null, + "address_3": null, + "city": "Colorado Springs", + "state_province": "Colorado", + "postal_code": "80918-1467", + "country": "United States", + "longitude": -104.7931723, + "latitude": 38.92372675, + "phone": "7195981339", + "website_url": "http://www.whistlepigbrewing.com", + "state": "Colorado", + "street": "1840 Dominion Way" + }, + { + "id": "55c3e8b0-3895-458b-a274-0be8a069da25", + "name": "Whistle Punk Brewing Company", + "brewery_type": "micro", + "address_1": "122 S Monroe St", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99201-4007", + "country": "United States", + "longitude": -117.4267386, + "latitude": 47.6564232, + "phone": "5093154465", + "website_url": "http://www.whistlepunkbrewing.com", + "state": "Washington", + "street": "122 S Monroe St" + }, + { + "id": "6d1e42ff-6f59-4a31-afa2-e9fbdbb5661f", + "name": "Whistleing Springs Brewing Company / Dark Hills Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Lowell", + "state_province": "Arkansas", + "postal_code": "72745-9294", + "country": "United States", + "longitude": -94.1307587, + "latitude": 36.2553543, + "phone": "4792836365", + "website_url": "http://www.darkhillsbrew.com", + "state": "Arkansas", + "street": null + }, + { + "id": "1f51097a-5604-45ea-a694-76f816f3e248", + "name": "White Bay Beer Co", + "brewery_type": "micro", + "address_1": "26C Mansfield Street", + "address_2": null, + "address_3": null, + "city": "Rozelle", + "state_province": "NSW", + "postal_code": "2039", + "country": "Australia", + "longitude": 151.1771774, + "latitude": -33.8648647, + "phone": null, + "website_url": "http://whitebay.beer/", + "state": "NSW", + "street": "26C Mansfield Street" + }, + { + "id": "413fa8e3-9b86-4e23-a378-b69eceeb2ce3", + "name": "White Bay Beer Co.", + "brewery_type": "micro", + "address_1": "26C Mansfield Street", + "address_2": null, + "address_3": null, + "city": "Rozelle", + "state_province": "NSW", + "postal_code": "2039", + "country": "Australia", + "longitude": 151.1771774, + "latitude": -33.8648647, + "phone": null, + "website_url": "http://whitebay.beer/", + "state": "NSW", + "street": "26C Mansfield Street" + }, + { + "id": "e3addd66-8750-4844-82de-88710adf9b49", + "name": "White Birch Brewing", + "brewery_type": "closed", + "address_1": "1339 Hooksett Rd", + "address_2": null, + "address_3": null, + "city": "Hooksett", + "state_province": "New Hampshire", + "postal_code": "03106-1847", + "country": "United States", + "longitude": -71.44114457, + "latitude": 43.05712534, + "phone": "6032448593", + "website_url": "http://www.whitebirchbrewing.com", + "state": "New Hampshire", + "street": "1339 Hooksett Rd" + }, + { + "id": "9516ace5-cc78-4f2a-82d6-a7a6311b5a10", + "name": "White Bluffs Brewing", + "brewery_type": "micro", + "address_1": "2034 Logston Blvd", + "address_2": null, + "address_3": null, + "city": "Richland", + "state_province": "Washington", + "postal_code": "99354-5300", + "country": "United States", + "longitude": -119.2999357, + "latitude": 46.3204119, + "phone": "5095547059", + "website_url": "http://www.whitebluffsbrewing.com", + "state": "Washington", + "street": "2034 Logston Blvd" + }, + { + "id": "d1cb2052-1155-4415-bb79-0d293a714de3", + "name": "White Clay Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Landenberg", + "state_province": "Pennsylvania", + "postal_code": "19350-1540", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "b4835825-07a9-4210-b648-e796a460a11d", + "name": "White Dog Brewing Boise", + "brewery_type": "micro", + "address_1": "705 W Fulton St", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83702", + "country": "United States", + "longitude": -116.2062186, + "latitude": 43.61122761, + "phone": "2089060609", + "website_url": "http://www.whitedogbrewing.com", + "state": "Idaho", + "street": "705 W Fulton St" + }, + { + "id": "bf11197a-a50f-4bb6-af48-0719c009eed6", + "name": "White Dog Brewing Company", + "brewery_type": "micro", + "address_1": "121 W Main St", + "address_2": null, + "address_3": null, + "city": "Bozeman", + "state_province": "Montana", + "postal_code": "59715-4644", + "country": "United States", + "longitude": -111.0393894, + "latitude": 45.67961135, + "phone": "4065955574", + "website_url": "http://www.whitedogbrewing.com", + "state": "Montana", + "street": "121 W Main St" + }, + { + "id": "6001a312-5d2b-456a-a0e1-ed2c3233cacf", + "name": "White Elephant Beer Company", + "brewery_type": "micro", + "address_1": "225 Market St", + "address_2": null, + "address_3": null, + "city": "Mount Airy", + "state_province": "North Carolina", + "postal_code": "27030-3513", + "country": "United States", + "longitude": -80.6090865, + "latitude": 36.5006581, + "phone": "3366488277", + "website_url": "http://www.whiteelephantbeer.com", + "state": "North Carolina", + "street": "225 Market St" + }, + { + "id": "5de62477-b829-4c11-8120-471c19fd52e6", + "name": "White Elm Brewing Co", + "brewery_type": "micro", + "address_1": "720 Van Dorn St", + "address_2": null, + "address_3": null, + "city": "Lincoln", + "state_province": "Nebraska", + "postal_code": "68502-3353", + "country": "United States", + "longitude": -96.7167126, + "latitude": 40.7856925, + "phone": "4022616078", + "website_url": "http://www.whiteelmbrewing.com", + "state": "Nebraska", + "street": "720 Van Dorn St" + }, + { + "id": "dd296d03-e327-41d5-8fcb-7cf99a3682ce", + "name": "White Flame Brewing Co", + "brewery_type": "brewpub", + "address_1": "5234 36th Ave", + "address_2": null, + "address_3": null, + "city": "Hudsonville", + "state_province": "Michigan", + "postal_code": "49426-1636", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6162095098", + "website_url": "http://www.whiteflamebrewing.com", + "state": "Michigan", + "street": "5234 36th Ave" + }, + { + "id": "aed12916-1c2f-48e0-8ae9-7a28f067f515", + "name": "White Gypsy Brewery", + "brewery_type": "micro", + "address_1": "Templemore Enterprise Centre", + "address_2": "Railway Rd", + "address_3": "Kiltillane", + "city": "Templemore", + "state_province": "Tipperary", + "postal_code": "E41 W110", + "country": "Ireland", + "longitude": -7.8294975, + "latitude": 52.7929206, + "phone": "35350456572", + "website_url": "http://www.whitegypsy.ie/", + "state": "Tipperary", + "street": "Templemore Enterprise Centre" + }, + { + "id": "8517ebf6-2df8-488e-8fd6-87a94fe3bf1d", + "name": "White Labs Kitchen and Tap", + "brewery_type": "brewpub", + "address_1": "172 S Charlotte St", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28801", + "country": "United States", + "longitude": -82.5490695, + "latitude": 35.5911334, + "phone": "8289743868", + "website_url": null, + "state": "North Carolina", + "street": "172 S Charlotte St" + }, + { + "id": "b2795e99-d7db-4d9d-909a-4a72f1d8bf74", + "name": "White Labs Tasting Room", + "brewery_type": "micro", + "address_1": "9495 Candida St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92126-4541", + "country": "United States", + "longitude": -117.121435, + "latitude": 32.895843, + "phone": "8586933441", + "website_url": "http://www.whitelabs.com", + "state": "California", + "street": "9495 Candida St" + }, + { + "id": "f7fed178-dc61-473d-a847-efc5fd887105", + "name": "White Lion Brewing Company", + "brewery_type": "contract", + "address_1": "36 Garland St", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Massachusetts", + "postal_code": "01118-2128", + "country": "United States", + "longitude": -72.53380924, + "latitude": 42.08981856, + "phone": "4133261829", + "website_url": "http://www.whitelionbrewing.com", + "state": "Massachusetts", + "street": "36 Garland St" + }, + { + "id": "a65c58fa-7082-4317-bbc3-a723049bb2a5", + "name": "White Marsh Brewing Co/Red Brick Station", + "brewery_type": "brewpub", + "address_1": "8149 Honeygo Blvd Ste A", + "address_2": null, + "address_3": null, + "city": "Baltimore", + "state_province": "Maryland", + "postal_code": "21236-8209", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4109317827", + "website_url": "http://www.redbrickstation.com", + "state": "Maryland", + "street": "8149 Honeygo Blvd Ste A" + }, + { + "id": "678e823f-8f29-4ce4-9c28-21b544979d7c", + "name": "White Mountain Brewing", + "brewery_type": "brewpub", + "address_1": "50 Winter St", + "address_2": null, + "address_3": null, + "city": "Ashland", + "state_province": "New Hampshire", + "postal_code": "03217", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6039374061", + "website_url": "https://www.whitemountainbrew.com/", + "state": "New Hampshire", + "street": "50 Winter St" + }, + { + "id": "b7d35211-94cc-47f5-ae7e-840824764519", + "name": "White Oak Brewing", + "brewery_type": "micro", + "address_1": "1801 Industrial Park Dr", + "address_2": null, + "address_3": null, + "city": "Normal", + "state_province": "Illinois", + "postal_code": "61761-4378", + "country": "United States", + "longitude": -89.023233, + "latitude": 40.4987, + "phone": "3098284077", + "website_url": "http://www.WhiteOak.beer", + "state": "Illinois", + "street": "1801 Industrial Park Dr" + }, + { + "id": "2e5584ae-1741-4210-bb11-575341a5c35f", + "name": "White Rabbit Brewery", + "brewery_type": "large", + "address_1": "221 Swanston Street", + "address_2": null, + "address_3": null, + "city": "Geelong", + "state_province": "VIC", + "postal_code": "3220", + "country": "Australia", + "longitude": 144.3619537, + "latitude": -38.1652412, + "phone": "+61 3 5202 4009", + "website_url": "https://whiterabbitbeer.com.au/barrel-hall/", + "state": "VIC", + "street": "221 Swanston Street" + }, + { + "id": "0b7dfe2c-2617-4aa6-9578-9aa1bc63e71f", + "name": "White Raven Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Warsaw", + "state_province": "Indiana", + "postal_code": "46582-8089", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5747030643", + "website_url": "http://www.whiteravenbrewing.com", + "state": "Indiana", + "street": null + }, + { + "id": "7ebf9a9b-da69-4a31-af9f-ec7320d82f66", + "name": "White River Brewing Co", + "brewery_type": "micro", + "address_1": "505 W Commercial St", + "address_2": null, + "address_3": null, + "city": "Springfield", + "state_province": "Missouri", + "postal_code": "65803-2631", + "country": "United States", + "longitude": -93.29542085, + "latitude": 37.2296298, + "phone": "4178691366", + "website_url": "http://www.whiteriverbrewingco.com", + "state": "Missouri", + "street": "505 W Commercial St" + }, + { + "id": "ee5bf449-cae4-4ae4-a626-faa1d2ea35b5", + "name": "White Rock Alehouse & Brewery", + "brewery_type": "brewpub", + "address_1": "7331 Gaston Ave, Suite 100", + "address_2": null, + "address_3": null, + "city": "Dallas", + "state_province": "Texas", + "postal_code": "75214", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2149897570", + "website_url": "http://www.whiterockalehouse.com", + "state": "Texas", + "street": "7331 Gaston Ave, Suite 100" + }, + { + "id": "5c7a79ba-8fe4-4bc2-8d86-d6c5a9743c91", + "name": "White Rock Vineyards & Winery", + "brewery_type": "micro", + "address_1": "2117 Bruno Dr", + "address_2": null, + "address_3": null, + "city": "Goodview", + "state_province": "Virginia", + "postal_code": "24095-2974", + "country": "United States", + "longitude": -79.70797231, + "latitude": 37.23145289, + "phone": "5408903359", + "website_url": "http://www.whiterockwines.com", + "state": "Virginia", + "street": "2117 Bruno Dr" + }, + { + "id": "4c4f077d-6ffa-44bb-aa9d-8cf3116db0a4", + "name": "White Shutter Winery and Brewery", + "brewery_type": "micro", + "address_1": "3794 County Hwy 56", + "address_2": null, + "address_3": null, + "city": "Nevada", + "state_province": "Ohio", + "postal_code": "44849", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4198352900", + "website_url": "http://www.whiteshutterwinery.com", + "state": "Ohio", + "street": "3794 County Hwy 56" + }, + { + "id": "76a8347d-13dc-4c90-8bc0-7063f027312b", + "name": "White Squirrel Brewery", + "brewery_type": "brewpub", + "address_1": "871 Broadway Ave", + "address_2": null, + "address_3": null, + "city": "Bowling Green", + "state_province": "Kentucky", + "postal_code": "42101-2571", + "country": "United States", + "longitude": -86.4407388, + "latitude": 36.9844713, + "phone": "2709041573", + "website_url": "http://www.whitesquirrelbrewery.com", + "state": "Kentucky", + "street": "871 Broadway Ave" + }, + { + "id": "c9a7083e-1d8a-416c-a0d5-489b04f0e1bc", + "name": "White Street Brewing Company", + "brewery_type": "micro", + "address_1": "218 S White St", + "address_2": null, + "address_3": null, + "city": "Wake Forest", + "state_province": "North Carolina", + "postal_code": "27587-2742", + "country": "United States", + "longitude": -78.5100617, + "latitude": 35.9774896, + "phone": "9196479439", + "website_url": "http://www.whitestreetbrewing.com", + "state": "North Carolina", + "street": "218 S White St" + }, + { + "id": "2c2f893e-57b6-42ef-8f74-931edf8b2dc9", + "name": "White Street Brewing Company - Production Facility", + "brewery_type": "micro", + "address_1": "400 Park Ave", + "address_2": null, + "address_3": null, + "city": "Youngsville", + "state_province": "North Carolina", + "postal_code": "27596-8688", + "country": "United States", + "longitude": -78.48610616, + "latitude": 36.03960848, + "phone": "9196479439", + "website_url": null, + "state": "North Carolina", + "street": "400 Park Ave" + }, + { + "id": "a627508a-fbc7-4fa4-a0e2-d8b3c6404564", + "name": "Whitehorse Brewing LLC", + "brewery_type": "micro", + "address_1": "824 Diamond St", + "address_2": null, + "address_3": null, + "city": "Berlin", + "state_province": "Pennsylvania", + "postal_code": "15530-1539", + "country": "United States", + "longitude": -78.95695707, + "latitude": 39.92530586, + "phone": "8144442436", + "website_url": null, + "state": "Pennsylvania", + "street": "824 Diamond St" + }, + { + "id": "ff1c0781-35f7-4018-92cd-49ce65148a84", + "name": "Whitestone Brewery", + "brewery_type": "micro", + "address_1": "601 E Whitestone Blvd Ste 500", + "address_2": null, + "address_3": null, + "city": "Cedar Park", + "state_province": "Texas", + "postal_code": "78613-9046", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5127654828", + "website_url": "http://www.whitestonebrewery.com", + "state": "Texas", + "street": "601 E Whitestone Blvd Ste 500" + }, + { + "id": "5442db20-6933-4c01-9457-32e46c304712", + "name": "Whitewall Brewing Company", + "brewery_type": "micro", + "address_1": "14524 Smokey Point Blvd Ste 1", + "address_2": null, + "address_3": null, + "city": "Marysville", + "state_province": "Washington", + "postal_code": "98271-8921", + "country": "United States", + "longitude": -122.18410445265, + "latitude": 48.128403280772, + "phone": "3604540464", + "website_url": "http://www.whitewallbrewing.com", + "state": "Washington", + "street": "14524 Smokey Point Blvd Ste 1" + }, + { + "id": "24c206be-c51b-4469-b0e3-6361cc80907f", + "name": "Whitfords Brewing Co (by Beerland)", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Hillarys", + "state_province": "WA", + "postal_code": "6025", + "country": "Australia", + "longitude": 115.7479877, + "latitude": -31.7962336, + "phone": "+61 8 9308 2133", + "website_url": "http://whitfordsbrewingco.com.au/", + "state": "WA", + "street": null + }, + { + "id": "bb868abb-212b-4862-a8b2-0077272c9dfc", + "name": "Whitis AleWorks", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77069-3424", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "a299a563-434d-45ea-babc-0e0b3b0434ec", + "name": "Whitman Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Saratoga Springs", + "state_province": "New York", + "postal_code": "12866", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6317868701", + "website_url": "http://www.whitmanbrewing.com", + "state": "New York", + "street": null + }, + { + "id": "b024ba44-162a-4194-b8b8-84c0085a58f6", + "name": "Whole Foods Market Brewing Company", + "brewery_type": "micro", + "address_1": "1700 Post Oak Blvd Ste 1G101", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77056-3963", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7133460537", + "website_url": "https://www.wholefoodsmarket.com/", + "state": "Texas", + "street": "1700 Post Oak Blvd Ste 1G101" + }, + { + "id": "6f0483b4-6dfe-4a12-aa04-a7e7f1f66ab4", + "name": "Whole Foods Market Brewing Company- Floodcraft Brewing", + "brewery_type": "brewpub", + "address_1": "777 The Alameda", + "address_2": null, + "address_3": null, + "city": "San Jose", + "state_province": "California", + "postal_code": "95126-3155", + "country": "United States", + "longitude": -121.9087451, + "latitude": 37.3315931, + "phone": "4082071126", + "website_url": "http://floodcraftbrewing.com/", + "state": "California", + "street": "777 The Alameda" + }, + { + "id": "0b4b6ac7-952f-4002-959d-6e7b4fff4110", + "name": "WHYM Craft Pub & Brewery", + "brewery_type": "brewpub", + "address_1": "853 Lafayette Rd", + "address_2": null, + "address_3": null, + "city": "Hampton", + "state_province": "New Hampshire", + "postal_code": "03842", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6036012801", + "website_url": "https://whym.beer/", + "state": "New Hampshire", + "street": "853 Lafayette Rd" + }, + { + "id": "d070be83-d4ec-4799-b935-53d28ad8b1ca", + "name": "Wibby Brewing", + "brewery_type": "micro", + "address_1": "209 Emery St", + "address_2": null, + "address_3": null, + "city": "Longmont", + "state_province": "Colorado", + "postal_code": "80501-5910", + "country": "United States", + "longitude": -105.1002098, + "latitude": 40.1623965, + "phone": null, + "website_url": "http://www.wibbybrewing.com", + "state": "Colorado", + "street": "209 Emery St" + }, + { + "id": "f89d304a-d3ac-41d9-92b8-0ea150b231f0", + "name": "Wichita Brewing Co & Pizzeria", + "brewery_type": "brewpub", + "address_1": "8815 W 13th St N Ste 100", + "address_2": null, + "address_3": null, + "city": "Wichita", + "state_province": "Kansas", + "postal_code": "67212-4072", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3162101641", + "website_url": "http://www.wichitabrew.com", + "state": "Kansas", + "street": "8815 W 13th St N Ste 100" + }, + { + "id": "bf687e4e-81f9-45ff-bb1f-34aff10e95e9", + "name": "Wichita Brewing Co & Pizzeria", + "brewery_type": "brewpub", + "address_1": "535 N Woodlawn St", + "address_2": null, + "address_3": null, + "city": "Wichita", + "state_province": "Kansas", + "postal_code": "67208-3668", + "country": "United States", + "longitude": -97.262463, + "latitude": 37.74682, + "phone": "3164404885", + "website_url": "http://www.wichitabrew.com", + "state": "Kansas", + "street": "535 N Woodlawn St" + }, + { + "id": "b6eb55a9-aea4-433e-bcf7-c5a99cf248af", + "name": "Wichita Brewing Co Production, LLC", + "brewery_type": "micro", + "address_1": "727 E Osie St", + "address_2": null, + "address_3": null, + "city": "Wichita", + "state_province": "Kansas", + "postal_code": "67211-4327", + "country": "United States", + "longitude": -97.32983941, + "latitude": 37.66244565, + "phone": null, + "website_url": null, + "state": "Kansas", + "street": "727 E Osie St" + }, + { + "id": "529115d6-8c65-4eca-832a-72a3029ca483", + "name": "Wichita Falls Brewing Co.", + "brewery_type": "micro", + "address_1": "701 Indiana Ave", + "address_2": null, + "address_3": null, + "city": "Wichita Falls", + "state_province": "Texas", + "postal_code": "76301", + "country": "United States", + "longitude": -98.491525, + "latitude": 33.913486, + "phone": "9402644677", + "website_url": "http://www.wichitafallsbrewing.com", + "state": "Texas", + "street": "701 Indiana Ave" + }, + { + "id": "69aacfb0-223a-452c-a71a-db3487dd4186", + "name": "Wicked Barley Brewing Co.", + "brewery_type": "brewpub", + "address_1": "4100 Baymeadows Rd", + "address_2": null, + "address_3": null, + "city": "Jacksonville", + "state_province": "Florida", + "postal_code": "32217-4602", + "country": "United States", + "longitude": -81.5779846, + "latitude": 30.2208765, + "phone": "9043797077", + "website_url": "http://www.wickedbarley.com", + "state": "Florida", + "street": "4100 Baymeadows Rd" + }, + { + "id": "47595081-be0f-41ac-a459-888cef7be9d2", + "name": "Wicked Boxer Brewing", + "brewery_type": "brewpub", + "address_1": "16326 Mueschke Rd # E10", + "address_2": null, + "address_3": null, + "city": "Cypress", + "state_province": "Texas", + "postal_code": "77433-4953", + "country": "United States", + "longitude": -95.7172092, + "latitude": 29.9809872, + "phone": "2819781866", + "website_url": "http://www.wickedboxer.com", + "state": "Texas", + "street": "16326 Mueschke Rd # E10" + }, + { + "id": "86217917-be17-4445-8056-4f8b734200af", + "name": "Wicked Monkey Brewing Co", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Marana", + "state_province": "Arizona", + "postal_code": "85653-8154", + "country": "United States", + "longitude": -111.2157091, + "latitude": 32.4446988, + "phone": null, + "website_url": null, + "state": "Arizona", + "street": null + }, + { + "id": "c31d47e7-b4a4-4158-a32f-db658ea2d391", + "name": "Wicked Teuton Brewing", + "brewery_type": "micro", + "address_1": "1341 SW Barlow St", + "address_2": null, + "address_3": null, + "city": "Oak Harbor", + "state_province": "Washington", + "postal_code": "98277-3159", + "country": "United States", + "longitude": -122.6599158, + "latitude": 48.28728035, + "phone": "3608625011", + "website_url": "http://wickedteutonbrewing.com", + "state": "Washington", + "street": "1341 SW Barlow St" + }, + { + "id": "2849f939-f34f-498f-beba-c243b678765b", + "name": "Wicked Weed Brewing", + "brewery_type": "large", + "address_1": "91 Biltmore Ave", + "address_2": null, + "address_3": null, + "city": "Asheville", + "state_province": "North Carolina", + "postal_code": "28801-3626", + "country": "United States", + "longitude": -82.55106832, + "latitude": 35.5916712, + "phone": "8285759599", + "website_url": "http://www.wickedweedbrewing.com", + "state": "North Carolina", + "street": "91 Biltmore Ave" + }, + { + "id": "99c72386-748e-40dc-8e1b-db36bc5919d5", + "name": "Wicked Weed Brewing", + "brewery_type": "large", + "address_1": "145 Jacob Holme Way", + "address_2": null, + "address_3": null, + "city": "Candler", + "state_province": "North Carolina", + "postal_code": "28715-0209", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4846789424", + "website_url": "http://www.wickedweedbrewing.com", + "state": "North Carolina", + "street": "145 Jacob Holme Way" + }, + { + "id": "995b3da6-99ed-4cf4-9562-05286f4430f8", + "name": "Wicked Weed Funk House", + "brewery_type": "large", + "address_1": "95 Old Shoals Rd", + "address_2": null, + "address_3": null, + "city": "Arden", + "state_province": "North Carolina", + "postal_code": "28704-9401", + "country": "United States", + "longitude": -82.52495553, + "latitude": 35.4674064, + "phone": null, + "website_url": "http://www.wickedweedbrewing.com", + "state": "North Carolina", + "street": "95 Old Shoals Rd" + }, + { + "id": "5937f6df-a6e0-48cf-9234-bfd66b3c4c8e", + "name": "Wicked Weed Funkatorium", + "brewery_type": "large", + "address_1": "95 Old Shoals Rd", + "address_2": null, + "address_3": null, + "city": "Arden", + "state_province": "North Carolina", + "postal_code": "28704-9401", + "country": "United States", + "longitude": -82.52495553, + "latitude": 35.4674064, + "phone": "8285759599", + "website_url": "http://www.wickedweedbrewing.com", + "state": "North Carolina", + "street": "95 Old Shoals Rd" + }, + { + "id": "a269a5ba-6871-4460-8daa-0eaf617c8230", + "name": "Wicked Wort Brewing Company", + "brewery_type": "brewpub", + "address_1": "4165 W Broadway Ave", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55422-1823", + "country": "United States", + "longitude": -93.3025381, + "latitude": 44.9996613, + "phone": "7633029849", + "website_url": "http://www.wickedwortbrewingco.com", + "state": "Minnesota", + "street": "4165 W Broadway Ave" + }, + { + "id": "401d45ca-4c04-4bf6-af19-55b45748ef91", + "name": "Wicklow Wolf Brewing Company", + "brewery_type": "regional", + "address_1": "Wicklow Wolf", + "address_2": "Moneycarroll", + "address_3": "Newtown Mount Kennedy", + "city": "Bray", + "state_province": "Wicklow", + "postal_code": "A63 A243", + "country": "Ireland", + "longitude": -6.1109949, + "latitude": 53.0842111, + "phone": "35315676993", + "website_url": "http://www.wicklowwolf.com/", + "state": "Wicklow", + "street": "Wicklow Wolf" + }, + { + "id": "8012f3e0-11da-4da0-8563-c26d52e0d262", + "name": "Wicks Brewing Company LLC", + "brewery_type": "brewpub", + "address_1": "11620 Sterling Ave Ste C", + "address_2": null, + "address_3": null, + "city": "Riverside", + "state_province": "California", + "postal_code": "92503-4904", + "country": "United States", + "longitude": -117.484431, + "latitude": 33.89574075, + "phone": "9516892739", + "website_url": "http://wicksbrewing.com", + "state": "California", + "street": "11620 Sterling Ave Ste C" + }, + { + "id": "84ad716f-72a0-4b6d-8048-311baef17a25", + "name": "Wide Awake Brewing Company", + "brewery_type": "micro", + "address_1": "101 Button Hall Ave", + "address_2": null, + "address_3": null, + "city": "Goose Creek", + "state_province": "South Carolina", + "postal_code": "29445", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8434592938", + "website_url": "http://www.wideawakebrewing.com", + "state": "South Carolina", + "street": "101 Button Hall Ave" + }, + { + "id": "d1258a62-3169-4548-95d9-3c4e539bce4d", + "name": "Widmer Brothers Brewing", + "brewery_type": "regional", + "address_1": "929 N Russell St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97227-1733", + "country": "United States", + "longitude": -122.6762983, + "latitude": 45.54109529, + "phone": "5032812437", + "website_url": null, + "state": "Oregon", + "street": "929 N Russell St" + }, + { + "id": "ec93ee84-6dde-43c1-a4fc-c1b37b2fae61", + "name": "Widowmaker Brewing", + "brewery_type": "micro", + "address_1": "220 Wood Rd", + "address_2": null, + "address_3": null, + "city": "Braintree", + "state_province": "Massachusetts", + "postal_code": "02184-2408", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7812549856", + "website_url": "http://www.widowmakerbrew.wordpress.com", + "state": "Massachusetts", + "street": "220 Wood Rd" + }, + { + "id": "43ad77a1-454e-4e77-8f8a-8e7c2b542da6", + "name": "Wiedemann Brewing Co, LLC", + "brewery_type": "micro", + "address_1": "4811 Vine St", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45217-1217", + "country": "United States", + "longitude": -84.4746169, + "latitude": 39.2072785, + "phone": "5138009560", + "website_url": "http://www.wiedemannbeer.com", + "state": "Ohio", + "street": "4811 Vine St" + }, + { + "id": "ade8b2dc-ea30-4423-bcea-75dad5c5c4df", + "name": "Wiens Brewing Co", + "brewery_type": "closed", + "address_1": "27941 Diaz Rd Ste A", + "address_2": null, + "address_3": null, + "city": "Temecula", + "state_province": "California", + "postal_code": "92590-3484", + "country": "United States", + "longitude": -117.1600299, + "latitude": 33.50551982, + "phone": "9516949892", + "website_url": "http://www.weinsbrewing.com", + "state": "California", + "street": "27941 Diaz Rd Ste A" + }, + { + "id": "0a366f8e-fd0d-4fe6-8ee5-054d8b725c8c", + "name": "Wieselburger Brauerei (Heineken)", + "brewery_type": "large", + "address_1": "Dr.-Beurle-Stra�e 1", + "address_2": null, + "address_3": null, + "city": "Wieselburg", + "state_province": "Nieder�sterreich", + "postal_code": "3250", + "country": "Austria", + "longitude": 15.151875810785, + "latitude": 48.137356983052, + "phone": "+4374165010", + "website_url": "http://www.wieselburger.at", + "state": "Nieder�sterreich", + "street": "Dr.-Beurle-Stra�e 1" + }, + { + "id": "12f151b7-f74b-42cc-a748-76c4afbd5b17", + "name": "Wild Acre Brewing Company", + "brewery_type": "micro", + "address_1": "1734 E El Paso St Ste 190", + "address_2": null, + "address_3": null, + "city": "Fort Worth", + "state_province": "Texas", + "postal_code": "76102-6773", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8178829453", + "website_url": "http://www.wildacrebrewing.com", + "state": "Texas", + "street": "1734 E El Paso St Ste 190" + }, + { + "id": "1eee0d70-2945-4fe4-b626-10865107f347", + "name": "Wild Barrel Brewing Company", + "brewery_type": "micro", + "address_1": "692 Rancheros Dr", + "address_2": null, + "address_3": null, + "city": "San Marcos", + "state_province": "California", + "postal_code": "92069-3005", + "country": "United States", + "longitude": -117.145752, + "latitude": 33.140152, + "phone": "7605934785", + "website_url": "http://www.wildbarrelbrewing.com", + "state": "California", + "street": "692 Rancheros Dr" + }, + { + "id": "2e3c6b2b-5c45-4e56-833c-1dffe101459b", + "name": "Wild Blue Yonder Brewing", + "brewery_type": "brewpub", + "address_1": "519 S Wilcox St", + "address_2": null, + "address_3": null, + "city": "Castle Rock", + "state_province": "Colorado", + "postal_code": "80104", + "country": "United States", + "longitude": -104.8601972, + "latitude": 39.3751715, + "phone": "3038143663", + "website_url": "https://wildblueyonderbrewing.com/", + "state": "Colorado", + "street": "519 S Wilcox St" + }, + { + "id": "d400391b-6fe4-4cab-985a-193ca079f4d3", + "name": "Wild Bunch Brewing Co, LLC", + "brewery_type": "brewpub", + "address_1": "110 E 7TH ST STE 301", + "address_2": null, + "address_3": null, + "city": "Georgetown", + "state_province": "Texas", + "postal_code": "78626", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5123983633", + "website_url": "http://www.wildbunchbrewing.beer", + "state": "Texas", + "street": "110 E 7TH ST STE 301" + }, + { + "id": "729eb0a6-cc43-408e-9f9d-e35321d65261", + "name": "Wild East Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Brooklyn", + "state_province": "New York", + "postal_code": "11215-5511", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.wildeastbrewing.com", + "state": "New York", + "street": null + }, + { + "id": "c2dbd53b-c187-46d9-9776-90bdda134532", + "name": "Wild Heaven Craft Beers", + "brewery_type": "micro", + "address_1": "135B Maple St", + "address_2": null, + "address_3": null, + "city": "Decatur", + "state_province": "Georgia", + "postal_code": "30030-3953", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4049978589", + "website_url": "http://www.wildheavencraftbeers.com", + "state": "Georgia", + "street": "135B Maple St" + }, + { + "id": "d2d18db4-c577-4674-a38e-e2c71375d7e0", + "name": "Wild Hop Brewing Co.", + "brewery_type": "micro", + "address_1": "1301 Wildwood Road", + "address_2": null, + "address_3": null, + "city": "Yallingup", + "state_province": "WA", + "postal_code": "6282", + "country": "Australia", + "longitude": 115.0638318, + "latitude": -33.6951474, + "phone": null, + "website_url": "http://www.wildhopbeer.com.au/", + "state": "WA", + "street": "1301 Wildwood Road" + }, + { + "id": "8d18bc5f-91ae-48b4-8333-b2858f1649fb", + "name": "Wild Hordeum Brewing Co.", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Titusville", + "state_province": "Florida", + "postal_code": "32796-2357", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7274886300", + "website_url": null, + "state": "Florida", + "street": null + }, + { + "id": "f8094ea6-f13b-450b-a4c0-60ea5c899c06", + "name": "Wild Leap Brewing Company", + "brewery_type": "micro", + "address_1": "308 Main St", + "address_2": null, + "address_3": null, + "city": "Lagrange", + "state_province": "Georgia", + "postal_code": "30240-4504", + "country": "United States", + "longitude": -85.0311916, + "latitude": 33.037368, + "phone": "7062986400", + "website_url": "http://www.wildleap.com", + "state": "Georgia", + "street": "308 Main St" + }, + { + "id": "4170f5a5-0bea-4a5f-8692-2053a62a941c", + "name": "Wild Mind Artisan Ales", + "brewery_type": "micro", + "address_1": "6031 Pillsbury Ave S", + "address_2": null, + "address_3": null, + "city": "Minneapolis", + "state_province": "Minnesota", + "postal_code": "55419-2328", + "country": "United States", + "longitude": -93.2813885, + "latitude": 44.89304675, + "phone": "6123454514", + "website_url": "http://www.wildmindales.com", + "state": "Minnesota", + "street": "6031 Pillsbury Ave S" + }, + { + "id": "02efb5f9-5554-4288-a202-9812e96ddd47", + "name": "Wild Oak Project", + "brewery_type": "nano", + "address_1": "5229 144th St SE", + "address_2": null, + "address_3": null, + "city": "Everett", + "state_province": "Washington", + "postal_code": "98208-8972", + "country": "United States", + "longitude": -122.16036058658, + "latitude": 47.867323017472, + "phone": "2069724505", + "website_url": "https://wildoakproject.com", + "state": "Washington", + "street": "5229 144th St SE" + }, + { + "id": "1ba59950-58ce-4834-9b4c-ef6e32fd7ef9", + "name": "Wild Onion Brewing Co.", + "brewery_type": "micro", + "address_1": "22221 N Pepper Rd", + "address_2": null, + "address_3": null, + "city": "Lake Barrington", + "state_province": "Illinois", + "postal_code": "60010-2473", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8473817308", + "website_url": "http://www.onionpub.com", + "state": "Illinois", + "street": "22221 N Pepper Rd" + }, + { + "id": "ff5c7ee4-b66a-4e37-920e-191eeb187eb0", + "name": "Wild Parrot Brewing Company", + "brewery_type": "micro", + "address_1": "2302 E Colorado Blvd", + "address_2": null, + "address_3": null, + "city": "Pasadena", + "state_province": "California", + "postal_code": "91107", + "country": "United States", + "longitude": -118.1030564, + "latitude": 34.14610329, + "phone": "6265293150", + "website_url": "https://www.wildparrotbrewing.com/", + "state": "California", + "street": "2302 E Colorado Blvd" + }, + { + "id": "6fb1fdc2-e203-49c8-b325-c6013ab6dbf1", + "name": "Wild Ride Brewing", + "brewery_type": "micro", + "address_1": "332 SW 5th St", + "address_2": null, + "address_3": null, + "city": "Redmond", + "state_province": "Oregon", + "postal_code": "97756-2103", + "country": "United States", + "longitude": -121.1730764, + "latitude": 44.27391294, + "phone": "5415168544", + "website_url": "http://www.wildridebrew.com", + "state": "Oregon", + "street": "332 SW 5th St" + }, + { + "id": "7a14b155-30bf-4f20-9856-831cfe8bbb7c", + "name": "Wild River Brewing and Pizza Co", + "brewery_type": "brewpub", + "address_1": "249 N Redwood Hwy", + "address_2": null, + "address_3": null, + "city": "Cave Junction", + "state_province": "Oregon", + "postal_code": "97523-9023", + "country": "United States", + "longitude": -123.6469844, + "latitude": 42.1622503, + "phone": "5414717487", + "website_url": "http://www.wildriverbrewing.com", + "state": "Oregon", + "street": "249 N Redwood Hwy" + }, + { + "id": "2e8613b3-c83d-4efa-b8bd-a658f99fd780", + "name": "Wild River Brewing and Pizza Co - Grants Pass", + "brewery_type": "brewpub", + "address_1": "595 NE E St", + "address_2": null, + "address_3": null, + "city": "Grants Pass", + "state_province": "Oregon", + "postal_code": "97526-2356", + "country": "United States", + "longitude": -123.319, + "latitude": 42.43927512, + "phone": "5414717487", + "website_url": "http://www.wildriverbrewing.com", + "state": "Oregon", + "street": "595 NE E St" + }, + { + "id": "bccbb662-6467-4d57-816e-9cb99adcfa30", + "name": "Wild Side Brewing Company", + "brewery_type": "micro", + "address_1": "24194 Front St", + "address_2": null, + "address_3": null, + "city": "Grand Rapids", + "state_province": "Ohio", + "postal_code": "43522", + "country": "United States", + "longitude": -83.86731385, + "latitude": 41.41253259, + "phone": "4193892776", + "website_url": "http://www.wildsidebrewing.com", + "state": "Ohio", + "street": "24194 Front St" + }, + { + "id": "0751ebe6-8350-44ca-92c0-e06822ba72e4", + "name": "Wild Water", + "brewery_type": "closed", + "address_1": "9995 Winghaven Blvd", + "address_2": null, + "address_3": null, + "city": "O Fallon", + "state_province": "Missouri", + "postal_code": "63368-3623", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6362650751", + "website_url": null, + "state": "Missouri", + "street": "9995 Winghaven Blvd" + }, + { + "id": "e0c96164-2d9a-4eed-ad58-d2c24f7af579", + "name": "Wild West Brewing Co.", + "brewery_type": "micro", + "address_1": "1301 Wildwood Road", + "address_2": null, + "address_3": null, + "city": "Yallingup", + "state_province": "WA", + "postal_code": "6282", + "country": "Australia", + "longitude": 115.0638318, + "latitude": -33.6951474, + "phone": null, + "website_url": "http://www.wildhopbeer.com.au/", + "state": "WA", + "street": "1301 Wildwood Road" + }, + { + "id": "0d94cee6-2b9f-47ec-8cdc-cf7e81113b04", + "name": "Wild Wolf Brewing Co", + "brewery_type": "micro", + "address_1": "2461 Rockfish Valley Hwy", + "address_2": null, + "address_3": null, + "city": "Nellysford", + "state_province": "Virginia", + "postal_code": "22958-2306", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4343610088", + "website_url": "http://www.wildwolfbeer.com", + "state": "Virginia", + "street": "2461 Rockfish Valley Hwy" + }, + { + "id": "ed289ab7-9588-429f-bc3d-5977c5120d9f", + "name": "Wild Woods Brewery", + "brewery_type": "micro", + "address_1": "5460 Conestoga Ct", + "address_2": null, + "address_3": null, + "city": "Boulder", + "state_province": "Colorado", + "postal_code": "80301-2724", + "country": "United States", + "longitude": -105.2258104, + "latitude": 40.0162153, + "phone": "3034841465", + "website_url": "http://www.wildwoodsbrewery.com", + "state": "Colorado", + "street": "5460 Conestoga Ct" + }, + { + "id": "3c3e2e37-eb79-469b-8010-02189851c922", + "name": "Wildbloom Beer", + "brewery_type": "micro", + "address_1": "42 Main St", + "address_2": "2nd Floor", + "address_3": null, + "city": "Littleton", + "state_province": "New Hampshire", + "postal_code": "03561", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6035755025", + "website_url": "https://wildbloom-beer.foodjoyy.com/", + "state": "New Hampshire", + "street": "42 Main St" + }, + { + "id": "94bf785c-e76a-4a41-8720-e9fb53d72ed4", + "name": "Wildcard Brewing Company", + "brewery_type": "micro", + "address_1": "9565 Crossroads Dr", + "address_2": null, + "address_3": null, + "city": "Redding", + "state_province": "California", + "postal_code": "96003-6814", + "country": "United States", + "longitude": -122.298177, + "latitude": 40.562008, + "phone": "5307229239", + "website_url": "http://www.wildcardbrewingco.com", + "state": "California", + "street": "9565 Crossroads Dr" + }, + { + "id": "bdbe6d77-6ee1-4e72-811a-36aca67005f9", + "name": "Wilde Gluten Free", + "brewery_type": "micro", + "address_1": "12 Laser Drive", + "address_2": "Unit 3", + "address_3": null, + "city": "Rowville", + "state_province": "VIC", + "postal_code": "3178", + "country": "Australia", + "longitude": 145.2450774, + "latitude": -37.9096844, + "phone": "+61 408 392 226", + "website_url": "https://projectbrewing.com.au/", + "state": "VIC", + "street": "12 Laser Drive" + }, + { + "id": "7e77e499-968f-434c-a660-ebcfda4e1842", + "name": "WildEdge Brewing Collective", + "brewery_type": "brewpub", + "address_1": "111 N Market St", + "address_2": null, + "address_3": null, + "city": "Cortez", + "state_province": "Colorado", + "postal_code": "81321-3214", + "country": "United States", + "longitude": -108.5853117, + "latitude": 37.34990058, + "phone": "9705659445", + "website_url": "http://www.wildedgebrewing.com", + "state": "Colorado", + "street": "111 N Market St" + }, + { + "id": "9169dd36-0e3b-4336-93dc-886850fd4bbc", + "name": "Wildlife Brewing", + "brewery_type": "brewpub", + "address_1": "145 S. Main St.", + "address_2": null, + "address_3": null, + "city": "Victor", + "state_province": "Idaho", + "postal_code": "83455-0869", + "country": "United States", + "longitude": -111.1112683, + "latitude": 43.60200785, + "phone": "2087872623", + "website_url": "http://wildlifebrewing.com", + "state": "Idaho", + "street": "145 S. Main St." + }, + { + "id": "132c460c-3ab8-46db-9dc7-f8123d513ef3", + "name": "Wildrose Brewing Company", + "brewery_type": "brewpub", + "address_1": "1104 E Main St", + "address_2": null, + "address_3": null, + "city": "Griffith", + "state_province": "Indiana", + "postal_code": "46319-2826", + "country": "United States", + "longitude": -87.4155241, + "latitude": 41.52275923, + "phone": "2195955054", + "website_url": "http://www.wildrosebrewing.com", + "state": "Indiana", + "street": "1104 E Main St" + }, + { + "id": "8863a998-e42b-467d-adc9-8a1923864460", + "name": "Wildspirit", + "brewery_type": "micro", + "address_1": "96 Chifley Drive", + "address_2": null, + "address_3": null, + "city": "Preston", + "state_province": "VIC", + "postal_code": "3072", + "country": "Australia", + "longitude": 145.030651, + "latitude": -37.7441999, + "phone": "+61 3 9487 1170", + "website_url": "https://gypsyhub.com.au/", + "state": "VIC", + "street": "96 Chifley Drive" + }, + { + "id": "e2750719-4d6a-471e-a9df-be10d8fb71cf", + "name": "Wildwood Brewing Co", + "brewery_type": "micro", + "address_1": "4018 US Highway 93 N", + "address_2": null, + "address_3": null, + "city": "Stevensville", + "state_province": "Montana", + "postal_code": "59870-6443", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4065296919", + "website_url": "http://www.wildwoodbrewing.com", + "state": "Montana", + "street": "4018 US Highway 93 N" + }, + { + "id": "68be4717-aeb3-4539-b539-9d0168b2926c", + "name": "Wiley Roots Brewing Co", + "brewery_type": "micro", + "address_1": "625 3rd St Unit D", + "address_2": null, + "address_3": null, + "city": "Greeley", + "state_province": "Colorado", + "postal_code": "80631-9132", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9706911641", + "website_url": "http://www.wileyrootsbrewing.com", + "state": "Colorado", + "street": "625 3rd St Unit D" + }, + { + "id": "8f54e466-4f0c-4ecc-853f-02b4680853c9", + "name": "Will County Brewing Company", + "brewery_type": "micro", + "address_1": "1142 W Jefferson St", + "address_2": null, + "address_3": null, + "city": "Shorewood", + "state_province": "Illinois", + "postal_code": "60404-0703", + "country": "United States", + "longitude": -88.20870656, + "latitude": 41.521524, + "phone": "8155824157", + "website_url": "http://www.willcountybrew.com", + "state": "Illinois", + "street": "1142 W Jefferson St" + }, + { + "id": "6b1c2bdf-2b49-4fdc-8440-532d57520c25", + "name": "Willapa Brewing Co", + "brewery_type": "nano", + "address_1": "405 Minnesota Ave", + "address_2": null, + "address_3": null, + "city": "South Bend", + "state_province": "Washington", + "postal_code": "98586", + "country": "United States", + "longitude": -123.79236657498, + "latitude": 46.665474939717, + "phone": "3608758398", + "website_url": "https://www.willapabrewingco.com", + "state": "Washington", + "street": "405 Minnesota Ave" + }, + { + "id": "9fff553d-8ede-435a-ab11-01b8bbed9b18", + "name": "Willcott Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Holton", + "state_province": "Kansas", + "postal_code": "66436-1703", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7853381611", + "website_url": "http://www.willcottbrewing.com", + "state": "Kansas", + "street": null + }, + { + "id": "8fe80c7b-3dcc-4231-bd5c-e1a557480564", + "name": "William K Busch Brewing Co.", + "brewery_type": "closed", + "address_1": "8047 Litzsinger Rd", + "address_2": null, + "address_3": null, + "city": "Saint Louis", + "state_province": "Missouri", + "postal_code": "63144-2505", + "country": "United States", + "longitude": -90.33733442, + "latitude": 38.61687711, + "phone": "3149327911", + "website_url": "http://www.enjoykraftig.com", + "state": "Missouri", + "street": "8047 Litzsinger Rd" + }, + { + "id": "84ba749d-31ad-4e68-8af2-3aa6344786f5", + "name": "Willie the Boatman", + "brewery_type": "micro", + "address_1": "Edith Street", + "address_2": null, + "address_3": null, + "city": "Saint Peters", + "state_province": "NSW", + "postal_code": "2044", + "country": "Australia", + "longitude": 151.1729927, + "latitude": -33.9127462, + "phone": "+61 2 8556 7528", + "website_url": "https://willietheboatman.com/", + "state": "NSW", + "street": "Edith Street" + }, + { + "id": "2a0b0ae1-9c3b-4de7-91ca-7f2283cab082", + "name": "Willimantic Brewing Co and Main Street Cafe", + "brewery_type": "brewpub", + "address_1": "967 Main St", + "address_2": null, + "address_3": null, + "city": "Willimantic", + "state_province": "Connecticut", + "postal_code": "06226-2330", + "country": "United States", + "longitude": -72.21714938, + "latitude": 41.7131866, + "phone": "8604236777", + "website_url": "http://www.willibrew.com", + "state": "Connecticut", + "street": "967 Main St" + }, + { + "id": "bedf2a5f-08b9-4db2-80d9-66bb6e6e5175", + "name": "Willoughby Brewing Co", + "brewery_type": "brewpub", + "address_1": "4057 Erie St", + "address_2": null, + "address_3": null, + "city": "Willoughby", + "state_province": "Ohio", + "postal_code": "44094-7804", + "country": "United States", + "longitude": -81.40548972, + "latitude": 41.64152155, + "phone": "4409750202", + "website_url": "http://www.willoughbybrewing.com", + "state": "Ohio", + "street": "4057 Erie St" + }, + { + "id": "99610e23-42f0-4372-9a4e-46b290c721ff", + "name": "Willow Rock Brewing Company", + "brewery_type": "micro", + "address_1": "115 Game Rd", + "address_2": null, + "address_3": null, + "city": "Syracuse", + "state_province": "New York", + "postal_code": "13210-4216", + "country": "United States", + "longitude": -76.13147154, + "latitude": 43.01155518, + "phone": "3159286948", + "website_url": "http://www.willowrockbrew.com", + "state": "New York", + "street": "115 Game Rd" + }, + { + "id": "14ddfbb5-9369-49d4-9ae2-6ce2d68b6155", + "name": "Willows Family Ales", + "brewery_type": "micro", + "address_1": "418 S Peoria Ave", + "address_2": null, + "address_3": null, + "city": "Tulsa", + "state_province": "Oklahoma", + "postal_code": "74120", + "country": "United States", + "longitude": -95.97591226, + "latitude": 36.02201189, + "phone": "9188956798", + "website_url": null, + "state": "Oklahoma", + "street": "418 S Peoria Ave" + }, + { + "id": "b0b1336f-c352-46cb-9bc7-d1be23916f48", + "name": "Wilmington Brew Works", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "Delaware", + "postal_code": "19802-2542", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3027574971", + "website_url": "http://www.wilmingtonbrewworks.com", + "state": "Delaware", + "street": null + }, + { + "id": "bc28fab5-4e26-4e76-b294-64823949a61b", + "name": "Wilmington Brewing Company", + "brewery_type": "micro", + "address_1": "824 S Kerr Ave", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "North Carolina", + "postal_code": "28403-8426", + "country": "United States", + "longitude": -77.88680231, + "latitude": 34.2213165, + "phone": "9103923315", + "website_url": "http://www.wilmingtonbeer.com", + "state": "North Carolina", + "street": "824 S Kerr Ave" + }, + { + "id": "425b8449-f138-4ef9-85b6-38132d6da1bc", + "name": "Wilson Brewing Co.", + "brewery_type": "micro", + "address_1": "72 Stirling Terrace", + "address_2": null, + "address_3": null, + "city": "Albany", + "state_province": "WA", + "postal_code": "6330", + "country": "Australia", + "longitude": 117.8859071, + "latitude": -35.0270282, + "phone": "+61 8 9841 1733", + "website_url": "https://www.wilsonbrewing.com.au/", + "state": "WA", + "street": "72 Stirling Terrace" + }, + { + "id": "54d22718-da66-4c00-9fba-00179644935b", + "name": "Wiltse's Brew Pub and Family Restaurant", + "brewery_type": "brewpub", + "address_1": "5606 F 41", + "address_2": null, + "address_3": null, + "city": "Oscoda", + "state_province": "Michigan", + "postal_code": "48750-8611", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9897392231", + "website_url": "http://www.wiltsebrewpub.com", + "state": "Michigan", + "street": "5606 F 41" + }, + { + "id": "a2176552-f292-415f-ba05-609e7e484897", + "name": "Wimberley Brewing Co & Brewsters Pizza", + "brewery_type": "brewpub", + "address_1": "9595 Ranch Road 12 Ste 10", + "address_2": null, + "address_3": null, + "city": "Wimberley", + "state_province": "Texas", + "postal_code": "78676-5248", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5128473299", + "website_url": "http://www.wimberlybrewingcompany.com", + "state": "Texas", + "street": "9595 Ranch Road 12 Ste 10" + }, + { + "id": "3fe1de22-c30c-446d-b2f2-913ca9f6378e", + "name": "Wimitzbr�u", + "brewery_type": "nano", + "address_1": "L67 7", + "address_2": null, + "address_3": null, + "city": "Wimitz", + "state_province": "K�rnten", + "postal_code": "9311", + "country": "Austria", + "longitude": 14.355971213256, + "latitude": 46.83992642712, + "phone": "+43421228074", + "website_url": "http://www.wimitzbraeu.com", + "state": "K�rnten", + "street": "L67 7" + }, + { + "id": "5b040ced-a54e-40f3-959b-86f818ed4186", + "name": "Winchester Brew Works LLC", + "brewery_type": "micro", + "address_1": "320 N Cameron St", + "address_2": null, + "address_3": null, + "city": "Winchester", + "state_province": "Virginia", + "postal_code": "22601-6052", + "country": "United States", + "longitude": -78.16221305, + "latitude": 39.18857712, + "phone": "5406929242", + "website_url": "http://winchesterbrewworks.com", + "state": "Virginia", + "street": "320 N Cameron St" + }, + { + "id": "0e22f154-5c03-4bee-9b37-657afaca8ecd", + "name": "Wind River Brewing Co - WY", + "brewery_type": "brewpub", + "address_1": "402 Pine St", + "address_2": null, + "address_3": null, + "city": "Pinedale", + "state_province": "Wyoming", + "postal_code": "82941", + "country": "United States", + "longitude": -109.86603873089, + "latitude": 42.866433652661, + "phone": "3073672337", + "website_url": "http://www.windriverbrewingco.com", + "state": "Wyoming", + "street": "402 Pine St" + }, + { + "id": "17469498-8632-4e10-8076-cb9cb22e7978", + "name": "Wind Shift Brewing", + "brewery_type": "micro", + "address_1": "3421B NW Jefferson St", + "address_2": null, + "address_3": null, + "city": "Blue Springs", + "state_province": "Missouri", + "postal_code": "64015", + "country": "United States", + "longitude": -94.303423, + "latitude": 39.073677, + "phone": "8167862699", + "website_url": "http://www.windshiftbrew.com", + "state": "Missouri", + "street": "3421B NW Jefferson St" + }, + { + "id": "ca8e0949-0067-4fb8-8aad-fa10a0e78fc2", + "name": "Windmill Brewing", + "brewery_type": "micro", + "address_1": "2121 Gettler St", + "address_2": null, + "address_3": null, + "city": "Dyer", + "state_province": "Indiana", + "postal_code": "46311-1859", + "country": "United States", + "longitude": -87.52262489, + "latitude": 41.49333495, + "phone": "2194402189", + "website_url": "http://www.windmillbrew.com", + "state": "Indiana", + "street": "2121 Gettler St" + }, + { + "id": "e335f6c4-199e-445c-be2d-50a3984f8afd", + "name": "Windy Brew", + "brewery_type": "micro", + "address_1": "733 Route 20a", + "address_2": null, + "address_3": null, + "city": "Strykersville", + "state_province": "New York", + "postal_code": "14145-9584", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5858054006", + "website_url": "http://www.windybrews.com", + "state": "New York", + "street": "733 Route 20a" + }, + { + "id": "398dfc78-dc36-4579-9f18-7240f4bf24a3", + "name": "Winery @Springvale", + "brewery_type": "bar", + "address_1": "907 East Coast Road", + "address_2": "Springvale", + "address_3": "#01-03", + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "459107", + "country": "Singapore", + "longitude": 1.3129317454798, + "latitude": 103.9246936, + "phone": "+65 9643 3188", + "website_url": "https://www.thewinery.com.sg/siglap/", + "state": "Singapore", + "street": "907 East Coast Road" + }, + { + "id": "66dad51b-f958-4aed-b924-8838dbc68937", + "name": "Winery Tapas Bar @Chijmes", + "brewery_type": "bar", + "address_1": "30 Victoria Street", + "address_2": "Chijmes", + "address_3": "#B1-05", + "city": "Singapore", + "state_province": "Singapore", + "postal_code": "187996", + "country": "Singapore", + "longitude": 1.2951320828701, + "latitude": 103.85270133069, + "phone": "+65 8388 8850", + "website_url": "https://www.thewinery.com.sg/chijmes/", + "state": "Singapore", + "street": "30 Victoria Street" + }, + { + "id": "a9fe8387-5dd3-48b5-87a3-79eb9e64b7b4", + "name": "Wingman Brewers", + "brewery_type": "closed", + "address_1": "509 1/2 Puyallup Ave", + "address_2": null, + "address_3": null, + "city": "Tacoma", + "state_province": "Washington", + "postal_code": "98421-1318", + "country": "United States", + "longitude": -122.4291133, + "latitude": 47.24075878, + "phone": "2532565240", + "website_url": "http://www.wingmanbrewers.com", + "state": "Washington", + "street": "509 1/2 Puyallup Ave" + }, + { + "id": "45e09697-d154-4da0-96bc-63900f0ede6d", + "name": "Winner’s Circle Brewing Company", + "brewery_type": "contract", + "address_1": "21 Whistler Court Apt 4", + "address_2": null, + "address_3": null, + "city": "Saratoga Springs", + "state_province": "New York", + "postal_code": "12866", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5183657864", + "website_url": "http://www.winnerscirclebeer.com", + "state": "New York", + "street": "21 Whistler Court Apt 4" + }, + { + "id": "2dabc038-a32f-400d-ac09-84b369df1528", + "name": "Winter Hill Brewing Company", + "brewery_type": "brewpub", + "address_1": "328 Broadway", + "address_2": null, + "address_3": null, + "city": "Somerville", + "state_province": "Massachusetts", + "postal_code": "02145-2803", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6177182337", + "website_url": "http://www.winterhillbrewing.com", + "state": "Massachusetts", + "street": "328 Broadway" + }, + { + "id": "e1b4b1c8-ea94-48e8-986e-38e025510a75", + "name": "Wiretap Brewing Corporation", + "brewery_type": "micro", + "address_1": "341B South Avenue 17", + "address_2": null, + "address_3": null, + "city": "Los Angeles", + "state_province": "California", + "postal_code": "90031", + "country": "United States", + "longitude": -118.2220376, + "latitude": 34.06852346, + "phone": null, + "website_url": "http://www.wiretapbrewing.com", + "state": "California", + "street": "341B South Avenue 17" + }, + { + "id": "16a14354-1767-4c6d-ae83-d0d069c1275e", + "name": "Wisconsin Brewing Co", + "brewery_type": "regional", + "address_1": "1079 American Way", + "address_2": null, + "address_3": null, + "city": "Verona", + "state_province": "Wisconsin", + "postal_code": "53593-9384", + "country": "United States", + "longitude": -89.50895494, + "latitude": 42.9688832, + "phone": "6088481079", + "website_url": "http://www.wisconsinbrewingcompany.com", + "state": "Wisconsin", + "street": "1079 American Way" + }, + { + "id": "c0c7f8b9-433c-4c64-a993-c348b2ef174d", + "name": "Wisconsin Dells Brewing Company", + "brewery_type": "brewpub", + "address_1": "110 Wisconsin Dells Pkwy S", + "address_2": null, + "address_3": null, + "city": "Wisconsin Dells", + "state_province": "Wisconsin", + "postal_code": "53965-8304", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6082541122", + "website_url": "http://www.dellsmoosejaw.com", + "state": "Wisconsin", + "street": "110 Wisconsin Dells Pkwy S" + }, + { + "id": "23c65942-1fb9-414b-93f9-b0d083673440", + "name": "Wise Man Brewing", + "brewery_type": "micro", + "address_1": "826 Angelo Brothers Ave", + "address_2": null, + "address_3": null, + "city": "Winston-Salem", + "state_province": "North Carolina", + "postal_code": "27101", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3367250008", + "website_url": "http://www.wisemanbrewing.com", + "state": "North Carolina", + "street": "826 Angelo Brothers Ave" + }, + { + "id": "bbf13bec-6169-4eec-8827-fc09b2829d26", + "name": "Wiseacre Brewing Co", + "brewery_type": "micro", + "address_1": "2783 Broad Ave", + "address_2": null, + "address_3": null, + "city": "Memphis", + "state_province": "Tennessee", + "postal_code": "38112-2834", + "country": "United States", + "longitude": -89.96849701, + "latitude": 35.14755725, + "phone": "9018887000", + "website_url": "http://www.wiseacrebrew.com", + "state": "Tennessee", + "street": "2783 Broad Ave" + }, + { + "id": "6098bdc3-b15b-4b11-ae3c-753503b64abd", + "name": "Wishful Acres Farm and Brewery", + "brewery_type": "micro", + "address_1": "4679 N Flansburg Rd", + "address_2": null, + "address_3": null, + "city": "Lena", + "state_province": "Illinois", + "postal_code": "61048", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8159902380", + "website_url": "http://www.wishfulacresfarm.com", + "state": "Illinois", + "street": "4679 N Flansburg Rd" + }, + { + "id": "498d083a-c992-4bd1-9ff7-39c7ea644cb6", + "name": "Wissahickon Brewing Company", + "brewery_type": "micro", + "address_1": "3705 W School House Ln", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19129-1738", + "country": "United States", + "longitude": -75.20047033, + "latitude": 40.013655, + "phone": "2154838833", + "website_url": "http://www.wissahickonbrew.com", + "state": "Pennsylvania", + "street": "3705 W School House Ln" + }, + { + "id": "0f56a5a3-f2d8-4295-8104-6ff8a61a7195", + "name": "Wit's End Brewing Co", + "brewery_type": "micro", + "address_1": "1330 Zuni St Ste N", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80204-2328", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3033599119", + "website_url": "http://www.witsendbrewing.com", + "state": "Colorado", + "street": "1330 Zuni St Ste N" + }, + { + "id": "fd24f694-6436-458c-a0d5-d35ab5ff4497", + "name": "Witch's Hat Brewing", + "brewery_type": "micro", + "address_1": "601 S Lafayette St", + "address_2": null, + "address_3": null, + "city": "South Lyon", + "state_province": "Michigan", + "postal_code": "48178-1453", + "country": "United States", + "longitude": -83.65099308, + "latitude": 42.45542522, + "phone": "2484862595", + "website_url": "http://www.witchshatbrewing.com", + "state": "Michigan", + "street": "601 S Lafayette St" + }, + { + "id": "da71bf07-faa7-41e4-a45a-b3e24a4f2f12", + "name": "Witchdoctor Brewing Company", + "brewery_type": "micro", + "address_1": "168 Center St", + "address_2": null, + "address_3": null, + "city": "Southington", + "state_province": "Connecticut", + "postal_code": "06489", + "country": "United States", + "longitude": -72.88142555, + "latitude": 41.60169813, + "phone": "8604261924", + "website_url": "http://www.witchdoctorbrewing.com", + "state": "Connecticut", + "street": "168 Center St" + }, + { + "id": "d5a5e1ba-5fde-4c6a-b2e2-d0cb96757489", + "name": "Wizards of Williams Hops Garden and Craft Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Williams", + "state_province": "Oregon", + "postal_code": "97545", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5414156191", + "website_url": null, + "state": "Oregon", + "street": null + }, + { + "id": "96336a37-ba9a-4d1f-ab36-667c60dbcd06", + "name": "Wm Roesch Brewing Company", + "brewery_type": "micro", + "address_1": "250 SE 3rd St", + "address_2": null, + "address_3": null, + "city": "Pendleton", + "state_province": "Oregon", + "postal_code": "97801-2503", + "country": "United States", + "longitude": -118.7842506, + "latitude": 45.6730681, + "phone": "5413773511", + "website_url": null, + "state": "Oregon", + "street": "250 SE 3rd St" + }, + { + "id": "e74523b6-d510-4a00-8ba4-007d98bb2eba", + "name": "Wobbly Chook Brewing Co.", + "brewery_type": "micro", + "address_1": "26 Coldstream Street", + "address_2": null, + "address_3": null, + "city": "Yamba", + "state_province": "NSW", + "postal_code": "2464", + "country": "Australia", + "longitude": 153.3603026, + "latitude": -29.4374635, + "phone": "+61 2 6646 3997", + "website_url": "http://www.wobblychookbrewingco.com/", + "state": "NSW", + "street": "26 Coldstream Street" + }, + { + "id": "646c7e47-1f06-46e0-803f-8f989e95186b", + "name": "Wolf Branch Brewing Co.", + "brewery_type": "micro", + "address_1": "119 N Bay St", + "address_2": null, + "address_3": null, + "city": "Eustis", + "state_province": "Florida", + "postal_code": "32726-3402", + "country": "United States", + "longitude": -81.68556847, + "latitude": 28.85386984, + "phone": "4072761510", + "website_url": "http://www.wolfbranchbrewing.com", + "state": "Florida", + "street": "119 N Bay St" + }, + { + "id": "8af9aa93-cf66-48a2-b1fc-c354ad102e5f", + "name": "Wolf Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Harrisburg", + "state_province": "Pennsylvania", + "postal_code": "17112-1550", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7176452752", + "website_url": "http://www.wolfbrewingco.com", + "state": "Pennsylvania", + "street": null + }, + { + "id": "1bf86666-1f70-4201-a1e9-6fd3bc965cc6", + "name": "Wolf Creek Brewery", + "brewery_type": "micro", + "address_1": "25108 Rye Canyon Loop", + "address_2": null, + "address_3": null, + "city": "Valencia", + "state_province": "California", + "postal_code": "91355-5004", + "country": "United States", + "longitude": -118.5807868, + "latitude": 34.45556243, + "phone": "6612639653", + "website_url": null, + "state": "California", + "street": "25108 Rye Canyon Loop" + }, + { + "id": "34137eaa-54b5-4b39-a98e-aaefd70f725b", + "name": "Wolf Hills Brewing Co", + "brewery_type": "micro", + "address_1": "350 Park St SE", + "address_2": null, + "address_3": null, + "city": "Abingdon", + "state_province": "Virginia", + "postal_code": "24210-3314", + "country": "United States", + "longitude": -81.966309, + "latitude": 36.7123245, + "phone": "2762067562", + "website_url": "http://www.wolfhillsbrewing.com", + "state": "Virginia", + "street": "350 Park St SE" + }, + { + "id": "d362f9fe-3375-46e8-a846-62cf28e85f89", + "name": "Wolf Hollow Brewing Company", + "brewery_type": "micro", + "address_1": "6882 Amsterdam Rd", + "address_2": null, + "address_3": null, + "city": "Schenectady", + "state_province": "New York", + "postal_code": "12302", + "country": "United States", + "longitude": -74.0809254, + "latitude": 42.8969263, + "phone": "5182144093", + "website_url": "http://www.wolfhollowbrewing.com", + "state": "New York", + "street": "6882 Amsterdam Rd" + }, + { + "id": "1639dd43-3106-40fd-9f88-ab452add1526", + "name": "Wolf Of The Willows", + "brewery_type": "micro", + "address_1": "39 De Havilland Road", + "address_2": null, + "address_3": null, + "city": "Mordialloc", + "state_province": "VIC", + "postal_code": "3195", + "country": "Australia", + "longitude": 145.1001076, + "latitude": -37.9893536, + "phone": "+61 3 9587 2480", + "website_url": "http://www.wolfofthewillows.com.au/", + "state": "VIC", + "street": "39 De Havilland Road" + }, + { + "id": "ebd4eb78-21a5-41b6-bfea-feeb9ecec9a2", + "name": "Wolf of the Willows Brewery and Taproom", + "brewery_type": "micro", + "address_1": "39 De Havilland Road", + "address_2": null, + "address_3": null, + "city": "Mordialloc", + "state_province": "VIC", + "postal_code": "3195", + "country": "Australia", + "longitude": 145.1001076, + "latitude": -37.9893536, + "phone": "+61 3 9587 2480", + "website_url": "http://www.wolfofthewillows.com.au/", + "state": "VIC", + "street": "39 De Havilland Road" + }, + { + "id": "767b679f-1675-45ff-b431-964d8eeae698", + "name": "Wolf Tree Brewery", + "brewery_type": "micro", + "address_1": "4590 SE Harborton St", + "address_2": null, + "address_3": null, + "city": "Newport", + "state_province": "Oregon", + "postal_code": "97366", + "country": "United States", + "longitude": -124.043444, + "latitude": 44.60395753, + "phone": "4588689151", + "website_url": "http://www.wolftreebrewery.com", + "state": "Oregon", + "street": "4590 SE Harborton St" + }, + { + "id": "632d6d8c-2f43-479e-aca7-a843624023c7", + "name": "Wolf's Ridge Brewing", + "brewery_type": "micro", + "address_1": "215 N 4th St", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43215-2510", + "country": "United States", + "longitude": -82.99517953, + "latitude": 39.9577586, + "phone": "6144293936", + "website_url": "http://www.wolfsridgebrewing.com", + "state": "Ohio", + "street": "215 N 4th St" + }, + { + "id": "000f8870-232f-499b-9841-ee5c2b95fc1d", + "name": "Wolftrack Brewing Company", + "brewery_type": "micro", + "address_1": "505 King St", + "address_2": null, + "address_3": null, + "city": "Cottonwood", + "state_province": "Idaho", + "postal_code": "83522-5066", + "country": "United States", + "longitude": -116.3497034, + "latitude": 46.04894954, + "phone": "2085071187", + "website_url": "https://www.facebook.com/Wolftrack-Brewing-and-Tasting-Den-467890926648903", + "state": "Idaho", + "street": "505 King St" + }, + { + "id": "932f3a05-590e-49dc-bba5-0c6c7c174125", + "name": "Wolverine State Brewing Co", + "brewery_type": "brewpub", + "address_1": "2019 W Stadium Blvd # 103", + "address_2": null, + "address_3": null, + "city": "Ann Arbor", + "state_province": "Michigan", + "postal_code": "48103-4557", + "country": "United States", + "longitude": -83.7745473, + "latitude": 42.2694316, + "phone": "7343692990", + "website_url": "http://www.wolverinebeer.com", + "state": "Michigan", + "street": "2019 W Stadium Blvd # 103" + }, + { + "id": "7a32d777-2288-4665-bcf4-9810ccbb85c0", + "name": "Wolves & People Farmhouse Brewery", + "brewery_type": "micro", + "address_1": "30203 NE Benjamin Rd", + "address_2": null, + "address_3": null, + "city": "Newberg", + "state_province": "Oregon", + "postal_code": "97132-6910", + "country": "United States", + "longitude": -122.9288409, + "latitude": 45.31485946, + "phone": "5034876873", + "website_url": "http://www.wolvesandpeople.com", + "state": "Oregon", + "street": "30203 NE Benjamin Rd" + }, + { + "id": "a8b3f717-bb25-4cfb-abb0-294596b190b6", + "name": "Wonderland Brewing Co.", + "brewery_type": "micro", + "address_1": "5450 W 120th Ave", + "address_2": null, + "address_3": null, + "city": "Broomfield", + "state_province": "Colorado", + "postal_code": "80020-5913", + "country": "United States", + "longitude": -105.0560819, + "latitude": 39.91349895, + "phone": "3039530400", + "website_url": "http://www.wonderlandbrewing.com", + "state": "Colorado", + "street": "5450 W 120th Ave" + }, + { + "id": "e58f2bb3-b382-4000-9977-ac2f5030da96", + "name": "Wonky Brew Factory", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Aurora", + "state_province": "Illinois", + "postal_code": "60506-5749", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Illinois", + "street": null + }, + { + "id": "7907c24f-b644-4e25-a1f5-4a5c6d71523c", + "name": "Wood Boat Brewery", + "brewery_type": "brewpub", + "address_1": "625 Mary St Ste A", + "address_2": null, + "address_3": null, + "city": "Clayton", + "state_province": "New York", + "postal_code": "13624-1131", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3156863233", + "website_url": "http://www.woodboatbrewery.com", + "state": "New York", + "street": "625 Mary St Ste A" + }, + { + "id": "08d6f6e4-d86e-42e2-9d2c-e6ca880851f9", + "name": "Wood Kettle Brewing", + "brewery_type": "brewpub", + "address_1": "1192 Manitou Rd", + "address_2": null, + "address_3": null, + "city": "Hilton", + "state_province": "New York", + "postal_code": "14468-9331", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5853664183", + "website_url": null, + "state": "New York", + "street": "1192 Manitou Rd" + }, + { + "id": "158b3651-e46b-4d58-a88a-37c1666d701a", + "name": "Wood Key Brewing", + "brewery_type": "micro", + "address_1": "22 Kilbarrack Avenue", + "address_2": "Kilbarrack", + "address_3": "Dublin 5", + "city": "Dublin", + "state_province": "Dublin", + "postal_code": "D05 VW89", + "country": "Ireland", + "longitude": -6.1515127, + "latitude": 53.3853135, + "phone": "353851372499", + "website_url": null, + "state": "Dublin", + "street": "22 Kilbarrack Avenue" + }, + { + "id": "5f1adaec-b15f-459f-a8c9-76fd67bc9cd3", + "name": "Wood Ridge Farm Brewery", + "brewery_type": "micro", + "address_1": "151 Old Ridge Rd", + "address_2": null, + "address_3": null, + "city": "Lovingston", + "state_province": "Virginia", + "postal_code": "22949-2550", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4344226225", + "website_url": null, + "state": "Virginia", + "street": "151 Old Ridge Rd" + }, + { + "id": "449f255b-3b62-4cce-95f7-03fd57e76c9e", + "name": "Woodbine Farm Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Manassas", + "state_province": "Virginia", + "postal_code": "20112", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5712057460", + "website_url": "http://Woodbinefarmandbrewery.com", + "state": "Virginia", + "street": null + }, + { + "id": "1734f46b-14ba-4dec-a254-5be95c4bab5d", + "name": "Woodbury Brewing Company", + "brewery_type": "brewpub", + "address_1": "738 Main St", + "address_2": null, + "address_3": null, + "city": "Woodbury", + "state_province": "Connecticut", + "postal_code": "06798-0083", + "country": "United States", + "longitude": -73.2070509, + "latitude": 41.5385323, + "phone": "2039108955", + "website_url": "http://www.woodburybrewingcompany.com", + "state": "Connecticut", + "street": "738 Main St" + }, + { + "id": "4924fb50-adeb-4611-884b-54be9c24fa55", + "name": "Woodcock Brothers Brewing", + "brewery_type": "brewpub", + "address_1": "638 Lake St", + "address_2": null, + "address_3": null, + "city": "Wilson", + "state_province": "New York", + "postal_code": "14172-9600", + "country": "United States", + "longitude": -78.825882, + "latitude": 43.299013, + "phone": "7163334000", + "website_url": "http://www.woodcockbrothersbrewery.com", + "state": "New York", + "street": "638 Lake St" + }, + { + "id": "97d5fb29-b30d-453a-9d47-f0351366f49d", + "name": "Woodcreek Brewing Company", + "brewery_type": "micro", + "address_1": "1400 E Interstate 30 Ste A", + "address_2": null, + "address_3": null, + "city": "Rockwall", + "state_province": "Texas", + "postal_code": "75087-6234", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9725890048", + "website_url": "http://www.woodcreekbrewing.com", + "state": "Texas", + "street": "1400 E Interstate 30 Ste A" + }, + { + "id": "596dfcf5-a68b-4bb1-8870-27b4488f5941", + "name": "Wooden Axe Brewing Co.", + "brewery_type": "micro", + "address_1": "100 Gipps Street", + "address_2": null, + "address_3": null, + "city": "Collingwood", + "state_province": "VIC", + "postal_code": "3066", + "country": "Australia", + "longitude": 144.9910898, + "latitude": -37.8047204, + "phone": "+61 3 9415 1944", + "website_url": "http://www.stompingground.beer/", + "state": "VIC", + "street": "100 Gipps Street" + }, + { + "id": "e9625858-9a23-4aa5-847f-27c06ed5938a", + "name": "Wooden Bear Brewing Co", + "brewery_type": "micro", + "address_1": "21 W North St", + "address_2": null, + "address_3": null, + "city": "Greenfield", + "state_province": "Indiana", + "postal_code": "46140-2171", + "country": "United States", + "longitude": -85.77122303, + "latitude": 39.78597726, + "phone": "3173181221", + "website_url": "http://www.woodenbearbrewing.com", + "state": "Indiana", + "street": "21 W North St" + }, + { + "id": "f0aec029-6d8f-4e95-81ab-ed9292bbbdbe", + "name": "Wooden Cask Brewing Company", + "brewery_type": "micro", + "address_1": "629 York St", + "address_2": null, + "address_3": null, + "city": "Newport", + "state_province": "Kentucky", + "postal_code": "41071-1815", + "country": "United States", + "longitude": -84.49457871, + "latitude": 39.09061257, + "phone": "8592612172", + "website_url": "http://www.woodencask.com", + "state": "Kentucky", + "street": "629 York St" + }, + { + "id": "ae267bbc-95bf-4a45-a8ff-6e7b9a9e88a0", + "name": "Wooden Hill Brewing Company", + "brewery_type": "brewpub", + "address_1": "7421 Bush Lake Road", + "address_2": null, + "address_3": null, + "city": "Edina", + "state_province": "Minnesota", + "postal_code": "55439", + "country": "United States", + "longitude": -93.3596061, + "latitude": 44.86781169, + "phone": "9529609663", + "website_url": "http://www.woodenhillbrewing.com", + "state": "Minnesota", + "street": "7421 Bush Lake Road" + }, + { + "id": "432aa140-cfe4-4a0b-be34-03401efd5a50", + "name": "Wooden Legs Brewing Co", + "brewery_type": "brewpub", + "address_1": "309 5th St Ste 100", + "address_2": null, + "address_3": null, + "city": "Brookings", + "state_province": "South Dakota", + "postal_code": "57006-1963", + "country": "United States", + "longitude": -96.7996148, + "latitude": 44.3104741, + "phone": "6056922337", + "website_url": "http://www.woodenlegsbrewing.com", + "state": "South Dakota", + "street": "309 5th St Ste 100" + }, + { + "id": "13bf0163-6103-4307-a4ed-70309601bc0e", + "name": "Wooden Robot", + "brewery_type": "micro", + "address_1": "1440 S Tryon St Ste 110", + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28203-4263", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7723594993", + "website_url": "http://www.woodenrobotbrewery.com", + "state": "North Carolina", + "street": "1440 S Tryon St Ste 110" + }, + { + "id": "c346bd50-0c32-4700-816e-b8aa8d111630", + "name": "Wooden Robot", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Charlotte", + "state_province": "North Carolina", + "postal_code": "28203-4263", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7723594993", + "website_url": null, + "state": "North Carolina", + "street": null + }, + { + "id": "4df98b72-a45e-414f-a813-909bdc077119", + "name": "Wooden Skiff Beer Co.", + "brewery_type": "contract", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Buffalo", + "state_province": "New York", + "postal_code": "14216-3611", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7062285064", + "website_url": "http://www.woodenskiff.com", + "state": "New York", + "street": null + }, + { + "id": "972dc278-a3a6-4dbd-acd0-4f6c8fc22343", + "name": "Wooden Skiff Beer Company", + "brewery_type": "micro", + "address_1": "141 Island Dr Ste 16", + "address_2": null, + "address_3": null, + "city": "Hilton Head Island", + "state_province": "South Carolina", + "postal_code": "29926-4500", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8432904364", + "website_url": "http://www.woodenskiffbrewing.com", + "state": "South Carolina", + "street": "141 Island Dr Ste 16" + }, + { + "id": "b45e7a44-c0b8-4d09-b766-36c0130a1a8b", + "name": "Woodfour Brewing Company", + "brewery_type": "brewpub", + "address_1": "6780 Depot St Ste 160", + "address_2": null, + "address_3": null, + "city": "Sebastopol", + "state_province": "California", + "postal_code": "95472-3462", + "country": "United States", + "longitude": -122.8211041, + "latitude": 38.4033133, + "phone": "7078233144", + "website_url": null, + "state": "California", + "street": "6780 Depot St Ste 160" + }, + { + "id": "a588faa2-58f8-47cf-b361-07fba19fd3d1", + "name": "WoodGrain Brewing Company", + "brewery_type": "micro", + "address_1": "101 S Phillips Ave Ste 100", + "address_2": null, + "address_3": null, + "city": "Sioux Falls", + "state_province": "South Dakota", + "postal_code": "57104-6719", + "country": "United States", + "longitude": -96.72722416, + "latitude": 43.54728383, + "phone": "6053105316", + "website_url": "http://www.woodgrainbrew.com", + "state": "South Dakota", + "street": "101 S Phillips Ave Ste 100" + }, + { + "id": "2d4ca2bd-4f74-4623-8c93-2564ebd9e2b9", + "name": "Woodhouse Blending & Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Santa Cruz", + "state_province": "California", + "postal_code": "95060-", + "country": "United States", + "longitude": -122.0297182, + "latitude": 36.974201, + "phone": "6198889489", + "website_url": null, + "state": "California", + "street": null + }, + { + "id": "5c63fefc-72aa-4fe0-8bc2-0bf89c54ab04", + "name": "Woodland Empire Ale Craft", + "brewery_type": "micro", + "address_1": "1114 W Front St", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83702-6951", + "country": "United States", + "longitude": -116.2086811, + "latitude": 43.616091, + "phone": "2086029318", + "website_url": "http://www.woodlandempire.com", + "state": "Idaho", + "street": "1114 W Front St" + }, + { + "id": "0ab6358c-dc9b-498f-aea5-255663a02be3", + "name": "Woodland Farm Brewery", + "brewery_type": "micro", + "address_1": "6002 Trenton Rd", + "address_2": null, + "address_3": null, + "city": "Utica", + "state_province": "New York", + "postal_code": "13502-6224", + "country": "United States", + "longitude": -75.212678, + "latitude": 43.148929, + "phone": "3158643051", + "website_url": "http://www.woodlandbeer.com", + "state": "New York", + "street": "6002 Trenton Rd" + }, + { + "id": "a06d2559-f43d-4818-9c51-2b6ed78ded6a", + "name": "Woodland Farms Brewery", + "brewery_type": "micro", + "address_1": "306 Route 1, Suite C", + "address_2": null, + "address_3": null, + "city": "Kittery", + "state_province": "Maine", + "postal_code": "03904", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2079943911", + "website_url": "http://www.wfbrewery.com", + "state": "Maine", + "street": "306 Route 1, Suite C" + }, + { + "id": "0106f90d-19de-4031-bbed-ed732be5a9ae", + "name": "Woodland Republic Brewing & Blending", + "brewery_type": "planning", + "address_1": "412 5th St", + "address_2": null, + "address_3": null, + "city": "Rapid City", + "state_province": "South Dakota", + "postal_code": "57701-2742", + "country": "United States", + "longitude": -103.2244639, + "latitude": 44.08150095, + "phone": null, + "website_url": "http://woodlandrepublicbrewing.com", + "state": "South Dakota", + "street": "412 5th St" + }, + { + "id": "3cf6f95a-0aae-4bfa-8904-f47aeb945414", + "name": "Woodman's Brewery", + "brewery_type": "closed", + "address_1": "195 Peaked Hill Rd", + "address_2": null, + "address_3": null, + "city": "Bristol", + "state_province": "New Hampshire", + "postal_code": "03222-3331", + "country": "United States", + "longitude": -71.70955815, + "latitude": 43.60711645, + "phone": "6037443669", + "website_url": "http://www.facebook.com/woodmansbrewery", + "state": "New Hampshire", + "street": "195 Peaked Hill Rd" + }, + { + "id": "1fe76ab0-0f65-4142-841b-b58672d507bb", + "name": "Woods Bar & Brewery", + "brewery_type": "brewpub", + "address_1": "1701 Telegraph Ave", + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94612-2107", + "country": "United States", + "longitude": -122.2704253, + "latitude": 37.8069575, + "phone": "4155091695", + "website_url": "http://www.woodsbeer.com", + "state": "California", + "street": "1701 Telegraph Ave" + }, + { + "id": "1319b1fc-4d16-4d55-94a7-201b960ddea6", + "name": "Woods Beer Company", + "brewery_type": "brewpub", + "address_1": "1701 Telegraph Ave", + "address_2": null, + "address_3": null, + "city": "Oakland", + "state_province": "California", + "postal_code": "94612-2107", + "country": "United States", + "longitude": -122.2704253, + "latitude": 37.8069575, + "phone": "4158149212", + "website_url": "http://woodsbeer.com", + "state": "California", + "street": "1701 Telegraph Ave" + }, + { + "id": "8a058b3f-9a57-469d-9f1f-c31c3ae064a5", + "name": "Woods Boss Brewing Company", + "brewery_type": "micro", + "address_1": "2210 California St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80205-2824", + "country": "United States", + "longitude": -104.9845374, + "latitude": 39.7509153, + "phone": "9149609225", + "website_url": "http://www.woodsbossbrew.com", + "state": "Colorado", + "street": "2210 California St" + }, + { + "id": "eb859746-2153-4704-bae9-a39ba7e725c7", + "name": "Woods Cabin Brewery", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Yarrow Point", + "state_province": "Washington", + "postal_code": "98004", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4258945483", + "website_url": null, + "state": "Washington", + "street": null + }, + { + "id": "c95c466f-2ae4-4ea0-9c32-1877d686c264", + "name": "Woods Cervecería", + "brewery_type": "brewpub", + "address_1": "3801 18th St", + "address_2": null, + "address_3": null, + "city": "San Francisco", + "state_province": "California", + "postal_code": "94114-2615", + "country": "United States", + "longitude": -122.4285438, + "latitude": 37.761163, + "phone": "4152739295", + "website_url": "http://www.cerveceriasf.com", + "state": "California", + "street": "3801 18th St" + }, + { + "id": "6e9dcd2b-fc79-49e3-8a6c-009a726fd771", + "name": "Woodstacker Beer Company", + "brewery_type": "micro", + "address_1": "850 Elm St", + "address_2": null, + "address_3": null, + "city": "Manchester", + "state_province": "New Hampshire", + "postal_code": "03101", + "country": "United States", + "longitude": -71.46309, + "latitude": 42.99003, + "phone": null, + "website_url": "https://woodstackerbeerco.com/", + "state": "New Hampshire", + "street": "850 Elm St" + }, + { + "id": "763463d6-3129-4590-80ec-a1c05740c49d", + "name": "Woodstock Brewery", + "brewery_type": "brewpub", + "address_1": "252 Albert Road", + "address_2": "Woodstock", + "address_3": null, + "city": "Cape Town", + "state_province": "Western Cape", + "postal_code": "7925", + "country": "South Africa", + "longitude": 18.4491, + "latitude": -33.9272, + "phone": "+27 21 203 3046", + "website_url": "https://woodstockbrewery.co.za/", + "state": "Western Cape", + "street": "252 Albert Road" + }, + { + "id": "a75e7e8a-4f8a-4f67-b33f-7aa2c25b3913", + "name": "Woodstock Brewhouse", + "brewery_type": "brewpub", + "address_1": "123 E Court St", + "address_2": null, + "address_3": null, + "city": "Woodstock", + "state_province": "Virginia", + "postal_code": "22664-1761", + "country": "United States", + "longitude": -78.50414235, + "latitude": 38.88142648, + "phone": "5404592739", + "website_url": "http://www.woodstockbrewhouse.com", + "state": "Virginia", + "street": "123 E Court St" + }, + { + "id": "a83ffb66-54d3-41f7-828a-4cdf2aad7c38", + "name": "Woodstock Brewing", + "brewery_type": "micro", + "address_1": "5581 NY-28", + "address_2": null, + "address_3": null, + "city": "Phoenicia", + "state_province": "New York", + "postal_code": "12464", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8456880054", + "website_url": "http://www.drinkwoodstock.com", + "state": "New York", + "street": "5581 NY-28" + }, + { + "id": "48898f65-cd5b-4a64-b775-d9f8b8fd6627", + "name": "Woodstock Inn Brewery", + "brewery_type": "micro", + "address_1": "135 Main St", + "address_2": null, + "address_3": null, + "city": "North Woodstock", + "state_province": "New Hampshire", + "postal_code": "03262", + "country": "United States", + "longitude": -71.6865275, + "latitude": 44.0316675, + "phone": "6037453951", + "website_url": "http://www.woodstockinnnh.com", + "state": "New Hampshire", + "street": "135 Main St" + }, + { + "id": "e5eb754a-eb95-4a9f-81f4-3f0a294f2c3c", + "name": "Woodward Avenue Brewers", + "brewery_type": "brewpub", + "address_1": "22646 Woodward Ave", + "address_2": null, + "address_3": null, + "city": "Ferndale", + "state_province": "Michigan", + "postal_code": "48220-1810", + "country": "United States", + "longitude": -83.13333109, + "latitude": 42.4596444, + "phone": "2485463696", + "website_url": "http://www.thewabsite.com", + "state": "Michigan", + "street": "22646 Woodward Ave" + }, + { + "id": "9ebe71f4-6a99-4b06-8f89-f9ecfe891f44", + "name": "Woodwright Brewing Company", + "brewery_type": "micro", + "address_1": "985 Douglas Ave", + "address_2": null, + "address_3": null, + "city": "Dunedin", + "state_province": "Florida", + "postal_code": "34698-4945", + "country": "United States", + "longitude": -82.78780975, + "latitude": 28.01539972, + "phone": "7272388717", + "website_url": null, + "state": "Florida", + "street": "985 Douglas Ave" + }, + { + "id": "47592661-12ba-445d-8b50-9d8e05bf1f28", + "name": "Woody's Brewery", + "brewery_type": "brewpub", + "address_1": "1257 Oregon St", + "address_2": null, + "address_3": null, + "city": "Redding", + "state_province": "California", + "postal_code": "96001-0414", + "country": "United States", + "longitude": -122.3953367, + "latitude": 40.585948, + "phone": "5307681034", + "website_url": "http://www.woodysbrewing.com", + "state": "California", + "street": "1257 Oregon St" + }, + { + "id": "2f01167b-ba6c-45f1-93ec-429ec005fda2", + "name": "Woolgoolga Brewing Co.", + "brewery_type": "micro", + "address_1": "7 Willis Road", + "address_2": null, + "address_3": null, + "city": "Woolgoolga", + "state_province": "NSW", + "postal_code": "2456", + "country": "Australia", + "longitude": 153.1964034, + "latitude": -30.1263829, + "phone": "+61 2 6654 0929", + "website_url": "http://www.woopibrewingco.com.au/", + "state": "NSW", + "street": "7 Willis Road" + }, + { + "id": "b25e5a65-599d-4b3b-ae3e-3bad05812a7e", + "name": "Woolshed Brewery", + "brewery_type": "micro", + "address_1": "65 Wilkinson Road", + "address_2": null, + "address_3": null, + "city": "Murtho", + "state_province": "SA", + "postal_code": "5340", + "country": "Australia", + "longitude": 140.835086, + "latitude": -34.0519086, + "phone": "+61 8 8595 8188", + "website_url": "http://www.wilkadene.com.au/", + "state": "SA", + "street": "65 Wilkinson Road" + }, + { + "id": "021e9dd7-a7d2-4424-ac53-b0a9fdb292b9", + "name": "Woolstore Brewery", + "brewery_type": "micro", + "address_1": "36 Margaret Street", + "address_2": null, + "address_3": null, + "city": "Mount Gambier", + "state_province": "SA", + "postal_code": "5290", + "country": "Australia", + "longitude": 140.7742933, + "latitude": -37.8311611, + "phone": "+61 8 7704 2280", + "website_url": "https://woolstorebrewery.com.au/", + "state": "SA", + "street": "36 Margaret Street" + }, + { + "id": "5a81d70c-7d2b-4f40-b878-e8c4e147ce92", + "name": "Wooly Pig Farm Brewery", + "brewery_type": "micro", + "address_1": "23631 Township Road 167", + "address_2": null, + "address_3": null, + "city": "Fresno", + "state_province": "Ohio", + "postal_code": "43824-9704", + "country": "United States", + "longitude": -81.73572372, + "latitude": 40.2914144, + "phone": "7406935050", + "website_url": "http://www.woolypigfarmbrewery.com", + "state": "Ohio", + "street": "23631 Township Road 167" + }, + { + "id": "fd99a363-f02a-4197-8ffc-bd7031ab9b45", + "name": "WopsHops Brewing Company", + "brewery_type": "brewpub", + "address_1": "419 Sanford Ave", + "address_2": null, + "address_3": null, + "city": "Sanford", + "state_province": "Florida", + "postal_code": "32771-1970", + "country": "United States", + "longitude": -81.26485422, + "latitude": 28.80875529, + "phone": "4078787819", + "website_url": "http://www.wopshopsbrewing.com", + "state": "Florida", + "street": "419 Sanford Ave" + }, + { + "id": "a8c90d87-a9e7-45b5-a8db-c58ed9780676", + "name": "Working Class Brewery", + "brewery_type": "micro", + "address_1": "17448 Lorain Ave", + "address_2": null, + "address_3": null, + "city": "Cleveland", + "state_province": "Ohio", + "postal_code": "44111-4028", + "country": "United States", + "longitude": -81.820461, + "latitude": 41.44993, + "phone": "2164175112", + "website_url": "http://www.workingclassbrewery.com", + "state": "Ohio", + "street": "17448 Lorain Ave" + }, + { + "id": "5f057cf6-831b-43d0-911b-1f95b54b1b21", + "name": "Working Draft Beer Company", + "brewery_type": "micro", + "address_1": "1129 E Wilson St", + "address_2": null, + "address_3": null, + "city": "Madison", + "state_province": "Wisconsin", + "postal_code": "53703-3758", + "country": "United States", + "longitude": -89.3652802, + "latitude": 43.0833378, + "phone": null, + "website_url": "http://www.workingdraftbeer.com", + "state": "Wisconsin", + "street": "1129 E Wilson St" + }, + { + "id": "52dc80a4-9171-4589-9257-60f04cece644", + "name": "Working Man Brewing Co", + "brewery_type": "closed", + "address_1": "5542 Brisa St Ste F", + "address_2": null, + "address_3": null, + "city": "Livermore", + "state_province": "California", + "postal_code": "94550-2524", + "country": "United States", + "longitude": -121.7251276, + "latitude": 37.69755354, + "phone": "9252699622", + "website_url": "http://www.workingmanbrewing.com", + "state": "California", + "street": "5542 Brisa St Ste F" + }, + { + "id": "a7aeca98-8bf2-430e-9579-a09ee6bb8e0e", + "name": "Workshop Brewing Co", + "brewery_type": "brewpub", + "address_1": "221 Garland St Ste A", + "address_2": null, + "address_3": null, + "city": "Traverse City", + "state_province": "Michigan", + "postal_code": "49684-2372", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "12314218966", + "website_url": "http://www.traversecityworkshop.com", + "state": "Michigan", + "street": "221 Garland St Ste A" + }, + { + "id": "7bbe8ee2-c1ed-458f-923a-93d6e2dea8db", + "name": "World's End Brewpub", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Grand Lake", + "state_province": "Colorado", + "postal_code": "80447", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "3035515637", + "website_url": "http://www.ourplacebrewhaus.com", + "state": "Colorado", + "street": null + }, + { + "id": "9ee6e94f-60fb-4770-b250-6801cec8c770", + "name": "Wormtown Brewery", + "brewery_type": "micro", + "address_1": "72 Shrewsbury St", + "address_2": null, + "address_3": null, + "city": "Worcester", + "state_province": "Massachusetts", + "postal_code": "01604-4625", + "country": "United States", + "longitude": -71.7912262, + "latitude": 42.2634992, + "phone": "7742391555", + "website_url": "http://www.wormtownbrewery.com", + "state": "Massachusetts", + "street": "72 Shrewsbury St" + }, + { + "id": "3ece8bec-fdbd-43cb-a063-363b3203c1e2", + "name": "Wort Hog Brewing Company LLC", + "brewery_type": "brewpub", + "address_1": "50A S 3rd St", + "address_2": null, + "address_3": null, + "city": "Warrenton", + "state_province": "Virginia", + "postal_code": "20186-3340", + "country": "United States", + "longitude": -77.7951382, + "latitude": 38.7117948, + "phone": "5403002739", + "website_url": "http://www.worthogbreweryllc.com", + "state": "Virginia", + "street": "50A S 3rd St" + }, + { + "id": "0928f004-3195-40fc-a6e9-a985df23768b", + "name": "Worth Brewing Co", + "brewery_type": "brewpub", + "address_1": "835 Central Ave", + "address_2": null, + "address_3": null, + "city": "Northwood", + "state_province": "Iowa", + "postal_code": "50459-1519", + "country": "United States", + "longitude": -93.219581, + "latitude": 43.444038, + "phone": "6413249899", + "website_url": "http://www.worthbrewing.com", + "state": "Iowa", + "street": "835 Central Ave" + }, + { + "id": "e55b790d-78bd-4014-8157-ed339067b014", + "name": "Worthy Brewing Company", + "brewery_type": "micro", + "address_1": "495 NE Bellevue Dr", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97701-7412", + "country": "United States", + "longitude": -121.2603915, + "latitude": 44.0553542, + "phone": "5416394772", + "website_url": "http://www.worthybrewing.com", + "state": "Oregon", + "street": "495 NE Bellevue Dr" + }, + { + "id": "68d84faa-3c71-4fa0-b643-6d4dc8a12f86", + "name": "Wren House Brewing Company", + "brewery_type": "micro", + "address_1": "2125 N 24th St", + "address_2": null, + "address_3": null, + "city": "Phoenix", + "state_province": "Arizona", + "postal_code": "85008-2713", + "country": "United States", + "longitude": -112.0301125, + "latitude": 33.516633, + "phone": "6022449184", + "website_url": "http://www.wrenhousebrewing.com", + "state": "Arizona", + "street": "2125 N 24th St" + }, + { + "id": "2ae64f6a-c243-4554-9000-0cf70b7d220a", + "name": "Wrightsville Beach Brewery", + "brewery_type": "brewpub", + "address_1": "6201 Oleander Dr", + "address_2": null, + "address_3": null, + "city": "Wilmington", + "state_province": "North Carolina", + "postal_code": "28403-3535", + "country": "United States", + "longitude": -77.836851, + "latitude": 34.210452, + "phone": "9102564938", + "website_url": "http://www.wbbeer.com", + "state": "North Carolina", + "street": "6201 Oleander Dr" + }, + { + "id": "882efb69-a366-4fb2-a4c6-2062a7920139", + "name": "WT Brews LLC", + "brewery_type": "micro", + "address_1": "3 W Genesee St", + "address_2": null, + "address_3": null, + "city": "Baldwinsville", + "state_province": "New York", + "postal_code": "13027-1104", + "country": "United States", + "longitude": -76.33288571, + "latitude": 43.15855314, + "phone": "3158573266", + "website_url": "http://www.wtbrews.com", + "state": "New York", + "street": "3 W Genesee St" + }, + { + "id": "1f10ffbf-b7bc-4704-bc6e-8101de47917f", + "name": "Wyndridge Farm Brewing", + "brewery_type": "brewpub", + "address_1": "885 S Pleasant Ave", + "address_2": null, + "address_3": null, + "city": "Dallastown", + "state_province": "Pennsylvania", + "postal_code": "17313-9650", + "country": "United States", + "longitude": -76.644864, + "latitude": 39.893878, + "phone": "7172449900", + "website_url": "http://www.wyndridge.com", + "state": "Pennsylvania", + "street": "885 S Pleasant Ave" + }, + { + "id": "e1daa6b8-1bfe-4833-bb30-908c58eb8ec2", + "name": "Wynkoop Brewing Co", + "brewery_type": "brewpub", + "address_1": "1634 18th St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80202-1212", + "country": "United States", + "longitude": -104.9984831, + "latitude": 39.7535446, + "phone": "3032972700", + "website_url": "http://www.wynkoop.com", + "state": "Colorado", + "street": "1634 18th St" + }, + { + "id": "87003934-0deb-4c4e-bc31-a6fcff7943d2", + "name": "Wynwood Brewing Company", + "brewery_type": "micro", + "address_1": "565 NW 24th St", + "address_2": null, + "address_3": null, + "city": "Miami", + "state_province": "Florida", + "postal_code": "33127-4327", + "country": "United States", + "longitude": -80.2044925, + "latitude": 25.8003759, + "phone": "3056405043", + "website_url": "http://www.wynwoodbrewing.com", + "state": "Florida", + "street": "565 NW 24th St" + }, + { + "id": "a686b7b6-d94f-42a4-ad0e-f60db23011e7", + "name": "WYOld West Brewing Company", + "brewery_type": "brewpub", + "address_1": "221 N Bent St", + "address_2": null, + "address_3": null, + "city": "Powell", + "state_province": "Wyoming", + "postal_code": "82435-2335", + "country": "United States", + "longitude": -108.7574813, + "latitude": 44.75451993, + "phone": "3077646200", + "website_url": "http://www.wyoldwest.com", + "state": "Wyoming", + "street": "221 N Bent St" + }, + { + "id": "fc80b53a-b5b3-47ce-8f23-3e1b3a61a8e4", + "name": "WYOld West Taproom", + "brewery_type": "micro", + "address_1": "1022 13th St", + "address_2": null, + "address_3": null, + "city": "Cody", + "state_province": "Wyoming", + "postal_code": "82414-3631", + "country": "United States", + "longitude": -109.06243705508, + "latitude": 44.538910366924, + "phone": "3075863550", + "website_url": "http://www.wyoldwest.com", + "state": "Wyoming", + "street": "1022 13th St" + }, + { + "id": "7d77be76-ec7f-416d-a4c0-d9db268fe2dc", + "name": "Wyoming Territory Brewing / Eric Bischoff Family Brewing", + "brewery_type": "closed", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Cody", + "state_province": "Wyoming", + "postal_code": "82414", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.buffalobillcodybeer.com", + "state": "Wyoming", + "street": null + }, + { + "id": "d2aeedba-6cfe-493d-b393-f32ae8986490", + "name": "Xarlie", + "brewery_type": "brewpub", + "address_1": "IC2 ­ Lagoa", + "address_2": "Lugar de Barracão", + "address_3": null, + "city": "Colmeias", + "state_province": "Leiria", + "postal_code": "2420-195", + "country": "Portugal", + "longitude": 39.828582682961, + "latitude": -8.7216317590372, + "phone": "+351 244 004 021", + "website_url": "https://xarlie.pt", + "state": "Leiria", + "street": "IC2 ­ Lagoa" + }, + { + "id": "415a40f3-4590-49ad-93fc-e68f58442b40", + "name": "Xicha Brewing Co.", + "brewery_type": "brewpub", + "address_1": "576 Patterson Street NW, Suite 140", + "address_2": null, + "address_3": null, + "city": "Salem", + "state_province": "Oregon", + "postal_code": "97304", + "country": "United States", + "longitude": -123.0552621, + "latitude": 44.94650388, + "phone": "5039908292", + "website_url": "https://www.xichabrewing.com", + "state": "Oregon", + "street": "576 Patterson Street NW, Suite 140" + }, + { + "id": "2d5d6ee4-8f8d-4235-9015-75d2df768cfa", + "name": "Ximix Craft Exploration", + "brewery_type": "closed", + "address_1": "13723 1/2 Harvard Pl", + "address_2": null, + "address_3": null, + "city": "Gardena", + "state_province": "California", + "postal_code": "90249-2527", + "country": "United States", + "longitude": -118.3076153, + "latitude": 33.90628796, + "phone": "7603332351", + "website_url": "http://www.ximixcraft.com", + "state": "California", + "street": "13723 1/2 Harvard Pl" + }, + { + "id": "32e48cef-1c43-4445-bba4-d8d5c7e626dd", + "name": "Y Bridge Brewing Company", + "brewery_type": "micro", + "address_1": "1417 Linden Ave", + "address_2": null, + "address_3": null, + "city": "Zanesville", + "state_province": "Ohio", + "postal_code": "43701", + "country": "United States", + "longitude": -82.00422961, + "latitude": 39.95603429, + "phone": "7408684265", + "website_url": null, + "state": "Ohio", + "street": "1417 Linden Ave" + }, + { + "id": "ed9f39d7-92a6-43a1-b243-9faabe362ee5", + "name": "Yachats Brewing", + "brewery_type": "brewpub", + "address_1": "PO Box 308", + "address_2": null, + "address_3": null, + "city": "Yachats", + "state_province": "Oregon", + "postal_code": "97498-0308", + "country": "United States", + "longitude": -124.1039247, + "latitude": 44.31213446, + "phone": null, + "website_url": null, + "state": "Oregon", + "street": "PO Box 308" + }, + { + "id": "f8991c88-0d32-48b0-b6bc-bd73161d1336", + "name": "Yakima Craft Brewing Co", + "brewery_type": "micro", + "address_1": "2920 River Rd Ste 6", + "address_2": null, + "address_3": null, + "city": "Yakima", + "state_province": "Washington", + "postal_code": "98902-7332", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5096547357", + "website_url": "http://www.yakimacraftbrewing.com", + "state": "Washington", + "street": "2920 River Rd Ste 6" + }, + { + "id": "9c27cd66-3d4a-4a63-96a5-5cf8106aa85d", + "name": "Yakima Valley Hops", + "brewery_type": "micro", + "address_1": "702 N 1st Ave Ste D", + "address_2": null, + "address_3": null, + "city": "Yakima", + "state_province": "Washington", + "postal_code": "98902-2121", + "country": "United States", + "longitude": -120.51422085779, + "latitude": 46.610196273663, + "phone": "2086494677", + "website_url": null, + "state": "Washington", + "street": "702 N 1st Ave Ste D" + }, + { + "id": "0fd7c528-fc25-44a0-8895-61b07138ebf3", + "name": "Yalobusha Brewing Company", + "brewery_type": "micro", + "address_1": "102 S Main St", + "address_2": null, + "address_3": null, + "city": "Water Valley", + "state_province": "Mississippi", + "postal_code": "38965-2906", + "country": "United States", + "longitude": -89.6366568, + "latitude": 34.1422633, + "phone": null, + "website_url": "http://www.yalobrew.com", + "state": "Mississippi", + "street": "102 S Main St" + }, + { + "id": "ddd1e565-b732-4d50-832c-ac98d056c460", + "name": "Yampa Valley Brewing Company", + "brewery_type": "micro", + "address_1": "106 E Jefferson Ave Unit B", + "address_2": null, + "address_3": null, + "city": "Hayden", + "state_province": "Colorado", + "postal_code": "81639", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9702768014", + "website_url": "http://www.yampavalleybrew.com", + "state": "Colorado", + "street": "106 E Jefferson Ave Unit B" + }, + { + "id": "c5372484-366c-45b2-81d9-bf141c9587aa", + "name": "Yankee Tank Brewing Company", + "brewery_type": "micro", + "address_1": "807 E 23rd St Ste J", + "address_2": null, + "address_3": null, + "city": "Lawrence", + "state_province": "Kansas", + "postal_code": "66046-4952", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7852339333", + "website_url": "http://yankeetankbrewing.com", + "state": "Kansas", + "street": "807 E 23rd St Ste J" + }, + { + "id": "ccc50a1c-991c-44c3-aff9-827c505b927d", + "name": "Yard Kings Brewing Co.", + "brewery_type": "micro", + "address_1": "32 Accolade Avenue", + "address_2": null, + "address_3": null, + "city": "Morisset", + "state_province": "NSW", + "postal_code": "2264", + "country": "Australia", + "longitude": 151.4723205, + "latitude": -33.1223106, + "phone": "+61 2 4072 3400", + "website_url": "http://yardkingsbrewingco.com.au/", + "state": "NSW", + "street": "32 Accolade Avenue" + }, + { + "id": "a125dc73-3d86-477e-ab26-b8de21f7ecce", + "name": "Yard Owl Craft Brewery", + "brewery_type": "brewpub", + "address_1": "19 Osprey Ln", + "address_2": null, + "address_3": null, + "city": "Gardiner", + "state_province": "New York", + "postal_code": "12525-5339", + "country": "United States", + "longitude": -74.14716916, + "latitude": 41.69154658, + "phone": "8456338576", + "website_url": "http://www.yardowlcraftbrewery.com", + "state": "New York", + "street": "19 Osprey Ln" + }, + { + "id": "1a86c24c-f5bf-4aad-90a2-71db07f18b6c", + "name": "Yards Brewing Co", + "brewery_type": "regional", + "address_1": "901 N Delaware Ave", + "address_2": null, + "address_3": null, + "city": "Philadelphia", + "state_province": "Pennsylvania", + "postal_code": "19123-3110", + "country": "United States", + "longitude": -75.1324016, + "latitude": 39.9655175, + "phone": "2156342600", + "website_url": "http://www.yardsbrewing.com", + "state": "Pennsylvania", + "street": "901 N Delaware Ave" + }, + { + "id": "b39f4d9c-8aa9-48d9-9c07-e26da7557ea3", + "name": "Yaxx Brewing Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Waco", + "state_province": "Texas", + "postal_code": "76712-3284", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8014730669", + "website_url": null, + "state": "Texas", + "street": null + }, + { + "id": "dfad1416-6baf-4bdd-9001-99a54fee5870", + "name": "Yazoo Brewing Co", + "brewery_type": "regional", + "address_1": "910 Division St", + "address_2": null, + "address_3": null, + "city": "Nashville", + "state_province": "Tennessee", + "postal_code": "37203-4111", + "country": "United States", + "longitude": -86.78355595, + "latitude": 36.15090195, + "phone": "6158914649", + "website_url": "http://www.yazoobrew.com", + "state": "Tennessee", + "street": "910 Division St" + }, + { + "id": "0c27013d-74f0-4bc5-93e6-c95fa605ea81", + "name": "Ye Olde Brothers Brewery", + "brewery_type": "brewpub", + "address_1": "4458 Highway 87", + "address_2": null, + "address_3": null, + "city": "Navarre", + "state_province": "Florida", + "postal_code": "32566-9658", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8506841495", + "website_url": "http://www.yeoldbrothersbrewery.com", + "state": "Florida", + "street": "4458 Highway 87" + }, + { + "id": "81e2a173-e2d8-4238-9891-4d4a1f3b2175", + "name": "Yeah Drinks", + "brewery_type": "micro", + "address_1": "53 Anderson Street", + "address_2": null, + "address_3": null, + "city": "Yarraville", + "state_province": "VIC", + "postal_code": "3013", + "country": "Australia", + "longitude": 144.8900545, + "latitude": -37.8167245, + "phone": "+61 3 7037 8040", + "website_url": "http://hopheads.com.au/", + "state": "VIC", + "street": "53 Anderson Street" + }, + { + "id": "d6e5a1fc-bd8e-4950-92f9-ed929736df99", + "name": "Yeastie Boys", + "brewery_type": "micro", + "address_1": "18 Translink Drive", + "address_2": null, + "address_3": null, + "city": "Keilor Park", + "state_province": "VIC", + "postal_code": "3042", + "country": "Australia", + "longitude": 144.848697, + "latitude": -37.7224426, + "phone": "+61 3 9336 7077", + "website_url": "https://www.thebeerfactory.net.au/?utm_source=Google&utm_medium=Organic&utm_campaign=GMB", + "state": "VIC", + "street": "18 Translink Drive" + }, + { + "id": "77cda0f6-f4c6-499c-a231-2102c21438aa", + "name": "Yee-Haw Brewing, LLC.", + "brewery_type": "micro", + "address_1": "126 Buffalo St Ste 30", + "address_2": null, + "address_3": null, + "city": "Johnson City", + "state_province": "Tennessee", + "postal_code": "37604-5788", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4233289192", + "website_url": null, + "state": "Tennessee", + "street": "126 Buffalo St Ste 30" + }, + { + "id": "0480da50-7ce0-40c3-a95f-66411e083c65", + "name": "Yellow Bridge Brewing Co.", + "brewery_type": "micro", + "address_1": "2266 Route 66", + "address_2": null, + "address_3": null, + "city": "Delmont", + "state_province": "Pennsylvania", + "postal_code": "15626-1461", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7243003922", + "website_url": "http://www.yellowbridgebrewing.com", + "state": "Pennsylvania", + "street": "2266 Route 66" + }, + { + "id": "40398e9b-5e8a-4965-b30a-62be8aafd265", + "name": "Yellow Matter", + "brewery_type": "micro", + "address_1": "118 Marion Road", + "address_2": "unit 18/108", + "address_3": null, + "city": "Brooklyn Park", + "state_province": "SA", + "postal_code": "5032", + "country": "Australia", + "longitude": 138.5524716, + "latitude": -34.9352989, + "phone": "+61 8 8234 0945", + "website_url": "https://yellowmatter.beer/", + "state": "SA", + "street": "118 Marion Road" + }, + { + "id": "5be46e78-dd4c-44c7-9164-6aa1f502af37", + "name": "Yellow Springs Brewery", + "brewery_type": "micro", + "address_1": "305 N Walnut St Ste B", + "address_2": null, + "address_3": null, + "city": "Yellow Springs", + "state_province": "Ohio", + "postal_code": "45387-2059", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9377670222", + "website_url": "http://www.yellowspringsbrewery.com", + "state": "Ohio", + "street": "305 N Walnut St Ste B" + }, + { + "id": "2a1157b5-b257-4b23-95df-a565b26da285", + "name": "Yellow Sun Brewing Company", + "brewery_type": "micro", + "address_1": "127 Trade St", + "address_2": null, + "address_3": null, + "city": "Rutherfordton", + "state_province": "North Carolina", + "postal_code": "28139-2849", + "country": "United States", + "longitude": -81.9581017, + "latitude": 35.3666796, + "phone": "8283750089", + "website_url": "http://www.yellowsunbrewing.com", + "state": "North Carolina", + "street": "127 Trade St" + }, + { + "id": "d80ec1ea-80e9-4060-a0d0-188bc571f06e", + "name": "YellowBelly Beer", + "brewery_type": "micro", + "address_1": "Whiterock Hill", + "address_2": "Pembrokestown", + "address_3": null, + "city": "Wexford", + "state_province": "Wexford", + "postal_code": "Y35 HW27", + "country": "Ireland", + "longitude": -6.5241152, + "latitude": 52.3231087, + "phone": "353539142555", + "website_url": "http://www.yellowbellybeer.ie/", + "state": "Wexford", + "street": "Whiterock Hill" + }, + { + "id": "17bb95d7-d3d7-4b8c-bbdd-f18104f8a815", + "name": "Yellowhammer Brewery", + "brewery_type": "micro", + "address_1": "2600 Clinton Ave W", + "address_2": null, + "address_3": null, + "city": "Huntsville", + "state_province": "Alabama", + "postal_code": "35805-3046", + "country": "United States", + "longitude": -86.5932014, + "latitude": 34.7277523, + "phone": "2569755950", + "website_url": "http://www.yellowhammerbrewery.com", + "state": "Alabama", + "street": "2600 Clinton Ave W" + }, + { + "id": "7b0072f2-5fe0-463b-b4db-a8876e7723cd", + "name": "Yellowstone Valley Brewing Co.", + "brewery_type": "micro", + "address_1": "2123B 1st Ave N", + "address_2": null, + "address_3": null, + "city": "Billings", + "state_province": "Montana", + "postal_code": "59101-2404", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "4062450918", + "website_url": "http://www.yellowstonevalleybrew.com", + "state": "Montana", + "street": "2123B 1st Ave N" + }, + { + "id": "d9f32edb-f4cf-4ab1-9bdd-cb81ec08e3cf", + "name": "Yenda Brewing Company", + "brewery_type": "large", + "address_1": "1471 Wakley Road", + "address_2": null, + "address_3": null, + "city": "Yenda", + "state_province": "NSW", + "postal_code": "2681", + "country": "Australia", + "longitude": 146.2158975, + "latitude": -34.2460053, + "phone": null, + "website_url": "http://yendabeer.com.au/", + "state": "NSW", + "street": "1471 Wakley Road" + }, + { + "id": "335c88c9-2c59-4c91-8ada-ed98ade7777d", + "name": "YEPP Brewing Co.", + "brewery_type": "micro", + "address_1": "Macadamia Drive", + "address_2": null, + "address_3": null, + "city": "Hidden Valley", + "state_province": "QLD", + "postal_code": "4703", + "country": "Australia", + "longitude": 150.7067457, + "latitude": -23.1635044, + "phone": "+61 423 731 102", + "website_url": "http://www.yeppbrewing.com.au/", + "state": "QLD", + "street": "Macadamia Drive" + }, + { + "id": "f0098c6f-401d-4be1-9bb9-5e1de4d84673", + "name": "Yergey Brewing", + "brewery_type": "micro", + "address_1": "518B Bank St", + "address_2": null, + "address_3": null, + "city": "Emmaus", + "state_province": "Pennsylvania", + "postal_code": "18049-2008", + "country": "United States", + "longitude": -75.49366592, + "latitude": 40.53379322, + "phone": "6104172804", + "website_url": "http://yergeybrewing.com", + "state": "Pennsylvania", + "street": "518B Bank St" + }, + { + "id": "df9c7974-6add-4917-8536-6a6f6de0a79a", + "name": "Yes Brewing", + "brewery_type": "micro", + "address_1": "609 Main St", + "address_2": null, + "address_3": null, + "city": "Westbrook", + "state_province": "Maine", + "postal_code": "04092-4143", + "country": "United States", + "longitude": -70.35776285, + "latitude": 43.67838435, + "phone": "2075910633", + "website_url": "http://www.yesbrewing.com", + "state": "Maine", + "street": "609 Main St" + }, + { + "id": "d6920448-7345-491b-a30b-7b1f42006ada", + "name": "Yeti Restaurant", + "brewery_type": "brewpub", + "address_1": "190 Farmers Ln", + "address_2": null, + "address_3": null, + "city": "Santa Rosa", + "state_province": "California", + "postal_code": "95405-4703", + "country": "United States", + "longitude": -122.688361, + "latitude": 38.44971636, + "phone": "7075219608", + "website_url": "http://www.yetirestaurant.com", + "state": "California", + "street": "190 Farmers Ln" + }, + { + "id": "430a9947-db3e-441d-b4bd-58fca448bd20", + "name": "Yetters Brewing Company", + "brewery_type": "brewpub", + "address_1": "1011 9th Ave", + "address_2": null, + "address_3": null, + "city": "Greeley", + "state_province": "Colorado", + "postal_code": "80631", + "country": "United States", + "longitude": -104.6929308, + "latitude": 40.4221023, + "phone": "9703961606", + "website_url": "https://yettersbrewingcompany.com/", + "state": "Colorado", + "street": "1011 9th Ave" + }, + { + "id": "789304df-b94e-489b-a553-66c841ed8de6", + "name": "YNG GNS Brewery", + "brewery_type": "micro", + "address_1": "Unit 12 Ithala Industrial Park", + "address_2": " 20 Flanders Drive", + "address_3": null, + "city": "Mount Edgecombe", + "state_province": "KwaZulu-Natal", + "postal_code": "4300", + "country": "South Africa", + "longitude": 31.0253, + "latitude": -29.7269, + "phone": "+27 63 949 9779", + "website_url": "https://www.ynggns.com/", + "state": "KwaZulu-Natal", + "street": "Unit 12 Ithala Industrial Park" + }, + { + "id": "bb0fca35-1169-4881-b032-27ca29deaced", + "name": "Yolo Brewing Co", + "brewery_type": "micro", + "address_1": "1520 Terminal St", + "address_2": null, + "address_3": null, + "city": "West Sacramento", + "state_province": "California", + "postal_code": "95691-3814", + "country": "United States", + "longitude": -121.5419585, + "latitude": 38.56942885, + "phone": "9163797585", + "website_url": "http://www.yolobrew.com", + "state": "California", + "street": "1520 Terminal St" + }, + { + "id": "7470dd0b-f925-4fb2-87a7-3007fba745ad", + "name": "Yonkers Brewing Co", + "brewery_type": "micro", + "address_1": "92 Main St", + "address_2": null, + "address_3": null, + "city": "Yonkers", + "state_province": "New York", + "postal_code": "10701-7065", + "country": "United States", + "longitude": -73.9029331, + "latitude": 40.9345744, + "phone": "9143915805", + "website_url": "http://www.yonkersbrewing.com", + "state": "New York", + "street": "92 Main St" + }, + { + "id": "aa43f7b4-5ece-4fd5-9dac-9eb81124ddf0", + "name": "York Beach Beer Company", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "York", + "state_province": "Maine", + "postal_code": "03902", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Maine", + "street": null + }, + { + "id": "f39e0ae5-07cc-45b7-bece-11e390807652", + "name": "York Chester Brewing Company", + "brewery_type": "micro", + "address_1": "1500 River Dr Ste 250", + "address_2": null, + "address_3": null, + "city": "Belmont", + "state_province": "North Carolina", + "postal_code": "28012-3587", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7047555104", + "website_url": "http://www.yorkchesterbrew.com", + "state": "North Carolina", + "street": "1500 River Dr Ste 250" + }, + { + "id": "cfbd4b1b-f848-4f39-9525-9c2c607e7562", + "name": "Yorkholo Brewing Co", + "brewery_type": "brewpub", + "address_1": "19 N Main St", + "address_2": null, + "address_3": null, + "city": "Mansfield", + "state_province": "Pennsylvania", + "postal_code": "16933-1403", + "country": "United States", + "longitude": -77.07838707, + "latitude": 41.80758509, + "phone": "5704045805", + "website_url": "http://www.yorkholobrewing.com", + "state": "Pennsylvania", + "street": "19 N Main St" + }, + { + "id": "76b3e4f1-7075-4881-ac9a-f5462fb44dca", + "name": "Yorkshire Square Brewing Co.", + "brewery_type": "micro", + "address_1": "1109 Van Ness Ave", + "address_2": null, + "address_3": null, + "city": "Torrance", + "state_province": "California", + "postal_code": "90501-2236", + "country": "United States", + "longitude": -118.3163507, + "latitude": 33.83720085, + "phone": "4243765115", + "website_url": "http://www.yorkshiresquarebrewery.com", + "state": "California", + "street": "1109 Van Ness Ave" + }, + { + "id": "39070e4c-ae87-4d72-af3e-62ec19c35039", + "name": "Young Buck Brewing", + "brewery_type": "closed", + "address_1": "154 S Madison St", + "address_2": null, + "address_3": null, + "city": "Spokane", + "state_province": "Washington", + "postal_code": "99201-4542", + "country": "United States", + "longitude": -117.4281651, + "latitude": 47.655248, + "phone": "5092703306", + "website_url": "http://www.youngbuckbrewing.com", + "state": "Washington", + "street": "154 S Madison St" + }, + { + "id": "66371c8d-55a5-4f6d-bfac-f1643fd1c087", + "name": "Young Giants Brewing Company", + "brewery_type": "micro", + "address_1": "13 Runway Drive", + "address_2": "Unit 6", + "address_3": null, + "city": "Marcoola", + "state_province": "QLD", + "postal_code": "4564", + "country": "Australia", + "longitude": 153.0849779, + "latitude": -26.6093621, + "phone": null, + "website_url": "http://www.younggiantsbrewing.com.au/", + "state": "QLD", + "street": "13 Runway Drive" + }, + { + "id": "c69cd79a-5218-4951-b0d9-fc58da52ae6c", + "name": "Young Henrys", + "brewery_type": "micro", + "address_1": "76 Wilford Street", + "address_2": null, + "address_3": null, + "city": "Newtown", + "state_province": "NSW", + "postal_code": "2042", + "country": "Australia", + "longitude": 151.1743896, + "latitude": -33.8981627, + "phone": "+61 2 9519 0048", + "website_url": "http://www.younghenrys.com/", + "state": "NSW", + "street": "76 Wilford Street" + }, + { + "id": "87579198-9672-4c2b-a15b-b664f716cca8", + "name": "Young Henrys Brewery", + "brewery_type": "micro", + "address_1": "76 Wilford Street", + "address_2": null, + "address_3": null, + "city": "Newtown", + "state_province": "NSW", + "postal_code": "2042", + "country": "Australia", + "longitude": 151.1743896, + "latitude": -33.8981627, + "phone": "+61 2 9519 0048", + "website_url": "http://www.younghenrys.com/", + "state": "NSW", + "street": "76 Wilford Street" + }, + { + "id": "336354db-c461-4f32-9cd1-3f7f90b57466", + "name": "Young Henrys Brewing Co.", + "brewery_type": "micro", + "address_1": "76 Wilford Street", + "address_2": null, + "address_3": null, + "city": "Newtown", + "state_province": "NSW", + "postal_code": "2042", + "country": "Australia", + "longitude": 151.1743896, + "latitude": -33.8981627, + "phone": "+61 2 9519 0048", + "website_url": "http://www.younghenrys.com/", + "state": "NSW", + "street": "76 Wilford Street" + }, + { + "id": "202233a3-1731-405f-b344-8d7bb8975a1c", + "name": "Young Lion Brewing Co", + "brewery_type": "micro", + "address_1": "24 Lakeshore Dr", + "address_2": null, + "address_3": null, + "city": "Canandaigua", + "state_province": "New York", + "postal_code": "14424-2333", + "country": "United States", + "longitude": -77.26938995, + "latitude": 42.87560967, + "phone": "5852034337", + "website_url": "http://www.younglionbrewing.com", + "state": "New York", + "street": "24 Lakeshore Dr" + }, + { + "id": "8db23191-1806-4132-b601-6699e382b565", + "name": "Young Veterans Brewing Company", + "brewery_type": "micro", + "address_1": "2505 Horse Pasture Rd Ste 104", + "address_2": null, + "address_3": null, + "city": "Virginia Beach", + "state_province": "Virginia", + "postal_code": "23453-2988", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7576894021", + "website_url": "http://www.yvbc.com", + "state": "Virginia", + "street": "2505 Horse Pasture Rd Ste 104" + }, + { + "id": "6b4ce9ea-b66c-455a-b284-8a629b7f8fc8", + "name": "Young's Brewing", + "brewery_type": "planning", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Wexford", + "state_province": "Pennsylvania", + "postal_code": "15090", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Pennsylvania", + "street": null + }, + { + "id": "f087a1a9-5d5b-471f-926e-d37a68d2983d", + "name": "Your Mates Brewery", + "brewery_type": "micro", + "address_1": "41 Technology Drive", + "address_2": null, + "address_3": null, + "city": "Warana", + "state_province": "QLD", + "postal_code": "4575", + "country": "Australia", + "longitude": 153.1232294, + "latitude": -26.7269549, + "phone": "+61 7 5329 4733", + "website_url": "http://yourmatesbrewing.com/", + "state": "QLD", + "street": "41 Technology Drive" + }, + { + "id": "1ca6480d-7d22-43b5-af4e-3be6939ccb65", + "name": "Your Mates Brewing Co", + "brewery_type": "micro", + "address_1": "41 Technology Drive", + "address_2": null, + "address_3": null, + "city": "Warana", + "state_province": "QLD", + "postal_code": "4575", + "country": "Australia", + "longitude": 153.1232294, + "latitude": -26.7269549, + "phone": "+61 7 5329 4733", + "website_url": "http://yourmatesbrewing.com/", + "state": "QLD", + "street": "41 Technology Drive" + }, + { + "id": "ec1f811a-96e3-450a-aa7a-2037ed885560", + "name": "Yulli’s Brews", + "brewery_type": "micro", + "address_1": "75A Burrows Road", + "address_2": null, + "address_3": null, + "city": "Alexandria", + "state_province": "NSW", + "postal_code": "2015", + "country": "Australia", + "longitude": 151.1887359, + "latitude": -33.9121017, + "phone": "+61 2 9519 0161", + "website_url": "https://www.yullisbrews.com.au/", + "state": "NSW", + "street": "75A Burrows Road" + }, + { + "id": "ea88eaf9-2b9c-4073-8d37-5af9e4b8c166", + "name": "Zaftig Brewing Co.", + "brewery_type": "micro", + "address_1": "7020 Huntley Rd Ste A", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Ohio", + "postal_code": "43229-1050", + "country": "United States", + "longitude": -83.0003532, + "latitude": 40.1063329, + "phone": "6146362537", + "website_url": "http://www.drinkzaftig.com", + "state": "Ohio", + "street": "7020 Huntley Rd Ste A" + }, + { + "id": "74576e44-ee28-43ea-870a-1f2801bb2d9c", + "name": "Zambaldi Beer", + "brewery_type": "contract", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Green Bay", + "state_province": "Wisconsin", + "postal_code": "54305-0246", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6124707926", + "website_url": "http://www.zambaldi.com", + "state": "Wisconsin", + "street": null + }, + { + "id": "e1278d06-ae74-4c23-9103-8ef505d24f5b", + "name": "Zebulon Artisan Ales", + "brewery_type": "micro", + "address_1": "8 Merchents Alley", + "address_2": null, + "address_3": null, + "city": "Weaverville", + "state_province": "North Carolina", + "postal_code": "28787-8860", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": "http://www.zebulonbrewing.com", + "state": "North Carolina", + "street": "8 Merchents Alley" + }, + { + "id": "800c3ec9-66e0-4bff-a3d9-13a7d1a1755e", + "name": "Zed's Beer/Bado Brewing", + "brewery_type": "micro", + "address_1": "19 N Maple Ave Unit B", + "address_2": null, + "address_3": null, + "city": "Marlton", + "state_province": "New Jersey", + "postal_code": "08053-3007", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8568727632", + "website_url": "http://drinkzeds.com", + "state": "New Jersey", + "street": "19 N Maple Ave Unit B" + }, + { + "id": "3b703b36-86bb-4d24-846d-80c88bf7df07", + "name": "ZeLUS Beer Company", + "brewery_type": "contract", + "address_1": "120 N Meadows Rd", + "address_2": null, + "address_3": null, + "city": "Medfield", + "state_province": "Massachusetts", + "postal_code": "02052-1594", + "country": "United States", + "longitude": -71.335472, + "latitude": 42.200799, + "phone": "6275100270", + "website_url": "http://www.zelusbeer.com", + "state": "Massachusetts", + "street": "120 N Meadows Rd" + }, + { + "id": "1cbf4f83-1e05-4025-8517-89353a77f1ad", + "name": "Zephyr Brewing Co", + "brewery_type": "micro", + "address_1": "1609 E 58th Ave Ste G", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80216-1528", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7202959374", + "website_url": "http://www.zephyrbrewingco.com", + "state": "Colorado", + "street": "1609 E 58th Ave Ste G" + }, + { + "id": "698fe7e8-85e4-4482-b608-43534a67862a", + "name": "Zephyrhills Brewing Company", + "brewery_type": "proprietor", + "address_1": "38530 5th Ave", + "address_2": null, + "address_3": null, + "city": "Zephyrhills", + "state_province": "Florida", + "postal_code": "33542-4318", + "country": "United States", + "longitude": -82.17921783, + "latitude": 28.23444039, + "phone": "8137152683", + "website_url": "http://www.zbcbeer.com", + "state": "Florida", + "street": "38530 5th Ave" + }, + { + "id": "c9de9083-60d9-46d4-9544-b20b5f5d1556", + "name": "Zero Gravity Craft Brewery", + "brewery_type": "micro", + "address_1": "716 Pinte Street", + "address_2": null, + "address_3": null, + "city": "Burlington", + "state_province": "Vermont", + "postal_code": "05401", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8024970054", + "website_url": null, + "state": "Vermont", + "street": "716 Pinte Street" + }, + { + "id": "f192e49e-e2c9-485a-bdee-35ce3189ef93", + "name": "Zero Gravity Craft Brewery", + "brewery_type": "brewpub", + "address_1": "716 Pine St", + "address_2": null, + "address_3": null, + "city": "Burlington", + "state_province": "Vermont", + "postal_code": "05401-4922", + "country": "United States", + "longitude": -73.2140363, + "latitude": 44.4595462, + "phone": "8024970054", + "website_url": "http://www.zerogravitybeer.com", + "state": "Vermont", + "street": "716 Pine St" + }, + { + "id": "1d15aa31-6d4c-42c7-b5c7-e0d3fe314e1b", + "name": "Zero One Ale House", + "brewery_type": "brewpub", + "address_1": "20 W Beauregard Ave", + "address_2": null, + "address_3": null, + "city": "San Angelo", + "state_province": "Texas", + "postal_code": "76903-5833", + "country": "United States", + "longitude": -100.4372363, + "latitude": 31.46245419, + "phone": "3256535123", + "website_url": null, + "state": "Texas", + "street": "20 W Beauregard Ave" + }, + { + "id": "1e64c937-e250-448e-962a-f2a40d6ca9db", + "name": "Zeroday Brewing Company", + "brewery_type": "brewpub", + "address_1": "250 Reily St Ste 103", + "address_2": null, + "address_3": null, + "city": "Harrisburg", + "state_province": "Pennsylvania", + "postal_code": "17102-2550", + "country": "United States", + "longitude": -76.8915931, + "latitude": 40.2717061, + "phone": "7177456218", + "website_url": "http://www.zerodaybrewing.com", + "state": "Pennsylvania", + "street": "250 Reily St Ste 103" + }, + { + "id": "06244489-87fd-44ea-8a83-f0b3f1210314", + "name": "Zeta Brewing Company", + "brewery_type": "brewpub", + "address_1": "131 1st Ave N", + "address_2": null, + "address_3": null, + "city": "Jacksonville Beach", + "state_province": "Florida", + "postal_code": "32250-6912", + "country": "United States", + "longitude": -81.39029104, + "latitude": 30.29038796, + "phone": "9043720727", + "website_url": "http://www.zetabrewing.com", + "state": "Florida", + "street": "131 1st Ave N" + }, + { + "id": "c9cd5a7c-d412-439d-ade8-0139764cad1e", + "name": "Zig Zag Brewery", + "brewery_type": "micro", + "address_1": "840 Chifley Road", + "address_2": null, + "address_3": null, + "city": "Clarence", + "state_province": "NSW", + "postal_code": "2790", + "country": "Australia", + "longitude": 150.2210312, + "latitude": -33.4773396, + "phone": "+61 1300 944 924", + "website_url": "https://zigzagrailway.com.au/", + "state": "NSW", + "street": "840 Chifley Road" + }, + { + "id": "d0d6a46c-d593-4be0-aff3-b867c7ec1b9f", + "name": "Zig Zag Brewery.", + "brewery_type": "micro", + "address_1": "840 Chifley Road", + "address_2": null, + "address_3": null, + "city": "Clarence", + "state_province": "NSW", + "postal_code": "2790", + "country": "Australia", + "longitude": 150.2210312, + "latitude": -33.4773396, + "phone": "+61 1300 944 924", + "website_url": "https://zigzagrailway.com.au/", + "state": "NSW", + "street": "840 Chifley Road" + }, + { + "id": "8a0343e4-8195-47f0-927d-c6cc751fe88e", + "name": "Zilker Brewing Co", + "brewery_type": "micro", + "address_1": "1701 E 6th St", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78702-2701", + "country": "United States", + "longitude": -97.7245745, + "latitude": 30.2621507, + "phone": "5127654946", + "website_url": "http://www.zilkerbeer.com", + "state": "Texas", + "street": "1701 E 6th St" + }, + { + "id": "169cd01b-b11c-449e-87df-9d1dd056ebf2", + "name": "Zillicoah Beer Company", + "brewery_type": "proprietor", + "address_1": "870 Riverside Dr", + "address_2": null, + "address_3": null, + "city": "Woodfin", + "state_province": "North Carolina", + "postal_code": "28804-3222", + "country": "United States", + "longitude": -82.57561089, + "latitude": 35.61776547, + "phone": "8284846502", + "website_url": null, + "state": "North Carolina", + "street": "870 Riverside Dr" + }, + { + "id": "f4585ffb-ad5d-4fb4-a32e-ada28298796c", + "name": "Zion Canyon Brewing Co", + "brewery_type": "brewpub", + "address_1": "95 Zion Park Blvd", + "address_2": null, + "address_3": null, + "city": "Springdale", + "state_province": "Utah", + "postal_code": "84767-0420", + "country": "United States", + "longitude": -113.0358484, + "latitude": 37.16063318, + "phone": "4357720404", + "website_url": "http://www.zioncanyonbrewingco.com", + "state": "Utah", + "street": "95 Zion Park Blvd" + }, + { + "id": "def4c1dd-dfdb-42ff-a03a-d2a00c9f3d7f", + "name": "Zipfer Brauerei (Heineken)", + "brewery_type": "large", + "address_1": "Zipf 22", + "address_2": null, + "address_3": null, + "city": "Zipf", + "state_province": "Oberösterreich", + "postal_code": "4871", + "country": "Austria", + "longitude": 13.503957656337, + "latitude": 48.036812902437, + "phone": "+4376823600", + "website_url": "https://www.zipfer.at", + "state": "Oberösterreich", + "street": "Zipf 22" + }, + { + "id": "538095f5-33b7-4578-8012-429e046fee80", + "name": "Zipline Brewing Co", + "brewery_type": "micro", + "address_1": "2100 Magnum Cir Ste 1", + "address_2": null, + "address_3": null, + "city": "Lincoln", + "state_province": "Nebraska", + "postal_code": "68522-1027", + "country": "United States", + "longitude": -96.7512302, + "latitude": 40.8117948, + "phone": "4024751001", + "website_url": "http://www.ziplinebrewing.com", + "state": "Nebraska", + "street": "2100 Magnum Cir Ste 1" + }, + { + "id": "68529922-1b8d-4629-b7d2-739f93c32d77", + "name": "Zoiglhaus Brewing Company", + "brewery_type": "brewpub", + "address_1": "5716 SE 92nd Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97266-4659", + "country": "United States", + "longitude": -122.5679347, + "latitude": 45.4808905, + "phone": "9713392374", + "website_url": "http://www.zoiglhaus.com", + "state": "Oregon", + "street": "5716 SE 92nd Ave" + }, + { + "id": "0b194fbf-8dd6-4a88-848f-4a784af05c1c", + "name": "Zone 9 Brewing Company", + "brewery_type": "micro", + "address_1": "1450 Tollhouse Rd Ste 105", + "address_2": null, + "address_3": null, + "city": "Clovis", + "state_province": "California", + "postal_code": "93611-0503", + "country": "United States", + "longitude": -119.6906567, + "latitude": 36.82610331, + "phone": "5592600539", + "website_url": null, + "state": "California", + "street": "1450 Tollhouse Rd Ste 105" + }, + { + "id": "ec83629b-2f5d-4fae-a9fc-00ff3979c0f7", + "name": "Zorn Brew Works", + "brewery_type": "micro", + "address_1": "605 E 9th St", + "address_2": null, + "address_3": null, + "city": "Michigan City", + "state_province": "Indiana", + "postal_code": "46360-3651", + "country": "United States", + "longitude": -86.89216786, + "latitude": 41.714577, + "phone": "2193316322", + "website_url": "http://www.zornbrewworks.com", + "state": "Indiana", + "street": "605 E 9th St" + }, + { + "id": "b636a9f8-4caa-41e2-996a-5707a9cbd220", + "name": "Zoumaï", + "brewery_type": "micro", + "address_1": "7 Cours Gouffé", + "address_2": null, + "address_3": null, + "city": "Marseille", + "state_province": "Bouche du Rhône", + "postal_code": "13005", + "country": "France", + "longitude": 5.38658404, + "latitude": 43.28642888, + "phone": "953870379", + "website_url": "https://www.brasseriezoumai.fr/", + "state": "Bouche du Rhône", + "street": "7 Cours Gouffé" + }, + { + "id": "36ddde49-4fad-4500-aaa6-9677d5e351d0", + "name": "Zululand Brewery", + "brewery_type": "brewpub", + "address_1": "George Hotel", + "address_2": " 36 Main Street", + "address_3": null, + "city": "Eshowe", + "state_province": "KwaZulu-Natal", + "postal_code": "3815", + "country": "South Africa", + "longitude": 31.4593, + "latitude": -28.8927, + "phone": "+27 35 474 4919", + "website_url": "https://www.zululandbrewery.co.za/", + "state": "KwaZulu-Natal", + "street": "George Hotel" + }, + { + "id": "81c373d3-cacc-4f69-a716-3dfe919a3b42", + "name": "Zum Bier", + "brewery_type": "micro", + "address_1": "3232 E Monroe St", + "address_2": null, + "address_3": null, + "city": "Waukegan", + "state_province": "Illinois", + "postal_code": "60085", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8474207313", + "website_url": "http://www.zumbier.com", + "state": "Illinois", + "street": "3232 E Monroe St" + }, + { + "id": "95f923e4-e98a-498c-a652-41313f838358", + "name": "Zuni Street Brewing Company", + "brewery_type": "micro", + "address_1": "2355 W 29th Ave", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80211-3753", + "country": "United States", + "longitude": -105.015409, + "latitude": 39.7585929, + "phone": "3038626525", + "website_url": "http://www.zunistreetbrewing.com", + "state": "Colorado", + "street": "2355 W 29th Ave" + }, + { + "id": "d880b64f-7df7-45c4-9e28-e18076c92284", + "name": "Zwakala Brewery", + "brewery_type": "micro", + "address_1": "Cheerio Road", + "address_2": " Magoebaskloof", + "address_3": null, + "city": "Haenertsburg", + "state_province": "Limpopo", + "postal_code": "0731", + "country": "South Africa", + "longitude": 29.9234, + "latitude": -23.8767, + "phone": "+27 73 791 6762", + "website_url": "https://zwakalabrewery.com/", + "state": "Limpopo", + "street": "Cheerio Road" + }, + { + "id": "720a84ad-c18f-4181-8d21-35eb6b80bec0", + "name": "ZwanzigZ Brewing", + "brewery_type": "brewpub", + "address_1": "1038 Lafayette Ave", + "address_2": null, + "address_3": null, + "city": "Columbus", + "state_province": "Indiana", + "postal_code": "47201-5756", + "country": "United States", + "longitude": -85.91883647, + "latitude": 39.20865674, + "phone": "8123760200", + "website_url": "http://www.zwanzigz.com", + "state": "Indiana", + "street": "1038 Lafayette Ave" + }, + { + "id": "a602e9ea-f0b3-4a40-8aa8-02e0aace191c", + "name": "Zwei Brewing Co", + "brewery_type": "micro", + "address_1": "4612 S Mason St Ste 120", + "address_2": null, + "address_3": null, + "city": "Fort Collins", + "state_province": "Colorado", + "postal_code": "80525-3794", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9702232482", + "website_url": "http://www.zweibruderbrewing.com", + "state": "Colorado", + "street": "4612 S Mason St Ste 120" + }, + { + "id": "8d18da7a-1ed9-4eb4-b87c-ac444aa81e14", + "name": "Zydeco Brew Werks", + "brewery_type": "brewpub", + "address_1": "1902 E 7th Ave", + "address_2": null, + "address_3": null, + "city": "Tampa", + "state_province": "Florida", + "postal_code": "33605-3810", + "country": "United States", + "longitude": -82.43783229, + "latitude": 27.9603438, + "phone": "8132524541", + "website_url": null, + "state": "Florida", + "street": "1902 E 7th Ave" + }, + { + "id": "aabc26d3-4870-42e9-ae09-1333f85c3246", + "name": "Zymos Brewing", + "brewery_type": "micro", + "address_1": "5180 S Lowell Blvd", + "address_2": null, + "address_3": null, + "city": "Littleton", + "state_province": "Colorado", + "postal_code": "80123", + "country": "United States", + "longitude": -105.0346064, + "latitude": 39.6229711, + "phone": "7206645280", + "website_url": "http://zymosbrewing.com", + "state": "Colorado", + "street": "5180 S Lowell Blvd" + }, + { + "id": "82234375-c7fa-4208-8878-b661b7a1e6aa", + "name": "Zymurcracy Beer Company", + "brewery_type": "micro", + "address_1": "4624 Creek Dr Ste 6", + "address_2": null, + "address_3": null, + "city": "Rapid City", + "state_province": "South Dakota", + "postal_code": "57701-2165", + "country": "United States", + "longitude": -103.1795198, + "latitude": 44.03811547, + "phone": "6057910411", + "website_url": "http://www.zymurcracybeer.com", + "state": "South Dakota", + "street": "4624 Creek Dr Ste 6" + }, + { + "id": "e9d9a4ad-9583-4b07-846a-d99aeb5ea706", + "name": "Zymurgy Brew Works", + "brewery_type": "micro", + "address_1": "22755 Hawthorne Blvd", + "address_2": null, + "address_3": null, + "city": "Torrance", + "state_province": "California", + "postal_code": "90505-3613", + "country": "United States", + "longitude": -118.3524672, + "latitude": 33.8635371, + "phone": "3106502474", + "website_url": "http://www.zymurgybrewworks.com", + "state": "California", + "street": "22755 Hawthorne Blvd" + }, + { + "id": "e7d32af9-f5c5-469a-9cd7-b97097d6640d", + "name": "가나다라브루어리(Ganadara Brewing)", + "brewery_type": "brewpub", + "address_1": "625-1, Mungyeong-daero", + "address_2": null, + "address_3": null, + "city": "Mungyeong-si", + "state_province": "Gyeongsangbukdo", + "postal_code": "36989", + "country": "South Korea", + "longitude": 128.1563317, + "latitude": 36.61483553, + "phone": "070-7799-2428", + "website_url": "http://www.ganadara.co.kr", + "state": "Gyeongsangbukdo", + "street": "625-1, Mungyeong-daero" + }, + { + "id": "438dfe94-c54a-49a1-b611-e514d2f856e1", + "name": "갈매기 브루잉(Galmegi Brewing)", + "brewery_type": "micro", + "address_1": "260, Pyeonggang-ro 171beon-gil", + "address_2": null, + "address_3": null, + "city": "Gangseo-gu", + "state_province": "Busan", + "postal_code": "46704", + "country": "South Korea", + "longitude": 128.9441073, + "latitude": 35.20811413, + "phone": "051-611-9658", + "website_url": "https://www.galmegibrewing.com/", + "state": "Busan", + "street": "260, Pyeonggang-ro 171beon-gil" + }, + { + "id": "63fc12a0-bbb7-4bdf-9d14-176bbf70e5d9", + "name": "감자아일랜드(Gamja Island)", + "brewery_type": "brewpub", + "address_1": "163, Sau-ro", + "address_2": null, + "address_3": null, + "city": "Chuncheon-si", + "state_province": "Gangwondo", + "postal_code": "24220", + "country": "South Korea", + "longitude": 127.742945, + "latitude": 37.90739745, + "phone": "070-8098-0621", + "website_url": "http://gamjaisland.com/", + "state": "Gangwondo", + "street": "163, Sau-ro" + }, + { + "id": "2068d17b-bcaa-4423-a892-73f521bd1ee7", + "name": "강릉브루어리 바이 현 (Gangneung_Brewery)", + "brewery_type": "brewpub", + "address_1": "9,Yulgokchogyo-gil 11beon-gil", + "address_2": null, + "address_3": null, + "city": "Gangneung-si", + "state_province": "Gangwondo", + "postal_code": "25510", + "country": "South Korea", + "longitude": 128.8797275, + "latitude": 37.76757831, + "phone": "033-655-1357", + "website_url": "http://instagram.com/gangneung_brewery", + "state": "Gangwondo", + "street": "9,Yulgokchogyo-gil 11beon-gil" + }, + { + "id": "3aa64cd7-7e03-4d51-b5f2-f04b6fd4b96f", + "name": "고릴라 브루잉(Gorilla Brewing)", + "brewery_type": "brewpub", + "address_1": "125, Gwangnam-ro", + "address_2": null, + "address_3": null, + "city": "Suyeong-gu", + "state_province": "Busan", + "postal_code": "48299", + "country": "South Korea", + "longitude": 129.1161812, + "latitude": 35.15273431, + "phone": "070-4837-6258", + "website_url": "http://www.gorilla.beer", + "state": "Busan", + "street": "125, Gwangnam-ro" + }, + { + "id": "b8c16e2e-ca1a-4e17-869c-a51995c898c8", + "name": "고브루(Gobrew)", + "brewery_type": "brewpub", + "address_1": "171, Namseongjung-ro", + "address_2": null, + "address_3": null, + "city": "Seogwipo-si", + "state_province": "Jejudo", + "postal_code": "63594", + "country": "South Korea", + "longitude": 126.5525325, + "latitude": 33.24705985, + "phone": "064-733-5747", + "website_url": "http://www.instagram.com/gobrew_jeju", + "state": "Jejudo", + "street": "171, Namseongjung-ro" + }, + { + "id": "4c43ba95-1293-4ce5-9910-65976e0ef297", + "name": "굿맨 브루어리(Goodman Brewery)", + "brewery_type": "brewpub", + "address_1": "46-4, Donggureung-ro 389beon-gil", + "address_2": null, + "address_3": null, + "city": "Guri-si", + "state_province": "Gyeonggido", + "postal_code": "11905", + "country": "South Korea", + "longitude": 127.1395861, + "latitude": 37.63278304, + "phone": "031-572-6376", + "website_url": "http://goodmanbrewery.co.kr/", + "state": "Gyeonggido", + "street": "46-4, Donggureung-ro 389beon-gil" + }, + { + "id": "928e682d-b4d2-445b-8147-3fe8b727b0b7", + "name": "끽비어컴퍼니 (Ggeek Beer Co,.)", + "brewery_type": "brewpub", + "address_1": "157, Eulji-ro", + "address_2": null, + "address_3": null, + "city": "Jung-gu", + "state_province": "Seoul", + "postal_code": "04545", + "country": "South Korea", + "longitude": 126.9955347, + "latitude": 37.56670438, + "phone": "070-8152-1234", + "website_url": "http://www.ggeekbeer.com", + "state": "Seoul", + "street": "157, Eulji-ro" + }, + { + "id": "94afa064-fd4d-422e-8490-b87eeeb22b5a", + "name": "노매딕 브루잉 컴퍼니(Nomadic Brewing Co.)", + "brewery_type": "brewpub", + "address_1": "12-10, Jeollagamyeong 3-gil", + "address_2": "Wansan-gu", + "address_3": null, + "city": "Jeonju-si", + "state_province": "Jeollabukdo", + "postal_code": "55038", + "country": "South Korea", + "longitude": 127.1437952, + "latitude": 35.81642148, + "phone": "063-902-3924", + "website_url": "http://instagram.com/nomadicbrewingco", + "state": "Jeollabukdo", + "street": "12-10, Jeollagamyeong 3-gil" + }, + { + "id": "5c68b706-804c-4554-b37e-09732562d708", + "name": "대도양조장(daedo brewing)", + "brewery_type": "brewpub", + "address_1": "47, Dongdeok-ro 14-gil", + "address_2": null, + "address_3": null, + "city": "Jung-gu", + "state_province": "Deagu", + "postal_code": "41951", + "country": "South Korea", + "longitude": 128.6064699, + "latitude": 35.86077096, + "phone": "0507-1446-2345", + "website_url": "https://www.instagram.com/daedo_brewing", + "state": "Deagu", + "street": "47, Dongdeok-ro 14-gil" + }, + { + "id": "bbe3d2b7-7c04-413b-82d0-a7bb9428c4d2", + "name": "더랜치 브루잉(The Ranch Brewing)", + "brewery_type": "brewpub", + "address_1": "62, Gyebaek-ro 1249beonan-gil", + "address_2": null, + "address_3": null, + "city": "Seo-gu", + "state_province": "Daejeon", + "postal_code": "35341", + "country": "South Korea", + "longitude": 127.3577529, + "latitude": 36.31151337, + "phone": "042-581-2060", + "website_url": "http://ranchbrewing.com/landing/", + "state": "Daejeon", + "street": "62, Gyebaek-ro 1249beonan-gil" + }, + { + "id": "a755275d-e8a5-47ea-aecb-9bf2a7449613", + "name": "동두천 브루어리(Dongducheon Brewery)", + "brewery_type": "brewpub", + "address_1": "293, Jungang-ro", + "address_2": null, + "address_3": null, + "city": "Dongducheon-si", + "state_province": "Gyeonggido", + "postal_code": "11328", + "country": "South Korea", + "longitude": 127.0544792, + "latitude": 37.90778029, + "phone": "031-827-1635", + "website_url": "https://www.instagram.com/dongducheon_brewery/", + "state": "Gyeonggido", + "street": "293, Jungang-ro" + }, + { + "id": "71a7d2ab-a710-4c5e-923f-1e08161b659e", + "name": "라미브루잉(Rami Brewing)", + "brewery_type": "brewpub", + "address_1": "177, Samgwi-ro", + "address_2": "Seongsan-gu", + "address_3": null, + "city": "Changwon-si", + "state_province": "Gyeongsangnamdo", + "postal_code": "51705", + "country": "South Korea", + "longitude": 128.5981608, + "latitude": 35.16977871, + "phone": "055-266-2881", + "website_url": "http://instagram.com/ramibrewing", + "state": "Gyeongsangnamdo", + "street": "177, Samgwi-ro" + }, + { + "id": "9889fc71-4552-4291-8bc4-badc5ce30033", + "name": "라인도이치(Reindeutsch Brewery)", + "brewery_type": "brewpub", + "address_1": "103, Miujihaean-ro", + "address_2": null, + "address_3": null, + "city": "Tongyeong-si", + "state_province": "Gyeongsangnamdo", + "postal_code": "53069", + "country": "South Korea", + "longitude": 128.3962616, + "latitude": 34.82563356, + "phone": "055-643-7758", + "website_url": "http://www.reindeutsch.com", + "state": "Gyeongsangnamdo", + "street": "103, Miujihaean-ro" + }, + { + "id": "419822d1-2c04-4a47-adc3-e17747e7bdb7", + "name": "매직트리 브루어리(Magictree Brewery)", + "brewery_type": "brewpub", + "address_1": "39, Baengnyeong-ro", + "address_2": "Cheoin-gu", + "address_3": null, + "city": "Yongin-si", + "state_province": "Gyeonggido", + "postal_code": "17042", + "country": "South Korea", + "longitude": 127.1922904, + "latitude": 37.26293486, + "phone": "031-338-2337", + "website_url": "https://magictreebrewery.com/", + "state": "Gyeonggido", + "street": "39, Baengnyeong-ro" + }, + { + "id": "df058920-2603-47b9-9c61-b524fde39f7b", + "name": "맥파이 브루어리(Magpie Brewing Co.)", + "brewery_type": "brewpub", + "address_1": "23, Donghoecheon 1-gil", + "address_2": null, + "address_3": null, + "city": "Jeju-si", + "state_province": "Jejudo", + "postal_code": "63329", + "country": "South Korea", + "longitude": 126.617303, + "latitude": 33.50290817, + "phone": "064-721-0227", + "website_url": "http://www.magpiebrewing.com/", + "state": "Jejudo", + "street": "23, Donghoecheon 1-gil" + }, + { + "id": "dbe868ec-d1f5-4624-9661-c14d150d6071", + "name": "미스터리 브루잉 (MysterLee Brewing Co.)", + "brewery_type": "brewpub", + "address_1": "311, Dongmak-ro", + "address_2": null, + "address_3": null, + "city": "Mapo-gu", + "state_province": "Seoul", + "postal_code": "04156", + "country": "South Korea", + "longitude": 126.9474136, + "latitude": 37.5438955, + "phone": "02-3272-6337", + "website_url": "http://www.mysterleebrewing.com/", + "state": "Seoul", + "street": "311, Dongmak-ro" + }, + { + "id": "37ce8020-c9d0-421c-a255-381f946a2a82", + "name": "바네하임 브루어리(Vaneheim Brewery)", + "brewery_type": "micro", + "address_1": "65-1, Naegak 1-ro 73beon-gil", + "address_2": "Jinjeop-eup", + "address_3": null, + "city": "Namyangju-si", + "state_province": "Gyeonggido", + "postal_code": "12071", + "country": "South Korea", + "longitude": 127.1616309, + "latitude": 37.70915976, + "phone": "031-529-8003", + "website_url": "http://vaneheimbeer.com/", + "state": "Gyeonggido", + "street": "65-1, Naegak 1-ro 73beon-gil" + }, + { + "id": "3a89c7d1-cddb-4036-af38-a95b2b9a08bd", + "name": "바이젠하우스(WeizenHouse)", + "brewery_type": "micro", + "address_1": "125,Seonggok-gil", + "address_2": "Useong-myeon", + "address_3": null, + "city": "Gongju-si", + "state_province": "Chungcheongnamdo", + "postal_code": "32531", + "country": "South Korea", + "longitude": 127.0708877, + "latitude": 36.48886677, + "phone": "1661-5869", + "website_url": "http://www.weizenhaus.com/", + "state": "Chungcheongnamdo", + "street": "125,Seonggok-gil" + }, + { + "id": "55a5f03f-e3fa-4aed-8226-1acce1b71cf3", + "name": "버드나무 브루어리(Budnamu Brewery)", + "brewery_type": "brewpub", + "address_1": "1961,Gyeonggang-ro", + "address_2": null, + "address_3": null, + "city": "Gangneung-si", + "state_province": "Gangwondo", + "postal_code": "25537", + "country": "South Korea", + "longitude": 128.8843981, + "latitude": 37.74812404, + "phone": "033-920-9380", + "website_url": "https://www.instagram.com/budnamu_brewery/", + "state": "Gangwondo", + "street": "1961,Gyeonggang-ro" + }, + { + "id": "41bf9f06-ce1a-43b2-9e05-af3862488092", + "name": "부산프라이드 브루잉(Busanpride Brewery)", + "brewery_type": "brewpub", + "address_1": "84-2, Dongseo-gil", + "address_2": null, + "address_3": "Gijang-eup", + "city": "Gijang-eup", + "state_province": "Busan", + "postal_code": "46052", + "country": "South Korea", + "longitude": 129.1990401, + "latitude": 35.25822518, + "phone": "051-723-3213", + "website_url": "http://busanpridebrewery.com/", + "state": "Busan", + "street": "84-2, Dongseo-gil" + }, + { + "id": "a489a154-1f69-4eaa-9680-22e0646c192a", + "name": "브루어리304 (Brewery 304)", + "brewery_type": "brewpub", + "address_1": "7, Tongil-ro 11-gil", + "address_2": null, + "address_3": null, + "city": "Seodaemun-gu", + "state_province": "Seoul", + "postal_code": "03734", + "country": "South Korea", + "longitude": 126.962571, + "latitude": 37.56924092, + "phone": "02-363-7304", + "website_url": "https://www.brewery304.com/", + "state": "Seoul", + "street": "7, Tongil-ro 11-gil" + }, + { + "id": "adbffc2c-c973-441f-85a1-aac0f876f20b", + "name": "블루웨일브루하우스(BlueWhale Brewhouse)", + "brewery_type": "brewpub", + "address_1": "109, Sajik-ro", + "address_2": null, + "address_3": null, + "city": "Chungju-si", + "state_province": "Chungcheongbukdo", + "postal_code": "27410", + "country": "South Korea", + "longitude": 127.9248097, + "latitude": 36.96760505, + "phone": "043-843-7773", + "website_url": "https://whalebeer.modoo.at/", + "state": "Chungcheongbukdo", + "street": "109, Sajik-ro" + }, + { + "id": "4065feb7-008b-4010-bc89-9220d39ab2af", + "name": "비아브루어리(Via Brewery)", + "brewery_type": "brewpub", + "address_1": "47, Imbangul-daero 826beon-gil", + "address_2": null, + "address_3": null, + "city": "Gwangsan-gu", + "state_province": "Gwangju", + "postal_code": "62279", + "country": "South Korea", + "longitude": 126.8492063, + "latitude": 35.21530647, + "phone": "070-4126-4110", + "website_url": "https://www.instagram.com/via_pub/", + "state": "Gwangju", + "street": "47, Imbangul-daero 826beon-gil" + }, + { + "id": "9ad6ad04-85ec-453d-b18c-c6c099794f69", + "name": "비어바나 (Beer Vana Brewing Co.)", + "brewery_type": "brewpub", + "address_1": "5-1, Dorim-ro 129-gil", + "address_2": null, + "address_3": null, + "city": "Yeongdeungpo-gu", + "state_province": "Seoul", + "postal_code": "07290", + "country": "South Korea", + "longitude": 126.8952771, + "latitude": 37.5133648, + "phone": "02-2634-6277", + "website_url": "https://www.instagram.com/beervana_brewery_seoul/", + "state": "Seoul", + "street": "5-1, Dorim-ro 129-gil" + }, + { + "id": "115b67f2-e2ec-4d54-9efb-a5dc5a38933a", + "name": "서울 브루어리 (Seoul Brewery)", + "brewery_type": "brewpub", + "address_1": "10, Tojeong-ro 3an-gil", + "address_2": null, + "address_3": null, + "city": "Mapo-gu", + "state_province": "Seoul", + "postal_code": "04083", + "country": "South Korea", + "longitude": 126.9146756, + "latitude": 37.54594861, + "phone": "070-7756-0915", + "website_url": "https://www.seoulbrewery.com/home", + "state": "Seoul", + "street": "10, Tojeong-ro 3an-gil" + }, + { + "id": "7d5a3056-0c03-4a76-ba08-befd4f61b5e9", + "name": "서울집시 (Seoul Gypsy)", + "brewery_type": "brewpub", + "address_1": "107, Seosulla-gil", + "address_2": null, + "address_3": null, + "city": "Jongno-gu", + "state_province": "Seoul", + "postal_code": "03134", + "country": "South Korea", + "longitude": 126.9915676, + "latitude": 37.57504419, + "phone": "02-743-1212", + "website_url": "http://instagram.com/seoulgypsy", + "state": "Seoul", + "street": "107, Seosulla-gil" + }, + { + "id": "b38a706c-f137-4c9f-8f9e-4d26332e86a4", + "name": "순성양조장(Sunseong Brewery)", + "brewery_type": "brewpub", + "address_1": "394, Maesil-ro", + "address_2": "Sunseong-myeon", + "address_3": null, + "city": "Dangjin-si", + "state_province": "Chungcheongnamdo", + "postal_code": "31757", + "country": "South Korea", + "longitude": 126.7071635, + "latitude": 36.83056542, + "phone": "041-354-1204", + "website_url": "https://www.instagram.com/sunseongbrew", + "state": "Chungcheongnamdo", + "street": "394, Maesil-ro" + }, + { + "id": "b5c4192b-902c-4073-ab22-128e7833ae17", + "name": "순천양조장(Suncheon Brewery)", + "brewery_type": "brewpub", + "address_1": "57, Yeokjeon-gil", + "address_2": null, + "address_3": null, + "city": "Suncheon-si", + "state_province": "Jeollanamdo", + "postal_code": "57964", + "country": "South Korea", + "longitude": 127.4987434, + "latitude": 34.94739604, + "phone": "061-745-2545", + "website_url": "https://www.instagram.com/suncheon_brewery/", + "state": "Jeollanamdo", + "street": "57, Yeokjeon-gil" + }, + { + "id": "2abf3e94-2824-4c4a-999d-bd4f475bf553", + "name": "스퀴즈브루어리(Squeeze Brewery)", + "brewery_type": "brewpub", + "address_1": "353, Gongji-ro", + "address_2": null, + "address_3": null, + "city": "Chuncheon-si", + "state_province": "Gangwondo", + "postal_code": "24365", + "country": "South Korea", + "longitude": 127.7270367, + "latitude": 37.86982853, + "phone": "033-818-1663", + "website_url": "http://squeezebrewery.com/", + "state": "Gangwondo", + "street": "353, Gongji-ro" + }, + { + "id": "e706c6ba-82d4-4099-adb8-83054ae146ed", + "name": "아리랑 브루어리(Alilang-Brewery)", + "brewery_type": "brewpub", + "address_1": "26-55, Yemi 2-gil", + "address_2": "Sindong-eup", + "address_3": null, + "city": "Jeongseon-gun", + "state_province": "Gangwondo", + "postal_code": "26142", + "country": "South Korea", + "longitude": 128.6513589, + "latitude": 37.21507529, + "phone": "033-378-7177", + "website_url": "http://www.xn--9i2blz0qc217czqmswa.com/", + "state": "Gangwondo", + "street": "26-55, Yemi 2-gil" + }, + { + "id": "09c1e42a-8e73-4097-af34-f1ff0cd6034e", + "name": "아쉬트리 (Ash Tree Brewery)", + "brewery_type": "brewpub", + "address_1": "22 Achasan-ro 49-gil", + "address_2": null, + "address_3": null, + "city": "Gwangjin-gu", + "state_province": "Seoul", + "postal_code": "05043", + "country": "South Korea", + "longitude": 127.0323206, + "latitude": 37.49360307, + "phone": "02-6339-4858", + "website_url": "https://www.ashtreebrewery.com/", + "state": "Seoul", + "street": "22 Achasan-ro 49-gil" + }, + { + "id": "930d5e04-4234-4bf4-9d32-ad0d812d1a95", + "name": "아톤브루어리 (Aton Brewery)", + "brewery_type": "brewpub", + "address_1": "23, Jangmun-ro", + "address_2": null, + "address_3": null, + "city": "Yongsan-gu", + "state_province": "Seoul", + "postal_code": "04392", + "country": "South Korea", + "longitude": 126.9930459, + "latitude": 37.52846912, + "phone": "070-4009-5849", + "website_url": "http://www.instagram.com/aton_brewery", + "state": "Seoul", + "street": "23, Jangmun-ro" + }, + { + "id": "aad01f28-c9ad-4b8a-b3f4-90fe07485602", + "name": "안동가옥(Andong House)", + "brewery_type": "brewpub", + "address_1": "16-7, Munhwagwangjang-gil", + "address_2": null, + "address_3": null, + "city": "Andong-si", + "state_province": "Gyeongsangbukdo", + "postal_code": "36700", + "country": "South Korea", + "longitude": 128.7307751, + "latitude": 36.56384588, + "phone": "054-901-5550", + "website_url": "http://instagram.com/andongbeer.pub", + "state": "Gyeongsangbukdo", + "street": "16-7, Munhwagwangjang-gil" + }, + { + "id": "99fdc1ac-a3ae-4754-8467-ed70f03c9048", + "name": "안동브루어리(Andong Brewing Co.)", + "brewery_type": "micro", + "address_1": "98, Goejeong 2-gil,", + "address_2": "Pungsan-eup", + "address_3": null, + "city": "Andong-si", + "state_province": "Gyeongsangbukdo", + "postal_code": "36619", + "country": "South Korea", + "longitude": 128.5337984, + "latitude": 36.60338246, + "phone": "054-852-9602", + "website_url": "https://www.instagram.com/andongbrewing/", + "state": "Gyeongsangbukdo", + "street": "98, Goejeong 2-gil," + }, + { + "id": "363c5d1f-99e3-4b8a-afc7-acd4a7c30a1f", + "name": "어메이징브루잉컴퍼니 (Amazing Brewing Company)", + "brewery_type": "brewpub", + "address_1": "4, Seongsuil-ro 4-gil", + "address_2": null, + "address_3": null, + "city": "Seongdong-gu", + "state_province": "Seoul", + "postal_code": "04780", + "country": "South Korea", + "longitude": 127.0495044, + "latitude": 37.54297518, + "phone": "02-465-5208", + "website_url": "http://www.amazingbrewing.co.kr", + "state": "Seoul", + "street": "4, Seongsuil-ro 4-gil" + }, + { + "id": "0616a0ff-c23f-4cf3-a4c6-34b7f47f581c", + "name": "에일크루브루잉 (Alecrew Brewing)", + "brewery_type": "brewpub", + "address_1": "87, Moraenae-ro", + "address_2": null, + "address_3": null, + "city": "Mapo-gu", + "state_province": "Seoul", + "postal_code": "03949", + "country": "South Korea", + "longitude": 126.912452, + "latitude": 37.56657473, + "phone": "02-304-8663", + "website_url": "https://www.instagram.com/alecrew_brewing", + "state": "Seoul", + "street": "87, Moraenae-ro" + }, + { + "id": "cfa85b4b-30b6-4775-8e83-33339b8f877f", + "name": "에잇피플브루어리(Eight People Brewery)", + "brewery_type": "brewpub", + "address_1": "3, Jaejaegi-ro 190beonan-gil", + "address_2": "Hwado-eup", + "address_3": null, + "city": "Namyangju-si", + "state_province": "Gyeonggido", + "postal_code": "12200", + "country": "South Korea", + "longitude": 127.3033051, + "latitude": 37.61749196, + "phone": "031-595-5589", + "website_url": "https://www.facebook.com/eightpeoplebrew/", + "state": "Gyeonggido", + "street": "3, Jaejaegi-ro 190beonan-gil" + }, + { + "id": "1b8e9bf0-27a4-4943-a268-d5ba4a6cd93d", + "name": "엑스트라스몰브루잉룸(XSBREWING-ROOM)", + "brewery_type": "brewpub", + "address_1": "19, Cheongmyeong-ro", + "address_2": null, + "address_3": null, + "city": "Yeonsu-gu", + "state_province": "Incheon", + "postal_code": "21917", + "country": "South Korea", + "longitude": 126.6752048, + "latitude": 37.41755734, + "phone": null, + "website_url": "https://www.instagram.com/xs.brewing.rm/", + "state": "Incheon", + "street": "19, Cheongmyeong-ro" + }, + { + "id": "32a97b7b-726c-41a2-b019-0f34037c00ee", + "name": "와일드 웨이브(Wild Wave Brewing Co.)", + "brewery_type": "brewpub", + "address_1": "106-1, Songjeongjungang-ro 5beon-gil", + "address_2": null, + "address_3": null, + "city": "Haeundae-gu", + "state_province": "Busan", + "postal_code": "48071", + "country": "South Korea", + "longitude": 129.2035339, + "latitude": 35.18781109, + "phone": "051-702-0838", + "website_url": "https://www.wildwavebrew.com/", + "state": "Busan", + "street": "106-1, Songjeongjungang-ro 5beon-gil" + }, + { + "id": "1ca23f38-8691-4f9f-93e8-4d3f6c777f92", + "name": "완벽한인생(Perfectlife Brewery)", + "brewery_type": "brewpub", + "address_1": "30, Dogil-ro", + "address_2": "Samdong-myeon", + "address_3": null, + "city": "Namhae-gun", + "state_province": "Gyeongsangnamdo", + "postal_code": "52447", + "country": "South Korea", + "longitude": 128.0435747, + "latitude": 34.79733881, + "phone": "055-867-0108", + "website_url": "http://www.instagram.com/perfectlife.official", + "state": "Gyeongsangnamdo", + "street": "30, Dogil-ro" + }, + { + "id": "696350cb-1ab1-4b6e-850e-478e839c7372", + "name": "인천맥주(incheon_brewery)", + "brewery_type": "brewpub", + "address_1": "41, Sinpo-ro 15beon-gil", + "address_2": null, + "address_3": null, + "city": "Jung-gu", + "state_province": "Incheon", + "postal_code": "22314", + "country": "South Korea", + "longitude": 126.6222289, + "latitude": 37.47157834, + "phone": "070-7722-0705", + "website_url": "https://www.instagram.com/incheon_brewery", + "state": "Incheon", + "street": "41, Sinpo-ro 15beon-gil" + }, + { + "id": "9ca48b41-3962-4c18-a8be-a95bf73fa2cb", + "name": "제주약수터(Jejubeerfountain)", + "brewery_type": "brewpub", + "address_1": "35, Jungang-ro", + "address_2": null, + "address_3": null, + "city": "Seogwipo-si", + "state_province": "Jejudo", + "postal_code": "63592", + "country": "South Korea", + "longitude": 126.5617044, + "latitude": 33.24773328, + "phone": "064-805-6572", + "website_url": "http://www.instagram.com/jeju_beer_fountain", + "state": "Jejudo", + "street": "35, Jungang-ro" + }, + { + "id": "faefcbd2-3178-44c7-9520-de488f8ac4d1", + "name": "칠홉스 브루잉(Chillhops Brewing Co.)", + "brewery_type": "micro", + "address_1": "148-3, Dongseo 1-ro", + "address_2": null, + "address_3": null, + "city": "Seosan-si", + "state_province": "Chungcheongnamdo", + "postal_code": "31999", + "country": "South Korea", + "longitude": 126.4545751, + "latitude": 36.76696044, + "phone": "010-3022-4997", + "website_url": "https://www.instagram.com/chillhopsbrewingco/", + "state": "Chungcheongnamdo", + "street": "148-3, Dongseo 1-ro" + }, + { + "id": "bc6e84e7-5020-4b1a-b81d-ec55683bc92d", + "name": "카브루 (Ka-Brew)", + "brewery_type": "brewpub", + "address_1": "403, Songpa-daero", + "address_2": null, + "address_3": null, + "city": "Songpa-gu", + "state_province": "Seoul", + "postal_code": "05686", + "country": "South Korea", + "longitude": 127.1087119, + "latitude": 37.50309293, + "phone": "02-3143-4082", + "website_url": "http://www.kabrew.co.kr/", + "state": "Seoul", + "street": "403, Songpa-daero" + }, + { + "id": "659c476d-0144-48e3-baf4-d90b2d6c11e6", + "name": "컬러드(Coloredd)", + "brewery_type": "brewpub", + "address_1": "39, Busandaehak-ro 63beon-gil", + "address_2": null, + "address_3": null, + "city": "Geumjeong-gu", + "state_province": "Busan", + "postal_code": "46288", + "country": "South Korea", + "longitude": 129.084145, + "latitude": 35.22989272, + "phone": "051-518-3771", + "website_url": "https://www.instagram.com/coloredd_brew/", + "state": "Busan", + "street": "39, Busandaehak-ro 63beon-gil" + }, + { + "id": "9f991b54-eff1-4126-9cc2-b03bfdf9e0ce", + "name": "크래머리 브루어리(Kraemerlee Brewery)", + "brewery_type": "brewpub", + "address_1": "429, Cheonggun-ro", + "address_2": "Sang-myeon", + "address_3": null, + "city": "Gapyeong-gun", + "state_province": "Gyeonggido", + "postal_code": "12446", + "country": "South Korea", + "longitude": 127.3943665, + "latitude": 37.7603212, + "phone": "031-585-5977", + "website_url": "https://www.instagram.com/kraemerlee/", + "state": "Gyeonggido", + "street": "429, Cheonggun-ro" + }, + { + "id": "fd23a3cb-6b21-44d3-b40c-008564f2f4f0", + "name": "크래프트브로스 탭하우스 & 바틀샵 (Craftbros Tap House & Bottle Shop)", + "brewery_type": "brewpub", + "address_1": "18 Sapyeong-daero 22-gil", + "address_2": null, + "address_3": null, + "city": "Seocho-gu", + "state_province": "Seoul", + "postal_code": "06576", + "country": "South Korea", + "longitude": 126.9977006, + "latitude": 37.498793, + "phone": "02-537-7451", + "website_url": "http://www.craftbros.co.kr/", + "state": "Seoul", + "street": "18 Sapyeong-daero 22-gil" + }, + { + "id": "b41b1c36-6f0d-4afb-9574-0d84f1af12d0", + "name": "테라스포드 브루잉(Tetrapod Brewing)", + "brewery_type": "brewpub", + "address_1": "77, Jungang-daero 680beonga-gil", + "address_2": null, + "address_3": null, + "city": "Busanjin-gu", + "state_province": "Busan", + "postal_code": "47292", + "country": "South Korea", + "longitude": 129.0609993, + "latitude": 35.15692356, + "phone": "051-791-1002", + "website_url": "https://www.instagram.com/tetrapod_brewing_co/", + "state": "Busan", + "street": "77, Jungang-daero 680beonga-gil" + }, + { + "id": "d67acf79-8ca9-4932-9b34-d6578d83ffaa", + "name": "툼브로이(Turmbrau)", + "brewery_type": "brewpub", + "address_1": "1244, Haeun-daero", + "address_2": null, + "address_3": null, + "city": "Haeundae-gu", + "state_province": "Busan", + "postal_code": "48069", + "country": "South Korea", + "longitude": 129.2059199, + "latitude": 35.19578923, + "phone": "050-71342-6297", + "website_url": "https://www.instagram.com/turmbrau_korea/", + "state": "Busan", + "street": "1244, Haeun-daero" + }, + { + "id": "c5c523b9-d8f4-402e-baee-c95cbc65ee21", + "name": "파머스브루어리(Farmers Brewery)", + "brewery_type": "brewpub", + "address_1": "15, Jeonjugaeksa 1-gil", + "address_2": "Wansan-gu", + "address_3": null, + "city": "Jeonju-si", + "state_province": "Jeollabukdo", + "postal_code": "54999", + "country": "South Korea", + "longitude": 127.140034, + "latitude": 35.81724263, + "phone": "070-8803-3915", + "website_url": "http://www.gdcbeer.co.kr/new/", + "state": "Jeollabukdo", + "street": "15, Jeonjugaeksa 1-gil" + }, + { + "id": "2056bc4b-2844-4128-a406-fca7a1dca89b", + "name": "펜더멘탈 브루어리(Fundamental Brewing Co.)", + "brewery_type": "brewpub", + "address_1": "61, Maeyeong-ro 269beon-gil", + "address_2": "Yeongtong-gu", + "address_3": null, + "city": "Suwon-si", + "state_province": "Gyeonggido", + "postal_code": "16523", + "country": "South Korea", + "longitude": 127.0677246, + "latitude": 37.25978047, + "phone": "050-71319-7808", + "website_url": "https://www.instagram.com/fundamental_brewing_co/", + "state": "Gyeonggido", + "street": "61, Maeyeong-ro 269beon-gil" + }, + { + "id": "8cf1b15f-c546-4c0f-8532-fb8480944275", + "name": "프라하993(993 Praha)", + "brewery_type": "brewpub", + "address_1": "20, Gurak-ro 123beon-gil", + "address_2": null, + "address_3": null, + "city": "Suyeong-gu", + "state_province": "Busan", + "postal_code": "48212", + "country": "South Korea", + "longitude": 129.1154295, + "latitude": 35.17760201, + "phone": "051-757-2703", + "website_url": "http://praha993.com/", + "state": "Busan", + "street": "20, Gurak-ro 123beon-gil" + }, + { + "id": "57a70f5c-a995-4be1-949c-99244450940f", + "name": "플레이그라운드 브루어리(playground Brewery)", + "brewery_type": "brewpub", + "address_1": "246-13, Isanpo-gil", + "address_2": "Ilsanseo-gu", + "address_3": null, + "city": "Goyang-si", + "state_province": "Gyeonggido", + "postal_code": "10203", + "country": "South Korea", + "longitude": 126.7020113, + "latitude": 37.66779467, + "phone": "031-912-2463", + "website_url": "https://www.playgroundbrewery.com/", + "state": "Gyeonggido", + "street": "246-13, Isanpo-gil" + }, + { + "id": "64a4f65c-47a9-4d8e-ad2e-3cc898b9689c", + "name": "핸드앤몰트 (Hand and Malt)", + "brewery_type": "brewpub", + "address_1": "19, Hangang-daero 38ga-gil", + "address_2": null, + "address_3": null, + "city": "Yongsan-gu", + "state_province": "Seoul", + "postal_code": "04386", + "country": "South Korea", + "longitude": 126.9705831, + "latitude": 37.52985655, + "phone": "070-7178-4011", + "website_url": "http://handandmalt.com/", + "state": "Seoul", + "street": "19, Hangang-daero 38ga-gil" + }, + { + "id": "a9541aa9-5c12-469b-8cbb-01fb5619cefc", + "name": "허심청브루잉(Hursimchung Bru)", + "brewery_type": "brewpub", + "address_1": "23, Geumganggongwon-ro 20beon-gil", + "address_2": null, + "address_3": null, + "city": "Dongnae-gu", + "state_province": "Busan", + "postal_code": "47709", + "country": "South Korea", + "longitude": 129.0826027, + "latitude": 35.21990206, + "phone": "051-550-2345", + "website_url": "https://www.hotelnongshim.com/kr/index.php?pCode=hbrau_info", + "state": "Busan", + "street": "23, Geumganggongwon-ro 20beon-gil" + }, + { + "id": "6f317bdc-458e-466f-bd2a-9ab398d46631", + "name": "헤이스탁 브루어리(Haystack Brewery)", + "brewery_type": "brewpub", + "address_1": "25, Pangyogongwon-ro 3-gil", + "address_2": "Bundang-gu", + "address_3": null, + "city": "Seongnam-si", + "state_province": "Gyeonggido", + "postal_code": "13477", + "country": "South Korea", + "longitude": 127.0890607, + "latitude": 37.39125615, + "phone": "070-7631-1110", + "website_url": null, + "state": "Gyeonggido", + "street": "25, Pangyogongwon-ro 3-gil" + }, + { + "id": "a1308963-b966-49f7-8f84-97ba37775d14", + "name": "화이트크로우 브루잉(Whitecrow Brewing)", + "brewery_type": "brewpub", + "address_1": "65,Gowon-ro", + "address_2": "Bangnim-myeon", + "address_3": null, + "city": "Pyeongchang-gun", + "state_province": "Gangwondo", + "postal_code": "25364", + "country": "South Korea", + "longitude": 128.2515424, + "latitude": 37.47598351, + "phone": "033-333-1201", + "website_url": "https://www.instagram.com/whitecrowbrewing/", + "state": "Gangwondo", + "street": "65,Gowon-ro" + } +] \ No newline at end of file diff --git a/DataLayer/seed/procedures/USP_AddLocations.sql b/DataLayer/seed/procedures/USP_AddLocations.sql index fe3bc3a..9aaf7ef 100644 --- a/DataLayer/seed/procedures/USP_AddLocations.sql +++ b/DataLayer/seed/procedures/USP_AddLocations.sql @@ -13,11 +13,11 @@ BEGIN Countries(CountryName, Alpha2) AS ( - SELECT 'Canada', 'CA' - UNION ALL - SELECT 'Mexico', 'MX' - UNION ALL - SELECT 'United States', 'US' + SELECT 'Canada', 'CA' + UNION ALL + SELECT 'Mexico', 'MX' + UNION ALL + SELECT 'United States', 'US' ) INSERT INTO dbo.Country (CountryName, ISO3616_1) diff --git a/biergarten.sln b/biergarten.sln index 971b0c9..cd25599 100644 --- a/biergarten.sln +++ b/biergarten.sln @@ -11,6 +11,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebAPI", "WebAPI\WebAPI.csp EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BusinessLayer", "BusinessLayer\BusinessLayer.csproj", "{EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DALTests", "DALTests\DALTests.csproj", "{99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -69,6 +71,18 @@ Global {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Release|x64.Build.0 = Release|Any CPU {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Release|x86.ActiveCfg = Release|Any CPU {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Release|x86.Build.0 = Release|Any CPU + {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Debug|x64.ActiveCfg = Debug|Any CPU + {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Debug|x64.Build.0 = Debug|Any CPU + {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Debug|x86.ActiveCfg = Debug|Any CPU + {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Debug|x86.Build.0 = Debug|Any CPU + {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Release|Any CPU.Build.0 = Release|Any CPU + {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Release|x64.ActiveCfg = Release|Any CPU + {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Release|x64.Build.0 = Release|Any CPU + {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Release|x86.ActiveCfg = Release|Any CPU + {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE From afefdb9e3daff85cce89dbd9f93f3481ad15dde7 Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Sat, 6 Dec 2025 22:15:00 -0500 Subject: [PATCH 11/25] Add WebAPI controllers for beers, breweries, and users; update Docker configuration and .gitignore --- .gitignore | 5 +- DataAccessLayer/UserAccountRepository.cs | 3 +- DataLayer/data_source/ontariobreweries.json | 578 ++++++++++++++++++++ WebAPI/Controllers/BeersController.cs | 75 +++ WebAPI/Controllers/BreweriesController.cs | 57 ++ WebAPI/Controllers/UsersController.cs | 26 + WebAPI/Program.cs | 7 +- WebAPI/WebAPI.csproj | 4 + WebCrawler/Program.cs | 2 + WebCrawler/WebCrawler.csproj | 10 + biergarten.sln | 14 + docker-compose.yml | 20 +- 12 files changed, 790 insertions(+), 11 deletions(-) create mode 100644 DataLayer/data_source/ontariobreweries.json create mode 100644 WebAPI/Controllers/BeersController.cs create mode 100644 WebAPI/Controllers/BreweriesController.cs create mode 100644 WebAPI/Controllers/UsersController.cs create mode 100644 WebCrawler/Program.cs create mode 100644 WebCrawler/WebCrawler.csproj diff --git a/.gitignore b/.gitignore index 53711ff..69bbe5d 100644 --- a/.gitignore +++ b/.gitignore @@ -427,4 +427,7 @@ FodyWeavers.xsd *.msm *.msp -.DS_Store \ No newline at end of file +.DS_Store + +*/data_source/other +.fake \ No newline at end of file diff --git a/DataAccessLayer/UserAccountRepository.cs b/DataAccessLayer/UserAccountRepository.cs index 143151d..d8c9aa3 100644 --- a/DataAccessLayer/UserAccountRepository.cs +++ b/DataAccessLayer/UserAccountRepository.cs @@ -21,8 +21,7 @@ namespace DataAccessLayer } - - + public void Add(UserAccount userAccount) { const string query = diff --git a/DataLayer/data_source/ontariobreweries.json b/DataLayer/data_source/ontariobreweries.json new file mode 100644 index 0000000..0fa6c80 --- /dev/null +++ b/DataLayer/data_source/ontariobreweries.json @@ -0,0 +1,578 @@ +[ + { + "text": "100 Acre Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/100-acre-brewing-company/" + }, + { + "text": "All My Friends Beer Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/all-my-friends-beer-co/" + }, + { + "text": "All or Nothing Brewhouse", + "href": "https://ontariocraftbrewers.com/brewery-profile/all-or-nothing-brewhouse/" + }, + { + "text": "Anderson Craft Ales", + "href": "https://ontariocraftbrewers.com/brewery-profile/anderson-craft-ales/" + }, + { + "text": "Badlands Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/badlands-brewing-company/" + }, + { + "text": "Bancroft Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/bancroft-brewing-co/" + }, + { + "text": "Banded Goose Brewing Comany", + "href": "https://ontariocraftbrewers.com/brewery-profile/banded-goose-brewing-comany/" + }, + { + "text": "Beau’s Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/beaus-brewery/" + }, + { + "text": "BeerLab! London", + "href": "https://ontariocraftbrewers.com/brewery-profile/beerlab-london/" + }, + { + "text": "Bellwoods Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/bellwoods-brewery/" + }, + { + "text": "Bench Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/bench-brewing/" + }, + { + "text": "Beyond The Pale Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/beyond-the-pale-brewing-co/" + }, + { + "text": "Bicycle Craft Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/bicycle-craft-brewery/" + }, + { + "text": "Big Rig Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/big-rig-brewery/" + }, + { + "text": "Big Rock Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/big-rock-brewery/" + }, + { + "text": "Black Gold Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/black-gold-brewery/" + }, + { + "text": "Black Oak Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/black-oak-brewing-co/" + }, + { + "text": "Block 3 Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/block-3-brewing-co/" + }, + { + "text": "Blood Brothers Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/blood-brothers-brewing/" + }, + { + "text": "Bobcaygeon Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/bobcaygeon-brewing-company/" + }, + { + "text": "Boshkung Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/boshkung-brewing-co/" + }, + { + "text": "Brauwerk Hoffman – Rockland", + "href": "https://ontariocraftbrewers.com/brewery-profile/brauwerk-hoffman-rockland/" + }, + { + "text": "Bridge Masters Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/bridge-masters-brewing-co/" + }, + { + "text": "Broadhead Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/broadhead-brewery/" + }, + { + "text": "Broken Rail Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/broken-rail-brewing/" + }, + { + "text": "Burdock Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/burdock-brewery/" + }, + { + "text": "C’est What Durham Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/cest-what-durham-brewing-company/" + }, + { + "text": "Calabogie Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/calabogie-brewing/" + }, + { + "text": "Cameron’s Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/camerons-brewing-company/" + }, + { + "text": "Canvas Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/canvas-brewing-co/" + }, + { + "text": "Caps Off Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/caps-off-brewing/" + }, + { + "text": "Century Barn Brewing & Beverage Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/century-barn-brewing-and-beverage-company/" + }, + { + "text": "Chronicle Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/chronicle-brewing-company/" + }, + { + "text": "Clifford Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/clifford-brewing-co/" + }, + { + "text": "Cold Bear Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/cold-bear-brewing-co/" + }, + { + "text": "Collective Arts Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/collective-arts-brewing-ltd/" + }, + { + "text": "Common Good Beer Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/common-good-beer-co/" + }, + { + "text": "Couchiching Craft Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/couchiching-craft-brewing-company/" + }, + { + "text": "Cowbell Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/cowbell-brewing-co/" + }, + { + "text": "Cured Craft Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/cured-craft-brewing-co/" + }, + { + "text": "Daft Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/daft-brewing-company/" + }, + { + "text": "Dog House Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/dog-house-brewing-company/" + }, + { + "text": "Dominion City Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/dominion-city-brewing-co/" + }, + { + "text": "Eastbound Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/eastbound-brewing-co/" + }, + { + "text": "Equals Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/equals-brewing-company/" + }, + { + "text": "Fairweather Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/fairweather-brewing-company/" + }, + { + "text": "Farm League Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/farm-league-brewing/" + }, + { + "text": "Fixed Gear Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/fixed-gear-brewing-co/" + }, + { + "text": "Flying Monkeys Craft Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/flying-monkeys-craft-brewery/" + }, + { + "text": "Focal Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/focal-brewing-co/" + }, + { + "text": "Foundry Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/foundry-brewing/" + }, + { + "text": "Four Fathers Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/four-fathers-brewing-co/" + }, + { + "text": "Frank Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/frank-brewing-co/" + }, + { + "text": "Freddy’s", + "href": "https://ontariocraftbrewers.com/brewery-profile/freddys/" + }, + { + "text": "Full Beard Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/1068-2/" + }, + { + "text": "Furnace Room Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/furnace-room-brewery/" + }, + { + "text": "Gateway City Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/gateway-city-brewery/" + }, + { + "text": "Glasstown Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/glasstown-brewing-company/" + }, + { + "text": "Godspeed Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/godspeed-brewery/" + }, + { + "text": "Goldenfield Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/goldenfield-brewing/" + }, + { + "text": "Grand River Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/grand-river-brewery/" + }, + { + "text": "Granite Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/granite-brewery/" + }, + { + "text": "Great Lakes Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/great-lakes-brewery/" + }, + { + "text": "Haliburton Highlands Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/haliburton-highlands-brewery/" + }, + { + "text": "Imperial City Brew House", + "href": "https://ontariocraftbrewers.com/brewery-profile/imperial-city-brew-house/" + }, + { + "text": "Indie Ale House", + "href": "https://ontariocraftbrewers.com/brewery-profile/indie-ale-house/" + }, + { + "text": "Jobsite Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/jobsite-brewing-co/" + }, + { + "text": "Kichesippi Beer Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/kichesippi-beer-co/" + }, + { + "text": "Kick and Push Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/kick-and-push-brewing-company/" + }, + { + "text": "Lake of Bays Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/lake-of-bays-brewing-co/" + }, + { + "text": "Lake Of The Woods Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/lake-of-the-woods-brewing-company/" + }, + { + "text": "Left Field Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/left-field-brewery/" + }, + { + "text": "Lightcaster Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/lightcaster-brewery/" + }, + { + "text": "MacKinnon Brothers Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/mackinnon-brothers-brewing-co/" + }, + { + "text": "Maclean’s Ales Inc.", + "href": "https://ontariocraftbrewers.com/brewery-profile/macleans-ales-inc/" + }, + { + "text": "Magnotta Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/magnotta-brewery/" + }, + { + "text": "Market Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/market-brewing/" + }, + { + "text": "Mascot Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/mascot-brewery/" + }, + { + "text": "Matron Fine Beer", + "href": "https://ontariocraftbrewers.com/brewery-profile/matron-fine-beer/" + }, + { + "text": "Meyers Creek Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/meyers-creek-brewing-company/" + }, + { + "text": "Midtown Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/midtown-brewing-co/" + }, + { + "text": "Miski Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/miski-brewing/" + }, + { + "text": "Muddy York Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/muddy-york-brewing-co/" + }, + { + "text": "Muskoka Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/muskoka-brewery/" + }, + { + "text": "Natterjack Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/natterjack-brewing-company/" + }, + { + "text": "Newark Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/newark-brewing-co/" + }, + { + "text": "Niagara Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/niagara-brewing-company/" + }, + { + "text": "Niagara College Teaching Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/niagara-college-teaching-brewery/" + }, + { + "text": "Niagara Oast House Brewers", + "href": "https://ontariocraftbrewers.com/brewery-profile/niagara-oast-house-brewers/" + }, + { + "text": "Nickel Brook Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/nickel-brook-brewing-co/" + }, + { + "text": "Northern Superior Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/northern-superior-brewing-co/" + }, + { + "text": "Old Credit Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/old-credit-brewing-co/" + }, + { + "text": "Old Flame Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/1239-2/" + }, + { + "text": "Orléans Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/orleans-brewing-co/" + }, + { + "text": "Overflow Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/overflow-brewing-co/" + }, + { + "text": "Parsons Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/parsons-brewing-company/" + }, + { + "text": "Perth Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/perth-brewery/" + }, + { + "text": "Prince Eddy’s Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/prince-eddys-brewing-company/" + }, + { + "text": "Quayle’s Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/quayles-brewery/" + }, + { + "text": "Quetico Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/quetico-brewing-company/" + }, + { + "text": "Railway City Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/railway-city-brewing-co/" + }, + { + "text": "Ramblin’ Road Brewery Farm", + "href": "https://ontariocraftbrewers.com/brewery-profile/ramblin-road-brewery-farm/" + }, + { + "text": "Red Barn Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/red-barn-brewing-company/" + }, + { + "text": "Refined Fool Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/refined-fool-brewing-co/" + }, + { + "text": "Rouge River Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/rouge-river-brewing/" + }, + { + "text": "Royal City Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/royal-city-brewing-co/" + }, + { + "text": "Sassy Britches Brewing Co Ltd", + "href": "https://ontariocraftbrewers.com/brewery-profile/sassy-britches-brewing-co-ltd/" + }, + { + "text": "Sawdust City Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/sawdust-city-brewing/" + }, + { + "text": "Shawn & Ed Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/shawn-ed-brewing-co/" + }, + { + "text": "Silversmith Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/silversmith-brewing-company/" + }, + { + "text": "Slake Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/slake-brewing/" + }, + { + "text": "Sleeping Giant Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/sleeping-giant-brewing-co/" + }, + { + "text": "Something in the Water Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/something-in-the-water-brewing-co/" + }, + { + "text": "Sonnen Hill Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/sonnen-hill-brewing/" + }, + { + "text": "Sons of Kent Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/sons-of-kent-brewing-company/" + }, + { + "text": "Spark Beer", + "href": "https://ontariocraftbrewers.com/brewery-profile/spark-beer/" + }, + { + "text": "Split Rail Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/split-rail-brewing-company/" + }, + { + "text": "Stack Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/stack-brewing/" + }, + { + "text": "Steam Whistle Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/steam-whistle-brewing/" + }, + { + "text": "Steel Wheel Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/steel-wheel-brewery/" + }, + { + "text": "Stonehooker Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/stonehooker-brewing-company/" + }, + { + "text": "Stonepicker Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/stonepicker-brewery/" + }, + { + "text": "Stray Dog Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/stray-dog-brewing-company/" + }, + { + "text": "The Exchange Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/the-exchange-brewery/" + }, + { + "text": "The Grove Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/the-grove-brewing-company/" + }, + { + "text": "The Second Wedge Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/the-second-wedge-brewing-co/" + }, + { + "text": "Thornbury Village Craft Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/thornbury-village-craft-brewery/" + }, + { + "text": "Three Sheets Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/three-sheets-brewing/" + }, + { + "text": "Tooth and Nail Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/tooth-and-nail-brewing-company/" + }, + { + "text": "Torched Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/torched-brewing/" + }, + { + "text": "Town Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/town-brewery/" + }, + { + "text": "Trestle Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/trestle-brewing-company/" + }, + { + "text": "True History Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/true-history-brewing/" + }, + { + "text": "Upper Thames Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/upper-thames-brewing-co/" + }, + { + "text": "Vimy Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/vimy-brewing-company/" + }, + { + "text": "Walkerville Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/walkerville-brewery/" + }, + { + "text": "Wave Maker Craft Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/wave-maker-craft-brewery/" + }, + { + "text": "Wellington Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/wellington-brewery/" + }, + { + "text": "Whiprsnapr Brewing Co.", + "href": "https://ontariocraftbrewers.com/brewery-profile/whiprsnapr-brewing-co/" + }, + { + "text": "Whiskeyjack Beer Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/whiskeyjack-beer-company/" + }, + { + "text": "Whitewater Brewing Company", + "href": "https://ontariocraftbrewers.com/brewery-profile/whitewater-brewing-company/" + }, + { + "text": "Willibald Farm Distillery & Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/willibald-farm-distillery-brewery/" + }, + { + "text": "Windmill Brewery", + "href": "https://ontariocraftbrewers.com/brewery-profile/windmill-brewery/" + }, + { + "text": "Wishbone Brewing", + "href": "https://ontariocraftbrewers.com/brewery-profile/wishbone-brewing/" + } +] \ No newline at end of file diff --git a/WebAPI/Controllers/BeersController.cs b/WebAPI/Controllers/BeersController.cs new file mode 100644 index 0000000..efeea56 --- /dev/null +++ b/WebAPI/Controllers/BeersController.cs @@ -0,0 +1,75 @@ +using Microsoft.AspNetCore.Mvc; + +namespace WebAPI.Controllers +{ + [ApiController] + [Route("api/beers")] + public class BeersController : ControllerBase + { + [HttpGet] + public IActionResult GetBeers([FromQuery] int page_num, [FromQuery] int page_size) + { + return Ok(); + } + + [HttpGet("search")] + public IActionResult SearchBeers([FromQuery] string search) + { + return Ok(); + } + + [HttpGet("styles")] + public IActionResult GetBeerStyles([FromQuery] int page_num, [FromQuery] int page_size) + { + return Ok(); + } + + [HttpPost("styles/create")] + public IActionResult CreateBeerStyle([FromBody] BeerStyleCreateRequest request) + { + return Ok(); + } + + [HttpPut("{postId}")] + public IActionResult EditBeer(string postId, [FromBody] BeerEditRequest request) + { + return Ok(); + } + + [HttpDelete("{postId}")] + public IActionResult DeleteBeer(string postId) + { + return Ok(); + } + + [HttpGet("{postId}/recommendations")] + public IActionResult GetBeerRecommendations([FromQuery] int page_num, [FromQuery] int page_size, string postId) + { + return Ok(); + } + + [HttpPost("{postId}/comments")] + public IActionResult AddBeerComment(string postId, [FromBody] BeerCommentRequest request) + { + return Ok(); + } + + [HttpGet("{postId}/comments")] + public IActionResult GetBeerComments([FromQuery] int page_num, [FromQuery] int page_size, string postId) + { + return Ok(); + } + + [HttpPut("{postId}/comments/{commentId}")] + public IActionResult EditBeerComment(string postId, string commentId, [FromBody] BeerCommentRequest request) + { + return Ok(); + } + + [HttpDelete("{postId}/comments/{commentId}")] + public IActionResult DeleteBeerComment(string postId, string commentId) + { + return Ok(); + } + } +} \ No newline at end of file diff --git a/WebAPI/Controllers/BreweriesController.cs b/WebAPI/Controllers/BreweriesController.cs new file mode 100644 index 0000000..dd6bff0 --- /dev/null +++ b/WebAPI/Controllers/BreweriesController.cs @@ -0,0 +1,57 @@ +using Microsoft.AspNetCore.Mvc; + +namespace WebAPI.Controllers +{ + [ApiController] + [Route("api/breweries")] + public class BreweriesController : ControllerBase + { + [HttpGet] + public IActionResult GetBreweries([FromQuery] int page_num, [FromQuery] int page_size) + { + return Ok(); + } + + [HttpGet("map")] + public IActionResult GetBreweriesMap([FromQuery] int page_num, [FromQuery] int page_size) + { + return Ok(); + } + + [HttpPut("{postId}")] + public IActionResult EditBrewery(string postId, [FromBody] BreweryEditRequest request) + { + return Ok(); + } + + [HttpDelete("{postId}")] + public IActionResult DeleteBrewery(string postId) + { + return Ok(); + } + + [HttpPost("{postId}/comments")] + public IActionResult AddBreweryComment(string postId, [FromBody] BreweryCommentRequest request) + { + return Ok(); + } + + [HttpGet("{postId}/comments")] + public IActionResult GetBreweryComments([FromQuery] int page_num, [FromQuery] int page_size, string postId) + { + return Ok(); + } + + [HttpPut("{postId}/comments/{commentId}")] + public IActionResult EditBreweryComment(string postId, string commentId, [FromBody] BreweryCommentRequest request) + { + return Ok(); + } + + [HttpDelete("{postId}/comments/{commentId}")] + public IActionResult DeleteBreweryComment(string postId, string commentId) + { + return Ok(); + } + } +} \ No newline at end of file diff --git a/WebAPI/Controllers/UsersController.cs b/WebAPI/Controllers/UsersController.cs new file mode 100644 index 0000000..155d2e6 --- /dev/null +++ b/WebAPI/Controllers/UsersController.cs @@ -0,0 +1,26 @@ +using Microsoft.AspNetCore.Mvc; +using DataAccessLayer; + +namespace WebAPI.Controllers +{ + [ApiController] + [Route("api/users")] + public class UsersController : ControllerBase + { + private readonly UserAccountRepository _userAccountRepository; + + public UsersController() + { + _userAccountRepository = new UserAccountRepository(); + } + + // all users + [HttpGet("users")] + public IActionResult GetAllUsers() + { + var users = _userAccountRepository.GetAll(); + return Ok(users); + } + + } +} \ No newline at end of file diff --git a/WebAPI/Program.cs b/WebAPI/Program.cs index 6758956..6a53a1e 100644 --- a/WebAPI/Program.cs +++ b/WebAPI/Program.cs @@ -45,10 +45,7 @@ app.MapGet( ) .WithName("GetWeatherForecast"); -app.UseStaticFiles(); +// Register controllers +app.MapControllers(); app.Run(); -record WeatherForecast(DateOnly Date, int TemperatureC, string? Summary) -{ - public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); -} diff --git a/WebAPI/WebAPI.csproj b/WebAPI/WebAPI.csproj index dad0e7c..6252c0f 100644 --- a/WebAPI/WebAPI.csproj +++ b/WebAPI/WebAPI.csproj @@ -8,4 +8,8 @@ + + + + diff --git a/WebCrawler/Program.cs b/WebCrawler/Program.cs new file mode 100644 index 0000000..3751555 --- /dev/null +++ b/WebCrawler/Program.cs @@ -0,0 +1,2 @@ +// See https://aka.ms/new-console-template for more information +Console.WriteLine("Hello, World!"); diff --git a/WebCrawler/WebCrawler.csproj b/WebCrawler/WebCrawler.csproj new file mode 100644 index 0000000..fd4bd08 --- /dev/null +++ b/WebCrawler/WebCrawler.csproj @@ -0,0 +1,10 @@ + + + + Exe + net9.0 + enable + enable + + + diff --git a/biergarten.sln b/biergarten.sln index cd25599..fb38f49 100644 --- a/biergarten.sln +++ b/biergarten.sln @@ -13,6 +13,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BusinessLayer", "BusinessLa EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DALTests", "DALTests\DALTests.csproj", "{99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebCrawler", "WebCrawler\WebCrawler.csproj", "{5B37FCDB-1BD0-439A-A840-61322353EAAE}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -83,6 +85,18 @@ Global {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Release|x64.Build.0 = Release|Any CPU {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Release|x86.ActiveCfg = Release|Any CPU {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Release|x86.Build.0 = Release|Any CPU + {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Debug|x64.ActiveCfg = Debug|Any CPU + {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Debug|x64.Build.0 = Debug|Any CPU + {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Debug|x86.ActiveCfg = Debug|Any CPU + {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Debug|x86.Build.0 = Debug|Any CPU + {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Release|Any CPU.Build.0 = Release|Any CPU + {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Release|x64.ActiveCfg = Release|Any CPU + {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Release|x64.Build.0 = Release|Any CPU + {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Release|x86.ActiveCfg = Release|Any CPU + {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/docker-compose.yml b/docker-compose.yml index b48866d..98e83bf 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,19 +5,32 @@ services: container_name: sqlserver environment: ACCEPT_EULA: "Y" - MSSQL_SA_PASSWORD: "YourStrong!Passw0rd" + SA_PASSWORD: "YourStrong!Passw0rd" ports: - "1433:1433" volumes: - sqlserverdata:/var/opt/mssql healthcheck: - test: [ "CMD", "/opt/mssql-tools18/bin/sqlcmd", "-C", "-S", "localhost", "-U", "sa", "-P", "YourStrong!Passw0rd", "-Q", "SELECT 1" ] + test: [ "CMD", "/opt/mssql-tools/bin/sqlcmd", "-S", "localhost", "-U", "sa", "-P", "YourStrong!Passw0rd", "-Q", "SELECT 1" ] interval: 10s timeout: 5s retries: 12 networks: - devnet + redis: + image: redis:7 + container_name: redis + ports: + - "6379:6379" + networks: + - devnet + healthcheck: + test: ["CMD", "redis-cli", "ping"] + interval: 10s + timeout: 5s + retries: 5 + dotnet: image: mcr.microsoft.com/dotnet/sdk:9.0 container_name: dotnet-sdk @@ -32,7 +45,8 @@ services: DOTNET_CLI_TELEMETRY_OPTOUT: "1" HOME: /home/dev USER: dev - DB_CONNECTION_STRING: "Server=sqlserver,1433;User Id=sa;Password=YourStrong!Passw0rd;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;" + DB_CONNECTION_STRING: "Server=sqlserver,1433;User Id=sa;Password=YourStrong!Passw0rd;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;Database=Biergarten;" + REDIS_URL: "redis:6379" user: root networks: - devnet From 00a0f6c4eff760a4353ef80df0cb34a542e79782 Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Sat, 6 Dec 2025 22:59:22 -0500 Subject: [PATCH 12/25] update projects to dotnet 10 --- BusinessLayer/BusinessLayer.csproj | 2 +- DALTests/DALTests.csproj | 2 +- DataAccessLayer/DataAccessLayer.csproj | 2 +- DataLayer/DataLayer.csproj | 2 +- WebAPI/WebAPI.csproj | 2 +- WebCrawler/WebCrawler.csproj | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/BusinessLayer/BusinessLayer.csproj b/BusinessLayer/BusinessLayer.csproj index bf9d3be..b7eb9cb 100644 --- a/BusinessLayer/BusinessLayer.csproj +++ b/BusinessLayer/BusinessLayer.csproj @@ -1,6 +1,6 @@  - net9.0 + net10.0 enable enable diff --git a/DALTests/DALTests.csproj b/DALTests/DALTests.csproj index a05dcbb..fb1edc2 100644 --- a/DALTests/DALTests.csproj +++ b/DALTests/DALTests.csproj @@ -1,6 +1,6 @@  - net9.0 + net10.0 enable enable false diff --git a/DataAccessLayer/DataAccessLayer.csproj b/DataAccessLayer/DataAccessLayer.csproj index 727ad9b..31415c8 100644 --- a/DataAccessLayer/DataAccessLayer.csproj +++ b/DataAccessLayer/DataAccessLayer.csproj @@ -1,6 +1,6 @@  - net9.0 + net10.0 enable enable diff --git a/DataLayer/DataLayer.csproj b/DataLayer/DataLayer.csproj index f32938c..125a909 100644 --- a/DataLayer/DataLayer.csproj +++ b/DataLayer/DataLayer.csproj @@ -1,7 +1,7 @@  Exe - net9.0 + net10.0 enable enable diff --git a/WebAPI/WebAPI.csproj b/WebAPI/WebAPI.csproj index 6252c0f..521ee8f 100644 --- a/WebAPI/WebAPI.csproj +++ b/WebAPI/WebAPI.csproj @@ -1,6 +1,6 @@ - net9.0 + net10.0 enable enable diff --git a/WebCrawler/WebCrawler.csproj b/WebCrawler/WebCrawler.csproj index fd4bd08..ed9781c 100644 --- a/WebCrawler/WebCrawler.csproj +++ b/WebCrawler/WebCrawler.csproj @@ -2,7 +2,7 @@ Exe - net9.0 + net10.0 enable enable From 8d6b903aa7b128bada74d3edf0f495770e9688c1 Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Sat, 6 Dec 2025 23:06:13 -0500 Subject: [PATCH 13/25] Refactor UserAccount repository methods and add stored procedures for user account management --- DataAccessLayer/UserAccountRepository.cs | 217 +---------------------- DataLayer/crud/UserAccount.sql | 100 +++++++++++ DataLayer/schema.sql | 2 +- WebAPI/Program.cs | 30 ++++ docker-compose.yml | 18 +- 5 files changed, 146 insertions(+), 221 deletions(-) create mode 100644 DataLayer/crud/UserAccount.sql diff --git a/DataAccessLayer/UserAccountRepository.cs b/DataAccessLayer/UserAccountRepository.cs index d8c9aa3..83c8779 100644 --- a/DataAccessLayer/UserAccountRepository.cs +++ b/DataAccessLayer/UserAccountRepository.cs @@ -18,239 +18,34 @@ namespace DataAccessLayer ?? throw new InvalidOperationException( "The connection string is not set in the environment variables." ); - - } public void Add(UserAccount userAccount) { - const string query = - @"INSERT INTO UserAccount (UserAccountID, Username, FirstName, LastName, Email, CreatedAt, UpdatedAt, DateOfBirth, Timer) - VALUES (@UserAccountID, @Username, @FirstName, @LastName, @Email, @CreatedAt, @UpdatedAt, @DateOfBirth, @Timer);"; - - using (var connection = new SqlConnection(_connectionString)) - using (var command = new SqlCommand(query, connection)) - { - _ = command.Parameters.AddWithValue( - "@UserAccountID", - userAccount.UserAccountID - ); - _ = command.Parameters.AddWithValue( - "@Username", - userAccount.Username - ); - _ = command.Parameters.AddWithValue( - "@FirstName", - userAccount.FirstName - ); - _ = command.Parameters.AddWithValue( - "@LastName", - userAccount.LastName - ); - _ = command.Parameters.AddWithValue( - "@Email", - userAccount.Email - ); - _ = command.Parameters.AddWithValue( - "@CreatedAt", - userAccount.CreatedAt - ); - _ = command.Parameters.AddWithValue( - "@UpdatedAt", - userAccount.UpdatedAt ?? (object)DBNull.Value - ); - _ = command.Parameters.AddWithValue( - "@DateOfBirth", - userAccount.DateOfBirth - ); - _ = command.Parameters.AddWithValue( - "@Timer", - userAccount.Timer ?? (object)DBNull.Value - ); - - connection.Open(); - _ = command.ExecuteNonQuery(); - } + } public UserAccount? GetById(Guid id) { - const string query = - "SELECT * FROM UserAccount WHERE UserAccountID = @UserAccountID;"; - - using (var connection = new SqlConnection(_connectionString)) - using (var command = new SqlCommand(query, connection)) - { - _ = command.Parameters.AddWithValue("@UserAccountID", id); - - connection.Open(); - using (var reader = command.ExecuteReader()) - { - if (reader.Read()) - { - return new UserAccount - { - UserAccountID = reader.GetGuid( - reader.GetOrdinal("UserAccountID") - ), - Username = reader.GetString( - reader.GetOrdinal("Username") - ), - FirstName = reader.GetString( - reader.GetOrdinal("FirstName") - ), - LastName = reader.GetString( - reader.GetOrdinal("LastName") - ), - Email = reader.GetString( - reader.GetOrdinal("Email") - ), - CreatedAt = reader.GetDateTime( - reader.GetOrdinal("CreatedAt") - ), - UpdatedAt = reader.IsDBNull( - reader.GetOrdinal("UpdatedAt") - ) - ? null - : reader.GetDateTime( - reader.GetOrdinal("UpdatedAt") - ), - DateOfBirth = reader.GetDateTime( - reader.GetOrdinal("DateOfBirth") - ), - Timer = reader.IsDBNull(reader.GetOrdinal("Timer")) - ? null - : (byte[])reader["Timer"], - }; - } - } - } - + return null; } public void Update(UserAccount userAccount) { - const string query = - @"UPDATE UserAccount - SET Username = @Username, FirstName = @FirstName, LastName = @LastName, Email = @Email, CreatedAt = @CreatedAt, UpdatedAt = @UpdatedAt, DateOfBirth = @DateOfBirth, Timer = @Timer - WHERE UserAccountID = @UserAccountID;"; - using (var connection = new SqlConnection(_connectionString)) - using (var command = new SqlCommand(query, connection)) - { - _ = command.Parameters.AddWithValue( - "@UserAccountID", - userAccount.UserAccountID - ); - _ = command.Parameters.AddWithValue( - "@Username", - userAccount.Username - ); - _ = command.Parameters.AddWithValue( - "@FirstName", - userAccount.FirstName - ); - _ = command.Parameters.AddWithValue( - "@LastName", - userAccount.LastName - ); - _ = command.Parameters.AddWithValue( - "@Email", - userAccount.Email - ); - _ = command.Parameters.AddWithValue( - "@CreatedAt", - userAccount.CreatedAt - ); - _ = command.Parameters.AddWithValue( - "@UpdatedAt", - userAccount.UpdatedAt ?? (object)DBNull.Value - ); - _ = command.Parameters.AddWithValue( - "@DateOfBirth", - userAccount.DateOfBirth - ); - _ = command.Parameters.AddWithValue( - "@Timer", - userAccount.Timer ?? (object)DBNull.Value - ); - - connection.Open(); - _ = command.ExecuteNonQuery(); - } } public void Delete(Guid id) { - const string query = - "DELETE FROM UserAccount WHERE UserAccountID = @UserAccountID;"; - - using (var connection = new SqlConnection(_connectionString)) - using (var command = new SqlCommand(query, connection)) - { - _ = command.Parameters.AddWithValue("@UserAccountID", id); - - connection.Open(); - _ = command.ExecuteNonQuery(); - } + } public IEnumerable GetAll() { - const string query = "SELECT * FROM UserAccount;"; - - var userAccounts = new List(); - - using (var connection = new SqlConnection(_connectionString)) - using (var command = new SqlCommand(query, connection)) - { - connection.Open(); - using (var reader = command.ExecuteReader()) - { - while (reader.Read()) - { - var userAccount = new UserAccount - { - UserAccountID = reader.GetGuid( - reader.GetOrdinal("UserAccountID") - ), - Username = reader.GetString( - reader.GetOrdinal("Username") - ), - FirstName = reader.GetString( - reader.GetOrdinal("FirstName") - ), - LastName = reader.GetString( - reader.GetOrdinal("LastName") - ), - Email = reader.GetString( - reader.GetOrdinal("Email") - ), - CreatedAt = reader.GetDateTime( - reader.GetOrdinal("CreatedAt") - ), - UpdatedAt = reader.IsDBNull( - reader.GetOrdinal("UpdatedAt") - ) - ? null - : reader.GetDateTime( - reader.GetOrdinal("UpdatedAt") - ), - DateOfBirth = reader.GetDateTime( - reader.GetOrdinal("DateOfBirth") - ), - Timer = reader.IsDBNull(reader.GetOrdinal("Timer")) - ? null - : (byte[])reader["Timer"], - }; - - userAccounts.Add(userAccount); - } - } - } - - return userAccounts; + return new List + { + }; } } } diff --git a/DataLayer/crud/UserAccount.sql b/DataLayer/crud/UserAccount.sql new file mode 100644 index 0000000..06b19e4 --- /dev/null +++ b/DataLayer/crud/UserAccount.sql @@ -0,0 +1,100 @@ +USE Biergarten; +GO + +CREATE OR ALTER PROCEDURE usp_CreateUserAccount +( + @Username VARCHAR(64), + @FirstName NVARCHAR(128), + @LastName NVARCHAR(128), + @DateOfBirth DATETIME, + @Email VARCHAR(128) +) +AS +BEGIN + SET NOCOUNT ON + SET XACT_ABORT ON + BEGIN TRANSACTION + + INSERT INTO UserAccount + ( + Username, + FirstName, + LastName, + DateOfBirth, + Email + ) + VALUES + ( + @Username, + @FirstName, + @LastName, + @DateOfBirth, + @Email + ); + + + + COMMIT TRANSACTION +END; +GO + +CREATE OR ALTER PROCEDURE usp_DeleteUserAccount +( + @UserAccountId INT +) +AS +BEGIN + SET NOCOUNT ON + SET XACT_ABORT ON + BEGIN TRANSACTION + + IF NOT EXISTS (SELECT 1 FROM UserAccount WHERE UserAccountId = @UserAccountId) + BEGIN + RAISERROR('UserAccount with the specified ID does not exist.', 16, + 1); + ROLLBACK TRANSACTION + RETURN + END + + DELETE FROM UserAccount + WHERE UserAccountId = @UserAccountId; + COMMIT TRANSACTION +END; +GO + + +CREATE OR ALTER PROCEDURE usp_UpdateUserAccount +( + @Username VARCHAR(64), + @FirstName NVARCHAR(128), + @LastName NVARCHAR(128), + @DateOfBirth DATETIME, + @Email VARCHAR(128), + @UserAccountId GUID +) +AS +BEGIN + SET NOCOUNT ON + SET XACT_ABORT ON + BEGIN TRANSACTION + + IF NOT EXISTS (SELECT 1 FROM UserAccount WHERE UserAccountId = @UserAccountId) + BEGIN + RAISERROR('UserAccount with the specified ID does not exist.', 16, + 1); + ROLLBACK TRANSACTION + RETURN + END + + UPDATE UserAccount + SET + Username = @Username, + FirstName = @FirstName, + LastName = @LastName, + DateOfBirth = @DateOfBirth, + Email = @Email + WHERE UserAccountId = @UserAccountId; + + COMMIT TRANSACTION +END; +GO diff --git a/DataLayer/schema.sql b/DataLayer/schema.sql index c204ba7..6f42575 100644 --- a/DataLayer/schema.sql +++ b/DataLayer/schema.sql @@ -22,7 +22,7 @@ USE Biergarten; ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- -CREATE TABLE UserAccount +CREATE TABLE dbo.UserAccount ( UserAccountID UNIQUEIDENTIFIER CONSTRAINT DF_UserAccountID DEFAULT NEWID(), diff --git a/WebAPI/Program.cs b/WebAPI/Program.cs index 6a53a1e..5421649 100644 --- a/WebAPI/Program.cs +++ b/WebAPI/Program.cs @@ -1,3 +1,33 @@ +// Load a local .env file into environment variables when present (useful for local development) +try +{ + var envPath = Path.Combine(Directory.GetCurrentDirectory(), ".env"); + if (File.Exists(envPath)) + { + foreach (var line in File.ReadAllLines(envPath)) + { + var trimmed = line.Trim(); + if (string.IsNullOrEmpty(trimmed) || trimmed.StartsWith("#")) + continue; + var idx = trimmed.IndexOf('='); + if (idx <= 0) + continue; + var key = trimmed.Substring(0, idx).Trim(); + var val = trimmed.Substring(idx + 1).Trim(); + if (val.Length >= 2 && ((val.StartsWith("\"") && val.EndsWith("\"")) || (val.StartsWith("'") && val.EndsWith("'")))) + { + val = val.Substring(1, val.Length - 2); + } + if (Environment.GetEnvironmentVariable(key) == null) + Environment.SetEnvironmentVariable(key, val); + } + } +} +catch +{ + // If dotenv loading fails, continue without blocking startup. +} + var builder = WebApplication.CreateBuilder(args); // Add services to the container. diff --git a/docker-compose.yml b/docker-compose.yml index 98e83bf..9e9e004 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,15 +3,15 @@ services: image: mcr.microsoft.com/mssql/server:2022-latest platform: linux/amd64 container_name: sqlserver + env_file: + - .env environment: ACCEPT_EULA: "Y" - SA_PASSWORD: "YourStrong!Passw0rd" - ports: - - "1433:1433" + SA_PASSWORD: "${SA_PASSWORD}" volumes: - sqlserverdata:/var/opt/mssql healthcheck: - test: [ "CMD", "/opt/mssql-tools/bin/sqlcmd", "-S", "localhost", "-U", "sa", "-P", "YourStrong!Passw0rd", "-Q", "SELECT 1" ] + test: [ "CMD", "/opt/mssql-tools/bin/sqlcmd", "-S", "localhost", "-U", "sa", "-P", "${SA_PASSWORD}", "-Q", "SELECT 1" ] interval: 10s timeout: 5s retries: 12 @@ -21,8 +21,8 @@ services: redis: image: redis:7 container_name: redis - ports: - - "6379:6379" + env_file: + - .env networks: - devnet healthcheck: @@ -32,7 +32,7 @@ services: retries: 5 dotnet: - image: mcr.microsoft.com/dotnet/sdk:9.0 + image: mcr.microsoft.com/dotnet/sdk:10.0 container_name: dotnet-sdk tty: true stdin_open: true @@ -45,8 +45,8 @@ services: DOTNET_CLI_TELEMETRY_OPTOUT: "1" HOME: /home/dev USER: dev - DB_CONNECTION_STRING: "Server=sqlserver,1433;User Id=sa;Password=YourStrong!Passw0rd;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;Database=Biergarten;" - REDIS_URL: "redis:6379" + DB_CONNECTION_STRING: "Server=sqlserver,1433;User Id=sa;Password=${SA_PASSWORD};Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;Database=${DB_NAME};" + REDIS_URL: "${REDIS_URL}" user: root networks: - devnet From 372aac897ade5339f77bf1fe96a374a66b61a855 Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Sun, 11 Jan 2026 23:36:26 -0500 Subject: [PATCH 14/25] Restructure data access layer/data layer --- DALTests/UserAccountRepositoryTests.cs | 2 +- .../{entities => Entities}/UserAccount.cs | 0 .../{entities => Entities}/UserCredential.cs | 0 .../UserVerification.cs | 0 .../Repositories/IUserAccountRepository.cs | 13 ++ .../Repositories/UserAccountRepository.cs | 163 ++++++++++++++++++ .../{Class1.cs => Sql/DatabaseHelper.cs} | 2 +- .../Sql}/crud/UserAccount.sql | 91 +++++++++- DataAccessLayer/UserAccountRepository.cs | 51 ------ README.md | 51 ++++++ WebAPI/Controllers/BeersController.cs | 75 -------- WebAPI/Controllers/BreweriesController.cs | 57 ------ WebAPI/Controllers/UsersController.cs | 64 ++++++- WebAPI/Program.cs | 37 ++-- WebAPI/WebAPI.csproj | 7 +- WebAPI/WebAPI.http | 66 ++++++- docker-compose.yml | 34 ---- 17 files changed, 457 insertions(+), 256 deletions(-) rename DataAccessLayer/{entities => Entities}/UserAccount.cs (100%) rename DataAccessLayer/{entities => Entities}/UserCredential.cs (100%) rename DataAccessLayer/{entities => Entities}/UserVerification.cs (100%) create mode 100644 DataAccessLayer/Repositories/IUserAccountRepository.cs create mode 100644 DataAccessLayer/Repositories/UserAccountRepository.cs rename DataAccessLayer/{Class1.cs => Sql/DatabaseHelper.cs} (98%) rename {DataLayer => DataAccessLayer/Sql}/crud/UserAccount.sql (52%) delete mode 100644 DataAccessLayer/UserAccountRepository.cs create mode 100644 README.md delete mode 100644 WebAPI/Controllers/BeersController.cs delete mode 100644 WebAPI/Controllers/BreweriesController.cs diff --git a/DALTests/UserAccountRepositoryTests.cs b/DALTests/UserAccountRepositoryTests.cs index 771b948..0d39440 100644 --- a/DALTests/UserAccountRepositoryTests.cs +++ b/DALTests/UserAccountRepositoryTests.cs @@ -9,7 +9,7 @@ namespace DALTests { public class UserAccountRepositoryTests { - private readonly UserAccountRepository _repository; + private readonly IUserAccountRepository _repository; public UserAccountRepositoryTests() { diff --git a/DataAccessLayer/entities/UserAccount.cs b/DataAccessLayer/Entities/UserAccount.cs similarity index 100% rename from DataAccessLayer/entities/UserAccount.cs rename to DataAccessLayer/Entities/UserAccount.cs diff --git a/DataAccessLayer/entities/UserCredential.cs b/DataAccessLayer/Entities/UserCredential.cs similarity index 100% rename from DataAccessLayer/entities/UserCredential.cs rename to DataAccessLayer/Entities/UserCredential.cs diff --git a/DataAccessLayer/entities/UserVerification.cs b/DataAccessLayer/Entities/UserVerification.cs similarity index 100% rename from DataAccessLayer/entities/UserVerification.cs rename to DataAccessLayer/Entities/UserVerification.cs diff --git a/DataAccessLayer/Repositories/IUserAccountRepository.cs b/DataAccessLayer/Repositories/IUserAccountRepository.cs new file mode 100644 index 0000000..8ffc1d4 --- /dev/null +++ b/DataAccessLayer/Repositories/IUserAccountRepository.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using DataAccessLayer.Entities; + +namespace DataAccessLayer +{ + public interface IUserAccountRepository : IRepository + { + IEnumerable GetAll(); + UserAccount? GetByUsername(string username); + UserAccount? GetByEmail(string email); + } +} diff --git a/DataAccessLayer/Repositories/UserAccountRepository.cs b/DataAccessLayer/Repositories/UserAccountRepository.cs new file mode 100644 index 0000000..652ddf0 --- /dev/null +++ b/DataAccessLayer/Repositories/UserAccountRepository.cs @@ -0,0 +1,163 @@ +using System; +using System.Collections.Generic; +using DataAccessLayer.Entities; +using Microsoft.Data.SqlClient; + +namespace DataAccessLayer +{ + public class UserAccountRepository : IUserAccountRepository + { + private readonly string _connectionString; + public UserAccountRepository() + { + // Retrieve the connection string from environment variables + _connectionString = + Environment.GetEnvironmentVariable("DB_CONNECTION_STRING") + ?? throw new InvalidOperationException( + "The connection string is not set in the environment variables." + ); + } + + public void Add(UserAccount userAccount) + { + using SqlConnection connection = new(_connectionString); + using SqlCommand command = new("usp_CreateUserAccount", connection); + command.CommandType = System.Data.CommandType.StoredProcedure; + AddUserAccountCreateParameters(command, userAccount); + connection.Open(); + command.ExecuteNonQuery(); + } + + public UserAccount? GetById(Guid id) + { + using SqlConnection connection = new(_connectionString); + using SqlCommand command = new( + "usp_GetUserAccountById", + connection + ); + command.CommandType = System.Data.CommandType.StoredProcedure; + command.Parameters.AddWithValue("@UserAccountId", id); + connection.Open(); + + using SqlDataReader reader = command.ExecuteReader(); + return reader.Read() ? MapUserAccount(reader) : null; + } + + public void Update(UserAccount userAccount) + { + using SqlConnection connection = new(_connectionString); + using SqlCommand command = new("usp_UpdateUserAccount", connection); + command.CommandType = System.Data.CommandType.StoredProcedure; + AddUserAccountUpdateParameters(command, userAccount); + connection.Open(); + command.ExecuteNonQuery(); + } + + public void Delete(Guid id) + { + using SqlConnection connection = new(_connectionString); + using SqlCommand command = new( + "usp_DeleteUserAccount", + connection + ); + command.CommandType = System.Data.CommandType.StoredProcedure; + command.Parameters.AddWithValue("@UserAccountId", id); + connection.Open(); + command.ExecuteNonQuery(); + } + + public IEnumerable GetAll() + { + using SqlConnection connection = new(_connectionString); + using SqlCommand command = new( + "usp_GetAllUserAccounts", + connection + ); + command.CommandType = System.Data.CommandType.StoredProcedure; + connection.Open(); + + using SqlDataReader reader = command.ExecuteReader(); + List users = new(); + while (reader.Read()) + { + users.Add(MapUserAccount(reader)); + } + + return users; + } + + public UserAccount? GetByUsername(string username) + { + using SqlConnection connection = new(_connectionString); + using SqlCommand command = new( + "usp_GetUserAccountByUsername", + connection + ); + command.CommandType = System.Data.CommandType.StoredProcedure; + command.Parameters.AddWithValue("@Username", username); + connection.Open(); + + using SqlDataReader reader = command.ExecuteReader(); + return reader.Read() ? MapUserAccount(reader) : null; + } + + public UserAccount? GetByEmail(string email) + { + using SqlConnection connection = new(_connectionString); + using SqlCommand command = new( + "usp_GetUserAccountByEmail", + connection + ); + command.CommandType = System.Data.CommandType.StoredProcedure; + command.Parameters.AddWithValue("@Email", email); + connection.Open(); + + using SqlDataReader reader = command.ExecuteReader(); + return reader.Read() ? MapUserAccount(reader) : null; + } + + private static void AddUserAccountCreateParameters( + SqlCommand command, + UserAccount userAccount + ) + { + command.Parameters.AddWithValue( + "@UserAccountId", + userAccount.UserAccountID + ); + command.Parameters.AddWithValue("@Username", userAccount.Username); + command.Parameters.AddWithValue("@FirstName", userAccount.FirstName); + command.Parameters.AddWithValue("@LastName", userAccount.LastName); + command.Parameters.AddWithValue("@Email", userAccount.Email); + command.Parameters.AddWithValue("@DateOfBirth", userAccount.DateOfBirth); + } + + private static void AddUserAccountUpdateParameters( + SqlCommand command, + UserAccount userAccount + ) + { + AddUserAccountCreateParameters(command, userAccount); + command.Parameters.AddWithValue( + "@UserAccountId", + userAccount.UserAccountID + ); + } + + private static UserAccount MapUserAccount(SqlDataReader reader) + { + return new UserAccount + { + UserAccountID = reader.GetGuid(0), + Username = reader.GetString(1), + FirstName = reader.GetString(2), + LastName = reader.GetString(3), + Email = reader.GetString(4), + CreatedAt = reader.GetDateTime(5), + UpdatedAt = reader.IsDBNull(6) ? null : reader.GetDateTime(6), + DateOfBirth = reader.GetDateTime(7), + Timer = reader.IsDBNull(8) ? null : (byte[])reader[8], + }; + } + } +} diff --git a/DataAccessLayer/Class1.cs b/DataAccessLayer/Sql/DatabaseHelper.cs similarity index 98% rename from DataAccessLayer/Class1.cs rename to DataAccessLayer/Sql/DatabaseHelper.cs index 7a301f2..53171a0 100644 --- a/DataAccessLayer/Class1.cs +++ b/DataAccessLayer/Sql/DatabaseHelper.cs @@ -2,7 +2,7 @@ using System.Data; using Microsoft.Data.SqlClient; -namespace DataAccessLayer +namespace DataAccessLayer.Sql { public class DatabaseHelper { diff --git a/DataLayer/crud/UserAccount.sql b/DataAccessLayer/Sql/crud/UserAccount.sql similarity index 52% rename from DataLayer/crud/UserAccount.sql rename to DataAccessLayer/Sql/crud/UserAccount.sql index 06b19e4..61b85dc 100644 --- a/DataLayer/crud/UserAccount.sql +++ b/DataAccessLayer/Sql/crud/UserAccount.sql @@ -3,6 +3,7 @@ GO CREATE OR ALTER PROCEDURE usp_CreateUserAccount ( + @UserAccountId UNIQUEIDENTIFIER = NULL, @Username VARCHAR(64), @FirstName NVARCHAR(128), @LastName NVARCHAR(128), @@ -17,6 +18,7 @@ BEGIN INSERT INTO UserAccount ( + UserAccountID, Username, FirstName, LastName, @@ -25,6 +27,7 @@ BEGIN ) VALUES ( + COALESCE(@UserAccountId, NEWID()), @Username, @FirstName, @LastName, @@ -40,7 +43,7 @@ GO CREATE OR ALTER PROCEDURE usp_DeleteUserAccount ( - @UserAccountId INT + @UserAccountId UNIQUEIDENTIFIER ) AS BEGIN @@ -70,7 +73,7 @@ CREATE OR ALTER PROCEDURE usp_UpdateUserAccount @LastName NVARCHAR(128), @DateOfBirth DATETIME, @Email VARCHAR(128), - @UserAccountId GUID + @UserAccountId UNIQUEIDENTIFIER ) AS BEGIN @@ -98,3 +101,87 @@ BEGIN COMMIT TRANSACTION END; GO + +CREATE OR ALTER PROCEDURE usp_GetUserAccountById +( + @UserAccountId UNIQUEIDENTIFIER +) +AS +BEGIN + SET NOCOUNT ON; + + SELECT UserAccountID, + Username, + FirstName, + LastName, + Email, + CreatedAt, + UpdatedAt, + DateOfBirth, + Timer + FROM dbo.UserAccount + WHERE UserAccountID = @UserAccountId; +END; +GO + +CREATE OR ALTER PROCEDURE usp_GetAllUserAccounts +AS +BEGIN + SET NOCOUNT ON; + + SELECT UserAccountID, + Username, + FirstName, + LastName, + Email, + CreatedAt, + UpdatedAt, + DateOfBirth, + Timer + FROM dbo.UserAccount; +END; +GO + +CREATE OR ALTER PROCEDURE usp_GetUserAccountByUsername +( + @Username VARCHAR(64) +) +AS +BEGIN + SET NOCOUNT ON; + + SELECT UserAccountID, + Username, + FirstName, + LastName, + Email, + CreatedAt, + UpdatedAt, + DateOfBirth, + Timer + FROM dbo.UserAccount + WHERE Username = @Username; +END; +GO + +CREATE OR ALTER PROCEDURE usp_GetUserAccountByEmail +( + @Email VARCHAR(128) +) +AS +BEGIN + SET NOCOUNT ON; + + SELECT UserAccountID, + Username, + FirstName, + LastName, + Email, + CreatedAt, + UpdatedAt, + DateOfBirth, + Timer + FROM dbo.UserAccount + WHERE Email = @Email; +END; +GO diff --git a/DataAccessLayer/UserAccountRepository.cs b/DataAccessLayer/UserAccountRepository.cs deleted file mode 100644 index 83c8779..0000000 --- a/DataAccessLayer/UserAccountRepository.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Data; -using DataAccessLayer.Entities; -using Microsoft.Data.SqlClient; - -namespace DataAccessLayer -{ - public class UserAccountRepository : IRepository - { - private readonly string _connectionString; - - public UserAccountRepository() - { - // Retrieve the connection string from environment variables - _connectionString = - Environment.GetEnvironmentVariable("DB_CONNECTION_STRING") - ?? throw new InvalidOperationException( - "The connection string is not set in the environment variables." - ); - } - - public void Add(UserAccount userAccount) - { - - } - - public UserAccount? GetById(Guid id) - { - - return null; - } - - public void Update(UserAccount userAccount) - { - - } - - public void Delete(Guid id) - { - - } - - public IEnumerable GetAll() - { - return new List - { - }; - } - } -} diff --git a/README.md b/README.md new file mode 100644 index 0000000..7b62e9d --- /dev/null +++ b/README.md @@ -0,0 +1,51 @@ +# Biergarten SQL Server - Architecture Overview + +This solution is a monolith-oriented Web API with a layered structure. The current focus is a SQL Server-backed data layer with stored procedures and a repository-based DAL. + +## High-level projects + +- `WebAPI/` - ASP.NET Core API endpoints (controllers) and application entrypoint. +- `BusinessLayer/` - Intended home for domain/business logic (currently minimal). +- `DataAccessLayer/` - Repository implementations, entities (POCOs), and SQL helpers. +- `DataLayer/` - Database schema, seed scripts, and data sources. +- `WebCrawler/` - Separate crawler executable. +- `DALTests/` - Data access tests. + +## Data access architecture + +- **Entities (POCOs)** live in `DataAccessLayer/Entities/`. +- **Repositories** live in `DataAccessLayer/Repositories/` and implement interfaces like `IUserAccountRepository`. +- **SQL execution** lives in `DataAccessLayer/Sql/`. +- **Stored procedures** for CRUD live under `DataAccessLayer/Sql/crud/` and are invoked by repositories. + +Example flow: + +``` +WebAPI Controller -> IUserAccountRepository -> UserAccountRepository -> stored procedure +``` + +The repositories are currently responsible for: +- Opening connections using `DB_CONNECTION_STRING` +- Executing stored procedures +- Mapping result sets to POCOs + +## Database schema and seed + +- `DataLayer/schema.sql` contains the database schema definitions. +- `DataLayer/seed/SeedDB.cs` provides seeding and stored procedure/function loading. +- Stored procedure scripts are organized under `DataAccessLayer/Sql/crud/` (UserAccount and related). + +## Key conventions + +- **Environment variables**: `DB_CONNECTION_STRING` is required for DAL and seed tooling. +- **Stored procedures**: CRUD operations use `usp_*` procedures. +- **Rowversion** columns are represented as `byte[]` in entities (e.g., `Timer`). + +## Suggested dependency direction + +``` +WebAPI -> BusinessLayer -> DataAccessLayer -> SQL Server + -> DataLayer (schema/seed/scripts) +``` + +Keep business logic in `BusinessLayer` and avoid direct SQL or ADO code outside `DataAccessLayer`. diff --git a/WebAPI/Controllers/BeersController.cs b/WebAPI/Controllers/BeersController.cs deleted file mode 100644 index efeea56..0000000 --- a/WebAPI/Controllers/BeersController.cs +++ /dev/null @@ -1,75 +0,0 @@ -using Microsoft.AspNetCore.Mvc; - -namespace WebAPI.Controllers -{ - [ApiController] - [Route("api/beers")] - public class BeersController : ControllerBase - { - [HttpGet] - public IActionResult GetBeers([FromQuery] int page_num, [FromQuery] int page_size) - { - return Ok(); - } - - [HttpGet("search")] - public IActionResult SearchBeers([FromQuery] string search) - { - return Ok(); - } - - [HttpGet("styles")] - public IActionResult GetBeerStyles([FromQuery] int page_num, [FromQuery] int page_size) - { - return Ok(); - } - - [HttpPost("styles/create")] - public IActionResult CreateBeerStyle([FromBody] BeerStyleCreateRequest request) - { - return Ok(); - } - - [HttpPut("{postId}")] - public IActionResult EditBeer(string postId, [FromBody] BeerEditRequest request) - { - return Ok(); - } - - [HttpDelete("{postId}")] - public IActionResult DeleteBeer(string postId) - { - return Ok(); - } - - [HttpGet("{postId}/recommendations")] - public IActionResult GetBeerRecommendations([FromQuery] int page_num, [FromQuery] int page_size, string postId) - { - return Ok(); - } - - [HttpPost("{postId}/comments")] - public IActionResult AddBeerComment(string postId, [FromBody] BeerCommentRequest request) - { - return Ok(); - } - - [HttpGet("{postId}/comments")] - public IActionResult GetBeerComments([FromQuery] int page_num, [FromQuery] int page_size, string postId) - { - return Ok(); - } - - [HttpPut("{postId}/comments/{commentId}")] - public IActionResult EditBeerComment(string postId, string commentId, [FromBody] BeerCommentRequest request) - { - return Ok(); - } - - [HttpDelete("{postId}/comments/{commentId}")] - public IActionResult DeleteBeerComment(string postId, string commentId) - { - return Ok(); - } - } -} \ No newline at end of file diff --git a/WebAPI/Controllers/BreweriesController.cs b/WebAPI/Controllers/BreweriesController.cs deleted file mode 100644 index dd6bff0..0000000 --- a/WebAPI/Controllers/BreweriesController.cs +++ /dev/null @@ -1,57 +0,0 @@ -using Microsoft.AspNetCore.Mvc; - -namespace WebAPI.Controllers -{ - [ApiController] - [Route("api/breweries")] - public class BreweriesController : ControllerBase - { - [HttpGet] - public IActionResult GetBreweries([FromQuery] int page_num, [FromQuery] int page_size) - { - return Ok(); - } - - [HttpGet("map")] - public IActionResult GetBreweriesMap([FromQuery] int page_num, [FromQuery] int page_size) - { - return Ok(); - } - - [HttpPut("{postId}")] - public IActionResult EditBrewery(string postId, [FromBody] BreweryEditRequest request) - { - return Ok(); - } - - [HttpDelete("{postId}")] - public IActionResult DeleteBrewery(string postId) - { - return Ok(); - } - - [HttpPost("{postId}/comments")] - public IActionResult AddBreweryComment(string postId, [FromBody] BreweryCommentRequest request) - { - return Ok(); - } - - [HttpGet("{postId}/comments")] - public IActionResult GetBreweryComments([FromQuery] int page_num, [FromQuery] int page_size, string postId) - { - return Ok(); - } - - [HttpPut("{postId}/comments/{commentId}")] - public IActionResult EditBreweryComment(string postId, string commentId, [FromBody] BreweryCommentRequest request) - { - return Ok(); - } - - [HttpDelete("{postId}/comments/{commentId}")] - public IActionResult DeleteBreweryComment(string postId, string commentId) - { - return Ok(); - } - } -} \ No newline at end of file diff --git a/WebAPI/Controllers/UsersController.cs b/WebAPI/Controllers/UsersController.cs index 155d2e6..0526c9d 100644 --- a/WebAPI/Controllers/UsersController.cs +++ b/WebAPI/Controllers/UsersController.cs @@ -1,5 +1,6 @@ -using Microsoft.AspNetCore.Mvc; using DataAccessLayer; +using DataAccessLayer.Entities; +using Microsoft.AspNetCore.Mvc; namespace WebAPI.Controllers { @@ -7,7 +8,7 @@ namespace WebAPI.Controllers [Route("api/users")] public class UsersController : ControllerBase { - private readonly UserAccountRepository _userAccountRepository; + private readonly IUserAccountRepository _userAccountRepository; public UsersController() { @@ -15,6 +16,7 @@ namespace WebAPI.Controllers } // all users + [HttpGet] [HttpGet("users")] public IActionResult GetAllUsers() { @@ -22,5 +24,61 @@ namespace WebAPI.Controllers return Ok(users); } + [HttpGet("{id:guid}")] + public IActionResult GetUserById(Guid id) + { + var user = _userAccountRepository.GetById(id); + return user is null ? NotFound() : Ok(user); + } + + [HttpGet("by-username/{username}")] + public IActionResult GetUserByUsername(string username) + { + var user = _userAccountRepository.GetByUsername(username); + return user is null ? NotFound() : Ok(user); + } + + [HttpGet("by-email/{email}")] + public IActionResult GetUserByEmail(string email) + { + var user = _userAccountRepository.GetByEmail(email); + return user is null ? NotFound() : Ok(user); + } + + [HttpPost] + public IActionResult CreateUser([FromBody] UserAccount userAccount) + { + if (userAccount.UserAccountID == Guid.Empty) + { + userAccount.UserAccountID = Guid.NewGuid(); + } + + _userAccountRepository.Add(userAccount); + return CreatedAtAction( + nameof(GetUserById), + new { id = userAccount.UserAccountID }, + userAccount + ); + } + + [HttpPut("{id:guid}")] + public IActionResult UpdateUser(Guid id, [FromBody] UserAccount userAccount) + { + if (userAccount.UserAccountID != Guid.Empty && userAccount.UserAccountID != id) + { + return BadRequest("UserAccountID does not match route id."); + } + + userAccount.UserAccountID = id; + _userAccountRepository.Update(userAccount); + return NoContent(); + } + + [HttpDelete("{id:guid}")] + public IActionResult DeleteUser(Guid id) + { + _userAccountRepository.Delete(id); + return NoContent(); + } } -} \ No newline at end of file +} diff --git a/WebAPI/Program.cs b/WebAPI/Program.cs index 5421649..5806052 100644 --- a/WebAPI/Program.cs +++ b/WebAPI/Program.cs @@ -30,17 +30,22 @@ catch var builder = WebApplication.CreateBuilder(args); -// Add services to the container. -// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi -builder.Services.AddOpenApi(); +// Add services to the container. +// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi +builder.Services.AddControllers(); +builder.Services.AddEndpointsApiExplorer(); +builder.Services.AddSwaggerGen(); +builder.Services.AddOpenApi(); var app = builder.Build(); // Configure the HTTP request pipeline. -if (app.Environment.IsDevelopment()) -{ - app.MapOpenApi(); -} +if (app.Environment.IsDevelopment()) +{ + app.UseSwagger(); + app.UseSwaggerUI(); + app.MapOpenApi(); +} app.UseHttpsRedirection(); @@ -58,24 +63,6 @@ var summaries = new[] "Scorching", }; -app.MapGet( - "/weatherforecast", - () => - { - var forecast = Enumerable - .Range(1, 5) - .Select(index => new WeatherForecast( - DateOnly.FromDateTime(DateTime.Now.AddDays(index)), - Random.Shared.Next(-20, 55), - summaries[Random.Shared.Next(summaries.Length)] - )) - .ToArray(); - return forecast; - } - ) - .WithName("GetWeatherForecast"); - -// Register controllers app.MapControllers(); app.Run(); diff --git a/WebAPI/WebAPI.csproj b/WebAPI/WebAPI.csproj index 521ee8f..36eab33 100644 --- a/WebAPI/WebAPI.csproj +++ b/WebAPI/WebAPI.csproj @@ -5,9 +5,10 @@ enable - - - + + + + diff --git a/WebAPI/WebAPI.http b/WebAPI/WebAPI.http index f3c8e91..5f2b96f 100644 --- a/WebAPI/WebAPI.http +++ b/WebAPI/WebAPI.http @@ -1,6 +1,64 @@ @WebAPI_HostAddress = http://localhost:5069 -GET {{WebAPI_HostAddress}}/weatherforecast/ -Accept: application/json - -### +GET {{WebAPI_HostAddress}}/weatherforecast/ +Accept: application/json + +### + +GET {{WebAPI_HostAddress}}/api/users +Accept: application/json + +### + +GET {{WebAPI_HostAddress}}/api/users/{{userId}} +Accept: application/json + +### + +GET {{WebAPI_HostAddress}}/api/users/by-username/{{username}} +Accept: application/json + +### + +GET {{WebAPI_HostAddress}}/api/users/by-email/{{email}} +Accept: application/json + +### + +POST {{WebAPI_HostAddress}}/api/users +Content-Type: application/json +Accept: application/json + +{ + "userAccountID": "00000000-0000-0000-0000-000000000000", + "username": "testuser", + "firstName": "Test", + "lastName": "User", + "email": "testuser@example.com", + "createdAt": "2025-01-01T00:00:00Z", + "updatedAt": null, + "dateOfBirth": "1990-01-01T00:00:00Z", + "timer": null +} + +### + +PUT {{WebAPI_HostAddress}}/api/users/{{userId}} +Content-Type: application/json +Accept: application/json + +{ + "userAccountID": "{{userId}}", + "username": "testuser", + "firstName": "Updated", + "lastName": "User", + "email": "testuser@example.com", + "createdAt": "2025-01-01T00:00:00Z", + "updatedAt": "2025-02-01T00:00:00Z", + "dateOfBirth": "1990-01-01T00:00:00Z", + "timer": null +} + +### + +DELETE {{WebAPI_HostAddress}}/api/users/{{userId}} diff --git a/docker-compose.yml b/docker-compose.yml index 9e9e004..a4e7d68 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -17,40 +17,6 @@ services: retries: 12 networks: - devnet - - redis: - image: redis:7 - container_name: redis - env_file: - - .env - networks: - - devnet - healthcheck: - test: ["CMD", "redis-cli", "ping"] - interval: 10s - timeout: 5s - retries: 5 - - dotnet: - image: mcr.microsoft.com/dotnet/sdk:10.0 - container_name: dotnet-sdk - tty: true - stdin_open: true - volumes: - - ./:/home/dev/projects - - nuget-cache:/home/dev/.nuget/packages - - ~/.gitconfig:/home/dev/.gitconfig:ro - working_dir: /home/dev/projects - environment: - DOTNET_CLI_TELEMETRY_OPTOUT: "1" - HOME: /home/dev - USER: dev - DB_CONNECTION_STRING: "Server=sqlserver,1433;User Id=sa;Password=${SA_PASSWORD};Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;Database=${DB_NAME};" - REDIS_URL: "${REDIS_URL}" - user: root - networks: - - devnet - volumes: sqlserverdata: nuget-cache: From c928ddecb5bf22257a512ae519c7559502e4f5aa Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Mon, 12 Jan 2026 00:14:42 -0500 Subject: [PATCH 15/25] update seed application --- DataLayer/seed/SeedDB.cs | 26 +++++++++++++-- WebAPI/Program.cs | 68 ++++++---------------------------------- docker-compose.yml | 5 ++- 3 files changed, 38 insertions(+), 61 deletions(-) diff --git a/DataLayer/seed/SeedDB.cs b/DataLayer/seed/SeedDB.cs index a1af300..2a7b6a0 100644 --- a/DataLayer/seed/SeedDB.cs +++ b/DataLayer/seed/SeedDB.cs @@ -4,6 +4,7 @@ using System.Text; using Konscious.Security.Cryptography; using Microsoft.Data.SqlClient; + string ConnectionString = Environment.GetEnvironmentVariable( "DB_CONNECTION_STRING" )!; @@ -17,14 +18,15 @@ static async Task BuildSchema(SqlConnection connection) static async Task AddStoredProcsAndFunctions(SqlConnection connection) { - // New approach: load functions first, then procedures, from dedicated folders. - // Fallback to legacy combined file if folders are missing. string projectRoot = Path.GetFullPath( Path.Combine(AppContext.BaseDirectory, "..", "..", "..") ); string functionsDir = Path.Combine(projectRoot, "seed", "functions"); string proceduresDir = Path.Combine(projectRoot, "seed", "procedures"); + string crudDir = Path.GetFullPath( + Path.Combine(projectRoot, "..", "DataAccessLayer", "Sql", "crud") + ); if (Directory.Exists(functionsDir)) { @@ -66,6 +68,26 @@ static async Task AddStoredProcsAndFunctions(SqlConnection connection) } } + if (Directory.Exists(crudDir)) + { + foreach ( + string file in Directory + .EnumerateFiles( + crudDir, + "*.sql", + SearchOption.TopDirectoryOnly + ) + .OrderBy(f => f, StringComparer.OrdinalIgnoreCase) + ) + { + string sql = await File.ReadAllTextAsync(file); + await ExecuteScriptAsync(connection, sql); + Console.WriteLine( + $"Executed CRUD script: {Path.GetFileName(file)}" + ); + } + } + Console.WriteLine( "Functions and stored procedures added or updated successfully." ); diff --git a/WebAPI/Program.cs b/WebAPI/Program.cs index 5806052..8b34623 100644 --- a/WebAPI/Program.cs +++ b/WebAPI/Program.cs @@ -1,68 +1,20 @@ -// Load a local .env file into environment variables when present (useful for local development) -try -{ - var envPath = Path.Combine(Directory.GetCurrentDirectory(), ".env"); - if (File.Exists(envPath)) - { - foreach (var line in File.ReadAllLines(envPath)) - { - var trimmed = line.Trim(); - if (string.IsNullOrEmpty(trimmed) || trimmed.StartsWith("#")) - continue; - var idx = trimmed.IndexOf('='); - if (idx <= 0) - continue; - var key = trimmed.Substring(0, idx).Trim(); - var val = trimmed.Substring(idx + 1).Trim(); - if (val.Length >= 2 && ((val.StartsWith("\"") && val.EndsWith("\"")) || (val.StartsWith("'") && val.EndsWith("'")))) - { - val = val.Substring(1, val.Length - 2); - } - if (Environment.GetEnvironmentVariable(key) == null) - Environment.SetEnvironmentVariable(key, val); - } - } -} -catch -{ - // If dotenv loading fails, continue without blocking startup. -} - var builder = WebApplication.CreateBuilder(args); -// Add services to the container. -// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi -builder.Services.AddControllers(); -builder.Services.AddEndpointsApiExplorer(); -builder.Services.AddSwaggerGen(); -builder.Services.AddOpenApi(); +builder.Services.AddControllers(); +builder.Services.AddEndpointsApiExplorer(); +builder.Services.AddSwaggerGen(); +builder.Services.AddOpenApi(); var app = builder.Build(); -// Configure the HTTP request pipeline. -if (app.Environment.IsDevelopment()) -{ - app.UseSwagger(); - app.UseSwaggerUI(); - app.MapOpenApi(); -} +if (app.Environment.IsDevelopment()) +{ + app.UseSwagger(); + app.UseSwaggerUI(); + app.MapOpenApi(); +} app.UseHttpsRedirection(); - -var summaries = new[] -{ - "Freezing", - "Bracing", - "Chilly", - "Cool", - "Mild", - "Warm", - "Balmy", - "Hot", - "Sweltering", - "Scorching", -}; - app.MapControllers(); app.Run(); diff --git a/docker-compose.yml b/docker-compose.yml index a4e7d68..e7d8a81 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,15 +8,18 @@ services: environment: ACCEPT_EULA: "Y" SA_PASSWORD: "${SA_PASSWORD}" + ports: + - "1433:1433" volumes: - sqlserverdata:/var/opt/mssql healthcheck: - test: [ "CMD", "/opt/mssql-tools/bin/sqlcmd", "-S", "localhost", "-U", "sa", "-P", "${SA_PASSWORD}", "-Q", "SELECT 1" ] + test: ["CMD", "/opt/mssql-tools/bin/sqlcmd", "-S", "localhost", "-U", "sa", "-P", "${SA_PASSWORD}", "-Q", "SELECT 1" ] interval: 10s timeout: 5s retries: 12 networks: - devnet + volumes: sqlserverdata: nuget-cache: From 43dcf0844d8118fb907a55726cfc6b0f799c8032 Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Tue, 13 Jan 2026 00:13:39 -0500 Subject: [PATCH 16/25] Refactor data layer, add business layer --- BusinessLayer/BusinessLayer.csproj | 4 + BusinessLayer/Services/IService.cs | 15 + BusinessLayer/Services/IUserService.cs | 10 + BusinessLayer/Services/UserService.cs | 50 +++ DALTests/UserAccountRepositoryTests.cs | 63 +++- DataAccessLayer/IRepository.cs | 4 + .../Repositories/IUserAccountRepository.cs | 1 - .../Repositories/UserAccountRepository.cs | 34 ++- DataAccessLayer/Sql/crud/UserAccount.sql | 187 ------------ DataLayer/DataLayer.csproj | 13 +- DataLayer/Program.cs | 125 ++++++++ .../scripts/crud/USP_CreateUserAccount.sql | 36 +++ .../scripts/crud/USP_DeleteUserAccount.sql | 23 ++ .../scripts/crud/USP_GetAllUserAccounts.sql | 17 ++ .../crud/USP_GetUserAccountByEmail.sql | 21 ++ .../scripts/crud/USP_GetUserAccountById.sql | 21 ++ .../crud/USP_GetUserAccountByUsername.sql | 21 ++ .../scripts/crud/USP_UpdateUserAccount.sql | 35 +++ DataLayer/{ => scripts/schema}/schema.sql | 33 +- .../seed/functions/UDF_GetCountryIdByCode.sql | 4 - .../UDF_GetStateProvinceIdByCode.sql | 4 - .../seed/procedures/USP_AddLocations.sql | 4 - .../seed/procedures/USP_AddTestUsers.sql | 4 - .../procedures/USP_AddUserCredentials.sql | 15 +- .../procedures/USP_CreateUserVerification.sql | 4 - DataLayer/seed/SeedDB.cs | 285 ------------------ README.md | 6 +- WebAPI/Controllers/NotFoundController.cs | 16 + WebAPI/Controllers/UsersController.cs | 47 ++- WebAPI/Program.cs | 22 +- WebAPI/WebAPI.csproj | 24 +- WebCrawler/Program.cs | 2 - WebCrawler/WebCrawler.csproj | 10 - biergarten.sln | 2 - .../data_source => misc/raw-data}/beers.csv | 0 .../raw-data}/breweries.csv | 0 .../raw-data}/breweries.json | 0 .../raw-data}/ontariobreweries.json | 0 38 files changed, 576 insertions(+), 586 deletions(-) create mode 100644 BusinessLayer/Services/IService.cs create mode 100644 BusinessLayer/Services/IUserService.cs create mode 100644 BusinessLayer/Services/UserService.cs delete mode 100644 DataAccessLayer/Sql/crud/UserAccount.sql create mode 100644 DataLayer/Program.cs create mode 100644 DataLayer/scripts/crud/USP_CreateUserAccount.sql create mode 100644 DataLayer/scripts/crud/USP_DeleteUserAccount.sql create mode 100644 DataLayer/scripts/crud/USP_GetAllUserAccounts.sql create mode 100644 DataLayer/scripts/crud/USP_GetUserAccountByEmail.sql create mode 100644 DataLayer/scripts/crud/USP_GetUserAccountById.sql create mode 100644 DataLayer/scripts/crud/USP_GetUserAccountByUsername.sql create mode 100644 DataLayer/scripts/crud/USP_UpdateUserAccount.sql rename DataLayer/{ => scripts/schema}/schema.sql (95%) rename DataLayer/{ => scripts}/seed/functions/UDF_GetCountryIdByCode.sql (92%) rename DataLayer/{ => scripts}/seed/functions/UDF_GetStateProvinceIdByCode.sql (93%) rename DataLayer/{ => scripts}/seed/procedures/USP_AddLocations.sql (99%) rename DataLayer/{ => scripts}/seed/procedures/USP_AddTestUsers.sql (99%) rename DataLayer/{ => scripts}/seed/procedures/USP_AddUserCredentials.sql (53%) rename DataLayer/{ => scripts}/seed/procedures/USP_CreateUserVerification.sql (96%) delete mode 100644 DataLayer/seed/SeedDB.cs create mode 100644 WebAPI/Controllers/NotFoundController.cs delete mode 100644 WebCrawler/Program.cs delete mode 100644 WebCrawler/WebCrawler.csproj rename {DataLayer/data_source => misc/raw-data}/beers.csv (100%) rename {DataLayer/data_source => misc/raw-data}/breweries.csv (100%) rename {DataLayer/data_source => misc/raw-data}/breweries.json (100%) rename {DataLayer/data_source => misc/raw-data}/ontariobreweries.json (100%) diff --git a/BusinessLayer/BusinessLayer.csproj b/BusinessLayer/BusinessLayer.csproj index b7eb9cb..22ade32 100644 --- a/BusinessLayer/BusinessLayer.csproj +++ b/BusinessLayer/BusinessLayer.csproj @@ -4,4 +4,8 @@ enable enable + + + + diff --git a/BusinessLayer/Services/IService.cs b/BusinessLayer/Services/IService.cs new file mode 100644 index 0000000..a6f96bd --- /dev/null +++ b/BusinessLayer/Services/IService.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; + +namespace BusinessLayer.Services +{ + public interface IService + where T : class + { + IEnumerable GetAll(int? limit, int? offset); + T? GetById(Guid id); + void Add(T entity); + void Update(T entity); + void Delete(Guid id); + } +} diff --git a/BusinessLayer/Services/IUserService.cs b/BusinessLayer/Services/IUserService.cs new file mode 100644 index 0000000..87351f0 --- /dev/null +++ b/BusinessLayer/Services/IUserService.cs @@ -0,0 +1,10 @@ +using DataAccessLayer.Entities; + +namespace BusinessLayer.Services +{ + public interface IUserService : IService + { + UserAccount? GetByUsername(string username); + UserAccount? GetByEmail(string email); + } +} diff --git a/BusinessLayer/Services/UserService.cs b/BusinessLayer/Services/UserService.cs new file mode 100644 index 0000000..1ab5e1a --- /dev/null +++ b/BusinessLayer/Services/UserService.cs @@ -0,0 +1,50 @@ +using DataAccessLayer; +using DataAccessLayer.Entities; + +namespace BusinessLayer.Services +{ + public class UserService : IUserService + { + private readonly IUserAccountRepository _userAccountRepository; + + public UserService(IUserAccountRepository userAccountRepository) + { + _userAccountRepository = userAccountRepository; + } + + public IEnumerable GetAll(int? limit, int? offset) + { + return _userAccountRepository.GetAll(limit, offset); + } + + public UserAccount? GetById(Guid id) + { + return _userAccountRepository.GetById(id); + } + + public UserAccount? GetByUsername(string username) + { + return _userAccountRepository.GetByUsername(username); + } + + public UserAccount? GetByEmail(string email) + { + return _userAccountRepository.GetByEmail(email); + } + + public void Add(UserAccount userAccount) + { + _userAccountRepository.Add(userAccount); + } + + public void Update(UserAccount userAccount) + { + _userAccountRepository.Update(userAccount); + } + + public void Delete(Guid id) + { + _userAccountRepository.Delete(id); + } + } +} diff --git a/DALTests/UserAccountRepositoryTests.cs b/DALTests/UserAccountRepositoryTests.cs index 0d39440..825cea8 100644 --- a/DALTests/UserAccountRepositoryTests.cs +++ b/DALTests/UserAccountRepositoryTests.cs @@ -144,11 +144,72 @@ namespace DALTests _repository.Add(user2); // Act - var allUsers = _repository.GetAll(); + var allUsers = _repository.GetAll(null, null); // Assert Assert.NotNull(allUsers); Assert.True(allUsers.Count() >= 2); } + + [Fact] + public void GetAll_WithPagination_ShouldRespectLimit() + { + // Arrange + var users = new List + { + new UserAccount + { + UserAccountID = Guid.NewGuid(), + Username = $"pageuser_{Guid.NewGuid():N}", + FirstName = "Page", + LastName = "User", + Email = $"pageuser_{Guid.NewGuid():N}@example.com", + CreatedAt = DateTime.UtcNow, + DateOfBirth = new DateTime(1991, 4, 4), + }, + new UserAccount + { + UserAccountID = Guid.NewGuid(), + Username = $"pageuser_{Guid.NewGuid():N}", + FirstName = "Page", + LastName = "User", + Email = $"pageuser_{Guid.NewGuid():N}@example.com", + CreatedAt = DateTime.UtcNow, + DateOfBirth = new DateTime(1992, 5, 5), + }, + new UserAccount + { + UserAccountID = Guid.NewGuid(), + Username = $"pageuser_{Guid.NewGuid():N}", + FirstName = "Page", + LastName = "User", + Email = $"pageuser_{Guid.NewGuid():N}@example.com", + CreatedAt = DateTime.UtcNow, + DateOfBirth = new DateTime(1993, 6, 6), + } + }; + + foreach (var user in users) + { + _repository.Add(user); + } + + // Act + var page = _repository.GetAll(2, 0).ToList(); + + // Assert + Assert.Equal(2, page.Count); + } + + [Fact] + public void GetAll_WithPagination_ShouldValidateArguments() + { + Assert.Throws( + () => _repository.GetAll(0, 0).ToList() + ); + Assert.Throws( + () => _repository.GetAll(1, -1).ToList() + ); + } } } diff --git a/DataAccessLayer/IRepository.cs b/DataAccessLayer/IRepository.cs index 2dcd100..a72f5f7 100644 --- a/DataAccessLayer/IRepository.cs +++ b/DataAccessLayer/IRepository.cs @@ -6,7 +6,11 @@ namespace DataAccessLayer public interface IRepository where T : class { + void Add(T entity); + + IEnumerable GetAll(int? limit, int? offset); + T? GetById(Guid id); void Update(T entity); void Delete(Guid id); diff --git a/DataAccessLayer/Repositories/IUserAccountRepository.cs b/DataAccessLayer/Repositories/IUserAccountRepository.cs index 8ffc1d4..2e880a6 100644 --- a/DataAccessLayer/Repositories/IUserAccountRepository.cs +++ b/DataAccessLayer/Repositories/IUserAccountRepository.cs @@ -6,7 +6,6 @@ namespace DataAccessLayer { public interface IUserAccountRepository : IRepository { - IEnumerable GetAll(); UserAccount? GetByUsername(string username); UserAccount? GetByEmail(string email); } diff --git a/DataAccessLayer/Repositories/UserAccountRepository.cs b/DataAccessLayer/Repositories/UserAccountRepository.cs index 652ddf0..923d4ee 100644 --- a/DataAccessLayer/Repositories/UserAccountRepository.cs +++ b/DataAccessLayer/Repositories/UserAccountRepository.cs @@ -66,14 +66,46 @@ namespace DataAccessLayer command.ExecuteNonQuery(); } - public IEnumerable GetAll() + public IEnumerable GetAll(int? limit, int? offset) { + if (limit.HasValue && limit <= 0) + { + throw new ArgumentOutOfRangeException( + nameof(limit), + "Limit must be greater than zero." + ); + } + + if (offset < 0) + { + throw new ArgumentOutOfRangeException( + nameof(offset), + "Offset cannot be negative." + ); + } + + if (offset.HasValue && !limit.HasValue) + { + throw new ArgumentOutOfRangeException( + nameof(offset), + "Offset cannot be provided without a limit." + ); + } + using SqlConnection connection = new(_connectionString); using SqlCommand command = new( "usp_GetAllUserAccounts", connection ); command.CommandType = System.Data.CommandType.StoredProcedure; + if (limit.HasValue) + { + command.Parameters.AddWithValue("@Limit", limit.Value); + } + if (offset.HasValue) + { + command.Parameters.AddWithValue("@Offset", offset.Value); + } connection.Open(); using SqlDataReader reader = command.ExecuteReader(); diff --git a/DataAccessLayer/Sql/crud/UserAccount.sql b/DataAccessLayer/Sql/crud/UserAccount.sql deleted file mode 100644 index 61b85dc..0000000 --- a/DataAccessLayer/Sql/crud/UserAccount.sql +++ /dev/null @@ -1,187 +0,0 @@ -USE Biergarten; -GO - -CREATE OR ALTER PROCEDURE usp_CreateUserAccount -( - @UserAccountId UNIQUEIDENTIFIER = NULL, - @Username VARCHAR(64), - @FirstName NVARCHAR(128), - @LastName NVARCHAR(128), - @DateOfBirth DATETIME, - @Email VARCHAR(128) -) -AS -BEGIN - SET NOCOUNT ON - SET XACT_ABORT ON - BEGIN TRANSACTION - - INSERT INTO UserAccount - ( - UserAccountID, - Username, - FirstName, - LastName, - DateOfBirth, - Email - ) - VALUES - ( - COALESCE(@UserAccountId, NEWID()), - @Username, - @FirstName, - @LastName, - @DateOfBirth, - @Email - ); - - - - COMMIT TRANSACTION -END; -GO - -CREATE OR ALTER PROCEDURE usp_DeleteUserAccount -( - @UserAccountId UNIQUEIDENTIFIER -) -AS -BEGIN - SET NOCOUNT ON - SET XACT_ABORT ON - BEGIN TRANSACTION - - IF NOT EXISTS (SELECT 1 FROM UserAccount WHERE UserAccountId = @UserAccountId) - BEGIN - RAISERROR('UserAccount with the specified ID does not exist.', 16, - 1); - ROLLBACK TRANSACTION - RETURN - END - - DELETE FROM UserAccount - WHERE UserAccountId = @UserAccountId; - COMMIT TRANSACTION -END; -GO - - -CREATE OR ALTER PROCEDURE usp_UpdateUserAccount -( - @Username VARCHAR(64), - @FirstName NVARCHAR(128), - @LastName NVARCHAR(128), - @DateOfBirth DATETIME, - @Email VARCHAR(128), - @UserAccountId UNIQUEIDENTIFIER -) -AS -BEGIN - SET NOCOUNT ON - SET XACT_ABORT ON - BEGIN TRANSACTION - - IF NOT EXISTS (SELECT 1 FROM UserAccount WHERE UserAccountId = @UserAccountId) - BEGIN - RAISERROR('UserAccount with the specified ID does not exist.', 16, - 1); - ROLLBACK TRANSACTION - RETURN - END - - UPDATE UserAccount - SET - Username = @Username, - FirstName = @FirstName, - LastName = @LastName, - DateOfBirth = @DateOfBirth, - Email = @Email - WHERE UserAccountId = @UserAccountId; - - COMMIT TRANSACTION -END; -GO - -CREATE OR ALTER PROCEDURE usp_GetUserAccountById -( - @UserAccountId UNIQUEIDENTIFIER -) -AS -BEGIN - SET NOCOUNT ON; - - SELECT UserAccountID, - Username, - FirstName, - LastName, - Email, - CreatedAt, - UpdatedAt, - DateOfBirth, - Timer - FROM dbo.UserAccount - WHERE UserAccountID = @UserAccountId; -END; -GO - -CREATE OR ALTER PROCEDURE usp_GetAllUserAccounts -AS -BEGIN - SET NOCOUNT ON; - - SELECT UserAccountID, - Username, - FirstName, - LastName, - Email, - CreatedAt, - UpdatedAt, - DateOfBirth, - Timer - FROM dbo.UserAccount; -END; -GO - -CREATE OR ALTER PROCEDURE usp_GetUserAccountByUsername -( - @Username VARCHAR(64) -) -AS -BEGIN - SET NOCOUNT ON; - - SELECT UserAccountID, - Username, - FirstName, - LastName, - Email, - CreatedAt, - UpdatedAt, - DateOfBirth, - Timer - FROM dbo.UserAccount - WHERE Username = @Username; -END; -GO - -CREATE OR ALTER PROCEDURE usp_GetUserAccountByEmail -( - @Email VARCHAR(128) -) -AS -BEGIN - SET NOCOUNT ON; - - SELECT UserAccountID, - Username, - FirstName, - LastName, - Email, - CreatedAt, - UpdatedAt, - DateOfBirth, - Timer - FROM dbo.UserAccount - WHERE Email = @Email; -END; -GO diff --git a/DataLayer/DataLayer.csproj b/DataLayer/DataLayer.csproj index 125a909..e9ded85 100644 --- a/DataLayer/DataLayer.csproj +++ b/DataLayer/DataLayer.csproj @@ -5,11 +5,14 @@ enable enable + - + + + - + + + + \ No newline at end of file diff --git a/DataLayer/Program.cs b/DataLayer/Program.cs new file mode 100644 index 0000000..5536d31 --- /dev/null +++ b/DataLayer/Program.cs @@ -0,0 +1,125 @@ +using System.Data; +using System.Security.Cryptography; +using System.Text; +using idunno.Password; +using Konscious.Security.Cryptography; +using Microsoft.Data.SqlClient; + +/// +/// Executes USP_AddUserCredentials to add missing user credentials using a table-valued parameter +/// consisting of the user account id and a generated Argon2 hash. +/// +/// An open SQL connection. +/// A table-valued parameter payload containing user IDs and hashes. +static async Task ExecuteCredentialProcedureAsync(SqlConnection connection, DataTable credentialTable) +{ + await using var command = new SqlCommand("dbo.USP_AddUserCredentials", connection) + { + CommandType = CommandType.StoredProcedure + }; + + // Must match your stored proc parameter name: + var tvpParameter = command.Parameters.Add("@Hash", SqlDbType.Structured); + tvpParameter.TypeName = "dbo.TblUserHashes"; + tvpParameter.Value = credentialTable; + + await command.ExecuteNonQueryAsync(); +} + +/// +/// Builds a DataTable of user account IDs and generated Argon2 password hashes for users that do not yet +/// have credentials. +/// +/// An open SQL connection. +/// A DataTable matching dbo.TblUserHashes with user IDs and hashes. +static async Task BuildCredentialTableAsync(SqlConnection connection) +{ + const string sql = """ +SELECT ua.UserAccountID +FROM dbo.UserAccount AS ua +WHERE NOT EXISTS ( + SELECT 1 + FROM dbo.UserCredential AS uc + WHERE uc.UserAccountID = ua.UserAccountID +); +"""; + + await using var command = new SqlCommand(sql, connection); + await using var reader = await command.ExecuteReaderAsync(); + + // IMPORTANT: column names/types/order should match dbo.TblUserHashes + var table = new DataTable(); + table.Columns.Add("UserAccountID", typeof(Guid)); + table.Columns.Add("Hash", typeof(string)); + + var generator = new PasswordGenerator(); + + while (await reader.ReadAsync()) + { + Guid userId = reader.GetGuid(0); + + // idunno.Password PasswordGenerator signature: + // Generate(length, numberOfDigits, numberOfSymbols, noUpper, allowRepeat) + string pwd = generator.Generate( + length: 64, + numberOfDigits: 10, + numberOfSymbols: 10 + ); + + string hash = GeneratePasswordHash(pwd); + + var row = table.NewRow(); + row["UserAccountID"] = userId; + row["Hash"] = hash; + table.Rows.Add(row); + } + + return table; +} + +/// +/// Generates an Argon2id hash for the given password. +/// +/// The plaintext password. +/// A string in the format "base64(salt):base64(hash)". +static string GeneratePasswordHash(string pwd) +{ + byte[] salt = RandomNumberGenerator.GetBytes(16); + + var argon2 = new Argon2id(Encoding.UTF8.GetBytes(pwd)) + { + Salt = salt, + DegreeOfParallelism = Math.Max(Environment.ProcessorCount, 1), + MemorySize = 65536, + Iterations = 4, + }; + + byte[] hash = argon2.GetBytes(32); + return $"{Convert.ToBase64String(salt)}:{Convert.ToBase64String(hash)}"; +} + +/// +/// Runs the seed process to add test users and generate missing credentials. +/// +/// An open SQL connection. +static async Task RunSeedAsync(SqlConnection connection) +{ + //run add test users + await using var insertCommand = new SqlCommand("dbo.USP_SeedTestUsers", connection) + { + CommandType = CommandType.StoredProcedure + }; + await insertCommand.ExecuteNonQueryAsync(); + + Console.WriteLine("Inserted or refreshed test users."); + + DataTable credentialRows = await BuildCredentialTableAsync(connection); + if (credentialRows.Rows.Count == 0) + { + Console.WriteLine("No new credentials required."); + return; + } + + await ExecuteCredentialProcedureAsync(connection, credentialRows); + Console.WriteLine($"Generated {credentialRows.Rows.Count} credential hashes."); +} diff --git a/DataLayer/scripts/crud/USP_CreateUserAccount.sql b/DataLayer/scripts/crud/USP_CreateUserAccount.sql new file mode 100644 index 0000000..548bbda --- /dev/null +++ b/DataLayer/scripts/crud/USP_CreateUserAccount.sql @@ -0,0 +1,36 @@ + +CREATE OR ALTER PROCEDURE usp_CreateUserAccount +( + @UserAccountId UNIQUEIDENTIFIER = NULL, + @Username VARCHAR(64), + @FirstName NVARCHAR(128), + @LastName NVARCHAR(128), + @DateOfBirth DATETIME, + @Email VARCHAR(128) +) +AS +BEGIN + SET NOCOUNT ON + SET XACT_ABORT ON + BEGIN TRANSACTION + + INSERT INTO UserAccount + ( + UserAccountID, + Username, + FirstName, + LastName, + DateOfBirth, + Email + ) + VALUES + ( + COALESCE(@UserAccountId, NEWID()), + @Username, + @FirstName, + @LastName, + @DateOfBirth, + @Email + ); + COMMIT TRANSACTION +END; diff --git a/DataLayer/scripts/crud/USP_DeleteUserAccount.sql b/DataLayer/scripts/crud/USP_DeleteUserAccount.sql new file mode 100644 index 0000000..4813ad5 --- /dev/null +++ b/DataLayer/scripts/crud/USP_DeleteUserAccount.sql @@ -0,0 +1,23 @@ + +CREATE OR ALTER PROCEDURE usp_DeleteUserAccount +( + @UserAccountId UNIQUEIDENTIFIER +) +AS +BEGIN + SET NOCOUNT ON + SET XACT_ABORT ON + BEGIN TRANSACTION + + IF NOT EXISTS (SELECT 1 FROM UserAccount WHERE UserAccountId = @UserAccountId) + BEGIN + RAISERROR('UserAccount with the specified ID does not exist.', 16, + 1); + ROLLBACK TRANSACTION + RETURN + END + + DELETE FROM UserAccount + WHERE UserAccountId = @UserAccountId; + COMMIT TRANSACTION +END; diff --git a/DataLayer/scripts/crud/USP_GetAllUserAccounts.sql b/DataLayer/scripts/crud/USP_GetAllUserAccounts.sql new file mode 100644 index 0000000..799debe --- /dev/null +++ b/DataLayer/scripts/crud/USP_GetAllUserAccounts.sql @@ -0,0 +1,17 @@ + +CREATE OR ALTER PROCEDURE usp_GetAllUserAccounts +AS +BEGIN + SET NOCOUNT ON; + + SELECT UserAccountID, + Username, + FirstName, + LastName, + Email, + CreatedAt, + UpdatedAt, + DateOfBirth, + Timer + FROM dbo.UserAccount; +END; diff --git a/DataLayer/scripts/crud/USP_GetUserAccountByEmail.sql b/DataLayer/scripts/crud/USP_GetUserAccountByEmail.sql new file mode 100644 index 0000000..22d3e44 --- /dev/null +++ b/DataLayer/scripts/crud/USP_GetUserAccountByEmail.sql @@ -0,0 +1,21 @@ + +CREATE OR ALTER PROCEDURE usp_GetUserAccountByEmail +( + @Email VARCHAR(128) +) +AS +BEGIN + SET NOCOUNT ON; + + SELECT UserAccountID, + Username, + FirstName, + LastName, + Email, + CreatedAt, + UpdatedAt, + DateOfBirth, + Timer + FROM dbo.UserAccount + WHERE Email = @Email; +END; diff --git a/DataLayer/scripts/crud/USP_GetUserAccountById.sql b/DataLayer/scripts/crud/USP_GetUserAccountById.sql new file mode 100644 index 0000000..ace7aa5 --- /dev/null +++ b/DataLayer/scripts/crud/USP_GetUserAccountById.sql @@ -0,0 +1,21 @@ + +CREATE OR ALTER PROCEDURE usp_GetUserAccountById +( + @UserAccountId UNIQUEIDENTIFIER +) +AS +BEGIN + SET NOCOUNT ON; + + SELECT UserAccountID, + Username, + FirstName, + LastName, + Email, + CreatedAt, + UpdatedAt, + DateOfBirth, + Timer + FROM dbo.UserAccount + WHERE UserAccountID = @UserAccountId; +END; diff --git a/DataLayer/scripts/crud/USP_GetUserAccountByUsername.sql b/DataLayer/scripts/crud/USP_GetUserAccountByUsername.sql new file mode 100644 index 0000000..3f12b63 --- /dev/null +++ b/DataLayer/scripts/crud/USP_GetUserAccountByUsername.sql @@ -0,0 +1,21 @@ + +CREATE OR ALTER PROCEDURE usp_GetUserAccountByUsername +( + @Username VARCHAR(64) +) +AS +BEGIN + SET NOCOUNT ON; + + SELECT UserAccountID, + Username, + FirstName, + LastName, + Email, + CreatedAt, + UpdatedAt, + DateOfBirth, + Timer + FROM dbo.UserAccount + WHERE Username = @Username; +END; diff --git a/DataLayer/scripts/crud/USP_UpdateUserAccount.sql b/DataLayer/scripts/crud/USP_UpdateUserAccount.sql new file mode 100644 index 0000000..1326ef5 --- /dev/null +++ b/DataLayer/scripts/crud/USP_UpdateUserAccount.sql @@ -0,0 +1,35 @@ + +CREATE OR ALTER PROCEDURE usp_UpdateUserAccount +( + @Username VARCHAR(64), + @FirstName NVARCHAR(128), + @LastName NVARCHAR(128), + @DateOfBirth DATETIME, + @Email VARCHAR(128), + @UserAccountId UNIQUEIDENTIFIER +) +AS +BEGIN + SET NOCOUNT ON + SET XACT_ABORT ON + BEGIN TRANSACTION + + IF NOT EXISTS (SELECT 1 FROM UserAccount WHERE UserAccountId = @UserAccountId) + BEGIN + RAISERROR('UserAccount with the specified ID does not exist.', 16, + 1); + ROLLBACK TRANSACTION + RETURN + END + + UPDATE UserAccount + SET + Username = @Username, + FirstName = @FirstName, + LastName = @LastName, + DateOfBirth = @DateOfBirth, + Email = @Email + WHERE UserAccountId = @UserAccountId; + + COMMIT TRANSACTION +END; diff --git a/DataLayer/schema.sql b/DataLayer/scripts/schema/schema.sql similarity index 95% rename from DataLayer/schema.sql rename to DataLayer/scripts/schema/schema.sql index 6f42575..6b7bcf9 100644 --- a/DataLayer/schema.sql +++ b/DataLayer/scripts/schema/schema.sql @@ -1,26 +1,22 @@ ----------------------------------------------------------------------------- ----------------------------------------------------------------------------- +-- ---------------------------------------------------------------------------- +-- ---------------------------------------------------------------------------- -USE master; +-- USE master; -IF EXISTS (SELECT name -FROM sys.databases -WHERE name = N'Biergarten') -BEGIN - ALTER DATABASE Biergarten SET SINGLE_USER WITH ROLLBACK IMMEDIATE; -END -GO +-- IF EXISTS (SELECT name +-- FROM sys.databases +-- WHERE name = N'Biergarten') +-- BEGIN +-- ALTER DATABASE Biergarten SET SINGLE_USER WITH ROLLBACK IMMEDIATE; +-- END -DROP DATABASE IF EXISTS Biergarten; -GO +-- DROP DATABASE IF EXISTS Biergarten; -CREATE DATABASE Biergarten; -GO +-- CREATE DATABASE Biergarten; -USE Biergarten; ----------------------------------------------------------------------------- ----------------------------------------------------------------------------- +-- ---------------------------------------------------------------------------- +-- ---------------------------------------------------------------------------- CREATE TABLE dbo.UserAccount ( @@ -553,6 +549,3 @@ CREATE TABLE BeerPostComment CREATE NONCLUSTERED INDEX IX_BeerPostComment_BeerPost ON BeerPostComment(BeerPostID) ----------------------------------------------------------------------------- ----------------------------------------------------------------------------- --- EOF \ No newline at end of file diff --git a/DataLayer/seed/functions/UDF_GetCountryIdByCode.sql b/DataLayer/scripts/seed/functions/UDF_GetCountryIdByCode.sql similarity index 92% rename from DataLayer/seed/functions/UDF_GetCountryIdByCode.sql rename to DataLayer/scripts/seed/functions/UDF_GetCountryIdByCode.sql index 9d9896b..fb0c080 100644 --- a/DataLayer/seed/functions/UDF_GetCountryIdByCode.sql +++ b/DataLayer/scripts/seed/functions/UDF_GetCountryIdByCode.sql @@ -1,6 +1,3 @@ -USE Biergarten; -GO - CREATE OR ALTER FUNCTION dbo.UDF_GetCountryIdByCode ( @CountryCode NVARCHAR(2) @@ -16,4 +13,3 @@ BEGIN RETURN @CountryId; END; -GO diff --git a/DataLayer/seed/functions/UDF_GetStateProvinceIdByCode.sql b/DataLayer/scripts/seed/functions/UDF_GetStateProvinceIdByCode.sql similarity index 93% rename from DataLayer/seed/functions/UDF_GetStateProvinceIdByCode.sql rename to DataLayer/scripts/seed/functions/UDF_GetStateProvinceIdByCode.sql index cd9e64d..0bc6ef1 100644 --- a/DataLayer/seed/functions/UDF_GetStateProvinceIdByCode.sql +++ b/DataLayer/scripts/seed/functions/UDF_GetStateProvinceIdByCode.sql @@ -1,6 +1,3 @@ -USE Biergarten; -GO - CREATE OR ALTER FUNCTION dbo.UDF_GetStateProvinceIdByCode ( @StateProvinceCode NVARCHAR(6) @@ -14,4 +11,3 @@ BEGIN WHERE ISO3616_2 = @StateProvinceCode; RETURN @StateProvinceId; END; -GO diff --git a/DataLayer/seed/procedures/USP_AddLocations.sql b/DataLayer/scripts/seed/procedures/USP_AddLocations.sql similarity index 99% rename from DataLayer/seed/procedures/USP_AddLocations.sql rename to DataLayer/scripts/seed/procedures/USP_AddLocations.sql index 9aaf7ef..abc068b 100644 --- a/DataLayer/seed/procedures/USP_AddLocations.sql +++ b/DataLayer/scripts/seed/procedures/USP_AddLocations.sql @@ -1,6 +1,3 @@ -USE Biergarten; -GO - CREATE OR ALTER PROCEDURE dbo.USP_AddLocations AS BEGIN @@ -501,4 +498,3 @@ BEGIN COMMIT TRANSACTION; END; -GO diff --git a/DataLayer/seed/procedures/USP_AddTestUsers.sql b/DataLayer/scripts/seed/procedures/USP_AddTestUsers.sql similarity index 99% rename from DataLayer/seed/procedures/USP_AddTestUsers.sql rename to DataLayer/scripts/seed/procedures/USP_AddTestUsers.sql index ba92ec0..ac93a18 100644 --- a/DataLayer/seed/procedures/USP_AddTestUsers.sql +++ b/DataLayer/scripts/seed/procedures/USP_AddTestUsers.sql @@ -1,6 +1,3 @@ -USE Biergarten; -GO - CREATE OR ALTER PROCEDURE dbo.USP_AddTestUsers AS BEGIN @@ -133,4 +130,3 @@ BEGIN COMMIT TRANSACTION; END; -GO diff --git a/DataLayer/seed/procedures/USP_AddUserCredentials.sql b/DataLayer/scripts/seed/procedures/USP_AddUserCredentials.sql similarity index 53% rename from DataLayer/seed/procedures/USP_AddUserCredentials.sql rename to DataLayer/scripts/seed/procedures/USP_AddUserCredentials.sql index 9f00164..ba5b797 100644 --- a/DataLayer/seed/procedures/USP_AddUserCredentials.sql +++ b/DataLayer/scripts/seed/procedures/USP_AddUserCredentials.sql @@ -1,17 +1,5 @@ -USE Biergarten; -GO - -IF TYPE_ID(N'dbo.TblUserHashes') IS NULL - EXEC('CREATE TYPE dbo.TblUserHashes AS TABLE - ( - UserAccountId UNIQUEIDENTIFIER NOT NULL, - Hash NVARCHAR(MAX) NOT NULL - );'); -GO - --- Stored procedure to insert Argon2 hashes CREATE OR ALTER PROCEDURE dbo.USP_AddUserCredentials - ( +( @Hash dbo.TblUserHashes READONLY ) AS @@ -30,4 +18,3 @@ BEGIN COMMIT TRANSACTION; END; -GO diff --git a/DataLayer/seed/procedures/USP_CreateUserVerification.sql b/DataLayer/scripts/seed/procedures/USP_CreateUserVerification.sql similarity index 96% rename from DataLayer/seed/procedures/USP_CreateUserVerification.sql rename to DataLayer/scripts/seed/procedures/USP_CreateUserVerification.sql index 7898e1d..38ed1ba 100644 --- a/DataLayer/seed/procedures/USP_CreateUserVerification.sql +++ b/DataLayer/scripts/seed/procedures/USP_CreateUserVerification.sql @@ -1,6 +1,3 @@ -USE Biergarten; -GO - CREATE OR ALTER PROCEDURE dbo.USP_CreateUserVerification AS BEGIN @@ -32,4 +29,3 @@ BEGIN COMMIT TRANSACTION; END -GO diff --git a/DataLayer/seed/SeedDB.cs b/DataLayer/seed/SeedDB.cs deleted file mode 100644 index 2a7b6a0..0000000 --- a/DataLayer/seed/SeedDB.cs +++ /dev/null @@ -1,285 +0,0 @@ -using System.Data; -using System.Security.Cryptography; -using System.Text; -using Konscious.Security.Cryptography; -using Microsoft.Data.SqlClient; - - -string ConnectionString = Environment.GetEnvironmentVariable( - "DB_CONNECTION_STRING" -)!; - -static async Task BuildSchema(SqlConnection connection) -{ - string sql = await File.ReadAllTextAsync(GetScriptPath("schema.sql")); - await ExecuteScriptAsync(connection, sql); - Console.WriteLine("Database schema created or updated successfully."); -} - -static async Task AddStoredProcsAndFunctions(SqlConnection connection) -{ - string projectRoot = Path.GetFullPath( - Path.Combine(AppContext.BaseDirectory, "..", "..", "..") - ); - - string functionsDir = Path.Combine(projectRoot, "seed", "functions"); - string proceduresDir = Path.Combine(projectRoot, "seed", "procedures"); - string crudDir = Path.GetFullPath( - Path.Combine(projectRoot, "..", "DataAccessLayer", "Sql", "crud") - ); - - if (Directory.Exists(functionsDir)) - { - foreach ( - string file in Directory - .EnumerateFiles( - functionsDir, - "*.sql", - SearchOption.TopDirectoryOnly - ) - .OrderBy(f => f, StringComparer.OrdinalIgnoreCase) - ) - { - string sql = await File.ReadAllTextAsync(file); - await ExecuteScriptAsync(connection, sql); - Console.WriteLine( - $"Executed function script: {Path.GetFileName(file)}" - ); - } - } - - if (Directory.Exists(proceduresDir)) - { - foreach ( - string file in Directory - .EnumerateFiles( - proceduresDir, - "*.sql", - SearchOption.TopDirectoryOnly - ) - .OrderBy(f => f, StringComparer.OrdinalIgnoreCase) - ) - { - string sql = await File.ReadAllTextAsync(file); - await ExecuteScriptAsync(connection, sql); - Console.WriteLine( - $"Executed procedure script: {Path.GetFileName(file)}" - ); - } - } - - if (Directory.Exists(crudDir)) - { - foreach ( - string file in Directory - .EnumerateFiles( - crudDir, - "*.sql", - SearchOption.TopDirectoryOnly - ) - .OrderBy(f => f, StringComparer.OrdinalIgnoreCase) - ) - { - string sql = await File.ReadAllTextAsync(file); - await ExecuteScriptAsync(connection, sql); - Console.WriteLine( - $"Executed CRUD script: {Path.GetFileName(file)}" - ); - } - } - - Console.WriteLine( - "Functions and stored procedures added or updated successfully." - ); - return; -} - -static async Task RunSeedAsync(SqlConnection connection) -{ - await ExecuteStoredProcedureAsync(connection, "dbo.USP_AddTestUsers"); - Console.WriteLine("Inserted or refreshed test users."); - - DataTable credentialRows = await BuildCredentialTableAsync(connection); - if (credentialRows.Rows.Count > 0) - { - await ExecuteCredentialProcedureAsync(connection, credentialRows); - Console.WriteLine( - $"Generated {credentialRows.Rows.Count} credential hashes." - ); - } - else - { - Console.WriteLine("No new credentials required."); - } - - await ExecuteStoredProcedureAsync( - connection, - "dbo.USP_CreateUserVerification" - ); - Console.WriteLine("Ensured verification rows exist for all users."); -} - -static async Task ExecuteStoredProcedureAsync( - SqlConnection connection, - string storedProcedureName -) -{ - await using SqlCommand command = new SqlCommand( - storedProcedureName, - connection - ); - command.CommandType = CommandType.StoredProcedure; - await command.ExecuteNonQueryAsync(); -} - -static async Task ExecuteCredentialProcedureAsync( - SqlConnection connection, - DataTable credentialTable -) -{ - await using SqlCommand command = new SqlCommand( - "dbo.USP_AddUserCredentials", - connection - ); - command.CommandType = CommandType.StoredProcedure; - - SqlParameter tvpParameter = command.Parameters.Add( - "@Hash", - SqlDbType.Structured - ); - tvpParameter.TypeName = "dbo.TblUserHashes"; - tvpParameter.Value = credentialTable; - - await command.ExecuteNonQueryAsync(); -} - -static async Task BuildCredentialTableAsync(SqlConnection connection) -{ - const string sql = """ -SELECT ua.UserAccountID, - ua.Username -FROM dbo.UserAccount AS ua -WHERE NOT EXISTS ( - SELECT 1 - FROM dbo.UserCredential AS uc - WHERE uc.UserAccountID = ua.UserAccountID); -"""; - - await using SqlCommand command = new(sql, connection); - await using SqlDataReader reader = await command.ExecuteReaderAsync(); - - DataTable table = new(); - table.Columns.Add("UserAccountId", typeof(Guid)); - table.Columns.Add("Hash", typeof(string)); - - while (await reader.ReadAsync()) - { - Guid userId = reader.GetGuid(0); - string username = reader.GetString(1); - - string password = CreatePlainTextPassword(username); - string hash = GeneratePasswordHash(password); - - DataRow row = table.NewRow(); - row["UserAccountId"] = userId; - row["Hash"] = hash; - table.Rows.Add(row); - } - - return table; -} - -static string CreatePlainTextPassword(string username) => $"{username}#2025!"; - -static string GeneratePasswordHash(string password) -{ - byte[] salt = RandomNumberGenerator.GetBytes(16); - - var argon2 = new Argon2id(Encoding.UTF8.GetBytes(password)) - { - Salt = salt, - DegreeOfParallelism = Math.Max(Environment.ProcessorCount, 1), - MemorySize = 65536, - Iterations = 4, - }; - - byte[] hash = argon2.GetBytes(32); - string saltBase64 = Convert.ToBase64String(salt); - string hashBase64 = Convert.ToBase64String(hash); - - // Store salt and hash together so verification can rebuild the key material. - return $"{saltBase64}:{hashBase64}"; -} - -static async Task ExecuteScriptAsync(SqlConnection connection, string sql) -{ - foreach (string batch in SplitSqlBatches(sql)) - { - if (string.IsNullOrWhiteSpace(batch)) - { - continue; - } - - await using SqlCommand command = new(batch, connection); - await command.ExecuteNonQueryAsync(); - } -} - -static IEnumerable SplitSqlBatches(string sql) -{ - using StringReader reader = new(sql); - StringBuilder buffer = new(); - - string? line; - while ((line = reader.ReadLine()) is not null) - { - if (line.Trim().Equals("GO", StringComparison.OrdinalIgnoreCase)) - { - yield return buffer.ToString(); - buffer.Clear(); - continue; - } - - buffer.AppendLine(line); - } - - if (buffer.Length > 0) - { - yield return buffer.ToString(); - } -} - -static string GetScriptPath(string fileName) -{ - string projectRoot = Path.GetFullPath( - Path.Combine(AppContext.BaseDirectory, "..", "..", "..") - ); - string candidate = Path.Combine(projectRoot, fileName); - - if (File.Exists(candidate)) - { - return candidate; - } - - throw new FileNotFoundException( - $"SQL script '{fileName}' was not found.", - candidate - ); -} - -try -{ - await using SqlConnection connection = new(ConnectionString); - await connection.OpenAsync(); - Console.WriteLine("Connection to database established successfully."); - - await BuildSchema(connection); - await AddStoredProcsAndFunctions(connection); - await RunSeedAsync(connection); - Console.WriteLine("Seeding complete."); -} -catch (Exception ex) -{ - Console.Error.WriteLine($"Seeding failed: {ex.Message}"); - Environment.ExitCode = 1; -} diff --git a/README.md b/README.md index 7b62e9d..5fda357 100644 --- a/README.md +++ b/README.md @@ -32,14 +32,14 @@ The repositories are currently responsible for: ## Database schema and seed - `DataLayer/schema.sql` contains the database schema definitions. -- `DataLayer/seed/SeedDB.cs` provides seeding and stored procedure/function loading. -- Stored procedure scripts are organized under `DataAccessLayer/Sql/crud/` (UserAccount and related). +- `DataLayer/database/` holds application functions and CRUD procedures. +- `DataLayer/seed/` holds seed-only procedures and the `SeedDB.cs` entry point. +- `SeedDB.cs` honors `SEED_MODE` (`database`, `seed`, or `all`) to control which scripts run. ## Key conventions - **Environment variables**: `DB_CONNECTION_STRING` is required for DAL and seed tooling. - **Stored procedures**: CRUD operations use `usp_*` procedures. -- **Rowversion** columns are represented as `byte[]` in entities (e.g., `Timer`). ## Suggested dependency direction diff --git a/WebAPI/Controllers/NotFoundController.cs b/WebAPI/Controllers/NotFoundController.cs new file mode 100644 index 0000000..44af9e0 --- /dev/null +++ b/WebAPI/Controllers/NotFoundController.cs @@ -0,0 +1,16 @@ +using Microsoft.AspNetCore.Mvc; + +namespace WebAPI.Controllers +{ + [ApiController] + [ApiExplorerSettings(IgnoreApi = true)] + [Route("error")] // ← required + public class NotFoundController : ControllerBase + { + [HttpGet("404")] // ← required + public IActionResult Handle404() + { + return NotFound(new { message = "Route not found." }); + } + } +} diff --git a/WebAPI/Controllers/UsersController.cs b/WebAPI/Controllers/UsersController.cs index 0526c9d..c91a2db 100644 --- a/WebAPI/Controllers/UsersController.cs +++ b/WebAPI/Controllers/UsersController.cs @@ -1,5 +1,5 @@ -using DataAccessLayer; using DataAccessLayer.Entities; +using BusinessLayer.Services; using Microsoft.AspNetCore.Mvc; namespace WebAPI.Controllers @@ -8,40 +8,57 @@ namespace WebAPI.Controllers [Route("api/users")] public class UsersController : ControllerBase { - private readonly IUserAccountRepository _userAccountRepository; + private readonly IUserService _userService; - public UsersController() + public UsersController(IUserService userService) { - _userAccountRepository = new UserAccountRepository(); + _userService = userService; } // all users [HttpGet] - [HttpGet("users")] - public IActionResult GetAllUsers() + public IActionResult GetAllUsers( + [FromQuery] int? limit, + [FromQuery] int? offset + ) { - var users = _userAccountRepository.GetAll(); + if (offset.HasValue && !limit.HasValue) + { + return BadRequest("Limit is required when offset is provided."); + } + + if (limit.HasValue && limit <= 0) + { + return BadRequest("Limit must be greater than zero."); + } + + if (offset.HasValue && offset < 0) + { + return BadRequest("Offset cannot be negative."); + } + + var users = _userService.GetAll(limit, offset); return Ok(users); } [HttpGet("{id:guid}")] public IActionResult GetUserById(Guid id) { - var user = _userAccountRepository.GetById(id); + var user = _userService.GetById(id); return user is null ? NotFound() : Ok(user); } - [HttpGet("by-username/{username}")] + [HttpGet("username/{username}")] public IActionResult GetUserByUsername(string username) { - var user = _userAccountRepository.GetByUsername(username); + var user = _userService.GetByUsername(username); return user is null ? NotFound() : Ok(user); } - [HttpGet("by-email/{email}")] + [HttpGet("email/{email}")] public IActionResult GetUserByEmail(string email) { - var user = _userAccountRepository.GetByEmail(email); + var user = _userService.GetByEmail(email); return user is null ? NotFound() : Ok(user); } @@ -53,7 +70,7 @@ namespace WebAPI.Controllers userAccount.UserAccountID = Guid.NewGuid(); } - _userAccountRepository.Add(userAccount); + _userService.Add(userAccount); return CreatedAtAction( nameof(GetUserById), new { id = userAccount.UserAccountID }, @@ -70,14 +87,14 @@ namespace WebAPI.Controllers } userAccount.UserAccountID = id; - _userAccountRepository.Update(userAccount); + _userService.Update(userAccount); return NoContent(); } [HttpDelete("{id:guid}")] public IActionResult DeleteUser(Guid id) { - _userAccountRepository.Delete(id); + _userService.Delete(id); return NoContent(); } } diff --git a/WebAPI/Program.cs b/WebAPI/Program.cs index 8b34623..4abd51f 100644 --- a/WebAPI/Program.cs +++ b/WebAPI/Program.cs @@ -1,9 +1,14 @@ -var builder = WebApplication.CreateBuilder(args); +using BusinessLayer.Services; +using DataAccessLayer; + +var builder = WebApplication.CreateBuilder(args); -builder.Services.AddControllers(); -builder.Services.AddEndpointsApiExplorer(); -builder.Services.AddSwaggerGen(); -builder.Services.AddOpenApi(); +builder.Services.AddControllers(); +builder.Services.AddEndpointsApiExplorer(); +builder.Services.AddSwaggerGen(); +builder.Services.AddOpenApi(); +builder.Services.AddScoped(); +builder.Services.AddScoped(); var app = builder.Build(); @@ -14,7 +19,8 @@ if (app.Environment.IsDevelopment()) app.MapOpenApi(); } -app.UseHttpsRedirection(); -app.MapControllers(); -app.Run(); +app.UseHttpsRedirection(); +app.MapControllers(); +app.MapFallbackToController("Handle404", "NotFound"); +app.Run(); diff --git a/WebAPI/WebAPI.csproj b/WebAPI/WebAPI.csproj index 36eab33..af503a3 100644 --- a/WebAPI/WebAPI.csproj +++ b/WebAPI/WebAPI.csproj @@ -1,16 +1,16 @@ - - - net10.0 - enable - enable - - + + + net10.0 + enable + enable + + - - - - - + + + + + diff --git a/WebCrawler/Program.cs b/WebCrawler/Program.cs deleted file mode 100644 index 3751555..0000000 --- a/WebCrawler/Program.cs +++ /dev/null @@ -1,2 +0,0 @@ -// See https://aka.ms/new-console-template for more information -Console.WriteLine("Hello, World!"); diff --git a/WebCrawler/WebCrawler.csproj b/WebCrawler/WebCrawler.csproj deleted file mode 100644 index ed9781c..0000000 --- a/WebCrawler/WebCrawler.csproj +++ /dev/null @@ -1,10 +0,0 @@ - - - - Exe - net10.0 - enable - enable - - - diff --git a/biergarten.sln b/biergarten.sln index fb38f49..d3bfd84 100644 --- a/biergarten.sln +++ b/biergarten.sln @@ -13,8 +13,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BusinessLayer", "BusinessLa EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DALTests", "DALTests\DALTests.csproj", "{99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebCrawler", "WebCrawler\WebCrawler.csproj", "{5B37FCDB-1BD0-439A-A840-61322353EAAE}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU diff --git a/DataLayer/data_source/beers.csv b/misc/raw-data/beers.csv similarity index 100% rename from DataLayer/data_source/beers.csv rename to misc/raw-data/beers.csv diff --git a/DataLayer/data_source/breweries.csv b/misc/raw-data/breweries.csv similarity index 100% rename from DataLayer/data_source/breweries.csv rename to misc/raw-data/breweries.csv diff --git a/DataLayer/data_source/breweries.json b/misc/raw-data/breweries.json similarity index 100% rename from DataLayer/data_source/breweries.json rename to misc/raw-data/breweries.json diff --git a/DataLayer/data_source/ontariobreweries.json b/misc/raw-data/ontariobreweries.json similarity index 100% rename from DataLayer/data_source/ontariobreweries.json rename to misc/raw-data/ontariobreweries.json From 7fbdfbf542f641baca1e4de72b4371a63a5feb2e Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Tue, 13 Jan 2026 00:25:30 -0500 Subject: [PATCH 17/25] Add dbup for sql script handling --- DataLayer/Program.cs | 32 +++++++++++++++++++ .../scripts/{schema => 01-schema}/schema.sql | 22 ++++++------- .../scripts/seed/01-types/TblUserHashes.sql | 6 ++++ .../procedures/USP_AddUserCredentials.sql | 2 ++ 4 files changed, 51 insertions(+), 11 deletions(-) rename DataLayer/scripts/{schema => 01-schema}/schema.sql (98%) create mode 100644 DataLayer/scripts/seed/01-types/TblUserHashes.sql diff --git a/DataLayer/Program.cs b/DataLayer/Program.cs index 5536d31..652200e 100644 --- a/DataLayer/Program.cs +++ b/DataLayer/Program.cs @@ -1,6 +1,8 @@ using System.Data; +using System.Reflection; using System.Security.Cryptography; using System.Text; +using DbUp; using idunno.Password; using Konscious.Security.Cryptography; using Microsoft.Data.SqlClient; @@ -123,3 +125,33 @@ static async Task RunSeedAsync(SqlConnection connection) await ExecuteCredentialProcedureAsync(connection, credentialRows); Console.WriteLine($"Generated {credentialRows.Rows.Count} credential hashes."); } + + + +// Get connection string from environment variable + var connectionString = Environment.GetEnvironmentVariable("DB_CONNECTION_STRING"); + + var upgrader = + DeployChanges.To + .SqlDatabase(connectionString) + .WithScriptsEmbeddedInAssembly(Assembly.GetExecutingAssembly()) + .LogToConsole() + .Build(); + + var result = upgrader.PerformUpgrade(); + + if (!result.Successful) + { + Console.ForegroundColor = ConsoleColor.Red; + Console.WriteLine(result.Error); + Console.ResetColor(); +#if DEBUG + Console.ReadLine(); +#endif + return -1; + } + + Console.ForegroundColor = ConsoleColor.Green; + Console.WriteLine("Success!"); + Console.ResetColor(); + return 0; diff --git a/DataLayer/scripts/schema/schema.sql b/DataLayer/scripts/01-schema/schema.sql similarity index 98% rename from DataLayer/scripts/schema/schema.sql rename to DataLayer/scripts/01-schema/schema.sql index 6b7bcf9..e04a681 100644 --- a/DataLayer/scripts/schema/schema.sql +++ b/DataLayer/scripts/01-schema/schema.sql @@ -1,20 +1,20 @@ -- ---------------------------------------------------------------------------- -- ---------------------------------------------------------------------------- +/* +USE master; --- USE master; +IF EXISTS (SELECT name +FROM sys.databases +WHERE name = N'Biergarten') +BEGIN + ALTER DATABASE Biergarten SET SINGLE_USER WITH ROLLBACK IMMEDIATE; +END --- IF EXISTS (SELECT name --- FROM sys.databases --- WHERE name = N'Biergarten') --- BEGIN --- ALTER DATABASE Biergarten SET SINGLE_USER WITH ROLLBACK IMMEDIATE; --- END - --- DROP DATABASE IF EXISTS Biergarten; - --- CREATE DATABASE Biergarten; +DROP DATABASE IF EXISTS Biergarten; +CREATE DATABASE Biergarten; +*/ -- ---------------------------------------------------------------------------- -- ---------------------------------------------------------------------------- diff --git a/DataLayer/scripts/seed/01-types/TblUserHashes.sql b/DataLayer/scripts/seed/01-types/TblUserHashes.sql new file mode 100644 index 0000000..c26b6b1 --- /dev/null +++ b/DataLayer/scripts/seed/01-types/TblUserHashes.sql @@ -0,0 +1,6 @@ + +CREATE TYPE dbo.TblUserHashes AS TABLE + ( + UserAccountId UNIQUEIDENTIFIER NOT NULL, + Hash NVARCHAR(MAX) NOT NULL + ); \ No newline at end of file diff --git a/DataLayer/scripts/seed/procedures/USP_AddUserCredentials.sql b/DataLayer/scripts/seed/procedures/USP_AddUserCredentials.sql index ba5b797..c5a6043 100644 --- a/DataLayer/scripts/seed/procedures/USP_AddUserCredentials.sql +++ b/DataLayer/scripts/seed/procedures/USP_AddUserCredentials.sql @@ -1,3 +1,4 @@ +-- Stored procedure to insert Argon2 hashes CREATE OR ALTER PROCEDURE dbo.USP_AddUserCredentials ( @Hash dbo.TblUserHashes READONLY @@ -18,3 +19,4 @@ BEGIN COMMIT TRANSACTION; END; +GO From b5ab6f6893df9e0ef66a3170663eaa83ba1f2f42 Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Tue, 13 Jan 2026 20:10:39 -0500 Subject: [PATCH 18/25] restructure seed --- .idea/.idea.biergarten/.idea/.gitignore | 15 + .idea/.idea.biergarten/.idea/.name | 1 + .idea/.idea.biergarten/.idea/dataSources.xml | 24 + .../.idea/data_source_mapping.xml | 17 + .idea/.idea.biergarten/.idea/indexLayout.xml | 8 + .idea/.idea.biergarten/.idea/sqldialects.xml | 15 + .idea/.idea.biergarten/.idea/vcs.xml | 6 + DALTests/UserAccountRepositoryTests.cs | 11 +- DBSeed/DBSeed.csproj | 17 + DBSeed/LocationSeeder.cs | 330 ++++++++++++ DBSeed/Program.cs | 33 ++ DBSeed/UserSeeder.cs | 334 ++++++++++++ DataAccessLayer/IRepository.cs | 3 +- .../Repositories/UserAccountRepository.cs | 16 +- DataLayer/DataLayer.csproj | 9 +- DataLayer/Program.cs | 171 +----- DataLayer/scripts/01-schema/schema.sql | 1 + .../UDF_GetCountryIdByCode.sql | 0 .../UDF_GetStateProvinceIdByCode.sql | 0 .../01-UserAccount}/USP_CreateUserAccount.sql | 0 .../01-UserAccount}/USP_DeleteUserAccount.sql | 0 .../USP_GetAllUserAccounts.sql | 0 .../USP_GetUserAccountByEmail.sql | 0 .../USP_GetUserAccountById.sql | 0 .../USP_GetUserAccountByUsername.sql | 0 .../01-UserAccount}/USP_UpdateUserAccount.sql | 0 .../USP_AddUserCredential.sql | 18 + .../USP_AddUserVerification.sql | 20 + .../03-crud/04-Location/USP_CreateCity.sql | 30 ++ .../03-crud/04-Location/USP_CreateCountry.sql | 22 + .../04-Location/USP_CreateStateProvince.sql | 30 ++ .../scripts/seed/01-types/TblUserHashes.sql | 6 - .../seed/procedures/USP_AddLocations.sql | 500 ------------------ .../seed/procedures/USP_AddTestUsers.sql | 132 ----- .../procedures/USP_AddUserCredentials.sql | 22 - .../procedures/USP_CreateUserVerification.sql | 31 -- WebAPI/Controllers/NotFoundController.cs | 4 +- WebAPI/Controllers/UsersController.cs | 12 +- WebAPI/Program.cs | 23 +- biergarten.sln | 14 + 40 files changed, 1002 insertions(+), 873 deletions(-) create mode 100644 .idea/.idea.biergarten/.idea/.gitignore create mode 100644 .idea/.idea.biergarten/.idea/.name create mode 100644 .idea/.idea.biergarten/.idea/dataSources.xml create mode 100644 .idea/.idea.biergarten/.idea/data_source_mapping.xml create mode 100644 .idea/.idea.biergarten/.idea/indexLayout.xml create mode 100644 .idea/.idea.biergarten/.idea/sqldialects.xml create mode 100644 .idea/.idea.biergarten/.idea/vcs.xml create mode 100644 DBSeed/DBSeed.csproj create mode 100644 DBSeed/LocationSeeder.cs create mode 100644 DBSeed/Program.cs create mode 100644 DBSeed/UserSeeder.cs rename DataLayer/scripts/{seed/functions => 02-functions}/UDF_GetCountryIdByCode.sql (100%) rename DataLayer/scripts/{seed/functions => 02-functions}/UDF_GetStateProvinceIdByCode.sql (100%) rename DataLayer/scripts/{crud => 03-crud/01-UserAccount}/USP_CreateUserAccount.sql (100%) rename DataLayer/scripts/{crud => 03-crud/01-UserAccount}/USP_DeleteUserAccount.sql (100%) rename DataLayer/scripts/{crud => 03-crud/01-UserAccount}/USP_GetAllUserAccounts.sql (100%) rename DataLayer/scripts/{crud => 03-crud/01-UserAccount}/USP_GetUserAccountByEmail.sql (100%) rename DataLayer/scripts/{crud => 03-crud/01-UserAccount}/USP_GetUserAccountById.sql (100%) rename DataLayer/scripts/{crud => 03-crud/01-UserAccount}/USP_GetUserAccountByUsername.sql (100%) rename DataLayer/scripts/{crud => 03-crud/01-UserAccount}/USP_UpdateUserAccount.sql (100%) create mode 100644 DataLayer/scripts/03-crud/02-UserCredential/USP_AddUserCredential.sql create mode 100644 DataLayer/scripts/03-crud/03-UserVerification/USP_AddUserVerification.sql create mode 100644 DataLayer/scripts/03-crud/04-Location/USP_CreateCity.sql create mode 100644 DataLayer/scripts/03-crud/04-Location/USP_CreateCountry.sql create mode 100644 DataLayer/scripts/03-crud/04-Location/USP_CreateStateProvince.sql delete mode 100644 DataLayer/scripts/seed/01-types/TblUserHashes.sql delete mode 100644 DataLayer/scripts/seed/procedures/USP_AddLocations.sql delete mode 100644 DataLayer/scripts/seed/procedures/USP_AddTestUsers.sql delete mode 100644 DataLayer/scripts/seed/procedures/USP_AddUserCredentials.sql delete mode 100644 DataLayer/scripts/seed/procedures/USP_CreateUserVerification.sql diff --git a/.idea/.idea.biergarten/.idea/.gitignore b/.idea/.idea.biergarten/.idea/.gitignore new file mode 100644 index 0000000..611d03c --- /dev/null +++ b/.idea/.idea.biergarten/.idea/.gitignore @@ -0,0 +1,15 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/.idea.biergarten.iml +/contentModel.xml +/modules.xml +/projectSettingsUpdater.xml +# Ignored default folder with query files +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/.idea.biergarten/.idea/.name b/.idea/.idea.biergarten/.idea/.name new file mode 100644 index 0000000..a1865e9 --- /dev/null +++ b/.idea/.idea.biergarten/.idea/.name @@ -0,0 +1 @@ +biergarten \ No newline at end of file diff --git a/.idea/.idea.biergarten/.idea/dataSources.xml b/.idea/.idea.biergarten/.idea/dataSources.xml new file mode 100644 index 0000000..7b8055e --- /dev/null +++ b/.idea/.idea.biergarten/.idea/dataSources.xml @@ -0,0 +1,24 @@ + + + + + sqlserver.jb + true + com.jetbrains.jdbc.sqlserver.SqlServerDriver + Server=localhost;Database=Biergarten;TrustServerCertificate=True; + + + + + + $ProjectFileDir$ + + + diff --git a/.idea/.idea.biergarten/.idea/data_source_mapping.xml b/.idea/.idea.biergarten/.idea/data_source_mapping.xml new file mode 100644 index 0000000..3edede8 --- /dev/null +++ b/.idea/.idea.biergarten/.idea/data_source_mapping.xml @@ -0,0 +1,17 @@ + + + + + + + + diff --git a/.idea/.idea.biergarten/.idea/indexLayout.xml b/.idea/.idea.biergarten/.idea/indexLayout.xml new file mode 100644 index 0000000..67b8dc9 --- /dev/null +++ b/.idea/.idea.biergarten/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/.idea/.idea.biergarten/.idea/sqldialects.xml b/.idea/.idea.biergarten/.idea/sqldialects.xml new file mode 100644 index 0000000..fb7c0dd --- /dev/null +++ b/.idea/.idea.biergarten/.idea/sqldialects.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.biergarten/.idea/vcs.xml b/.idea/.idea.biergarten/.idea/vcs.xml new file mode 100644 index 0000000..dcb6b8c --- /dev/null +++ b/.idea/.idea.biergarten/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/DALTests/UserAccountRepositoryTests.cs b/DALTests/UserAccountRepositoryTests.cs index 825cea8..d02d34f 100644 --- a/DALTests/UserAccountRepositoryTests.cs +++ b/DALTests/UserAccountRepositoryTests.cs @@ -19,7 +19,6 @@ namespace DALTests [Fact] public void Add_ShouldInsertUserAccount() { - // Arrange var userAccount = new UserAccount { @@ -186,7 +185,7 @@ namespace DALTests Email = $"pageuser_{Guid.NewGuid():N}@example.com", CreatedAt = DateTime.UtcNow, DateOfBirth = new DateTime(1993, 6, 6), - } + }, }; foreach (var user in users) @@ -204,11 +203,11 @@ namespace DALTests [Fact] public void GetAll_WithPagination_ShouldValidateArguments() { - Assert.Throws( - () => _repository.GetAll(0, 0).ToList() + Assert.Throws(() => + _repository.GetAll(0, 0).ToList() ); - Assert.Throws( - () => _repository.GetAll(1, -1).ToList() + Assert.Throws(() => + _repository.GetAll(1, -1).ToList() ); } } diff --git a/DBSeed/DBSeed.csproj b/DBSeed/DBSeed.csproj new file mode 100644 index 0000000..958ec61 --- /dev/null +++ b/DBSeed/DBSeed.csproj @@ -0,0 +1,17 @@ + + + Exe + net10.0 + enable + enable + + + + + + + + diff --git a/DBSeed/LocationSeeder.cs b/DBSeed/LocationSeeder.cs new file mode 100644 index 0000000..8c825ac --- /dev/null +++ b/DBSeed/LocationSeeder.cs @@ -0,0 +1,330 @@ +using System.Data; +using Microsoft.Data.SqlClient; + +namespace DBSeed; + +internal static class LocationSeeder +{ + private static readonly IReadOnlyList<( + string CountryName, + string CountryCode + )> Countries = + [ + ("Canada", "CA"), + ("Mexico", "MX"), + ("United States", "US"), + ]; + + private static readonly IReadOnlyList<( + string StateProvinceName, + string StateProvinceCode, + string CountryCode + )> States = + [ + ("Alabama", "US-AL", "US"), + ("Alaska", "US-AK", "US"), + ("Arizona", "US-AZ", "US"), + ("Arkansas", "US-AR", "US"), + ("California", "US-CA", "US"), + ("Colorado", "US-CO", "US"), + ("Connecticut", "US-CT", "US"), + ("Delaware", "US-DE", "US"), + ("Florida", "US-FL", "US"), + ("Georgia", "US-GA", "US"), + ("Hawaii", "US-HI", "US"), + ("Idaho", "US-ID", "US"), + ("Illinois", "US-IL", "US"), + ("Indiana", "US-IN", "US"), + ("Iowa", "US-IA", "US"), + ("Kansas", "US-KS", "US"), + ("Kentucky", "US-KY", "US"), + ("Louisiana", "US-LA", "US"), + ("Maine", "US-ME", "US"), + ("Maryland", "US-MD", "US"), + ("Massachusetts", "US-MA", "US"), + ("Michigan", "US-MI", "US"), + ("Minnesota", "US-MN", "US"), + ("Mississippi", "US-MS", "US"), + ("Missouri", "US-MO", "US"), + ("Montana", "US-MT", "US"), + ("Nebraska", "US-NE", "US"), + ("Nevada", "US-NV", "US"), + ("New Hampshire", "US-NH", "US"), + ("New Jersey", "US-NJ", "US"), + ("New Mexico", "US-NM", "US"), + ("New York", "US-NY", "US"), + ("North Carolina", "US-NC", "US"), + ("North Dakota", "US-ND", "US"), + ("Ohio", "US-OH", "US"), + ("Oklahoma", "US-OK", "US"), + ("Oregon", "US-OR", "US"), + ("Pennsylvania", "US-PA", "US"), + ("Rhode Island", "US-RI", "US"), + ("South Carolina", "US-SC", "US"), + ("South Dakota", "US-SD", "US"), + ("Tennessee", "US-TN", "US"), + ("Texas", "US-TX", "US"), + ("Utah", "US-UT", "US"), + ("Vermont", "US-VT", "US"), + ("Virginia", "US-VA", "US"), + ("Washington", "US-WA", "US"), + ("West Virginia", "US-WV", "US"), + ("Wisconsin", "US-WI", "US"), + ("Wyoming", "US-WY", "US"), + ("District of Columbia", "US-DC", "US"), + ("Puerto Rico", "US-PR", "US"), + ("U.S. Virgin Islands", "US-VI", "US"), + ("Guam", "US-GU", "US"), + ("Northern Mariana Islands", "US-MP", "US"), + ("American Samoa", "US-AS", "US"), + ("Ontario", "CA-ON", "CA"), + ("Québec", "CA-QC", "CA"), + ("Nova Scotia", "CA-NS", "CA"), + ("New Brunswick", "CA-NB", "CA"), + ("Manitoba", "CA-MB", "CA"), + ("British Columbia", "CA-BC", "CA"), + ("Prince Edward Island", "CA-PE", "CA"), + ("Saskatchewan", "CA-SK", "CA"), + ("Alberta", "CA-AB", "CA"), + ("Newfoundland and Labrador", "CA-NL", "CA"), + ("Northwest Territories", "CA-NT", "CA"), + ("Yukon", "CA-YT", "CA"), + ("Nunavut", "CA-NU", "CA"), + ("Aguascalientes", "MX-AGU", "MX"), + ("Baja California", "MX-BCN", "MX"), + ("Baja California Sur", "MX-BCS", "MX"), + ("Campeche", "MX-CAM", "MX"), + ("Chiapas", "MX-CHP", "MX"), + ("Chihuahua", "MX-CHH", "MX"), + ("Coahuila de Zaragoza", "MX-COA", "MX"), + ("Colima", "MX-COL", "MX"), + ("Durango", "MX-DUR", "MX"), + ("Guanajuato", "MX-GUA", "MX"), + ("Guerrero", "MX-GRO", "MX"), + ("Hidalgo", "MX-HID", "MX"), + ("Jalisco", "MX-JAL", "MX"), + ("México State", "MX-MEX", "MX"), + ("Michoacán de Ocampo", "MX-MIC", "MX"), + ("Morelos", "MX-MOR", "MX"), + ("Nayarit", "MX-NAY", "MX"), + ("Nuevo León", "MX-NLE", "MX"), + ("Oaxaca", "MX-OAX", "MX"), + ("Puebla", "MX-PUE", "MX"), + ("Querétaro", "MX-QUE", "MX"), + ("Quintana Roo", "MX-ROO", "MX"), + ("San Luis Potosí", "MX-SLP", "MX"), + ("Sinaloa", "MX-SIN", "MX"), + ("Sonora", "MX-SON", "MX"), + ("Tabasco", "MX-TAB", "MX"), + ("Tamaulipas", "MX-TAM", "MX"), + ("Tlaxcala", "MX-TLA", "MX"), + ("Veracruz de Ignacio de la Llave", "MX-VER", "MX"), + ("Yucatán", "MX-YUC", "MX"), + ("Zacatecas", "MX-ZAC", "MX"), + ("Ciudad de México", "MX-CMX", "MX"), + ]; + + private static readonly IReadOnlyList<( + string StateProvinceCode, + string CityName + )> Cities = + [ + ("US-CA", "Los Angeles"), + ("US-CA", "San Diego"), + ("US-CA", "San Francisco"), + ("US-CA", "Sacramento"), + ("US-TX", "Houston"), + ("US-TX", "Dallas"), + ("US-TX", "Austin"), + ("US-TX", "San Antonio"), + ("US-FL", "Miami"), + ("US-FL", "Orlando"), + ("US-FL", "Tampa"), + ("US-NY", "New York"), + ("US-NY", "Buffalo"), + ("US-NY", "Rochester"), + ("US-IL", "Chicago"), + ("US-IL", "Springfield"), + ("US-PA", "Philadelphia"), + ("US-PA", "Pittsburgh"), + ("US-AZ", "Phoenix"), + ("US-AZ", "Tucson"), + ("US-CO", "Denver"), + ("US-CO", "Colorado Springs"), + ("US-MA", "Boston"), + ("US-MA", "Worcester"), + ("US-WA", "Seattle"), + ("US-WA", "Spokane"), + ("US-GA", "Atlanta"), + ("US-GA", "Savannah"), + ("US-NV", "Las Vegas"), + ("US-NV", "Reno"), + ("US-MI", "Detroit"), + ("US-MI", "Grand Rapids"), + ("US-MN", "Minneapolis"), + ("US-MN", "Saint Paul"), + ("US-OH", "Columbus"), + ("US-OH", "Cleveland"), + ("US-OR", "Portland"), + ("US-OR", "Salem"), + ("US-TN", "Nashville"), + ("US-TN", "Memphis"), + ("US-VA", "Richmond"), + ("US-VA", "Virginia Beach"), + ("US-MD", "Baltimore"), + ("US-MD", "Frederick"), + ("US-DC", "Washington"), + ("US-UT", "Salt Lake City"), + ("US-UT", "Provo"), + ("US-LA", "New Orleans"), + ("US-LA", "Baton Rouge"), + ("US-KY", "Louisville"), + ("US-KY", "Lexington"), + ("US-IA", "Des Moines"), + ("US-IA", "Cedar Rapids"), + ("US-OK", "Oklahoma City"), + ("US-OK", "Tulsa"), + ("US-NE", "Omaha"), + ("US-NE", "Lincoln"), + ("US-MO", "Kansas City"), + ("US-MO", "St. Louis"), + ("US-NC", "Charlotte"), + ("US-NC", "Raleigh"), + ("US-SC", "Columbia"), + ("US-SC", "Charleston"), + ("US-WI", "Milwaukee"), + ("US-WI", "Madison"), + ("US-MN", "Duluth"), + ("US-AK", "Anchorage"), + ("US-HI", "Honolulu"), + ("CA-ON", "Toronto"), + ("CA-ON", "Ottawa"), + ("CA-QC", "Montréal"), + ("CA-QC", "Québec City"), + ("CA-BC", "Vancouver"), + ("CA-BC", "Victoria"), + ("CA-AB", "Calgary"), + ("CA-AB", "Edmonton"), + ("CA-MB", "Winnipeg"), + ("CA-NS", "Halifax"), + ("CA-SK", "Saskatoon"), + ("CA-SK", "Regina"), + ("CA-NB", "Moncton"), + ("CA-NB", "Saint John"), + ("CA-PE", "Charlottetown"), + ("CA-NL", "St. John's"), + ("CA-ON", "Hamilton"), + ("CA-ON", "London"), + ("CA-QC", "Gatineau"), + ("CA-QC", "Laval"), + ("CA-BC", "Kelowna"), + ("CA-AB", "Red Deer"), + ("CA-MB", "Brandon"), + ("MX-CMX", "Ciudad de México"), + ("MX-JAL", "Guadalajara"), + ("MX-NLE", "Monterrey"), + ("MX-PUE", "Puebla"), + ("MX-ROO", "Cancún"), + ("MX-GUA", "Guanajuato"), + ("MX-MIC", "Morelia"), + ("MX-BCN", "Tijuana"), + ("MX-JAL", "Zapopan"), + ("MX-NLE", "San Nicolás"), + ("MX-CAM", "Campeche"), + ("MX-TAB", "Villahermosa"), + ("MX-VER", "Veracruz"), + ("MX-OAX", "Oaxaca"), + ("MX-SLP", "San Luis Potosí"), + ("MX-CHH", "Chihuahua"), + ("MX-AGU", "Aguascalientes"), + ("MX-MEX", "Toluca"), + ("MX-COA", "Saltillo"), + ("MX-BCS", "La Paz"), + ("MX-NAY", "Tepic"), + ("MX-ZAC", "Zacatecas"), + ]; + + internal static async Task SeedAsync(SqlConnection connection) + { + foreach (var (countryName, countryCode) in Countries) + { + await CreateCountryAsync(connection, countryName, countryCode); + } + + foreach ( + var (stateProvinceName, stateProvinceCode, countryCode) in States + ) + { + await CreateStateProvinceAsync( + connection, + stateProvinceName, + stateProvinceCode, + countryCode + ); + } + + foreach (var (stateProvinceCode, cityName) in Cities) + { + await CreateCityAsync(connection, cityName, stateProvinceCode); + } + } + + private static async Task CreateCountryAsync( + SqlConnection connection, + string countryName, + string countryCode + ) + { + await using var command = new SqlCommand( + "dbo.USP_CreateCountry", + connection + ); + command.CommandType = CommandType.StoredProcedure; + command.Parameters.AddWithValue("@CountryName", countryName); + command.Parameters.AddWithValue("@ISO3616_1", countryCode); + + await command.ExecuteNonQueryAsync(); + } + + private static async Task CreateStateProvinceAsync( + SqlConnection connection, + string stateProvinceName, + string stateProvinceCode, + string countryCode + ) + { + await using var command = new SqlCommand( + "dbo.USP_CreateStateProvince", + connection + ); + command.CommandType = CommandType.StoredProcedure; + command.Parameters.AddWithValue( + "@StateProvinceName", + stateProvinceName + ); + command.Parameters.AddWithValue("@ISO3616_2", stateProvinceCode); + command.Parameters.AddWithValue("@CountryCode", countryCode); + + await command.ExecuteNonQueryAsync(); + } + + private static async Task CreateCityAsync( + SqlConnection connection, + string cityName, + string stateProvinceCode + ) + { + await using var command = new SqlCommand( + "dbo.USP_CreateCity", + connection + ); + command.CommandType = CommandType.StoredProcedure; + command.Parameters.AddWithValue("@CityName", cityName); + command.Parameters.AddWithValue( + "@StateProvinceCode", + stateProvinceCode + ); + + await command.ExecuteNonQueryAsync(); + } +} diff --git a/DBSeed/Program.cs b/DBSeed/Program.cs new file mode 100644 index 0000000..59e3931 --- /dev/null +++ b/DBSeed/Program.cs @@ -0,0 +1,33 @@ +using DBSeed; +using Microsoft.Data.SqlClient; + +try +{ + var connectionString = Environment.GetEnvironmentVariable( + "DB_CONNECTION_STRING" + ); + if (string.IsNullOrWhiteSpace(connectionString)) + throw new InvalidOperationException( + "Environment variable DB_CONNECTION_STRING is not set or is empty." + ); + + await using var connection = new SqlConnection(connectionString); + await connection.OpenAsync(); + + Console.WriteLine("Connected to database."); + + await LocationSeeder.SeedAsync(connection); + Console.WriteLine("Seeded locations."); + + await UserSeeder.SeedAsync(connection); + Console.WriteLine("Seeded users."); + + Console.WriteLine("Seed completed successfully."); + return 0; +} +catch (Exception ex) +{ + Console.Error.WriteLine("Seed failed:"); + Console.Error.WriteLine(ex); + return 1; +} diff --git a/DBSeed/UserSeeder.cs b/DBSeed/UserSeeder.cs new file mode 100644 index 0000000..26ca3fd --- /dev/null +++ b/DBSeed/UserSeeder.cs @@ -0,0 +1,334 @@ +using System.Data; +using System.Security.Cryptography; +using System.Text; +using idunno.Password; +using Konscious.Security.Cryptography; +using Microsoft.Data.SqlClient; + +namespace DBSeed; + +internal static class UserSeeder +{ + private static readonly IReadOnlyList<(string FirstName, string LastName)> + SeedNames = + [ + ("Aarya", "Mathews"), + ("Aiden", "Wells"), + ("Aleena", "Gonzalez"), + ("Alessandra", "Nelson"), + ("Amari", "Tucker"), + ("Ameer", "Huff"), + ("Amirah", "Hicks"), + ("Analia", "Dominguez"), + ("Anne", "Jenkins"), + ("Apollo", "Davis"), + ("Arianna", "White"), + ("Aubree", "Moore"), + ("Aubrielle", "Raymond"), + ("Aydin", "Odom"), + ("Bowen", "Casey"), + ("Brock", "Huber"), + ("Caiden", "Strong"), + ("Cecilia", "Rosales"), + ("Celeste", "Barber"), + ("Chance", "Small"), + ("Clara", "Roberts"), + ("Collins", "Brandt"), + ("Damir", "Wallace"), + ("Declan", "Crawford"), + ("Dennis", "Decker"), + ("Dylan", "Lang"), + ("Eliza", "Kane"), + ("Elle", "Poole"), + ("Elliott", "Miles"), + ("Emelia", "Lucas"), + ("Emilia", "Simpson"), + ("Emmett", "Lugo"), + ("Ethan", "Stephens"), + ("Etta", "Woods"), + ("Gael", "Moran"), + ("Grant", "Benson"), + ("Gwen", "James"), + ("Huxley", "Chen"), + ("Isabella", "Fisher"), + ("Ivan", "Mathis"), + ("Jamir", "McMillan"), + ("Jaxson", "Shields"), + ("Jimmy", "Richmond"), + ("Josiah", "Flores"), + ("Kaden", "Enriquez"), + ("Kai", "Lawson"), + ("Karsyn", "Adkins"), + ("Karsyn", "Proctor"), + ("Kayden", "Henson"), + ("Kaylie", "Spears"), + ("Kinslee", "Jones"), + ("Kora", "Guerra"), + ("Lane", "Skinner"), + ("Laylani", "Christian"), + ("Ledger", "Carroll"), + ("Leilany", "Small"), + ("Leland", "McCall"), + ("Leonard", "Calhoun"), + ("Levi", "Ochoa"), + ("Lillie", "Vang"), + ("Lola", "Sheppard"), + ("Luciana", "Poole"), + ("Maddox", "Hughes"), + ("Mara", "Blackwell"), + ("Marcellus", "Bartlett"), + ("Margo", "Koch"), + ("Maurice", "Gibson"), + ("Maxton", "Dodson"), + ("Mia", "Parrish"), + ("Millie", "Fuentes"), + ("Nellie", "Villanueva"), + ("Nicolas", "Mata"), + ("Nicolas", "Miller"), + ("Oakleigh", "Foster"), + ("Octavia", "Pierce"), + ("Paisley", "Allison"), + ("Quincy", "Andersen"), + ("Quincy", "Frazier"), + ("Raiden", "Roberts"), + ("Raquel", "Lara"), + ("Rudy", "McIntosh"), + ("Salvador", "Stein"), + ("Samantha", "Dickson"), + ("Solomon", "Richards"), + ("Sylvia", "Hanna"), + ("Talia", "Trujillo"), + ("Thalia", "Farrell"), + ("Trent", "Mayo"), + ("Trinity", "Cummings"), + ("Ty", "Perry"), + ("Tyler", "Romero"), + ("Valeria", "Pierce"), + ("Vance", "Neal"), + ("Whitney", "Bell"), + ("Wilder", "Graves"), + ("William", "Logan"), + ("Zara", "Wilkinson"), + ("Zaria", "Gibson"), + ("Zion", "Watkins"), + ("Zoie", "Armstrong"), + ]; + + public static async Task SeedAsync(SqlConnection connection) + { + var generator = new PasswordGenerator(); + var random = new Random(); + int createdUsers = 0; + int createdCredentials = 0; + int createdVerifications = 0; + + foreach (var (firstName, lastName) in SeedNames) + { + string username = BuildUsername(firstName, lastName); + string email = BuildEmail(firstName, lastName); + Guid? existingId = + await GetUserAccountIdByUsernameAsync(connection, username) + ?? await GetUserAccountIdByEmailAsync(connection, email); + + Guid userAccountId; + if (existingId.HasValue) + { + userAccountId = existingId.Value; + } + else + { + userAccountId = Guid.NewGuid(); + DateTime dateOfBirth = GenerateDateOfBirth(random); + await CreateUserAccountAsync( + connection, + userAccountId, + username, + firstName, + lastName, + email, + dateOfBirth + ); + createdUsers++; + } + + if (!await HasUserCredentialAsync(connection, userAccountId)) + { + string pwd = generator.Generate( + length: 64, + numberOfDigits: 10, + numberOfSymbols: 10 + ); + string hash = GeneratePasswordHash(pwd); + await AddUserCredentialAsync(connection, userAccountId, hash); + createdCredentials++; + } + + if (!await HasUserVerificationAsync(connection, userAccountId)) + { + await AddUserVerificationAsync(connection, userAccountId); + createdVerifications++; + } + } + + Console.WriteLine($"Created {createdUsers} user accounts."); + Console.WriteLine($"Added {createdCredentials} user credentials."); + Console.WriteLine($"Added {createdVerifications} user verifications."); + } + + private static string GeneratePasswordHash(string pwd) + { + byte[] salt = RandomNumberGenerator.GetBytes(16); + + var argon2 = new Argon2id(Encoding.UTF8.GetBytes(pwd)) + { + Salt = salt, + DegreeOfParallelism = Math.Max(Environment.ProcessorCount, 1), + MemorySize = 65536, + Iterations = 4, + }; + + byte[] hash = argon2.GetBytes(32); + return $"{Convert.ToBase64String(salt)}:{Convert.ToBase64String(hash)}"; + } + + private static async Task GetUserAccountIdByUsernameAsync( + SqlConnection connection, + string username + ) + { + await using var command = new SqlCommand( + "usp_GetUserAccountByUsername", + connection + ); + command.CommandType = CommandType.StoredProcedure; + command.Parameters.AddWithValue("@Username", username); + + await using var reader = await command.ExecuteReaderAsync(); + return await reader.ReadAsync() ? reader.GetGuid(0) : null; + } + + private static async Task GetUserAccountIdByEmailAsync( + SqlConnection connection, + string email + ) + { + await using var command = new SqlCommand( + "usp_GetUserAccountByEmail", + connection + ); + command.CommandType = CommandType.StoredProcedure; + command.Parameters.AddWithValue("@Email", email); + + await using var reader = await command.ExecuteReaderAsync(); + return await reader.ReadAsync() ? reader.GetGuid(0) : null; + } + + private static async Task CreateUserAccountAsync( + SqlConnection connection, + Guid userAccountId, + string username, + string firstName, + string lastName, + string email, + DateTime dateOfBirth + ) + { + await using var command = new SqlCommand( + "usp_CreateUserAccount", + connection + ); + command.CommandType = CommandType.StoredProcedure; + command.Parameters.AddWithValue("@UserAccountId", userAccountId); + command.Parameters.AddWithValue("@Username", username); + command.Parameters.AddWithValue("@FirstName", firstName); + command.Parameters.AddWithValue("@LastName", lastName); + command.Parameters.AddWithValue("@DateOfBirth", dateOfBirth); + command.Parameters.AddWithValue("@Email", email); + + await command.ExecuteNonQueryAsync(); + } + + private static async Task HasUserCredentialAsync( + SqlConnection connection, + Guid userAccountId + ) + { + const string sql = """ +SELECT 1 +FROM dbo.UserCredential +WHERE UserAccountId = @UserAccountId; +"""; + await using var command = new SqlCommand(sql, connection); + command.Parameters.AddWithValue("@UserAccountId", userAccountId); + object? result = await command.ExecuteScalarAsync(); + return result is not null; + } + + private static async Task AddUserCredentialAsync( + SqlConnection connection, + Guid userAccountId, + string hash + ) + { + await using var command = new SqlCommand( + "dbo.USP_AddUserCredential", + connection + ); + command.CommandType = CommandType.StoredProcedure; + command.Parameters.AddWithValue("@UserAccountId", userAccountId); + command.Parameters.AddWithValue("@Hash", hash); + + await command.ExecuteNonQueryAsync(); + } + + private static async Task HasUserVerificationAsync( + SqlConnection connection, + Guid userAccountId + ) + { + const string sql = """ +SELECT 1 +FROM dbo.UserVerification +WHERE UserAccountId = @UserAccountId; +"""; + await using var command = new SqlCommand(sql, connection); + command.Parameters.AddWithValue("@UserAccountId", userAccountId); + object? result = await command.ExecuteScalarAsync(); + return result is not null; + } + + private static async Task AddUserVerificationAsync( + SqlConnection connection, + Guid userAccountId + ) + { + await using var command = new SqlCommand( + "dbo.USP_CreateUserVerification", + connection + ); + command.CommandType = CommandType.StoredProcedure; + command.Parameters.AddWithValue("@UserAccountID", userAccountId); + + await command.ExecuteNonQueryAsync(); + } + + private static string BuildUsername(string firstName, string lastName) + { + string username = $"{firstName}.{lastName}".ToLowerInvariant(); + return username.Length <= 64 ? username : username[..64]; + } + + private static string BuildEmail(string firstName, string lastName) + { + string email = $"{firstName}.{lastName}@example.com".ToLowerInvariant(); + return email.Length <= 128 ? email : email[..128]; + } + + private static DateTime GenerateDateOfBirth(Random random) + { + int age = 19 + random.Next(0, 30); + DateTime baseDate = DateTime.UtcNow.Date.AddYears(-age); + int offsetDays = random.Next(0, 365); + return baseDate.AddDays(-offsetDays); + } +} diff --git a/DataAccessLayer/IRepository.cs b/DataAccessLayer/IRepository.cs index a72f5f7..5aee600 100644 --- a/DataAccessLayer/IRepository.cs +++ b/DataAccessLayer/IRepository.cs @@ -6,11 +6,10 @@ namespace DataAccessLayer public interface IRepository where T : class { - void Add(T entity); IEnumerable GetAll(int? limit, int? offset); - + T? GetById(Guid id); void Update(T entity); void Delete(Guid id); diff --git a/DataAccessLayer/Repositories/UserAccountRepository.cs b/DataAccessLayer/Repositories/UserAccountRepository.cs index 923d4ee..4790f3e 100644 --- a/DataAccessLayer/Repositories/UserAccountRepository.cs +++ b/DataAccessLayer/Repositories/UserAccountRepository.cs @@ -8,6 +8,7 @@ namespace DataAccessLayer public class UserAccountRepository : IUserAccountRepository { private readonly string _connectionString; + public UserAccountRepository() { // Retrieve the connection string from environment variables @@ -56,10 +57,7 @@ namespace DataAccessLayer public void Delete(Guid id) { using SqlConnection connection = new(_connectionString); - using SqlCommand command = new( - "usp_DeleteUserAccount", - connection - ); + using SqlCommand command = new("usp_DeleteUserAccount", connection); command.CommandType = System.Data.CommandType.StoredProcedure; command.Parameters.AddWithValue("@UserAccountId", id); connection.Open(); @@ -158,10 +156,16 @@ namespace DataAccessLayer userAccount.UserAccountID ); command.Parameters.AddWithValue("@Username", userAccount.Username); - command.Parameters.AddWithValue("@FirstName", userAccount.FirstName); + command.Parameters.AddWithValue( + "@FirstName", + userAccount.FirstName + ); command.Parameters.AddWithValue("@LastName", userAccount.LastName); command.Parameters.AddWithValue("@Email", userAccount.Email); - command.Parameters.AddWithValue("@DateOfBirth", userAccount.DateOfBirth); + command.Parameters.AddWithValue( + "@DateOfBirth", + userAccount.DateOfBirth + ); } private static void AddUserAccountUpdateParameters( diff --git a/DataLayer/DataLayer.csproj b/DataLayer/DataLayer.csproj index e9ded85..b24604f 100644 --- a/DataLayer/DataLayer.csproj +++ b/DataLayer/DataLayer.csproj @@ -5,14 +5,17 @@ enable enable - + - + - \ No newline at end of file + diff --git a/DataLayer/Program.cs b/DataLayer/Program.cs index 652200e..d3405e9 100644 --- a/DataLayer/Program.cs +++ b/DataLayer/Program.cs @@ -1,157 +1,32 @@ -using System.Data; +// Get connection string from environment variable + using System.Reflection; -using System.Security.Cryptography; -using System.Text; using DbUp; -using idunno.Password; -using Konscious.Security.Cryptography; -using Microsoft.Data.SqlClient; -/// -/// Executes USP_AddUserCredentials to add missing user credentials using a table-valued parameter -/// consisting of the user account id and a generated Argon2 hash. -/// -/// An open SQL connection. -/// A table-valued parameter payload containing user IDs and hashes. -static async Task ExecuteCredentialProcedureAsync(SqlConnection connection, DataTable credentialTable) -{ - await using var command = new SqlCommand("dbo.USP_AddUserCredentials", connection) - { - CommandType = CommandType.StoredProcedure - }; - - // Must match your stored proc parameter name: - var tvpParameter = command.Parameters.Add("@Hash", SqlDbType.Structured); - tvpParameter.TypeName = "dbo.TblUserHashes"; - tvpParameter.Value = credentialTable; - - await command.ExecuteNonQueryAsync(); -} - -/// -/// Builds a DataTable of user account IDs and generated Argon2 password hashes for users that do not yet -/// have credentials. -/// -/// An open SQL connection. -/// A DataTable matching dbo.TblUserHashes with user IDs and hashes. -static async Task BuildCredentialTableAsync(SqlConnection connection) -{ - const string sql = """ -SELECT ua.UserAccountID -FROM dbo.UserAccount AS ua -WHERE NOT EXISTS ( - SELECT 1 - FROM dbo.UserCredential AS uc - WHERE uc.UserAccountID = ua.UserAccountID +var connectionString = Environment.GetEnvironmentVariable( + "DB_CONNECTION_STRING" ); -"""; - await using var command = new SqlCommand(sql, connection); - await using var reader = await command.ExecuteReaderAsync(); +var upgrader = DeployChanges + .To.SqlDatabase(connectionString) + .WithScriptsEmbeddedInAssembly(Assembly.GetExecutingAssembly()) + .LogToConsole() + .Build(); - // IMPORTANT: column names/types/order should match dbo.TblUserHashes - var table = new DataTable(); - table.Columns.Add("UserAccountID", typeof(Guid)); - table.Columns.Add("Hash", typeof(string)); +var result = upgrader.PerformUpgrade(); - var generator = new PasswordGenerator(); - - while (await reader.ReadAsync()) - { - Guid userId = reader.GetGuid(0); - - // idunno.Password PasswordGenerator signature: - // Generate(length, numberOfDigits, numberOfSymbols, noUpper, allowRepeat) - string pwd = generator.Generate( - length: 64, - numberOfDigits: 10, - numberOfSymbols: 10 - ); - - string hash = GeneratePasswordHash(pwd); - - var row = table.NewRow(); - row["UserAccountID"] = userId; - row["Hash"] = hash; - table.Rows.Add(row); - } - - return table; -} - -/// -/// Generates an Argon2id hash for the given password. -/// -/// The plaintext password. -/// A string in the format "base64(salt):base64(hash)". -static string GeneratePasswordHash(string pwd) +if (!result.Successful) { - byte[] salt = RandomNumberGenerator.GetBytes(16); - - var argon2 = new Argon2id(Encoding.UTF8.GetBytes(pwd)) - { - Salt = salt, - DegreeOfParallelism = Math.Max(Environment.ProcessorCount, 1), - MemorySize = 65536, - Iterations = 4, - }; - - byte[] hash = argon2.GetBytes(32); - return $"{Convert.ToBase64String(salt)}:{Convert.ToBase64String(hash)}"; -} - -/// -/// Runs the seed process to add test users and generate missing credentials. -/// -/// An open SQL connection. -static async Task RunSeedAsync(SqlConnection connection) -{ - //run add test users - await using var insertCommand = new SqlCommand("dbo.USP_SeedTestUsers", connection) - { - CommandType = CommandType.StoredProcedure - }; - await insertCommand.ExecuteNonQueryAsync(); - - Console.WriteLine("Inserted or refreshed test users."); - - DataTable credentialRows = await BuildCredentialTableAsync(connection); - if (credentialRows.Rows.Count == 0) - { - Console.WriteLine("No new credentials required."); - return; - } - - await ExecuteCredentialProcedureAsync(connection, credentialRows); - Console.WriteLine($"Generated {credentialRows.Rows.Count} credential hashes."); -} - - - -// Get connection string from environment variable - var connectionString = Environment.GetEnvironmentVariable("DB_CONNECTION_STRING"); - - var upgrader = - DeployChanges.To - .SqlDatabase(connectionString) - .WithScriptsEmbeddedInAssembly(Assembly.GetExecutingAssembly()) - .LogToConsole() - .Build(); - - var result = upgrader.PerformUpgrade(); - - if (!result.Successful) - { - Console.ForegroundColor = ConsoleColor.Red; - Console.WriteLine(result.Error); - Console.ResetColor(); -#if DEBUG - Console.ReadLine(); -#endif - return -1; - } - - Console.ForegroundColor = ConsoleColor.Green; - Console.WriteLine("Success!"); + Console.ForegroundColor = ConsoleColor.Red; + Console.WriteLine(result.Error); Console.ResetColor(); - return 0; +#if DEBUG + Console.ReadLine(); +#endif + return -1; +} + +Console.ForegroundColor = ConsoleColor.Green; +Console.WriteLine("Success!"); +Console.ResetColor(); +return 0; diff --git a/DataLayer/scripts/01-schema/schema.sql b/DataLayer/scripts/01-schema/schema.sql index e04a681..637832e 100644 --- a/DataLayer/scripts/01-schema/schema.sql +++ b/DataLayer/scripts/01-schema/schema.sql @@ -14,6 +14,7 @@ DROP DATABASE IF EXISTS Biergarten; CREATE DATABASE Biergarten; +USE Biergarten; */ -- ---------------------------------------------------------------------------- -- ---------------------------------------------------------------------------- diff --git a/DataLayer/scripts/seed/functions/UDF_GetCountryIdByCode.sql b/DataLayer/scripts/02-functions/UDF_GetCountryIdByCode.sql similarity index 100% rename from DataLayer/scripts/seed/functions/UDF_GetCountryIdByCode.sql rename to DataLayer/scripts/02-functions/UDF_GetCountryIdByCode.sql diff --git a/DataLayer/scripts/seed/functions/UDF_GetStateProvinceIdByCode.sql b/DataLayer/scripts/02-functions/UDF_GetStateProvinceIdByCode.sql similarity index 100% rename from DataLayer/scripts/seed/functions/UDF_GetStateProvinceIdByCode.sql rename to DataLayer/scripts/02-functions/UDF_GetStateProvinceIdByCode.sql diff --git a/DataLayer/scripts/crud/USP_CreateUserAccount.sql b/DataLayer/scripts/03-crud/01-UserAccount/USP_CreateUserAccount.sql similarity index 100% rename from DataLayer/scripts/crud/USP_CreateUserAccount.sql rename to DataLayer/scripts/03-crud/01-UserAccount/USP_CreateUserAccount.sql diff --git a/DataLayer/scripts/crud/USP_DeleteUserAccount.sql b/DataLayer/scripts/03-crud/01-UserAccount/USP_DeleteUserAccount.sql similarity index 100% rename from DataLayer/scripts/crud/USP_DeleteUserAccount.sql rename to DataLayer/scripts/03-crud/01-UserAccount/USP_DeleteUserAccount.sql diff --git a/DataLayer/scripts/crud/USP_GetAllUserAccounts.sql b/DataLayer/scripts/03-crud/01-UserAccount/USP_GetAllUserAccounts.sql similarity index 100% rename from DataLayer/scripts/crud/USP_GetAllUserAccounts.sql rename to DataLayer/scripts/03-crud/01-UserAccount/USP_GetAllUserAccounts.sql diff --git a/DataLayer/scripts/crud/USP_GetUserAccountByEmail.sql b/DataLayer/scripts/03-crud/01-UserAccount/USP_GetUserAccountByEmail.sql similarity index 100% rename from DataLayer/scripts/crud/USP_GetUserAccountByEmail.sql rename to DataLayer/scripts/03-crud/01-UserAccount/USP_GetUserAccountByEmail.sql diff --git a/DataLayer/scripts/crud/USP_GetUserAccountById.sql b/DataLayer/scripts/03-crud/01-UserAccount/USP_GetUserAccountById.sql similarity index 100% rename from DataLayer/scripts/crud/USP_GetUserAccountById.sql rename to DataLayer/scripts/03-crud/01-UserAccount/USP_GetUserAccountById.sql diff --git a/DataLayer/scripts/crud/USP_GetUserAccountByUsername.sql b/DataLayer/scripts/03-crud/01-UserAccount/USP_GetUserAccountByUsername.sql similarity index 100% rename from DataLayer/scripts/crud/USP_GetUserAccountByUsername.sql rename to DataLayer/scripts/03-crud/01-UserAccount/USP_GetUserAccountByUsername.sql diff --git a/DataLayer/scripts/crud/USP_UpdateUserAccount.sql b/DataLayer/scripts/03-crud/01-UserAccount/USP_UpdateUserAccount.sql similarity index 100% rename from DataLayer/scripts/crud/USP_UpdateUserAccount.sql rename to DataLayer/scripts/03-crud/01-UserAccount/USP_UpdateUserAccount.sql diff --git a/DataLayer/scripts/03-crud/02-UserCredential/USP_AddUserCredential.sql b/DataLayer/scripts/03-crud/02-UserCredential/USP_AddUserCredential.sql new file mode 100644 index 0000000..99077b8 --- /dev/null +++ b/DataLayer/scripts/03-crud/02-UserCredential/USP_AddUserCredential.sql @@ -0,0 +1,18 @@ +CREATE OR ALTER PROCEDURE dbo.USP_AddUserCredential( + @UserAccountId uniqueidentifier, + @Hash nvarchar(max) +) +AS +BEGIN + SET NOCOUNT ON; + SET XACT_ABORT ON; + + BEGIN TRANSACTION; + + INSERT INTO dbo.UserCredential + (UserAccountId, Hash) + VALUES + (@UserAccountId, @Hash); + + COMMIT TRANSACTION; +END; \ No newline at end of file diff --git a/DataLayer/scripts/03-crud/03-UserVerification/USP_AddUserVerification.sql b/DataLayer/scripts/03-crud/03-UserVerification/USP_AddUserVerification.sql new file mode 100644 index 0000000..d556fa2 --- /dev/null +++ b/DataLayer/scripts/03-crud/03-UserVerification/USP_AddUserVerification.sql @@ -0,0 +1,20 @@ +CREATE OR ALTER PROCEDURE dbo.USP_CreateUserVerification + @UserAccountID uniqueidentifier, + @VerificationDateTime datetime = NULL +AS +BEGIN + SET NOCOUNT ON; + SET XACT_ABORT ON; + + IF @VerificationDateTime IS NULL + SET @VerificationDateTime = GETDATE(); + + BEGIN TRANSACTION; + + INSERT INTO dbo.UserVerification + (UserAccountId, VerificationDateTime) + VALUES + (@UserAccountID, @VerificationDateTime); + + COMMIT TRANSACTION; +END diff --git a/DataLayer/scripts/03-crud/04-Location/USP_CreateCity.sql b/DataLayer/scripts/03-crud/04-Location/USP_CreateCity.sql new file mode 100644 index 0000000..bae29a1 --- /dev/null +++ b/DataLayer/scripts/03-crud/04-Location/USP_CreateCity.sql @@ -0,0 +1,30 @@ +CREATE OR ALTER PROCEDURE dbo.USP_CreateCity +( + @CityName NVARCHAR(100), + @StateProvinceCode NVARCHAR(6) +) +AS +BEGIN + SET NOCOUNT ON; + SET XACT_ABORT ON; + + DECLARE @StateProvinceId UNIQUEIDENTIFIER = dbo.UDF_GetStateProvinceIdByCode(@StateProvinceCode); + IF @StateProvinceId IS NULL + BEGIN + RAISERROR('State/province not found for code.', 16, 1); + RETURN; + END + + IF EXISTS ( + SELECT 1 + FROM dbo.City + WHERE CityName = @CityName + AND StateProvinceID = @StateProvinceId + ) + RETURN; + + INSERT INTO dbo.City + (StateProvinceID, CityName) + VALUES + (@StateProvinceId, @CityName); +END; diff --git a/DataLayer/scripts/03-crud/04-Location/USP_CreateCountry.sql b/DataLayer/scripts/03-crud/04-Location/USP_CreateCountry.sql new file mode 100644 index 0000000..e6e79e1 --- /dev/null +++ b/DataLayer/scripts/03-crud/04-Location/USP_CreateCountry.sql @@ -0,0 +1,22 @@ +CREATE OR ALTER PROCEDURE dbo.USP_CreateCountry +( + @CountryName NVARCHAR(100), + @ISO3616_1 NVARCHAR(2) +) +AS +BEGIN + SET NOCOUNT ON; + SET XACT_ABORT ON; + + IF EXISTS ( + SELECT 1 + FROM dbo.Country + WHERE ISO3616_1 = @ISO3616_1 + ) + RETURN; + + INSERT INTO dbo.Country + (CountryName, ISO3616_1) + VALUES + (@CountryName, @ISO3616_1); +END; diff --git a/DataLayer/scripts/03-crud/04-Location/USP_CreateStateProvince.sql b/DataLayer/scripts/03-crud/04-Location/USP_CreateStateProvince.sql new file mode 100644 index 0000000..7caca90 --- /dev/null +++ b/DataLayer/scripts/03-crud/04-Location/USP_CreateStateProvince.sql @@ -0,0 +1,30 @@ +CREATE OR ALTER PROCEDURE dbo.USP_CreateStateProvince +( + @StateProvinceName NVARCHAR(100), + @ISO3616_2 NVARCHAR(6), + @CountryCode NVARCHAR(2) +) +AS +BEGIN + SET NOCOUNT ON; + SET XACT_ABORT ON; + + IF EXISTS ( + SELECT 1 + FROM dbo.StateProvince + WHERE ISO3616_2 = @ISO3616_2 + ) + RETURN; + + DECLARE @CountryId UNIQUEIDENTIFIER = dbo.UDF_GetCountryIdByCode(@CountryCode); + IF @CountryId IS NULL + BEGIN + RAISERROR('Country not found for code.', 16, 1); + RETURN; + END + + INSERT INTO dbo.StateProvince + (StateProvinceName, ISO3616_2, CountryID) + VALUES + (@StateProvinceName, @ISO3616_2, @CountryId); +END; diff --git a/DataLayer/scripts/seed/01-types/TblUserHashes.sql b/DataLayer/scripts/seed/01-types/TblUserHashes.sql deleted file mode 100644 index c26b6b1..0000000 --- a/DataLayer/scripts/seed/01-types/TblUserHashes.sql +++ /dev/null @@ -1,6 +0,0 @@ - -CREATE TYPE dbo.TblUserHashes AS TABLE - ( - UserAccountId UNIQUEIDENTIFIER NOT NULL, - Hash NVARCHAR(MAX) NOT NULL - ); \ No newline at end of file diff --git a/DataLayer/scripts/seed/procedures/USP_AddLocations.sql b/DataLayer/scripts/seed/procedures/USP_AddLocations.sql deleted file mode 100644 index abc068b..0000000 --- a/DataLayer/scripts/seed/procedures/USP_AddLocations.sql +++ /dev/null @@ -1,500 +0,0 @@ -CREATE OR ALTER PROCEDURE dbo.USP_AddLocations -AS -BEGIN - SET NOCOUNT ON; - SET XACT_ABORT ON; - - BEGIN TRANSACTION; - -- Countries (alpha-2) - WITH - Countries(CountryName, Alpha2) - AS - ( - SELECT 'Canada', 'CA' - UNION ALL - SELECT 'Mexico', 'MX' - UNION ALL - SELECT 'United States', 'US' - ) - INSERT INTO dbo.Country - (CountryName, ISO3616_1) - SELECT c.CountryName, c.Alpha2 - FROM Countries AS c - WHERE NOT EXISTS (SELECT 1 - FROM dbo.Country AS x - WHERE x.ISO3616_1 = c.Alpha2 - ); - - WITH - Regions(StateProvinceName, ISO2, CountryAlpha2) - AS - ( - -- United States (50 + DC + territories) - SELECT 'Alabama', 'US-AL', 'US' - UNION ALL - SELECT 'Alaska', 'US-AK', 'US' - UNION ALL - SELECT 'Arizona', 'US-AZ', 'US' - UNION ALL - SELECT 'Arkansas', 'US-AR', 'US' - UNION ALL - SELECT 'California', 'US-CA', 'US' - UNION ALL - SELECT 'Colorado', 'US-CO', 'US' - UNION ALL - SELECT 'Connecticut', 'US-CT', 'US' - UNION ALL - SELECT 'Delaware', 'US-DE', 'US' - UNION ALL - SELECT 'Florida', 'US-FL', 'US' - UNION ALL - SELECT 'Georgia', 'US-GA', 'US' - UNION ALL - SELECT 'Hawaii', 'US-HI', 'US' - UNION ALL - SELECT 'Idaho', 'US-ID', 'US' - UNION ALL - SELECT 'Illinois', 'US-IL', 'US' - UNION ALL - SELECT 'Indiana', 'US-IN', 'US' - UNION ALL - SELECT 'Iowa', 'US-IA', 'US' - UNION ALL - SELECT 'Kansas', 'US-KS', 'US' - UNION ALL - SELECT 'Kentucky', 'US-KY', 'US' - UNION ALL - SELECT 'Louisiana', 'US-LA', 'US' - UNION ALL - SELECT 'Maine', 'US-ME', 'US' - UNION ALL - SELECT 'Maryland', 'US-MD', 'US' - UNION ALL - SELECT 'Massachusetts', 'US-MA', 'US' - UNION ALL - SELECT 'Michigan', 'US-MI', 'US' - UNION ALL - SELECT 'Minnesota', 'US-MN', 'US' - UNION ALL - SELECT 'Mississippi', 'US-MS', 'US' - UNION ALL - SELECT 'Missouri', 'US-MO', 'US' - UNION ALL - SELECT 'Montana', 'US-MT', 'US' - UNION ALL - SELECT 'Nebraska', 'US-NE', 'US' - UNION ALL - SELECT 'Nevada', 'US-NV', 'US' - UNION ALL - SELECT 'New Hampshire', 'US-NH', 'US' - UNION ALL - SELECT 'New Jersey', 'US-NJ', 'US' - UNION ALL - SELECT 'New Mexico', 'US-NM', 'US' - UNION ALL - SELECT 'New York', 'US-NY', 'US' - UNION ALL - SELECT 'North Carolina', 'US-NC', 'US' - UNION ALL - SELECT 'North Dakota', 'US-ND', 'US' - UNION ALL - SELECT 'Ohio', 'US-OH', 'US' - UNION ALL - SELECT 'Oklahoma', 'US-OK', 'US' - UNION ALL - SELECT 'Oregon', 'US-OR', 'US' - UNION ALL - SELECT 'Pennsylvania', 'US-PA', 'US' - UNION ALL - SELECT 'Rhode Island', 'US-RI', 'US' - UNION ALL - SELECT 'South Carolina', 'US-SC', 'US' - UNION ALL - SELECT 'South Dakota', 'US-SD', 'US' - UNION ALL - SELECT 'Tennessee', 'US-TN', 'US' - UNION ALL - SELECT 'Texas', 'US-TX', 'US' - UNION ALL - SELECT 'Utah', 'US-UT', 'US' - UNION ALL - SELECT 'Vermont', 'US-VT', 'US' - UNION ALL - SELECT 'Virginia', 'US-VA', 'US' - UNION ALL - SELECT 'Washington', 'US-WA', 'US' - UNION ALL - SELECT 'West Virginia', 'US-WV', 'US' - UNION ALL - SELECT 'Wisconsin', 'US-WI', 'US' - UNION ALL - SELECT 'Wyoming', 'US-WY', 'US' - UNION ALL - SELECT 'District of Columbia', 'US-DC', 'US' - UNION ALL - SELECT 'Puerto Rico', 'US-PR', 'US' - UNION ALL - SELECT 'U.S. Virgin Islands', 'US-VI', 'US' - UNION ALL - SELECT 'Guam', 'US-GU', 'US' - UNION ALL - SELECT 'Northern Mariana Islands', 'US-MP', 'US' - UNION ALL - SELECT 'American Samoa', 'US-AS', 'US' - - -- Canada (10 provinces + 3 territories) - UNION ALL - SELECT 'Ontario', 'CA-ON', 'CA' - UNION ALL - SELECT N'Québec', 'CA-QC', 'CA' - UNION ALL - SELECT 'Nova Scotia', 'CA-NS', 'CA' - UNION ALL - SELECT 'New Brunswick', 'CA-NB', 'CA' - UNION ALL - SELECT 'Manitoba', 'CA-MB', 'CA' - UNION ALL - SELECT 'British Columbia', 'CA-BC', 'CA' - UNION ALL - SELECT 'Prince Edward Island', 'CA-PE', 'CA' - UNION ALL - SELECT 'Saskatchewan', 'CA-SK', 'CA' - UNION ALL - SELECT 'Alberta', 'CA-AB', 'CA' - UNION ALL - SELECT 'Newfoundland and Labrador', 'CA-NL', 'CA' - UNION ALL - SELECT 'Northwest Territories', 'CA-NT', 'CA' - UNION ALL - SELECT 'Yukon', 'CA-YT', 'CA' - UNION ALL - SELECT 'Nunavut', 'CA-NU', 'CA' - - -- Mexico (32 states incl. CDMX) - UNION ALL - SELECT 'Aguascalientes', 'MX-AGU', 'MX' - UNION ALL - SELECT 'Baja California', 'MX-BCN', 'MX' - UNION ALL - SELECT 'Baja California Sur', 'MX-BCS', 'MX' - UNION ALL - SELECT 'Campeche', 'MX-CAM', 'MX' - UNION ALL - SELECT 'Chiapas', 'MX-CHP', 'MX' - UNION ALL - SELECT 'Chihuahua', 'MX-CHH', 'MX' - UNION ALL - SELECT 'Coahuila de Zaragoza', 'MX-COA', 'MX' - UNION ALL - SELECT 'Colima', 'MX-COL', 'MX' - UNION ALL - SELECT 'Durango', 'MX-DUR', 'MX' - UNION ALL - SELECT 'Guanajuato', 'MX-GUA', 'MX' - UNION ALL - SELECT 'Guerrero', 'MX-GRO', 'MX' - UNION ALL - SELECT 'Hidalgo', 'MX-HID', 'MX' - UNION ALL - SELECT 'Jalisco', 'MX-JAL', 'MX' - UNION ALL - SELECT N'México State', 'MX-MEX', 'MX' - UNION ALL - SELECT N'Michoacán de Ocampo', 'MX-MIC', 'MX' - UNION ALL - SELECT 'Morelos', 'MX-MOR', 'MX' - UNION ALL - SELECT 'Nayarit', 'MX-NAY', 'MX' - UNION ALL - SELECT N'Nuevo León', 'MX-NLE', 'MX' - UNION ALL - SELECT 'Oaxaca', 'MX-OAX', 'MX' - UNION ALL - SELECT 'Puebla', 'MX-PUE', 'MX' - UNION ALL - SELECT N'Querétaro', 'MX-QUE', 'MX' - UNION ALL - SELECT 'Quintana Roo', 'MX-ROO', 'MX' - UNION ALL - SELECT N'San Luis Potosí', 'MX-SLP', 'MX' - UNION ALL - SELECT 'Sinaloa', 'MX-SIN', 'MX' - UNION ALL - SELECT 'Sonora', 'MX-SON', 'MX' - UNION ALL - SELECT 'Tabasco', 'MX-TAB', 'MX' - UNION ALL - SELECT 'Tamaulipas', 'MX-TAM', 'MX' - UNION ALL - SELECT 'Tlaxcala', 'MX-TLA', 'MX' - UNION ALL - SELECT 'Veracruz de Ignacio de la Llave', 'MX-VER', 'MX' - UNION ALL - SELECT N'Yucatán', 'MX-YUC', 'MX' - UNION ALL - SELECT 'Zacatecas', 'MX-ZAC', 'MX' - UNION ALL - SELECT N'Ciudad de México', 'MX-CMX', 'MX' - ) - INSERT INTO dbo.StateProvince - (StateProvinceName, ISO3616_2, CountryID) - SELECT - r.StateProvinceName, - r.ISO2, - dbo.UDF_GetCountryIdByCode(r.CountryAlpha2) - FROM Regions AS r - WHERE NOT EXISTS ( - SELECT 1 - FROM dbo.StateProvince AS sp - WHERE sp.ISO3616_2 = r.ISO2 - ); - - WITH - Cities(StateProvinceISO2, CityName) - AS - ( - -- USA - SELECT 'US-CA', 'Los Angeles' - UNION ALL - SELECT 'US-CA', 'San Diego' - UNION ALL - SELECT 'US-CA', 'San Francisco' - UNION ALL - SELECT 'US-CA', 'Sacramento' - UNION ALL - SELECT 'US-TX', 'Houston' - UNION ALL - SELECT 'US-TX', 'Dallas' - UNION ALL - SELECT 'US-TX', 'Austin' - UNION ALL - SELECT 'US-TX', 'San Antonio' - UNION ALL - SELECT 'US-FL', 'Miami' - UNION ALL - SELECT 'US-FL', 'Orlando' - UNION ALL - SELECT 'US-FL', 'Tampa' - UNION ALL - SELECT 'US-NY', 'New York' - UNION ALL - SELECT 'US-NY', 'Buffalo' - UNION ALL - SELECT 'US-NY', 'Rochester' - UNION ALL - SELECT 'US-IL', 'Chicago' - UNION ALL - SELECT 'US-IL', 'Springfield' - UNION ALL - SELECT 'US-PA', 'Philadelphia' - UNION ALL - SELECT 'US-PA', 'Pittsburgh' - UNION ALL - SELECT 'US-AZ', 'Phoenix' - UNION ALL - SELECT 'US-AZ', 'Tucson' - UNION ALL - SELECT 'US-CO', 'Denver' - UNION ALL - SELECT 'US-CO', 'Colorado Springs' - UNION ALL - SELECT 'US-MA', 'Boston' - UNION ALL - SELECT 'US-MA', 'Worcester' - UNION ALL - SELECT 'US-WA', 'Seattle' - UNION ALL - SELECT 'US-WA', 'Spokane' - UNION ALL - SELECT 'US-GA', 'Atlanta' - UNION ALL - SELECT 'US-GA', 'Savannah' - UNION ALL - SELECT 'US-NV', 'Las Vegas' - UNION ALL - SELECT 'US-NV', 'Reno' - UNION ALL - SELECT 'US-MI', 'Detroit' - UNION ALL - SELECT 'US-MI', 'Grand Rapids' - UNION ALL - SELECT 'US-MN', 'Minneapolis' - UNION ALL - SELECT 'US-MN', 'Saint Paul' - UNION ALL - SELECT 'US-OH', 'Columbus' - UNION ALL - SELECT 'US-OH', 'Cleveland' - UNION ALL - SELECT 'US-OR', 'Portland' - UNION ALL - SELECT 'US-OR', 'Salem' - UNION ALL - SELECT 'US-TN', 'Nashville' - UNION ALL - SELECT 'US-TN', 'Memphis' - UNION ALL - SELECT 'US-VA', 'Richmond' - UNION ALL - SELECT 'US-VA', 'Virginia Beach' - UNION ALL - SELECT 'US-MD', 'Baltimore' - UNION ALL - SELECT 'US-MD', 'Frederick' - UNION ALL - SELECT 'US-DC', 'Washington' - UNION ALL - SELECT 'US-UT', 'Salt Lake City' - UNION ALL - SELECT 'US-UT', 'Provo' - UNION ALL - SELECT 'US-LA', 'New Orleans' - UNION ALL - SELECT 'US-LA', 'Baton Rouge' - UNION ALL - SELECT 'US-KY', 'Louisville' - UNION ALL - SELECT 'US-KY', 'Lexington' - UNION ALL - SELECT 'US-IA', 'Des Moines' - UNION ALL - SELECT 'US-IA', 'Cedar Rapids' - UNION ALL - SELECT 'US-OK', 'Oklahoma City' - UNION ALL - SELECT 'US-OK', 'Tulsa' - UNION ALL - SELECT 'US-NE', 'Omaha' - UNION ALL - SELECT 'US-NE', 'Lincoln' - UNION ALL - SELECT 'US-MO', 'Kansas City' - UNION ALL - SELECT 'US-MO', 'St. Louis' - UNION ALL - SELECT 'US-NC', 'Charlotte' - UNION ALL - SELECT 'US-NC', 'Raleigh' - UNION ALL - SELECT 'US-SC', 'Columbia' - UNION ALL - SELECT 'US-SC', 'Charleston' - UNION ALL - SELECT 'US-WI', 'Milwaukee' - UNION ALL - SELECT 'US-WI', 'Madison' - UNION ALL - SELECT 'US-MN', 'Duluth' - UNION ALL - SELECT 'US-AK', 'Anchorage' - UNION ALL - SELECT 'US-HI', 'Honolulu' - -- Canada - UNION ALL - SELECT 'CA-ON', 'Toronto' - UNION ALL - SELECT 'CA-ON', 'Ottawa' - UNION ALL - SELECT 'CA-QC', N'Montréal' - UNION ALL - SELECT 'CA-QC', N'Québec City' - UNION ALL - SELECT 'CA-BC', 'Vancouver' - UNION ALL - SELECT 'CA-BC', 'Victoria' - UNION ALL - SELECT 'CA-AB', 'Calgary' - UNION ALL - SELECT 'CA-AB', 'Edmonton' - UNION ALL - SELECT 'CA-MB', 'Winnipeg' - UNION ALL - SELECT 'CA-NS', 'Halifax' - UNION ALL - SELECT 'CA-SK', 'Saskatoon' - UNION ALL - SELECT 'CA-SK', 'Regina' - UNION ALL - SELECT 'CA-NB', 'Moncton' - UNION ALL - SELECT 'CA-NB', 'Saint John' - UNION ALL - SELECT 'CA-PE', 'Charlottetown' - UNION ALL - SELECT 'CA-NL', N'St. John''s' - UNION ALL - SELECT 'CA-ON', 'Hamilton' - UNION ALL - SELECT 'CA-ON', 'London' - UNION ALL - SELECT 'CA-QC', 'Gatineau' - UNION ALL - SELECT 'CA-QC', 'Laval' - UNION ALL - SELECT 'CA-BC', 'Kelowna' - UNION ALL - SELECT 'CA-AB', 'Red Deer' - UNION ALL - SELECT 'CA-MB', 'Brandon' - -- MEXICO - UNION ALL - SELECT 'MX-CMX', N'Ciudad de México' - UNION ALL - SELECT 'MX-JAL', 'Guadalajara' - UNION ALL - SELECT 'MX-NLE', 'Monterrey' - UNION ALL - SELECT 'MX-PUE', 'Puebla' - UNION ALL - SELECT 'MX-ROO', N'Cancún' - UNION ALL - SELECT 'MX-GUA', 'Guanajuato' - UNION ALL - SELECT 'MX-MIC', 'Morelia' - UNION ALL - SELECT 'MX-BCN', 'Tijuana' - UNION ALL - SELECT 'MX-JAL', 'Zapopan' - UNION ALL - SELECT 'MX-NLE', N'San Nicolás' - UNION ALL - SELECT 'MX-CAM', 'Campeche' - UNION ALL - SELECT 'MX-TAB', 'Villahermosa' - UNION ALL - SELECT 'MX-VER', 'Veracruz' - UNION ALL - SELECT 'MX-OAX', 'Oaxaca' - UNION ALL - SELECT 'MX-SLP', N'San Luis Potosí' - UNION ALL - SELECT 'MX-CHH', 'Chihuahua' - UNION ALL - SELECT 'MX-AGU', 'Aguascalientes' - UNION ALL - SELECT 'MX-MEX', 'Toluca' - UNION ALL - SELECT 'MX-COA', 'Saltillo' - UNION ALL - SELECT 'MX-BCS', 'La Paz' - UNION ALL - SELECT 'MX-NAY', 'Tepic' - UNION ALL - SELECT 'MX-ZAC', 'Zacatecas' - ) - INSERT INTO dbo.City - (StateProvinceID, CityName) - SELECT - dbo.UDF_GetStateProvinceIdByCode(c.StateProvinceISO2), - c.CityName - FROM Cities AS c - WHERE NOT EXISTS ( - SELECT 1 - FROM dbo.City AS ci - WHERE ci.CityName = c.CityName - AND ci.StateProvinceID = dbo.UDF_GetStateProvinceIdByCode(c.StateProvinceISO2) - ); - - - COMMIT TRANSACTION; -END; diff --git a/DataLayer/scripts/seed/procedures/USP_AddTestUsers.sql b/DataLayer/scripts/seed/procedures/USP_AddTestUsers.sql deleted file mode 100644 index ac93a18..0000000 --- a/DataLayer/scripts/seed/procedures/USP_AddTestUsers.sql +++ /dev/null @@ -1,132 +0,0 @@ -CREATE OR ALTER PROCEDURE dbo.USP_AddTestUsers -AS -BEGIN - SET NOCOUNT ON; - SET XACT_ABORT ON; - - BEGIN TRANSACTION; - - DECLARE @FullNames TABLE - (FirstName NVARCHAR(128), - LastName NVARCHAR(128)); - - INSERT INTO @FullNames - (FirstName, LastName) - VALUES - ('Aarya', 'Mathews'), - ('Aiden', 'Wells'), - ('Aleena', 'Gonzalez'), - ('Alessandra', 'Nelson'), - ('Amari', 'Tucker'), - ('Ameer', 'Huff'), - ('Amirah', 'Hicks'), - ('Analia', 'Dominguez'), - ('Anne', 'Jenkins'), - ('Apollo', 'Davis'), - ('Arianna', 'White'), - ('Aubree', 'Moore'), - ('Aubrielle', 'Raymond'), - ('Aydin', 'Odom'), - ('Bowen', 'Casey'), - ('Brock', 'Huber'), - ('Caiden', 'Strong'), - ('Cecilia', 'Rosales'), - ('Celeste', 'Barber'), - ('Chance', 'Small'), - ('Clara', 'Roberts'), - ('Collins', 'Brandt'), - ('Damir', 'Wallace'), - ('Declan', 'Crawford'), - ('Dennis', 'Decker'), - ('Dylan', 'Lang'), - ('Eliza', 'Kane'), - ('Elle', 'Poole'), - ('Elliott', 'Miles'), - ('Emelia', 'Lucas'), - ('Emilia', 'Simpson'), - ('Emmett', 'Lugo'), - ('Ethan', 'Stephens'), - ('Etta', 'Woods'), - ('Gael', 'Moran'), - ('Grant', 'Benson'), - ('Gwen', 'James'), - ('Huxley', 'Chen'), - ('Isabella', 'Fisher'), - ('Ivan', 'Mathis'), - ('Jamir', 'McMillan'), - ('Jaxson', 'Shields'), - ('Jimmy', 'Richmond'), - ('Josiah', 'Flores'), - ('Kaden', 'Enriquez'), - ('Kai', 'Lawson'), - ('Karsyn', 'Adkins'), - ('Karsyn', 'Proctor'), - ('Kayden', 'Henson'), - ('Kaylie', 'Spears'), - ('Kinslee', 'Jones'), - ('Kora', 'Guerra'), - ('Lane', 'Skinner'), - ('Laylani', 'Christian'), - ('Ledger', 'Carroll'), - ('Leilany', 'Small'), - ('Leland', 'McCall'), - ('Leonard', 'Calhoun'), - ('Levi', 'Ochoa'), - ('Lillie', 'Vang'), - ('Lola', 'Sheppard'), - ('Luciana', 'Poole'), - ('Maddox', 'Hughes'), - ('Mara', 'Blackwell'), - ('Marcellus', 'Bartlett'), - ('Margo', 'Koch'), - ('Maurice', 'Gibson'), - ('Maxton', 'Dodson'), - ('Mia', 'Parrish'), - ('Millie', 'Fuentes'), - ('Nellie', 'Villanueva'), - ('Nicolas', 'Mata'), - ('Nicolas', 'Miller'), - ('Oakleigh', 'Foster'), - ('Octavia', 'Pierce'), - ('Paisley', 'Allison'), - ('Quincy', 'Andersen'), - ('Quincy', 'Frazier'), - ('Raiden', 'Roberts'), - ('Raquel', 'Lara'), - ('Rudy', 'McIntosh'), - ('Salvador', 'Stein'), - ('Samantha', 'Dickson'), - ('Solomon', 'Richards'), - ('Sylvia', 'Hanna'), - ('Talia', 'Trujillo'), - ('Thalia', 'Farrell'), - ('Trent', 'Mayo'), - ('Trinity', 'Cummings'), - ('Ty', 'Perry'), - ('Tyler', 'Romero'), - ('Valeria', 'Pierce'), - ('Vance', 'Neal'), - ('Whitney', 'Bell'), - ('Wilder', 'Graves'), - ('William', 'Logan'), - ('Zara', 'Wilkinson'), - ('Zaria', 'Gibson'), - ('Zion', 'Watkins'), - ('Zoie', 'Armstrong'); - - - INSERT INTO dbo.UserAccount - (Username, FirstName, LastName, Email, DateOfBirth) - SELECT - LEFT(LOWER(CONCAT(fn.FirstName, '.', fn.LastName)), 64) AS Username, - fn.FirstName, - fn.LastName, - LEFT(LOWER(CONCAT(fn.FirstName, '.', fn.LastName, '@example.com')), 128) AS Email, - - -- date of birth: pick age between 18 and 47 (18 + 0..29) - DATEADD(YEAR, -(19 + ABS(CHECKSUM(NEWID())) % 30), CAST(GETDATE() AS DATE)) - FROM @FullNames AS fn; - - - COMMIT TRANSACTION; -END; diff --git a/DataLayer/scripts/seed/procedures/USP_AddUserCredentials.sql b/DataLayer/scripts/seed/procedures/USP_AddUserCredentials.sql deleted file mode 100644 index c5a6043..0000000 --- a/DataLayer/scripts/seed/procedures/USP_AddUserCredentials.sql +++ /dev/null @@ -1,22 +0,0 @@ --- Stored procedure to insert Argon2 hashes -CREATE OR ALTER PROCEDURE dbo.USP_AddUserCredentials -( - @Hash dbo.TblUserHashes READONLY -) -AS -BEGIN - SET NOCOUNT ON; - SET XACT_ABORT ON; - - BEGIN TRANSACTION; - - INSERT INTO dbo.UserCredential - (UserAccountId, Hash) - SELECT - uah.UserAccountId, - uah.Hash - FROM @Hash AS uah; - - COMMIT TRANSACTION; -END; -GO diff --git a/DataLayer/scripts/seed/procedures/USP_CreateUserVerification.sql b/DataLayer/scripts/seed/procedures/USP_CreateUserVerification.sql deleted file mode 100644 index 38ed1ba..0000000 --- a/DataLayer/scripts/seed/procedures/USP_CreateUserVerification.sql +++ /dev/null @@ -1,31 +0,0 @@ -CREATE OR ALTER PROCEDURE dbo.USP_CreateUserVerification -AS -BEGIN - SET NOCOUNT ON; - SET XACT_ABORT ON; - - BEGIN TRANSACTION; - - INSERT INTO dbo.UserVerification - (UserAccountId) - SELECT - ua.UserAccountID - FROM dbo.UserAccount AS ua - WHERE NOT EXISTS - (SELECT 1 - FROM dbo.UserVerification AS uv - WHERE uv.UserAccountId = ua.UserAccountID); - - - IF (SELECT COUNT(*) - FROM dbo.UserVerification) - != (SELECT COUNT(*) - FROM dbo.UserAccount) - BEGIN - RAISERROR('UserVerification count does not match UserAccount count after insertion.', 16, 1); - ROLLBACK TRANSACTION; - RETURN; - END - - COMMIT TRANSACTION; -END diff --git a/WebAPI/Controllers/NotFoundController.cs b/WebAPI/Controllers/NotFoundController.cs index 44af9e0..857694d 100644 --- a/WebAPI/Controllers/NotFoundController.cs +++ b/WebAPI/Controllers/NotFoundController.cs @@ -4,10 +4,10 @@ namespace WebAPI.Controllers { [ApiController] [ApiExplorerSettings(IgnoreApi = true)] - [Route("error")] // ← required + [Route("error")] // ← required public class NotFoundController : ControllerBase { - [HttpGet("404")] // ← required + [HttpGet("404")] // ← required public IActionResult Handle404() { return NotFound(new { message = "Route not found." }); diff --git a/WebAPI/Controllers/UsersController.cs b/WebAPI/Controllers/UsersController.cs index c91a2db..18c08b3 100644 --- a/WebAPI/Controllers/UsersController.cs +++ b/WebAPI/Controllers/UsersController.cs @@ -1,5 +1,5 @@ -using DataAccessLayer.Entities; using BusinessLayer.Services; +using DataAccessLayer.Entities; using Microsoft.AspNetCore.Mvc; namespace WebAPI.Controllers @@ -79,9 +79,15 @@ namespace WebAPI.Controllers } [HttpPut("{id:guid}")] - public IActionResult UpdateUser(Guid id, [FromBody] UserAccount userAccount) + public IActionResult UpdateUser( + Guid id, + [FromBody] UserAccount userAccount + ) { - if (userAccount.UserAccountID != Guid.Empty && userAccount.UserAccountID != id) + if ( + userAccount.UserAccountID != Guid.Empty + && userAccount.UserAccountID != id + ) { return BadRequest("UserAccountID does not match route id."); } diff --git a/WebAPI/Program.cs b/WebAPI/Program.cs index 4abd51f..24618ed 100644 --- a/WebAPI/Program.cs +++ b/WebAPI/Program.cs @@ -2,25 +2,24 @@ using BusinessLayer.Services; using DataAccessLayer; var builder = WebApplication.CreateBuilder(args); - + builder.Services.AddControllers(); builder.Services.AddEndpointsApiExplorer(); builder.Services.AddSwaggerGen(); builder.Services.AddOpenApi(); builder.Services.AddScoped(); builder.Services.AddScoped(); - -var app = builder.Build(); - -if (app.Environment.IsDevelopment()) -{ - app.UseSwagger(); - app.UseSwaggerUI(); - app.MapOpenApi(); -} - + +var app = builder.Build(); + +if (app.Environment.IsDevelopment()) +{ + app.UseSwagger(); + app.UseSwaggerUI(); + app.MapOpenApi(); +} + app.UseHttpsRedirection(); app.MapControllers(); app.MapFallbackToController("Handle404", "NotFound"); app.Run(); - diff --git a/biergarten.sln b/biergarten.sln index d3bfd84..76307d6 100644 --- a/biergarten.sln +++ b/biergarten.sln @@ -13,6 +13,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BusinessLayer", "BusinessLa EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DALTests", "DALTests\DALTests.csproj", "{99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DBSeed", "DBSeed\DBSeed.csproj", "{82C1A7F9-695C-4243-83AB-8B8A54810763}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -95,6 +97,18 @@ Global {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Release|x64.Build.0 = Release|Any CPU {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Release|x86.ActiveCfg = Release|Any CPU {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Release|x86.Build.0 = Release|Any CPU + {82C1A7F9-695C-4243-83AB-8B8A54810763}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {82C1A7F9-695C-4243-83AB-8B8A54810763}.Debug|Any CPU.Build.0 = Debug|Any CPU + {82C1A7F9-695C-4243-83AB-8B8A54810763}.Debug|x64.ActiveCfg = Debug|Any CPU + {82C1A7F9-695C-4243-83AB-8B8A54810763}.Debug|x64.Build.0 = Debug|Any CPU + {82C1A7F9-695C-4243-83AB-8B8A54810763}.Debug|x86.ActiveCfg = Debug|Any CPU + {82C1A7F9-695C-4243-83AB-8B8A54810763}.Debug|x86.Build.0 = Debug|Any CPU + {82C1A7F9-695C-4243-83AB-8B8A54810763}.Release|Any CPU.ActiveCfg = Release|Any CPU + {82C1A7F9-695C-4243-83AB-8B8A54810763}.Release|Any CPU.Build.0 = Release|Any CPU + {82C1A7F9-695C-4243-83AB-8B8A54810763}.Release|x64.ActiveCfg = Release|Any CPU + {82C1A7F9-695C-4243-83AB-8B8A54810763}.Release|x64.Build.0 = Release|Any CPU + {82C1A7F9-695C-4243-83AB-8B8A54810763}.Release|x86.ActiveCfg = Release|Any CPU + {82C1A7F9-695C-4243-83AB-8B8A54810763}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE From da84492aa4038fb12dc69c02c66f61a8502db1bf Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Tue, 13 Jan 2026 23:18:03 -0500 Subject: [PATCH 19/25] Update seeds --- .idea/.idea.biergarten/.idea/.gitignore | 15 -- .idea/.idea.biergarten/.idea/.name | 1 - .idea/.idea.biergarten/.idea/dataSources.xml | 24 -- .../.idea/data_source_mapping.xml | 17 -- .idea/.idea.biergarten/.idea/indexLayout.xml | 8 - .idea/.idea.biergarten/.idea/sqldialects.xml | 15 -- .idea/.idea.biergarten/.idea/vcs.xml | 6 - DBSeed/ISeeder.cs | 6 + DBSeed/LocationSeeder.cs | 4 +- DBSeed/Program.cs | 15 +- DBSeed/UserSeeder.cs | 214 +++++++++--------- README.md | 21 +- 12 files changed, 138 insertions(+), 208 deletions(-) delete mode 100644 .idea/.idea.biergarten/.idea/.gitignore delete mode 100644 .idea/.idea.biergarten/.idea/.name delete mode 100644 .idea/.idea.biergarten/.idea/dataSources.xml delete mode 100644 .idea/.idea.biergarten/.idea/data_source_mapping.xml delete mode 100644 .idea/.idea.biergarten/.idea/indexLayout.xml delete mode 100644 .idea/.idea.biergarten/.idea/sqldialects.xml delete mode 100644 .idea/.idea.biergarten/.idea/vcs.xml create mode 100644 DBSeed/ISeeder.cs diff --git a/.idea/.idea.biergarten/.idea/.gitignore b/.idea/.idea.biergarten/.idea/.gitignore deleted file mode 100644 index 611d03c..0000000 --- a/.idea/.idea.biergarten/.idea/.gitignore +++ /dev/null @@ -1,15 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Rider ignored files -/.idea.biergarten.iml -/contentModel.xml -/modules.xml -/projectSettingsUpdater.xml -# Ignored default folder with query files -/queries/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml -# Editor-based HTTP Client requests -/httpRequests/ diff --git a/.idea/.idea.biergarten/.idea/.name b/.idea/.idea.biergarten/.idea/.name deleted file mode 100644 index a1865e9..0000000 --- a/.idea/.idea.biergarten/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -biergarten \ No newline at end of file diff --git a/.idea/.idea.biergarten/.idea/dataSources.xml b/.idea/.idea.biergarten/.idea/dataSources.xml deleted file mode 100644 index 7b8055e..0000000 --- a/.idea/.idea.biergarten/.idea/dataSources.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - sqlserver.jb - true - com.jetbrains.jdbc.sqlserver.SqlServerDriver - Server=localhost;Database=Biergarten;TrustServerCertificate=True; - - - - - - $ProjectFileDir$ - - - diff --git a/.idea/.idea.biergarten/.idea/data_source_mapping.xml b/.idea/.idea.biergarten/.idea/data_source_mapping.xml deleted file mode 100644 index 3edede8..0000000 --- a/.idea/.idea.biergarten/.idea/data_source_mapping.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - diff --git a/.idea/.idea.biergarten/.idea/indexLayout.xml b/.idea/.idea.biergarten/.idea/indexLayout.xml deleted file mode 100644 index 67b8dc9..0000000 --- a/.idea/.idea.biergarten/.idea/indexLayout.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/.idea/.idea.biergarten/.idea/sqldialects.xml b/.idea/.idea.biergarten/.idea/sqldialects.xml deleted file mode 100644 index fb7c0dd..0000000 --- a/.idea/.idea.biergarten/.idea/sqldialects.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/.idea.biergarten/.idea/vcs.xml b/.idea/.idea.biergarten/.idea/vcs.xml deleted file mode 100644 index dcb6b8c..0000000 --- a/.idea/.idea.biergarten/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/DBSeed/ISeeder.cs b/DBSeed/ISeeder.cs new file mode 100644 index 0000000..4624827 --- /dev/null +++ b/DBSeed/ISeeder.cs @@ -0,0 +1,6 @@ +using Microsoft.Data.SqlClient; + +interface ISeeder +{ + Task SeedAsync(SqlConnection connection); +} \ No newline at end of file diff --git a/DBSeed/LocationSeeder.cs b/DBSeed/LocationSeeder.cs index 8c825ac..983921b 100644 --- a/DBSeed/LocationSeeder.cs +++ b/DBSeed/LocationSeeder.cs @@ -3,7 +3,7 @@ using Microsoft.Data.SqlClient; namespace DBSeed; -internal static class LocationSeeder +class LocationSeeder : ISeeder { private static readonly IReadOnlyList<( string CountryName, @@ -244,7 +244,7 @@ internal static class LocationSeeder ("MX-ZAC", "Zacatecas"), ]; - internal static async Task SeedAsync(SqlConnection connection) + public async Task SeedAsync(SqlConnection connection) { foreach (var (countryName, countryCode) in Countries) { diff --git a/DBSeed/Program.cs b/DBSeed/Program.cs index 59e3931..39640cd 100644 --- a/DBSeed/Program.cs +++ b/DBSeed/Program.cs @@ -16,11 +16,18 @@ try Console.WriteLine("Connected to database."); - await LocationSeeder.SeedAsync(connection); - Console.WriteLine("Seeded locations."); + ISeeder[] seeders = + [ + new LocationSeeder(), + new UserSeeder(), + ]; - await UserSeeder.SeedAsync(connection); - Console.WriteLine("Seeded users."); + foreach (var seeder in seeders) + { + Console.WriteLine($"Seeding {seeder.GetType().Name}..."); + await seeder.SeedAsync(connection); + Console.WriteLine($"{seeder.GetType().Name} seeded."); + } Console.WriteLine("Seed completed successfully."); return 0; diff --git a/DBSeed/UserSeeder.cs b/DBSeed/UserSeeder.cs index 26ca3fd..2918bff 100644 --- a/DBSeed/UserSeeder.cs +++ b/DBSeed/UserSeeder.cs @@ -7,114 +7,116 @@ using Microsoft.Data.SqlClient; namespace DBSeed; -internal static class UserSeeder +class UserSeeder : ISeeder { - private static readonly IReadOnlyList<(string FirstName, string LastName)> - SeedNames = - [ - ("Aarya", "Mathews"), - ("Aiden", "Wells"), - ("Aleena", "Gonzalez"), - ("Alessandra", "Nelson"), - ("Amari", "Tucker"), - ("Ameer", "Huff"), - ("Amirah", "Hicks"), - ("Analia", "Dominguez"), - ("Anne", "Jenkins"), - ("Apollo", "Davis"), - ("Arianna", "White"), - ("Aubree", "Moore"), - ("Aubrielle", "Raymond"), - ("Aydin", "Odom"), - ("Bowen", "Casey"), - ("Brock", "Huber"), - ("Caiden", "Strong"), - ("Cecilia", "Rosales"), - ("Celeste", "Barber"), - ("Chance", "Small"), - ("Clara", "Roberts"), - ("Collins", "Brandt"), - ("Damir", "Wallace"), - ("Declan", "Crawford"), - ("Dennis", "Decker"), - ("Dylan", "Lang"), - ("Eliza", "Kane"), - ("Elle", "Poole"), - ("Elliott", "Miles"), - ("Emelia", "Lucas"), - ("Emilia", "Simpson"), - ("Emmett", "Lugo"), - ("Ethan", "Stephens"), - ("Etta", "Woods"), - ("Gael", "Moran"), - ("Grant", "Benson"), - ("Gwen", "James"), - ("Huxley", "Chen"), - ("Isabella", "Fisher"), - ("Ivan", "Mathis"), - ("Jamir", "McMillan"), - ("Jaxson", "Shields"), - ("Jimmy", "Richmond"), - ("Josiah", "Flores"), - ("Kaden", "Enriquez"), - ("Kai", "Lawson"), - ("Karsyn", "Adkins"), - ("Karsyn", "Proctor"), - ("Kayden", "Henson"), - ("Kaylie", "Spears"), - ("Kinslee", "Jones"), - ("Kora", "Guerra"), - ("Lane", "Skinner"), - ("Laylani", "Christian"), - ("Ledger", "Carroll"), - ("Leilany", "Small"), - ("Leland", "McCall"), - ("Leonard", "Calhoun"), - ("Levi", "Ochoa"), - ("Lillie", "Vang"), - ("Lola", "Sheppard"), - ("Luciana", "Poole"), - ("Maddox", "Hughes"), - ("Mara", "Blackwell"), - ("Marcellus", "Bartlett"), - ("Margo", "Koch"), - ("Maurice", "Gibson"), - ("Maxton", "Dodson"), - ("Mia", "Parrish"), - ("Millie", "Fuentes"), - ("Nellie", "Villanueva"), - ("Nicolas", "Mata"), - ("Nicolas", "Miller"), - ("Oakleigh", "Foster"), - ("Octavia", "Pierce"), - ("Paisley", "Allison"), - ("Quincy", "Andersen"), - ("Quincy", "Frazier"), - ("Raiden", "Roberts"), - ("Raquel", "Lara"), - ("Rudy", "McIntosh"), - ("Salvador", "Stein"), - ("Samantha", "Dickson"), - ("Solomon", "Richards"), - ("Sylvia", "Hanna"), - ("Talia", "Trujillo"), - ("Thalia", "Farrell"), - ("Trent", "Mayo"), - ("Trinity", "Cummings"), - ("Ty", "Perry"), - ("Tyler", "Romero"), - ("Valeria", "Pierce"), - ("Vance", "Neal"), - ("Whitney", "Bell"), - ("Wilder", "Graves"), - ("William", "Logan"), - ("Zara", "Wilkinson"), - ("Zaria", "Gibson"), - ("Zion", "Watkins"), - ("Zoie", "Armstrong"), - ]; + private static readonly IReadOnlyList<( + string FirstName, + string LastName + )> SeedNames = + [ + ("Aarya", "Mathews"), + ("Aiden", "Wells"), + ("Aleena", "Gonzalez"), + ("Alessandra", "Nelson"), + ("Amari", "Tucker"), + ("Ameer", "Huff"), + ("Amirah", "Hicks"), + ("Analia", "Dominguez"), + ("Anne", "Jenkins"), + ("Apollo", "Davis"), + ("Arianna", "White"), + ("Aubree", "Moore"), + ("Aubrielle", "Raymond"), + ("Aydin", "Odom"), + ("Bowen", "Casey"), + ("Brock", "Huber"), + ("Caiden", "Strong"), + ("Cecilia", "Rosales"), + ("Celeste", "Barber"), + ("Chance", "Small"), + ("Clara", "Roberts"), + ("Collins", "Brandt"), + ("Damir", "Wallace"), + ("Declan", "Crawford"), + ("Dennis", "Decker"), + ("Dylan", "Lang"), + ("Eliza", "Kane"), + ("Elle", "Poole"), + ("Elliott", "Miles"), + ("Emelia", "Lucas"), + ("Emilia", "Simpson"), + ("Emmett", "Lugo"), + ("Ethan", "Stephens"), + ("Etta", "Woods"), + ("Gael", "Moran"), + ("Grant", "Benson"), + ("Gwen", "James"), + ("Huxley", "Chen"), + ("Isabella", "Fisher"), + ("Ivan", "Mathis"), + ("Jamir", "McMillan"), + ("Jaxson", "Shields"), + ("Jimmy", "Richmond"), + ("Josiah", "Flores"), + ("Kaden", "Enriquez"), + ("Kai", "Lawson"), + ("Karsyn", "Adkins"), + ("Karsyn", "Proctor"), + ("Kayden", "Henson"), + ("Kaylie", "Spears"), + ("Kinslee", "Jones"), + ("Kora", "Guerra"), + ("Lane", "Skinner"), + ("Laylani", "Christian"), + ("Ledger", "Carroll"), + ("Leilany", "Small"), + ("Leland", "McCall"), + ("Leonard", "Calhoun"), + ("Levi", "Ochoa"), + ("Lillie", "Vang"), + ("Lola", "Sheppard"), + ("Luciana", "Poole"), + ("Maddox", "Hughes"), + ("Mara", "Blackwell"), + ("Marcellus", "Bartlett"), + ("Margo", "Koch"), + ("Maurice", "Gibson"), + ("Maxton", "Dodson"), + ("Mia", "Parrish"), + ("Millie", "Fuentes"), + ("Nellie", "Villanueva"), + ("Nicolas", "Mata"), + ("Nicolas", "Miller"), + ("Oakleigh", "Foster"), + ("Octavia", "Pierce"), + ("Paisley", "Allison"), + ("Quincy", "Andersen"), + ("Quincy", "Frazier"), + ("Raiden", "Roberts"), + ("Raquel", "Lara"), + ("Rudy", "McIntosh"), + ("Salvador", "Stein"), + ("Samantha", "Dickson"), + ("Solomon", "Richards"), + ("Sylvia", "Hanna"), + ("Talia", "Trujillo"), + ("Thalia", "Farrell"), + ("Trent", "Mayo"), + ("Trinity", "Cummings"), + ("Ty", "Perry"), + ("Tyler", "Romero"), + ("Valeria", "Pierce"), + ("Vance", "Neal"), + ("Whitney", "Bell"), + ("Wilder", "Graves"), + ("William", "Logan"), + ("Zara", "Wilkinson"), + ("Zaria", "Gibson"), + ("Zion", "Watkins"), + ("Zoie", "Armstrong"), + ]; - public static async Task SeedAsync(SqlConnection connection) + public async Task SeedAsync(SqlConnection connection) { var generator = new PasswordGenerator(); var random = new Random(); diff --git a/README.md b/README.md index 5fda357..f29948f 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,10 @@ This solution is a monolith-oriented Web API with a layered structure. The curre ## High-level projects - `WebAPI/` - ASP.NET Core API endpoints (controllers) and application entrypoint. -- `BusinessLayer/` - Intended home for domain/business logic (currently minimal). +- `BusinessLayer/` - Intended home for domain/business logic - `DataAccessLayer/` - Repository implementations, entities (POCOs), and SQL helpers. -- `DataLayer/` - Database schema, seed scripts, and data sources. -- `WebCrawler/` - Separate crawler executable. +- `DataLayer/` - DbUp console app that applies embedded schema/functions/procedures. +- `DBSeed/` - Console app for seeding locations and test user data. - `DALTests/` - Data access tests. ## Data access architecture @@ -16,12 +16,12 @@ This solution is a monolith-oriented Web API with a layered structure. The curre - **Entities (POCOs)** live in `DataAccessLayer/Entities/`. - **Repositories** live in `DataAccessLayer/Repositories/` and implement interfaces like `IUserAccountRepository`. - **SQL execution** lives in `DataAccessLayer/Sql/`. -- **Stored procedures** for CRUD live under `DataAccessLayer/Sql/crud/` and are invoked by repositories. +- **Stored procedures** for CRUD live under `DataLayer/scripts/03-crud/` and are invoked by repositories. Example flow: ``` -WebAPI Controller -> IUserAccountRepository -> UserAccountRepository -> stored procedure +WebAPI Controller -> UserService -> UserAccountRepository -> stored procedure ``` The repositories are currently responsible for: @@ -29,12 +29,13 @@ The repositories are currently responsible for: - Executing stored procedures - Mapping result sets to POCOs -## Database schema and seed +## Database schema and seed tooling -- `DataLayer/schema.sql` contains the database schema definitions. -- `DataLayer/database/` holds application functions and CRUD procedures. -- `DataLayer/seed/` holds seed-only procedures and the `SeedDB.cs` entry point. -- `SeedDB.cs` honors `SEED_MODE` (`database`, `seed`, or `all`) to control which scripts run. +- `DataLayer/scripts/01-schema/schema.sql` contains the database schema definitions. +- `DataLayer/scripts/02-functions/` holds application functions. +- `DataLayer/scripts/03-crud/` holds CRUD stored procedures. +- `DataLayer/Program.cs` runs DbUp to apply embedded scripts to the database. +- `DBSeed/Program.cs` runs the location and user seeders using `DB_CONNECTION_STRING`. ## Key conventions From 60ef65ec5209d1e9f2c1d62ad685ecc3b5bbbd21 Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Tue, 13 Jan 2026 23:44:48 -0500 Subject: [PATCH 20/25] Update AddUserCredential script --- DataLayer/DataLayer.csproj | 5 ----- .../02-UserCredential/USP_AddUserCredential.sql | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/DataLayer/DataLayer.csproj b/DataLayer/DataLayer.csproj index b24604f..a7fd617 100644 --- a/DataLayer/DataLayer.csproj +++ b/DataLayer/DataLayer.csproj @@ -8,11 +8,6 @@ - - diff --git a/DataLayer/scripts/03-crud/02-UserCredential/USP_AddUserCredential.sql b/DataLayer/scripts/03-crud/02-UserCredential/USP_AddUserCredential.sql index 99077b8..bd9395e 100644 --- a/DataLayer/scripts/03-crud/02-UserCredential/USP_AddUserCredential.sql +++ b/DataLayer/scripts/03-crud/02-UserCredential/USP_AddUserCredential.sql @@ -9,6 +9,21 @@ BEGIN BEGIN TRANSACTION; + IF NOT EXISTS ( + SELECT 1 + FROM dbo.UserAccount + WHERE UserAccountID = @UserAccountId + ) + THROW 50001, 'UserAccountID does not exist.', 1; + + IF EXISTS ( + SELECT 1 + FROM dbo.UserCredential + WHERE UserAccountID = @UserAccountId + ) + THROW 50002, 'UserCredential for this UserAccountID already exists.', 1; + + INSERT INTO dbo.UserCredential (UserAccountId, Hash) VALUES From b8cd8559160cb2caa77926ce898bafbda0c5ef47 Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Thu, 15 Jan 2026 13:23:41 -0500 Subject: [PATCH 21/25] Refactor user entities and repositories, update seeders Standardized property naming in user-related entities to use 'Id' suffix (e.g., UserAccountId). Moved and updated repository interfaces and implementations to the DataAccessLayer.Repositories namespace. Refactored DBSeed seeders to use repository classes and improved structure. Updated .gitignore and project references --- .gitignore | 3 +- BusinessLayer/Services/UserService.cs | 1 + DALTests/UserAccountRepositoryTests.cs | 40 +- DBSeed/DBSeed.csproj | 6 +- DBSeed/ISeeder.cs | 7 +- DBSeed/LocationSeeder.cs | 624 +++++++++--------- DBSeed/UserSeeder.cs | 546 +++++++-------- DataAccessLayer/Entities/UserAccount.cs | 2 +- DataAccessLayer/Entities/UserCredential.cs | 4 +- DataAccessLayer/Entities/UserVerification.cs | 4 +- .../{ => Repositories}/IRepository.cs | 9 +- .../Repositories/IUserAccountRepository.cs | 4 +- .../Repositories/UserAccountRepository.cs | 107 ++- DataAccessLayer/Sql/DatabaseHelper.cs | 50 +- WebAPI/Controllers/UsersController.cs | 12 +- WebAPI/Program.cs | 1 + 16 files changed, 660 insertions(+), 760 deletions(-) rename DataAccessLayer/{ => Repositories}/IRepository.cs (66%) diff --git a/.gitignore b/.gitignore index 69bbe5d..37f801a 100644 --- a/.gitignore +++ b/.gitignore @@ -430,4 +430,5 @@ FodyWeavers.xsd .DS_Store */data_source/other -.fake \ No newline at end of file +.fake +.idea \ No newline at end of file diff --git a/BusinessLayer/Services/UserService.cs b/BusinessLayer/Services/UserService.cs index 1ab5e1a..a923393 100644 --- a/BusinessLayer/Services/UserService.cs +++ b/BusinessLayer/Services/UserService.cs @@ -1,5 +1,6 @@ using DataAccessLayer; using DataAccessLayer.Entities; +using DataAccessLayer.Repositories; namespace BusinessLayer.Services { diff --git a/DALTests/UserAccountRepositoryTests.cs b/DALTests/UserAccountRepositoryTests.cs index d02d34f..34e5229 100644 --- a/DALTests/UserAccountRepositoryTests.cs +++ b/DALTests/UserAccountRepositoryTests.cs @@ -1,20 +1,12 @@ -using System; -using System.Collections.Generic; -using System.Linq; using DataAccessLayer; using DataAccessLayer.Entities; -using Xunit; +using DataAccessLayer.Repositories; namespace DALTests { public class UserAccountRepositoryTests { - private readonly IUserAccountRepository _repository; - - public UserAccountRepositoryTests() - { - _repository = new UserAccountRepository(); - } + private readonly IUserAccountRepository _repository = new UserAccountRepository(); [Fact] public void Add_ShouldInsertUserAccount() @@ -22,7 +14,7 @@ namespace DALTests // Arrange var userAccount = new UserAccount { - UserAccountID = Guid.NewGuid(), + UserAccountId = Guid.NewGuid(), Username = "testuser", FirstName = "Test", LastName = "User", @@ -33,7 +25,7 @@ namespace DALTests // Act _repository.Add(userAccount); - var retrievedUser = _repository.GetById(userAccount.UserAccountID); + var retrievedUser = _repository.GetById(userAccount.UserAccountId); // Assert Assert.NotNull(retrievedUser); @@ -47,7 +39,7 @@ namespace DALTests var userId = Guid.NewGuid(); var userAccount = new UserAccount { - UserAccountID = userId, + UserAccountId = userId, Username = "existinguser", FirstName = "Existing", LastName = "User", @@ -62,7 +54,7 @@ namespace DALTests // Assert Assert.NotNull(retrievedUser); - Assert.Equal(userId, retrievedUser.UserAccountID); + Assert.Equal(userId, retrievedUser.UserAccountId); } [Fact] @@ -71,7 +63,7 @@ namespace DALTests // Arrange var userAccount = new UserAccount { - UserAccountID = Guid.NewGuid(), + UserAccountId = Guid.NewGuid(), Username = "updatableuser", FirstName = "Updatable", LastName = "User", @@ -84,7 +76,7 @@ namespace DALTests // Act userAccount.FirstName = "Updated"; _repository.Update(userAccount); - var updatedUser = _repository.GetById(userAccount.UserAccountID); + var updatedUser = _repository.GetById(userAccount.UserAccountId); // Assert Assert.NotNull(updatedUser); @@ -97,7 +89,7 @@ namespace DALTests // Arrange var userAccount = new UserAccount { - UserAccountID = Guid.NewGuid(), + UserAccountId = Guid.NewGuid(), Username = "deletableuser", FirstName = "Deletable", LastName = "User", @@ -108,8 +100,8 @@ namespace DALTests _repository.Add(userAccount); // Act - _repository.Delete(userAccount.UserAccountID); - var deletedUser = _repository.GetById(userAccount.UserAccountID); + _repository.Delete(userAccount.UserAccountId); + var deletedUser = _repository.GetById(userAccount.UserAccountId); // Assert Assert.Null(deletedUser); @@ -121,7 +113,7 @@ namespace DALTests // Arrange var user1 = new UserAccount { - UserAccountID = Guid.NewGuid(), + UserAccountId = Guid.NewGuid(), Username = "user1", FirstName = "User", LastName = "One", @@ -131,7 +123,7 @@ namespace DALTests }; var user2 = new UserAccount { - UserAccountID = Guid.NewGuid(), + UserAccountId = Guid.NewGuid(), Username = "user2", FirstName = "User", LastName = "Two", @@ -158,7 +150,7 @@ namespace DALTests { new UserAccount { - UserAccountID = Guid.NewGuid(), + UserAccountId = Guid.NewGuid(), Username = $"pageuser_{Guid.NewGuid():N}", FirstName = "Page", LastName = "User", @@ -168,7 +160,7 @@ namespace DALTests }, new UserAccount { - UserAccountID = Guid.NewGuid(), + UserAccountId = Guid.NewGuid(), Username = $"pageuser_{Guid.NewGuid():N}", FirstName = "Page", LastName = "User", @@ -178,7 +170,7 @@ namespace DALTests }, new UserAccount { - UserAccountID = Guid.NewGuid(), + UserAccountId = Guid.NewGuid(), Username = $"pageuser_{Guid.NewGuid():N}", FirstName = "Page", LastName = "User", diff --git a/DBSeed/DBSeed.csproj b/DBSeed/DBSeed.csproj index 958ec61..54b70c3 100644 --- a/DBSeed/DBSeed.csproj +++ b/DBSeed/DBSeed.csproj @@ -12,6 +12,10 @@ Include="Konscious.Security.Cryptography.Argon2" Version="1.3.1" /> - + + + + + diff --git a/DBSeed/ISeeder.cs b/DBSeed/ISeeder.cs index 4624827..1ecf897 100644 --- a/DBSeed/ISeeder.cs +++ b/DBSeed/ISeeder.cs @@ -1,6 +1,9 @@ using Microsoft.Data.SqlClient; -interface ISeeder +namespace DBSeed { - Task SeedAsync(SqlConnection connection); + internal interface ISeeder + { + Task SeedAsync(SqlConnection connection); + } } \ No newline at end of file diff --git a/DBSeed/LocationSeeder.cs b/DBSeed/LocationSeeder.cs index 983921b..52d3d78 100644 --- a/DBSeed/LocationSeeder.cs +++ b/DBSeed/LocationSeeder.cs @@ -1,330 +1,328 @@ using System.Data; using Microsoft.Data.SqlClient; -namespace DBSeed; - -class LocationSeeder : ISeeder +namespace DBSeed { - private static readonly IReadOnlyList<( - string CountryName, - string CountryCode - )> Countries = - [ - ("Canada", "CA"), - ("Mexico", "MX"), - ("United States", "US"), - ]; - private static readonly IReadOnlyList<( - string StateProvinceName, - string StateProvinceCode, - string CountryCode - )> States = - [ - ("Alabama", "US-AL", "US"), - ("Alaska", "US-AK", "US"), - ("Arizona", "US-AZ", "US"), - ("Arkansas", "US-AR", "US"), - ("California", "US-CA", "US"), - ("Colorado", "US-CO", "US"), - ("Connecticut", "US-CT", "US"), - ("Delaware", "US-DE", "US"), - ("Florida", "US-FL", "US"), - ("Georgia", "US-GA", "US"), - ("Hawaii", "US-HI", "US"), - ("Idaho", "US-ID", "US"), - ("Illinois", "US-IL", "US"), - ("Indiana", "US-IN", "US"), - ("Iowa", "US-IA", "US"), - ("Kansas", "US-KS", "US"), - ("Kentucky", "US-KY", "US"), - ("Louisiana", "US-LA", "US"), - ("Maine", "US-ME", "US"), - ("Maryland", "US-MD", "US"), - ("Massachusetts", "US-MA", "US"), - ("Michigan", "US-MI", "US"), - ("Minnesota", "US-MN", "US"), - ("Mississippi", "US-MS", "US"), - ("Missouri", "US-MO", "US"), - ("Montana", "US-MT", "US"), - ("Nebraska", "US-NE", "US"), - ("Nevada", "US-NV", "US"), - ("New Hampshire", "US-NH", "US"), - ("New Jersey", "US-NJ", "US"), - ("New Mexico", "US-NM", "US"), - ("New York", "US-NY", "US"), - ("North Carolina", "US-NC", "US"), - ("North Dakota", "US-ND", "US"), - ("Ohio", "US-OH", "US"), - ("Oklahoma", "US-OK", "US"), - ("Oregon", "US-OR", "US"), - ("Pennsylvania", "US-PA", "US"), - ("Rhode Island", "US-RI", "US"), - ("South Carolina", "US-SC", "US"), - ("South Dakota", "US-SD", "US"), - ("Tennessee", "US-TN", "US"), - ("Texas", "US-TX", "US"), - ("Utah", "US-UT", "US"), - ("Vermont", "US-VT", "US"), - ("Virginia", "US-VA", "US"), - ("Washington", "US-WA", "US"), - ("West Virginia", "US-WV", "US"), - ("Wisconsin", "US-WI", "US"), - ("Wyoming", "US-WY", "US"), - ("District of Columbia", "US-DC", "US"), - ("Puerto Rico", "US-PR", "US"), - ("U.S. Virgin Islands", "US-VI", "US"), - ("Guam", "US-GU", "US"), - ("Northern Mariana Islands", "US-MP", "US"), - ("American Samoa", "US-AS", "US"), - ("Ontario", "CA-ON", "CA"), - ("Québec", "CA-QC", "CA"), - ("Nova Scotia", "CA-NS", "CA"), - ("New Brunswick", "CA-NB", "CA"), - ("Manitoba", "CA-MB", "CA"), - ("British Columbia", "CA-BC", "CA"), - ("Prince Edward Island", "CA-PE", "CA"), - ("Saskatchewan", "CA-SK", "CA"), - ("Alberta", "CA-AB", "CA"), - ("Newfoundland and Labrador", "CA-NL", "CA"), - ("Northwest Territories", "CA-NT", "CA"), - ("Yukon", "CA-YT", "CA"), - ("Nunavut", "CA-NU", "CA"), - ("Aguascalientes", "MX-AGU", "MX"), - ("Baja California", "MX-BCN", "MX"), - ("Baja California Sur", "MX-BCS", "MX"), - ("Campeche", "MX-CAM", "MX"), - ("Chiapas", "MX-CHP", "MX"), - ("Chihuahua", "MX-CHH", "MX"), - ("Coahuila de Zaragoza", "MX-COA", "MX"), - ("Colima", "MX-COL", "MX"), - ("Durango", "MX-DUR", "MX"), - ("Guanajuato", "MX-GUA", "MX"), - ("Guerrero", "MX-GRO", "MX"), - ("Hidalgo", "MX-HID", "MX"), - ("Jalisco", "MX-JAL", "MX"), - ("México State", "MX-MEX", "MX"), - ("Michoacán de Ocampo", "MX-MIC", "MX"), - ("Morelos", "MX-MOR", "MX"), - ("Nayarit", "MX-NAY", "MX"), - ("Nuevo León", "MX-NLE", "MX"), - ("Oaxaca", "MX-OAX", "MX"), - ("Puebla", "MX-PUE", "MX"), - ("Querétaro", "MX-QUE", "MX"), - ("Quintana Roo", "MX-ROO", "MX"), - ("San Luis Potosí", "MX-SLP", "MX"), - ("Sinaloa", "MX-SIN", "MX"), - ("Sonora", "MX-SON", "MX"), - ("Tabasco", "MX-TAB", "MX"), - ("Tamaulipas", "MX-TAM", "MX"), - ("Tlaxcala", "MX-TLA", "MX"), - ("Veracruz de Ignacio de la Llave", "MX-VER", "MX"), - ("Yucatán", "MX-YUC", "MX"), - ("Zacatecas", "MX-ZAC", "MX"), - ("Ciudad de México", "MX-CMX", "MX"), - ]; - - private static readonly IReadOnlyList<( - string StateProvinceCode, - string CityName - )> Cities = - [ - ("US-CA", "Los Angeles"), - ("US-CA", "San Diego"), - ("US-CA", "San Francisco"), - ("US-CA", "Sacramento"), - ("US-TX", "Houston"), - ("US-TX", "Dallas"), - ("US-TX", "Austin"), - ("US-TX", "San Antonio"), - ("US-FL", "Miami"), - ("US-FL", "Orlando"), - ("US-FL", "Tampa"), - ("US-NY", "New York"), - ("US-NY", "Buffalo"), - ("US-NY", "Rochester"), - ("US-IL", "Chicago"), - ("US-IL", "Springfield"), - ("US-PA", "Philadelphia"), - ("US-PA", "Pittsburgh"), - ("US-AZ", "Phoenix"), - ("US-AZ", "Tucson"), - ("US-CO", "Denver"), - ("US-CO", "Colorado Springs"), - ("US-MA", "Boston"), - ("US-MA", "Worcester"), - ("US-WA", "Seattle"), - ("US-WA", "Spokane"), - ("US-GA", "Atlanta"), - ("US-GA", "Savannah"), - ("US-NV", "Las Vegas"), - ("US-NV", "Reno"), - ("US-MI", "Detroit"), - ("US-MI", "Grand Rapids"), - ("US-MN", "Minneapolis"), - ("US-MN", "Saint Paul"), - ("US-OH", "Columbus"), - ("US-OH", "Cleveland"), - ("US-OR", "Portland"), - ("US-OR", "Salem"), - ("US-TN", "Nashville"), - ("US-TN", "Memphis"), - ("US-VA", "Richmond"), - ("US-VA", "Virginia Beach"), - ("US-MD", "Baltimore"), - ("US-MD", "Frederick"), - ("US-DC", "Washington"), - ("US-UT", "Salt Lake City"), - ("US-UT", "Provo"), - ("US-LA", "New Orleans"), - ("US-LA", "Baton Rouge"), - ("US-KY", "Louisville"), - ("US-KY", "Lexington"), - ("US-IA", "Des Moines"), - ("US-IA", "Cedar Rapids"), - ("US-OK", "Oklahoma City"), - ("US-OK", "Tulsa"), - ("US-NE", "Omaha"), - ("US-NE", "Lincoln"), - ("US-MO", "Kansas City"), - ("US-MO", "St. Louis"), - ("US-NC", "Charlotte"), - ("US-NC", "Raleigh"), - ("US-SC", "Columbia"), - ("US-SC", "Charleston"), - ("US-WI", "Milwaukee"), - ("US-WI", "Madison"), - ("US-MN", "Duluth"), - ("US-AK", "Anchorage"), - ("US-HI", "Honolulu"), - ("CA-ON", "Toronto"), - ("CA-ON", "Ottawa"), - ("CA-QC", "Montréal"), - ("CA-QC", "Québec City"), - ("CA-BC", "Vancouver"), - ("CA-BC", "Victoria"), - ("CA-AB", "Calgary"), - ("CA-AB", "Edmonton"), - ("CA-MB", "Winnipeg"), - ("CA-NS", "Halifax"), - ("CA-SK", "Saskatoon"), - ("CA-SK", "Regina"), - ("CA-NB", "Moncton"), - ("CA-NB", "Saint John"), - ("CA-PE", "Charlottetown"), - ("CA-NL", "St. John's"), - ("CA-ON", "Hamilton"), - ("CA-ON", "London"), - ("CA-QC", "Gatineau"), - ("CA-QC", "Laval"), - ("CA-BC", "Kelowna"), - ("CA-AB", "Red Deer"), - ("CA-MB", "Brandon"), - ("MX-CMX", "Ciudad de México"), - ("MX-JAL", "Guadalajara"), - ("MX-NLE", "Monterrey"), - ("MX-PUE", "Puebla"), - ("MX-ROO", "Cancún"), - ("MX-GUA", "Guanajuato"), - ("MX-MIC", "Morelia"), - ("MX-BCN", "Tijuana"), - ("MX-JAL", "Zapopan"), - ("MX-NLE", "San Nicolás"), - ("MX-CAM", "Campeche"), - ("MX-TAB", "Villahermosa"), - ("MX-VER", "Veracruz"), - ("MX-OAX", "Oaxaca"), - ("MX-SLP", "San Luis Potosí"), - ("MX-CHH", "Chihuahua"), - ("MX-AGU", "Aguascalientes"), - ("MX-MEX", "Toluca"), - ("MX-COA", "Saltillo"), - ("MX-BCS", "La Paz"), - ("MX-NAY", "Tepic"), - ("MX-ZAC", "Zacatecas"), - ]; - - public async Task SeedAsync(SqlConnection connection) + internal class LocationSeeder : ISeeder { - foreach (var (countryName, countryCode) in Countries) + private static readonly IReadOnlyList<( + string CountryName, + string CountryCode + )> Countries = + [ + ("Canada", "CA"), + ("Mexico", "MX"), + ("United States", "US"), + ]; + + private static IReadOnlyList<(string StateProvinceName, string StateProvinceCode, string CountryCode)> States { - await CreateCountryAsync(connection, countryName, countryCode); + get; + } = + [ + ("Alabama", "US-AL", "US"), + ("Alaska", "US-AK", "US"), + ("Arizona", "US-AZ", "US"), + ("Arkansas", "US-AR", "US"), + ("California", "US-CA", "US"), + ("Colorado", "US-CO", "US"), + ("Connecticut", "US-CT", "US"), + ("Delaware", "US-DE", "US"), + ("Florida", "US-FL", "US"), + ("Georgia", "US-GA", "US"), + ("Hawaii", "US-HI", "US"), + ("Idaho", "US-ID", "US"), + ("Illinois", "US-IL", "US"), + ("Indiana", "US-IN", "US"), + ("Iowa", "US-IA", "US"), + ("Kansas", "US-KS", "US"), + ("Kentucky", "US-KY", "US"), + ("Louisiana", "US-LA", "US"), + ("Maine", "US-ME", "US"), + ("Maryland", "US-MD", "US"), + ("Massachusetts", "US-MA", "US"), + ("Michigan", "US-MI", "US"), + ("Minnesota", "US-MN", "US"), + ("Mississippi", "US-MS", "US"), + ("Missouri", "US-MO", "US"), + ("Montana", "US-MT", "US"), + ("Nebraska", "US-NE", "US"), + ("Nevada", "US-NV", "US"), + ("New Hampshire", "US-NH", "US"), + ("New Jersey", "US-NJ", "US"), + ("New Mexico", "US-NM", "US"), + ("New York", "US-NY", "US"), + ("North Carolina", "US-NC", "US"), + ("North Dakota", "US-ND", "US"), + ("Ohio", "US-OH", "US"), + ("Oklahoma", "US-OK", "US"), + ("Oregon", "US-OR", "US"), + ("Pennsylvania", "US-PA", "US"), + ("Rhode Island", "US-RI", "US"), + ("South Carolina", "US-SC", "US"), + ("South Dakota", "US-SD", "US"), + ("Tennessee", "US-TN", "US"), + ("Texas", "US-TX", "US"), + ("Utah", "US-UT", "US"), + ("Vermont", "US-VT", "US"), + ("Virginia", "US-VA", "US"), + ("Washington", "US-WA", "US"), + ("West Virginia", "US-WV", "US"), + ("Wisconsin", "US-WI", "US"), + ("Wyoming", "US-WY", "US"), + ("District of Columbia", "US-DC", "US"), + ("Puerto Rico", "US-PR", "US"), + ("U.S. Virgin Islands", "US-VI", "US"), + ("Guam", "US-GU", "US"), + ("Northern Mariana Islands", "US-MP", "US"), + ("American Samoa", "US-AS", "US"), + ("Ontario", "CA-ON", "CA"), + ("Québec", "CA-QC", "CA"), + ("Nova Scotia", "CA-NS", "CA"), + ("New Brunswick", "CA-NB", "CA"), + ("Manitoba", "CA-MB", "CA"), + ("British Columbia", "CA-BC", "CA"), + ("Prince Edward Island", "CA-PE", "CA"), + ("Saskatchewan", "CA-SK", "CA"), + ("Alberta", "CA-AB", "CA"), + ("Newfoundland and Labrador", "CA-NL", "CA"), + ("Northwest Territories", "CA-NT", "CA"), + ("Yukon", "CA-YT", "CA"), + ("Nunavut", "CA-NU", "CA"), + ("Aguascalientes", "MX-AGU", "MX"), + ("Baja California", "MX-BCN", "MX"), + ("Baja California Sur", "MX-BCS", "MX"), + ("Campeche", "MX-CAM", "MX"), + ("Chiapas", "MX-CHP", "MX"), + ("Chihuahua", "MX-CHH", "MX"), + ("Coahuila de Zaragoza", "MX-COA", "MX"), + ("Colima", "MX-COL", "MX"), + ("Durango", "MX-DUR", "MX"), + ("Guanajuato", "MX-GUA", "MX"), + ("Guerrero", "MX-GRO", "MX"), + ("Hidalgo", "MX-HID", "MX"), + ("Jalisco", "MX-JAL", "MX"), + ("México State", "MX-MEX", "MX"), + ("Michoacán de Ocampo", "MX-MIC", "MX"), + ("Morelos", "MX-MOR", "MX"), + ("Nayarit", "MX-NAY", "MX"), + ("Nuevo León", "MX-NLE", "MX"), + ("Oaxaca", "MX-OAX", "MX"), + ("Puebla", "MX-PUE", "MX"), + ("Querétaro", "MX-QUE", "MX"), + ("Quintana Roo", "MX-ROO", "MX"), + ("San Luis Potosí", "MX-SLP", "MX"), + ("Sinaloa", "MX-SIN", "MX"), + ("Sonora", "MX-SON", "MX"), + ("Tabasco", "MX-TAB", "MX"), + ("Tamaulipas", "MX-TAM", "MX"), + ("Tlaxcala", "MX-TLA", "MX"), + ("Veracruz de Ignacio de la Llave", "MX-VER", "MX"), + ("Yucatán", "MX-YUC", "MX"), + ("Zacatecas", "MX-ZAC", "MX"), + ("Ciudad de México", "MX-CMX", "MX"), + ]; + + private static IReadOnlyList<(string StateProvinceCode, string CityName)> Cities { get; } = + [ + ("US-CA", "Los Angeles"), + ("US-CA", "San Diego"), + ("US-CA", "San Francisco"), + ("US-CA", "Sacramento"), + ("US-TX", "Houston"), + ("US-TX", "Dallas"), + ("US-TX", "Austin"), + ("US-TX", "San Antonio"), + ("US-FL", "Miami"), + ("US-FL", "Orlando"), + ("US-FL", "Tampa"), + ("US-NY", "New York"), + ("US-NY", "Buffalo"), + ("US-NY", "Rochester"), + ("US-IL", "Chicago"), + ("US-IL", "Springfield"), + ("US-PA", "Philadelphia"), + ("US-PA", "Pittsburgh"), + ("US-AZ", "Phoenix"), + ("US-AZ", "Tucson"), + ("US-CO", "Denver"), + ("US-CO", "Colorado Springs"), + ("US-MA", "Boston"), + ("US-MA", "Worcester"), + ("US-WA", "Seattle"), + ("US-WA", "Spokane"), + ("US-GA", "Atlanta"), + ("US-GA", "Savannah"), + ("US-NV", "Las Vegas"), + ("US-NV", "Reno"), + ("US-MI", "Detroit"), + ("US-MI", "Grand Rapids"), + ("US-MN", "Minneapolis"), + ("US-MN", "Saint Paul"), + ("US-OH", "Columbus"), + ("US-OH", "Cleveland"), + ("US-OR", "Portland"), + ("US-OR", "Salem"), + ("US-TN", "Nashville"), + ("US-TN", "Memphis"), + ("US-VA", "Richmond"), + ("US-VA", "Virginia Beach"), + ("US-MD", "Baltimore"), + ("US-MD", "Frederick"), + ("US-DC", "Washington"), + ("US-UT", "Salt Lake City"), + ("US-UT", "Provo"), + ("US-LA", "New Orleans"), + ("US-LA", "Baton Rouge"), + ("US-KY", "Louisville"), + ("US-KY", "Lexington"), + ("US-IA", "Des Moines"), + ("US-IA", "Cedar Rapids"), + ("US-OK", "Oklahoma City"), + ("US-OK", "Tulsa"), + ("US-NE", "Omaha"), + ("US-NE", "Lincoln"), + ("US-MO", "Kansas City"), + ("US-MO", "St. Louis"), + ("US-NC", "Charlotte"), + ("US-NC", "Raleigh"), + ("US-SC", "Columbia"), + ("US-SC", "Charleston"), + ("US-WI", "Milwaukee"), + ("US-WI", "Madison"), + ("US-MN", "Duluth"), + ("US-AK", "Anchorage"), + ("US-HI", "Honolulu"), + ("CA-ON", "Toronto"), + ("CA-ON", "Ottawa"), + ("CA-QC", "Montréal"), + ("CA-QC", "Québec City"), + ("CA-BC", "Vancouver"), + ("CA-BC", "Victoria"), + ("CA-AB", "Calgary"), + ("CA-AB", "Edmonton"), + ("CA-MB", "Winnipeg"), + ("CA-NS", "Halifax"), + ("CA-SK", "Saskatoon"), + ("CA-SK", "Regina"), + ("CA-NB", "Moncton"), + ("CA-NB", "Saint John"), + ("CA-PE", "Charlottetown"), + ("CA-NL", "St. John's"), + ("CA-ON", "Hamilton"), + ("CA-ON", "London"), + ("CA-QC", "Gatineau"), + ("CA-QC", "Laval"), + ("CA-BC", "Kelowna"), + ("CA-AB", "Red Deer"), + ("CA-MB", "Brandon"), + ("MX-CMX", "Ciudad de México"), + ("MX-JAL", "Guadalajara"), + ("MX-NLE", "Monterrey"), + ("MX-PUE", "Puebla"), + ("MX-ROO", "Cancún"), + ("MX-GUA", "Guanajuato"), + ("MX-MIC", "Morelia"), + ("MX-BCN", "Tijuana"), + ("MX-JAL", "Zapopan"), + ("MX-NLE", "San Nicolás"), + ("MX-CAM", "Campeche"), + ("MX-TAB", "Villahermosa"), + ("MX-VER", "Veracruz"), + ("MX-OAX", "Oaxaca"), + ("MX-SLP", "San Luis Potosí"), + ("MX-CHH", "Chihuahua"), + ("MX-AGU", "Aguascalientes"), + ("MX-MEX", "Toluca"), + ("MX-COA", "Saltillo"), + ("MX-BCS", "La Paz"), + ("MX-NAY", "Tepic"), + ("MX-ZAC", "Zacatecas"), + ]; + + public async Task SeedAsync(SqlConnection connection) + { + foreach (var (countryName, countryCode) in Countries) + { + await CreateCountryAsync(connection, countryName, countryCode); + } + + foreach ( + var (stateProvinceName, stateProvinceCode, countryCode) in States + ) + { + await CreateStateProvinceAsync( + connection, + stateProvinceName, + stateProvinceCode, + countryCode + ); + } + + foreach (var (stateProvinceCode, cityName) in Cities) + { + await CreateCityAsync(connection, cityName, stateProvinceCode); + } } - foreach ( - var (stateProvinceName, stateProvinceCode, countryCode) in States + private static async Task CreateCountryAsync( + SqlConnection connection, + string countryName, + string countryCode ) { - await CreateStateProvinceAsync( - connection, - stateProvinceName, - stateProvinceCode, - countryCode + await using var command = new SqlCommand( + "dbo.USP_CreateCountry", + connection ); + command.CommandType = CommandType.StoredProcedure; + command.Parameters.AddWithValue("@CountryName", countryName); + command.Parameters.AddWithValue("@ISO3616_1", countryCode); + + await command.ExecuteNonQueryAsync(); } - foreach (var (stateProvinceCode, cityName) in Cities) + private static async Task CreateStateProvinceAsync( + SqlConnection connection, + string stateProvinceName, + string stateProvinceCode, + string countryCode + ) { - await CreateCityAsync(connection, cityName, stateProvinceCode); + await using var command = new SqlCommand( + "dbo.USP_CreateStateProvince", + connection + ); + command.CommandType = CommandType.StoredProcedure; + command.Parameters.AddWithValue( + "@StateProvinceName", + stateProvinceName + ); + command.Parameters.AddWithValue("@ISO3616_2", stateProvinceCode); + command.Parameters.AddWithValue("@CountryCode", countryCode); + + await command.ExecuteNonQueryAsync(); + } + + private static async Task CreateCityAsync( + SqlConnection connection, + string cityName, + string stateProvinceCode + ) + { + await using var command = new SqlCommand( + "dbo.USP_CreateCity", + connection + ); + command.CommandType = CommandType.StoredProcedure; + command.Parameters.AddWithValue("@CityName", cityName); + command.Parameters.AddWithValue( + "@StateProvinceCode", + stateProvinceCode + ); + + await command.ExecuteNonQueryAsync(); } } - - private static async Task CreateCountryAsync( - SqlConnection connection, - string countryName, - string countryCode - ) - { - await using var command = new SqlCommand( - "dbo.USP_CreateCountry", - connection - ); - command.CommandType = CommandType.StoredProcedure; - command.Parameters.AddWithValue("@CountryName", countryName); - command.Parameters.AddWithValue("@ISO3616_1", countryCode); - - await command.ExecuteNonQueryAsync(); - } - - private static async Task CreateStateProvinceAsync( - SqlConnection connection, - string stateProvinceName, - string stateProvinceCode, - string countryCode - ) - { - await using var command = new SqlCommand( - "dbo.USP_CreateStateProvince", - connection - ); - command.CommandType = CommandType.StoredProcedure; - command.Parameters.AddWithValue( - "@StateProvinceName", - stateProvinceName - ); - command.Parameters.AddWithValue("@ISO3616_2", stateProvinceCode); - command.Parameters.AddWithValue("@CountryCode", countryCode); - - await command.ExecuteNonQueryAsync(); - } - - private static async Task CreateCityAsync( - SqlConnection connection, - string cityName, - string stateProvinceCode - ) - { - await using var command = new SqlCommand( - "dbo.USP_CreateCity", - connection - ); - command.CommandType = CommandType.StoredProcedure; - command.Parameters.AddWithValue("@CityName", cityName); - command.Parameters.AddWithValue( - "@StateProvinceCode", - stateProvinceCode - ); - - await command.ExecuteNonQueryAsync(); - } -} +} \ No newline at end of file diff --git a/DBSeed/UserSeeder.cs b/DBSeed/UserSeeder.cs index 2918bff..3fd7f64 100644 --- a/DBSeed/UserSeeder.cs +++ b/DBSeed/UserSeeder.cs @@ -1,336 +1,258 @@ using System.Data; using System.Security.Cryptography; using System.Text; +using DataAccessLayer.Entities; +using DataAccessLayer.Repositories; using idunno.Password; using Konscious.Security.Cryptography; using Microsoft.Data.SqlClient; -namespace DBSeed; - -class UserSeeder : ISeeder +namespace DBSeed { - private static readonly IReadOnlyList<( - string FirstName, - string LastName - )> SeedNames = - [ - ("Aarya", "Mathews"), - ("Aiden", "Wells"), - ("Aleena", "Gonzalez"), - ("Alessandra", "Nelson"), - ("Amari", "Tucker"), - ("Ameer", "Huff"), - ("Amirah", "Hicks"), - ("Analia", "Dominguez"), - ("Anne", "Jenkins"), - ("Apollo", "Davis"), - ("Arianna", "White"), - ("Aubree", "Moore"), - ("Aubrielle", "Raymond"), - ("Aydin", "Odom"), - ("Bowen", "Casey"), - ("Brock", "Huber"), - ("Caiden", "Strong"), - ("Cecilia", "Rosales"), - ("Celeste", "Barber"), - ("Chance", "Small"), - ("Clara", "Roberts"), - ("Collins", "Brandt"), - ("Damir", "Wallace"), - ("Declan", "Crawford"), - ("Dennis", "Decker"), - ("Dylan", "Lang"), - ("Eliza", "Kane"), - ("Elle", "Poole"), - ("Elliott", "Miles"), - ("Emelia", "Lucas"), - ("Emilia", "Simpson"), - ("Emmett", "Lugo"), - ("Ethan", "Stephens"), - ("Etta", "Woods"), - ("Gael", "Moran"), - ("Grant", "Benson"), - ("Gwen", "James"), - ("Huxley", "Chen"), - ("Isabella", "Fisher"), - ("Ivan", "Mathis"), - ("Jamir", "McMillan"), - ("Jaxson", "Shields"), - ("Jimmy", "Richmond"), - ("Josiah", "Flores"), - ("Kaden", "Enriquez"), - ("Kai", "Lawson"), - ("Karsyn", "Adkins"), - ("Karsyn", "Proctor"), - ("Kayden", "Henson"), - ("Kaylie", "Spears"), - ("Kinslee", "Jones"), - ("Kora", "Guerra"), - ("Lane", "Skinner"), - ("Laylani", "Christian"), - ("Ledger", "Carroll"), - ("Leilany", "Small"), - ("Leland", "McCall"), - ("Leonard", "Calhoun"), - ("Levi", "Ochoa"), - ("Lillie", "Vang"), - ("Lola", "Sheppard"), - ("Luciana", "Poole"), - ("Maddox", "Hughes"), - ("Mara", "Blackwell"), - ("Marcellus", "Bartlett"), - ("Margo", "Koch"), - ("Maurice", "Gibson"), - ("Maxton", "Dodson"), - ("Mia", "Parrish"), - ("Millie", "Fuentes"), - ("Nellie", "Villanueva"), - ("Nicolas", "Mata"), - ("Nicolas", "Miller"), - ("Oakleigh", "Foster"), - ("Octavia", "Pierce"), - ("Paisley", "Allison"), - ("Quincy", "Andersen"), - ("Quincy", "Frazier"), - ("Raiden", "Roberts"), - ("Raquel", "Lara"), - ("Rudy", "McIntosh"), - ("Salvador", "Stein"), - ("Samantha", "Dickson"), - ("Solomon", "Richards"), - ("Sylvia", "Hanna"), - ("Talia", "Trujillo"), - ("Thalia", "Farrell"), - ("Trent", "Mayo"), - ("Trinity", "Cummings"), - ("Ty", "Perry"), - ("Tyler", "Romero"), - ("Valeria", "Pierce"), - ("Vance", "Neal"), - ("Whitney", "Bell"), - ("Wilder", "Graves"), - ("William", "Logan"), - ("Zara", "Wilkinson"), - ("Zaria", "Gibson"), - ("Zion", "Watkins"), - ("Zoie", "Armstrong"), - ]; - public async Task SeedAsync(SqlConnection connection) + internal class UserSeeder : ISeeder { - var generator = new PasswordGenerator(); - var random = new Random(); - int createdUsers = 0; - int createdCredentials = 0; - int createdVerifications = 0; + private UserAccountRepository _userAccountRepository = new UserAccountRepository(); + + + private static readonly IReadOnlyList<( + string FirstName, + string LastName + )> SeedNames = + [ + ("Aarya", "Mathews"), + ("Aiden", "Wells"), + ("Aleena", "Gonzalez"), + ("Alessandra", "Nelson"), + ("Amari", "Tucker"), + ("Ameer", "Huff"), + ("Amirah", "Hicks"), + ("Analia", "Dominguez"), + ("Anne", "Jenkins"), + ("Apollo", "Davis"), + ("Arianna", "White"), + ("Aubree", "Moore"), + ("Aubrielle", "Raymond"), + ("Aydin", "Odom"), + ("Bowen", "Casey"), + ("Brock", "Huber"), + ("Caiden", "Strong"), + ("Cecilia", "Rosales"), + ("Celeste", "Barber"), + ("Chance", "Small"), + ("Clara", "Roberts"), + ("Collins", "Brandt"), + ("Damir", "Wallace"), + ("Declan", "Crawford"), + ("Dennis", "Decker"), + ("Dylan", "Lang"), + ("Eliza", "Kane"), + ("Elle", "Poole"), + ("Elliott", "Miles"), + ("Emelia", "Lucas"), + ("Emilia", "Simpson"), + ("Emmett", "Lugo"), + ("Ethan", "Stephens"), + ("Etta", "Woods"), + ("Gael", "Moran"), + ("Grant", "Benson"), + ("Gwen", "James"), + ("Huxley", "Chen"), + ("Isabella", "Fisher"), + ("Ivan", "Mathis"), + ("Jamir", "McMillan"), + ("Jaxson", "Shields"), + ("Jimmy", "Richmond"), + ("Josiah", "Flores"), + ("Kaden", "Enriquez"), + ("Kai", "Lawson"), + ("Karsyn", "Adkins"), + ("Karsyn", "Proctor"), + ("Kayden", "Henson"), + ("Kaylie", "Spears"), + ("Kinslee", "Jones"), + ("Kora", "Guerra"), + ("Lane", "Skinner"), + ("Laylani", "Christian"), + ("Ledger", "Carroll"), + ("Leilany", "Small"), + ("Leland", "McCall"), + ("Leonard", "Calhoun"), + ("Levi", "Ochoa"), + ("Lillie", "Vang"), + ("Lola", "Sheppard"), + ("Luciana", "Poole"), + ("Maddox", "Hughes"), + ("Mara", "Blackwell"), + ("Marcellus", "Bartlett"), + ("Margo", "Koch"), + ("Maurice", "Gibson"), + ("Maxton", "Dodson"), + ("Mia", "Parrish"), + ("Millie", "Fuentes"), + ("Nellie", "Villanueva"), + ("Nicolas", "Mata"), + ("Nicolas", "Miller"), + ("Oakleigh", "Foster"), + ("Octavia", "Pierce"), + ("Paisley", "Allison"), + ("Quincy", "Andersen"), + ("Quincy", "Frazier"), + ("Raiden", "Roberts"), + ("Raquel", "Lara"), + ("Rudy", "McIntosh"), + ("Salvador", "Stein"), + ("Samantha", "Dickson"), + ("Solomon", "Richards"), + ("Sylvia", "Hanna"), + ("Talia", "Trujillo"), + ("Thalia", "Farrell"), + ("Trent", "Mayo"), + ("Trinity", "Cummings"), + ("Ty", "Perry"), + ("Tyler", "Romero"), + ("Valeria", "Pierce"), + ("Vance", "Neal"), + ("Whitney", "Bell"), + ("Wilder", "Graves"), + ("William", "Logan"), + ("Zara", "Wilkinson"), + ("Zaria", "Gibson"), + ("Zion", "Watkins"), + ("Zoie", "Armstrong"), + ]; - foreach (var (firstName, lastName) in SeedNames) + public async Task SeedAsync(SqlConnection connection) { - string username = BuildUsername(firstName, lastName); - string email = BuildEmail(firstName, lastName); - Guid? existingId = - await GetUserAccountIdByUsernameAsync(connection, username) - ?? await GetUserAccountIdByEmailAsync(connection, email); + var generator = new PasswordGenerator(); + var rng = new Random(); + int createdUsers = 0; + int createdCredentials = 0; + int createdVerifications = 0; - Guid userAccountId; - if (existingId.HasValue) + foreach (var (firstName, lastName) in SeedNames) { - userAccountId = existingId.Value; - } - else - { - userAccountId = Guid.NewGuid(); - DateTime dateOfBirth = GenerateDateOfBirth(random); - await CreateUserAccountAsync( - connection, - userAccountId, - username, - firstName, - lastName, - email, - dateOfBirth - ); - createdUsers++; - } + // create the user in the database + var ua = new UserAccount + { + FirstName = firstName, + LastName = lastName, + Email = $"{firstName}.{lastName}@thebiergarten.app", + Username = $"{firstName[0]}.{lastName}", + DateOfBirth = GenerateDateOfBirth(rng) + }; - if (!await HasUserCredentialAsync(connection, userAccountId)) - { - string pwd = generator.Generate( - length: 64, - numberOfDigits: 10, - numberOfSymbols: 10 - ); - string hash = GeneratePasswordHash(pwd); - await AddUserCredentialAsync(connection, userAccountId, hash); - createdCredentials++; - } - if (!await HasUserVerificationAsync(connection, userAccountId)) - { + // add user credentials + if (!await HasUserCredentialAsync(connection, userAccountId)) + { + string pwd = generator.Generate( + length: 64, + numberOfDigits: 10, + numberOfSymbols: 10 + ); + string hash = GeneratePasswordHash(pwd); + await AddUserCredentialAsync(connection, userAccountId, hash); + createdCredentials++; + } + + // add user verification + if (await HasUserVerificationAsync(connection, userAccountId)) continue; await AddUserVerificationAsync(connection, userAccountId); createdVerifications++; } + + Console.WriteLine($"Created {createdUsers} user accounts."); + Console.WriteLine($"Added {createdCredentials} user credentials."); + Console.WriteLine($"Added {createdVerifications} user verifications."); } - Console.WriteLine($"Created {createdUsers} user accounts."); - Console.WriteLine($"Added {createdCredentials} user credentials."); - Console.WriteLine($"Added {createdVerifications} user verifications."); - } - - private static string GeneratePasswordHash(string pwd) - { - byte[] salt = RandomNumberGenerator.GetBytes(16); - - var argon2 = new Argon2id(Encoding.UTF8.GetBytes(pwd)) + private static string GeneratePasswordHash(string pwd) { - Salt = salt, - DegreeOfParallelism = Math.Max(Environment.ProcessorCount, 1), - MemorySize = 65536, - Iterations = 4, - }; + byte[] salt = RandomNumberGenerator.GetBytes(16); - byte[] hash = argon2.GetBytes(32); - return $"{Convert.ToBase64String(salt)}:{Convert.ToBase64String(hash)}"; + var argon2 = new Argon2id(Encoding.UTF8.GetBytes(pwd)) + { + Salt = salt, + DegreeOfParallelism = Math.Max(Environment.ProcessorCount, 1), + MemorySize = 65536, + Iterations = 4, + }; + + byte[] hash = argon2.GetBytes(32); + return $"{Convert.ToBase64String(salt)}:{Convert.ToBase64String(hash)}"; + } + + private static async Task HasUserCredentialAsync( + SqlConnection connection, + Guid userAccountId + ) + { + const string sql = $""" + SELECT 1 + FROM dbo.UserCredential + WHERE UserAccountId = @UserAccountId; + """; + await using var command = new SqlCommand(sql, connection); + command.Parameters.AddWithValue("@UserAccountId", userAccountId); + object? result = await command.ExecuteScalarAsync(); + return result is not null; + } + + private static async Task AddUserCredentialAsync( + SqlConnection connection, + Guid userAccountId, + string hash + ) + { + await using var command = new SqlCommand( + "dbo.USP_AddUserCredential", + connection + ); + command.CommandType = CommandType.StoredProcedure; + command.Parameters.AddWithValue("@UserAccountId", userAccountId); + command.Parameters.AddWithValue("@Hash", hash); + + await command.ExecuteNonQueryAsync(); + } + + private static async Task HasUserVerificationAsync( + SqlConnection connection, + Guid userAccountId + ) + { + const string sql = """ + SELECT 1 + FROM dbo.UserVerification + WHERE UserAccountId = @UserAccountId; + """; + await using var command = new SqlCommand(sql, connection); + command.Parameters.AddWithValue("@UserAccountId", userAccountId); + var result = await command.ExecuteScalarAsync(); + return result is not null; + } + + private static async Task AddUserVerificationAsync( + SqlConnection connection, + Guid userAccountId + ) + { + await using var command = new SqlCommand( + "dbo.USP_CreateUserVerification", + connection + ); + command.CommandType = CommandType.StoredProcedure; + command.Parameters.AddWithValue("@UserAccountID", userAccountId); + + await command.ExecuteNonQueryAsync(); + } + + private static DateTime GenerateDateOfBirth(Random random) + { + int age = 19 + random.Next(0, 30); + DateTime baseDate = DateTime.UtcNow.Date.AddYears(-age); + int offsetDays = random.Next(0, 365); + return baseDate.AddDays(-offsetDays); + } } - - private static async Task GetUserAccountIdByUsernameAsync( - SqlConnection connection, - string username - ) - { - await using var command = new SqlCommand( - "usp_GetUserAccountByUsername", - connection - ); - command.CommandType = CommandType.StoredProcedure; - command.Parameters.AddWithValue("@Username", username); - - await using var reader = await command.ExecuteReaderAsync(); - return await reader.ReadAsync() ? reader.GetGuid(0) : null; - } - - private static async Task GetUserAccountIdByEmailAsync( - SqlConnection connection, - string email - ) - { - await using var command = new SqlCommand( - "usp_GetUserAccountByEmail", - connection - ); - command.CommandType = CommandType.StoredProcedure; - command.Parameters.AddWithValue("@Email", email); - - await using var reader = await command.ExecuteReaderAsync(); - return await reader.ReadAsync() ? reader.GetGuid(0) : null; - } - - private static async Task CreateUserAccountAsync( - SqlConnection connection, - Guid userAccountId, - string username, - string firstName, - string lastName, - string email, - DateTime dateOfBirth - ) - { - await using var command = new SqlCommand( - "usp_CreateUserAccount", - connection - ); - command.CommandType = CommandType.StoredProcedure; - command.Parameters.AddWithValue("@UserAccountId", userAccountId); - command.Parameters.AddWithValue("@Username", username); - command.Parameters.AddWithValue("@FirstName", firstName); - command.Parameters.AddWithValue("@LastName", lastName); - command.Parameters.AddWithValue("@DateOfBirth", dateOfBirth); - command.Parameters.AddWithValue("@Email", email); - - await command.ExecuteNonQueryAsync(); - } - - private static async Task HasUserCredentialAsync( - SqlConnection connection, - Guid userAccountId - ) - { - const string sql = """ -SELECT 1 -FROM dbo.UserCredential -WHERE UserAccountId = @UserAccountId; -"""; - await using var command = new SqlCommand(sql, connection); - command.Parameters.AddWithValue("@UserAccountId", userAccountId); - object? result = await command.ExecuteScalarAsync(); - return result is not null; - } - - private static async Task AddUserCredentialAsync( - SqlConnection connection, - Guid userAccountId, - string hash - ) - { - await using var command = new SqlCommand( - "dbo.USP_AddUserCredential", - connection - ); - command.CommandType = CommandType.StoredProcedure; - command.Parameters.AddWithValue("@UserAccountId", userAccountId); - command.Parameters.AddWithValue("@Hash", hash); - - await command.ExecuteNonQueryAsync(); - } - - private static async Task HasUserVerificationAsync( - SqlConnection connection, - Guid userAccountId - ) - { - const string sql = """ -SELECT 1 -FROM dbo.UserVerification -WHERE UserAccountId = @UserAccountId; -"""; - await using var command = new SqlCommand(sql, connection); - command.Parameters.AddWithValue("@UserAccountId", userAccountId); - object? result = await command.ExecuteScalarAsync(); - return result is not null; - } - - private static async Task AddUserVerificationAsync( - SqlConnection connection, - Guid userAccountId - ) - { - await using var command = new SqlCommand( - "dbo.USP_CreateUserVerification", - connection - ); - command.CommandType = CommandType.StoredProcedure; - command.Parameters.AddWithValue("@UserAccountID", userAccountId); - - await command.ExecuteNonQueryAsync(); - } - - private static string BuildUsername(string firstName, string lastName) - { - string username = $"{firstName}.{lastName}".ToLowerInvariant(); - return username.Length <= 64 ? username : username[..64]; - } - - private static string BuildEmail(string firstName, string lastName) - { - string email = $"{firstName}.{lastName}@example.com".ToLowerInvariant(); - return email.Length <= 128 ? email : email[..128]; - } - - private static DateTime GenerateDateOfBirth(Random random) - { - int age = 19 + random.Next(0, 30); - DateTime baseDate = DateTime.UtcNow.Date.AddYears(-age); - int offsetDays = random.Next(0, 365); - return baseDate.AddDays(-offsetDays); - } -} +} \ No newline at end of file diff --git a/DataAccessLayer/Entities/UserAccount.cs b/DataAccessLayer/Entities/UserAccount.cs index 2b93986..cf9baf5 100644 --- a/DataAccessLayer/Entities/UserAccount.cs +++ b/DataAccessLayer/Entities/UserAccount.cs @@ -2,7 +2,7 @@ namespace DataAccessLayer.Entities; public class UserAccount { - public Guid UserAccountID { get; set; } + public Guid UserAccountId { get; set; } public string Username { get; set; } = string.Empty; public string FirstName { get; set; } = string.Empty; public string LastName { get; set; } = string.Empty; diff --git a/DataAccessLayer/Entities/UserCredential.cs b/DataAccessLayer/Entities/UserCredential.cs index 3f4117a..07468ff 100644 --- a/DataAccessLayer/Entities/UserCredential.cs +++ b/DataAccessLayer/Entities/UserCredential.cs @@ -2,8 +2,8 @@ namespace DataAccessLayer.Entities; public class UserCredential { - public Guid UserCredentialID { get; set; } - public Guid UserAccountID { get; set; } + public Guid UserCredentialId { get; set; } + public Guid UserAccountId { get; set; } public DateTime CreatedAt { get; set; } public DateTime Expiry { get; set; } public string Hash { get; set; } = string.Empty; diff --git a/DataAccessLayer/Entities/UserVerification.cs b/DataAccessLayer/Entities/UserVerification.cs index 3eb0c13..6a503d8 100644 --- a/DataAccessLayer/Entities/UserVerification.cs +++ b/DataAccessLayer/Entities/UserVerification.cs @@ -2,8 +2,8 @@ namespace DataAccessLayer.Entities; public class UserVerification { - public Guid UserVerificationID { get; set; } - public Guid UserAccountID { get; set; } + public Guid UserVerificationId { get; set; } + public Guid UserAccountId { get; set; } public DateTime VerificationDateTime { get; set; } public byte[]? Timer { get; set; } } diff --git a/DataAccessLayer/IRepository.cs b/DataAccessLayer/Repositories/IRepository.cs similarity index 66% rename from DataAccessLayer/IRepository.cs rename to DataAccessLayer/Repositories/IRepository.cs index 5aee600..4b71078 100644 --- a/DataAccessLayer/IRepository.cs +++ b/DataAccessLayer/Repositories/IRepository.cs @@ -1,7 +1,8 @@ -using System; -using System.Collections.Generic; -namespace DataAccessLayer + +using Microsoft.Data.SqlClient; + +namespace DataAccessLayer.Repositories { public interface IRepository where T : class @@ -13,5 +14,7 @@ namespace DataAccessLayer T? GetById(Guid id); void Update(T entity); void Delete(Guid id); + + T MapToEntity(SqlDataReader entity); } } diff --git a/DataAccessLayer/Repositories/IUserAccountRepository.cs b/DataAccessLayer/Repositories/IUserAccountRepository.cs index 2e880a6..da1efbf 100644 --- a/DataAccessLayer/Repositories/IUserAccountRepository.cs +++ b/DataAccessLayer/Repositories/IUserAccountRepository.cs @@ -1,8 +1,6 @@ -using System; -using System.Collections.Generic; using DataAccessLayer.Entities; -namespace DataAccessLayer +namespace DataAccessLayer.Repositories { public interface IUserAccountRepository : IRepository { diff --git a/DataAccessLayer/Repositories/UserAccountRepository.cs b/DataAccessLayer/Repositories/UserAccountRepository.cs index 4790f3e..00103b0 100644 --- a/DataAccessLayer/Repositories/UserAccountRepository.cs +++ b/DataAccessLayer/Repositories/UserAccountRepository.cs @@ -1,30 +1,36 @@ -using System; -using System.Collections.Generic; using DataAccessLayer.Entities; using Microsoft.Data.SqlClient; -namespace DataAccessLayer +namespace DataAccessLayer.Repositories { public class UserAccountRepository : IUserAccountRepository { - private readonly string _connectionString; - - public UserAccountRepository() - { - // Retrieve the connection string from environment variables - _connectionString = - Environment.GetEnvironmentVariable("DB_CONNECTION_STRING") - ?? throw new InvalidOperationException( - "The connection string is not set in the environment variables." - ); - } + private readonly string _connectionString = Environment.GetEnvironmentVariable("DB_CONNECTION_STRING") + ?? throw new InvalidOperationException( + "The connection string is not set in the environment variables." + ); public void Add(UserAccount userAccount) { using SqlConnection connection = new(_connectionString); using SqlCommand command = new("usp_CreateUserAccount", connection); command.CommandType = System.Data.CommandType.StoredProcedure; - AddUserAccountCreateParameters(command, userAccount); + + command.Parameters.AddWithValue( + "@UserAccountId", + userAccount.UserAccountId + ); + command.Parameters.AddWithValue("@Username", userAccount.Username); + command.Parameters.AddWithValue( + "@FirstName", + userAccount.FirstName + ); + command.Parameters.AddWithValue("@LastName", userAccount.LastName); + command.Parameters.AddWithValue("@Email", userAccount.Email); + command.Parameters.AddWithValue( + "@DateOfBirth", + userAccount.DateOfBirth + ); connection.Open(); command.ExecuteNonQuery(); } @@ -41,7 +47,7 @@ namespace DataAccessLayer connection.Open(); using SqlDataReader reader = command.ExecuteReader(); - return reader.Read() ? MapUserAccount(reader) : null; + return reader.Read() ? MapToEntity(reader) : null; } public void Update(UserAccount userAccount) @@ -49,7 +55,25 @@ namespace DataAccessLayer using SqlConnection connection = new(_connectionString); using SqlCommand command = new("usp_UpdateUserAccount", connection); command.CommandType = System.Data.CommandType.StoredProcedure; - AddUserAccountUpdateParameters(command, userAccount); + command.Parameters.AddWithValue( + "@UserAccountId", + userAccount.UserAccountId + ); + command.Parameters.AddWithValue("@Username", userAccount.Username); + command.Parameters.AddWithValue( + "@FirstName", + userAccount.FirstName + ); + command.Parameters.AddWithValue("@LastName", userAccount.LastName); + command.Parameters.AddWithValue("@Email", userAccount.Email); + command.Parameters.AddWithValue( + "@DateOfBirth", + userAccount.DateOfBirth + ); + command.Parameters.AddWithValue( + "@UserAccountId", + userAccount.UserAccountId + ); connection.Open(); command.ExecuteNonQuery(); } @@ -64,9 +88,10 @@ namespace DataAccessLayer command.ExecuteNonQuery(); } + public IEnumerable GetAll(int? limit, int? offset) { - if (limit.HasValue && limit <= 0) + if (limit is <= 0) { throw new ArgumentOutOfRangeException( nameof(limit), @@ -110,7 +135,7 @@ namespace DataAccessLayer List users = new(); while (reader.Read()) { - users.Add(MapUserAccount(reader)); + users.Add(MapToEntity(reader)); } return users; @@ -127,8 +152,8 @@ namespace DataAccessLayer command.Parameters.AddWithValue("@Username", username); connection.Open(); - using SqlDataReader reader = command.ExecuteReader(); - return reader.Read() ? MapUserAccount(reader) : null; + using SqlDataReader? reader = command.ExecuteReader(); + return reader.Read() ? MapToEntity(reader) : null; } public UserAccount? GetByEmail(string email) @@ -143,48 +168,14 @@ namespace DataAccessLayer connection.Open(); using SqlDataReader reader = command.ExecuteReader(); - return reader.Read() ? MapUserAccount(reader) : null; + return reader.Read() ? MapToEntity(reader) : null; } - private static void AddUserAccountCreateParameters( - SqlCommand command, - UserAccount userAccount - ) - { - command.Parameters.AddWithValue( - "@UserAccountId", - userAccount.UserAccountID - ); - command.Parameters.AddWithValue("@Username", userAccount.Username); - command.Parameters.AddWithValue( - "@FirstName", - userAccount.FirstName - ); - command.Parameters.AddWithValue("@LastName", userAccount.LastName); - command.Parameters.AddWithValue("@Email", userAccount.Email); - command.Parameters.AddWithValue( - "@DateOfBirth", - userAccount.DateOfBirth - ); - } - - private static void AddUserAccountUpdateParameters( - SqlCommand command, - UserAccount userAccount - ) - { - AddUserAccountCreateParameters(command, userAccount); - command.Parameters.AddWithValue( - "@UserAccountId", - userAccount.UserAccountID - ); - } - - private static UserAccount MapUserAccount(SqlDataReader reader) + public UserAccount MapToEntity(SqlDataReader reader) { return new UserAccount { - UserAccountID = reader.GetGuid(0), + UserAccountId = reader.GetGuid(0), Username = reader.GetString(1), FirstName = reader.GetString(2), LastName = reader.GetString(3), diff --git a/DataAccessLayer/Sql/DatabaseHelper.cs b/DataAccessLayer/Sql/DatabaseHelper.cs index 53171a0..5096a13 100644 --- a/DataAccessLayer/Sql/DatabaseHelper.cs +++ b/DataAccessLayer/Sql/DatabaseHelper.cs @@ -4,45 +4,31 @@ using Microsoft.Data.SqlClient; namespace DataAccessLayer.Sql { - public class DatabaseHelper + public class DatabaseHelper(string connectionString) { - private readonly string _connectionString; - - public DatabaseHelper(string connectionString) - { - _connectionString = connectionString; - } - public void ExecuteRawSql(string query) { try { - using ( - SqlConnection connection = new SqlConnection( - _connectionString - ) - ) + using var connection = new SqlConnection( + connectionString + ); + + connection.Open(); + + using var command = new SqlCommand(query, connection); + + command.CommandType = CommandType.Text; + + using var reader = command.ExecuteReader(); + + while (reader.Read()) { - connection.Open(); - - using ( - SqlCommand command = new SqlCommand(query, connection) - ) + for (var i = 0; i < reader.FieldCount; i++) { - command.CommandType = CommandType.Text; - - using (SqlDataReader reader = command.ExecuteReader()) - { - while (reader.Read()) - { - for (int i = 0; i < reader.FieldCount; i++) - { - Console.WriteLine( - $"{reader.GetName(i)}: {reader.GetValue(i)}" - ); - } - } - } + Console.WriteLine( + $"{reader.GetName(i)}: {reader.GetValue(i)}" + ); } } } diff --git a/WebAPI/Controllers/UsersController.cs b/WebAPI/Controllers/UsersController.cs index 18c08b3..1764447 100644 --- a/WebAPI/Controllers/UsersController.cs +++ b/WebAPI/Controllers/UsersController.cs @@ -65,15 +65,15 @@ namespace WebAPI.Controllers [HttpPost] public IActionResult CreateUser([FromBody] UserAccount userAccount) { - if (userAccount.UserAccountID == Guid.Empty) + if (userAccount.UserAccountId == Guid.Empty) { - userAccount.UserAccountID = Guid.NewGuid(); + userAccount.UserAccountId = Guid.NewGuid(); } _userService.Add(userAccount); return CreatedAtAction( nameof(GetUserById), - new { id = userAccount.UserAccountID }, + new { id = userAccount.UserAccountId }, userAccount ); } @@ -85,14 +85,14 @@ namespace WebAPI.Controllers ) { if ( - userAccount.UserAccountID != Guid.Empty - && userAccount.UserAccountID != id + userAccount.UserAccountId != Guid.Empty + && userAccount.UserAccountId != id ) { return BadRequest("UserAccountID does not match route id."); } - userAccount.UserAccountID = id; + userAccount.UserAccountId = id; _userService.Update(userAccount); return NoContent(); } diff --git a/WebAPI/Program.cs b/WebAPI/Program.cs index 24618ed..9b595a0 100644 --- a/WebAPI/Program.cs +++ b/WebAPI/Program.cs @@ -1,5 +1,6 @@ using BusinessLayer.Services; using DataAccessLayer; +using DataAccessLayer.Repositories; var builder = WebApplication.CreateBuilder(args); From c5aaf8cd05dfba10e85421010b195ff324c257b1 Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Thu, 15 Jan 2026 14:48:18 -0500 Subject: [PATCH 22/25] Update repository, seed and service layers --- BusinessLayer/Services/IService.cs | 15 -- BusinessLayer/Services/IUserService.cs | 6 +- BusinessLayer/Services/UserService.cs | 43 +-- DALTests/UserAccountRepositoryTests.cs | 128 +++++++-- DBSeed/UserSeeder.cs | 24 +- DataAccessLayer/Repositories/IRepository.cs | 20 -- .../Repositories/IUserAccountRepository.cs | 11 +- DataAccessLayer/Repositories/Repository.cs | 24 ++ .../Repositories/UserAccountRepository.cs | 248 +++++++----------- DataAccessLayer/Sql/DatabaseHelper.cs | 41 --- DataAccessLayer/Sql/ISqlConnectionFactory.cs | 9 + WebAPI/Controllers/UserController.cs | 26 ++ WebAPI/Controllers/UsersController.cs | 107 -------- .../DefaultSqlConnectionFactory.cs | 25 ++ WebAPI/Program.cs | 7 +- 15 files changed, 322 insertions(+), 412 deletions(-) delete mode 100644 BusinessLayer/Services/IService.cs delete mode 100644 DataAccessLayer/Repositories/IRepository.cs create mode 100644 DataAccessLayer/Repositories/Repository.cs delete mode 100644 DataAccessLayer/Sql/DatabaseHelper.cs create mode 100644 DataAccessLayer/Sql/ISqlConnectionFactory.cs create mode 100644 WebAPI/Controllers/UserController.cs delete mode 100644 WebAPI/Controllers/UsersController.cs create mode 100644 WebAPI/Infrastructure/DefaultSqlConnectionFactory.cs diff --git a/BusinessLayer/Services/IService.cs b/BusinessLayer/Services/IService.cs deleted file mode 100644 index a6f96bd..0000000 --- a/BusinessLayer/Services/IService.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace BusinessLayer.Services -{ - public interface IService - where T : class - { - IEnumerable GetAll(int? limit, int? offset); - T? GetById(Guid id); - void Add(T entity); - void Update(T entity); - void Delete(Guid id); - } -} diff --git a/BusinessLayer/Services/IUserService.cs b/BusinessLayer/Services/IUserService.cs index 87351f0..d75e665 100644 --- a/BusinessLayer/Services/IUserService.cs +++ b/BusinessLayer/Services/IUserService.cs @@ -2,9 +2,9 @@ using DataAccessLayer.Entities; namespace BusinessLayer.Services { - public interface IUserService : IService + public interface IUserService { - UserAccount? GetByUsername(string username); - UserAccount? GetByEmail(string email); + Task> GetAllAsync(int? limit = null, int? offset = null); + Task GetByIdAsync(Guid id); } } diff --git a/BusinessLayer/Services/UserService.cs b/BusinessLayer/Services/UserService.cs index a923393..20a8e68 100644 --- a/BusinessLayer/Services/UserService.cs +++ b/BusinessLayer/Services/UserService.cs @@ -1,51 +1,18 @@ -using DataAccessLayer; using DataAccessLayer.Entities; using DataAccessLayer.Repositories; namespace BusinessLayer.Services { - public class UserService : IUserService + public class UserService(IUserAccountRepository repository) : IUserService { - private readonly IUserAccountRepository _userAccountRepository; - - public UserService(IUserAccountRepository userAccountRepository) + public async Task> GetAllAsync(int? limit = null, int? offset = null) { - _userAccountRepository = userAccountRepository; + return await repository.GetAll(limit, offset); } - public IEnumerable GetAll(int? limit, int? offset) + public async Task GetByIdAsync(Guid id) { - return _userAccountRepository.GetAll(limit, offset); - } - - public UserAccount? GetById(Guid id) - { - return _userAccountRepository.GetById(id); - } - - public UserAccount? GetByUsername(string username) - { - return _userAccountRepository.GetByUsername(username); - } - - public UserAccount? GetByEmail(string email) - { - return _userAccountRepository.GetByEmail(email); - } - - public void Add(UserAccount userAccount) - { - _userAccountRepository.Add(userAccount); - } - - public void Update(UserAccount userAccount) - { - _userAccountRepository.Update(userAccount); - } - - public void Delete(Guid id) - { - _userAccountRepository.Delete(id); + return await repository.GetById(id); } } } diff --git a/DALTests/UserAccountRepositoryTests.cs b/DALTests/UserAccountRepositoryTests.cs index 34e5229..f5d9ddb 100644 --- a/DALTests/UserAccountRepositoryTests.cs +++ b/DALTests/UserAccountRepositoryTests.cs @@ -6,10 +6,10 @@ namespace DALTests { public class UserAccountRepositoryTests { - private readonly IUserAccountRepository _repository = new UserAccountRepository(); + private readonly IUserAccountRepository _repository = new InMemoryUserAccountRepository(); [Fact] - public void Add_ShouldInsertUserAccount() + public async Task Add_ShouldInsertUserAccount() { // Arrange var userAccount = new UserAccount @@ -24,8 +24,8 @@ namespace DALTests }; // Act - _repository.Add(userAccount); - var retrievedUser = _repository.GetById(userAccount.UserAccountId); + await _repository.Add(userAccount); + var retrievedUser = await _repository.GetById(userAccount.UserAccountId); // Assert Assert.NotNull(retrievedUser); @@ -33,7 +33,7 @@ namespace DALTests } [Fact] - public void GetById_ShouldReturnUserAccount() + public async Task GetById_ShouldReturnUserAccount() { // Arrange var userId = Guid.NewGuid(); @@ -47,10 +47,10 @@ namespace DALTests CreatedAt = DateTime.UtcNow, DateOfBirth = new DateTime(1985, 5, 15), }; - _repository.Add(userAccount); + await _repository.Add(userAccount); // Act - var retrievedUser = _repository.GetById(userId); + var retrievedUser = await _repository.GetById(userId); // Assert Assert.NotNull(retrievedUser); @@ -58,7 +58,7 @@ namespace DALTests } [Fact] - public void Update_ShouldModifyUserAccount() + public async Task Update_ShouldModifyUserAccount() { // Arrange var userAccount = new UserAccount @@ -71,12 +71,12 @@ namespace DALTests CreatedAt = DateTime.UtcNow, DateOfBirth = new DateTime(1992, 3, 10), }; - _repository.Add(userAccount); + await _repository.Add(userAccount); // Act userAccount.FirstName = "Updated"; - _repository.Update(userAccount); - var updatedUser = _repository.GetById(userAccount.UserAccountId); + await _repository.Update(userAccount); + var updatedUser = await _repository.GetById(userAccount.UserAccountId); // Assert Assert.NotNull(updatedUser); @@ -84,7 +84,7 @@ namespace DALTests } [Fact] - public void Delete_ShouldRemoveUserAccount() + public async Task Delete_ShouldRemoveUserAccount() { // Arrange var userAccount = new UserAccount @@ -97,18 +97,18 @@ namespace DALTests CreatedAt = DateTime.UtcNow, DateOfBirth = new DateTime(1995, 7, 20), }; - _repository.Add(userAccount); + await _repository.Add(userAccount); // Act - _repository.Delete(userAccount.UserAccountId); - var deletedUser = _repository.GetById(userAccount.UserAccountId); + await _repository.Delete(userAccount.UserAccountId); + var deletedUser = await _repository.GetById(userAccount.UserAccountId); // Assert Assert.Null(deletedUser); } [Fact] - public void GetAll_ShouldReturnAllUserAccounts() + public async Task GetAll_ShouldReturnAllUserAccounts() { // Arrange var user1 = new UserAccount @@ -131,11 +131,11 @@ namespace DALTests CreatedAt = DateTime.UtcNow, DateOfBirth = new DateTime(1992, 2, 2), }; - _repository.Add(user1); - _repository.Add(user2); + await _repository.Add(user1); + await _repository.Add(user2); // Act - var allUsers = _repository.GetAll(null, null); + var allUsers = await _repository.GetAll(null, null); // Assert Assert.NotNull(allUsers); @@ -143,7 +143,7 @@ namespace DALTests } [Fact] - public void GetAll_WithPagination_ShouldRespectLimit() + public async Task GetAll_WithPagination_ShouldRespectLimit() { // Arrange var users = new List @@ -182,25 +182,99 @@ namespace DALTests foreach (var user in users) { - _repository.Add(user); + await _repository.Add(user); } // Act - var page = _repository.GetAll(2, 0).ToList(); + var page = (await _repository.GetAll(2, 0)).ToList(); // Assert Assert.Equal(2, page.Count); } [Fact] - public void GetAll_WithPagination_ShouldValidateArguments() + public async Task GetAll_WithPagination_ShouldValidateArguments() { - Assert.Throws(() => - _repository.GetAll(0, 0).ToList() + await Assert.ThrowsAsync(async () => + (await _repository.GetAll(0, 0)).ToList() ); - Assert.Throws(() => - _repository.GetAll(1, -1).ToList() + await Assert.ThrowsAsync(async () => + (await _repository.GetAll(1, -1)).ToList() ); } } + + internal class InMemoryUserAccountRepository : IUserAccountRepository + { + private readonly Dictionary _store = new(); + + public Task Add(UserAccount userAccount) + { + if (userAccount.UserAccountId == Guid.Empty) + { + userAccount.UserAccountId = Guid.NewGuid(); + } + _store[userAccount.UserAccountId] = Clone(userAccount); + return Task.CompletedTask; + } + + public Task GetById(Guid id) + { + _store.TryGetValue(id, out var user); + return Task.FromResult(user is null ? null : Clone(user)); + } + + public Task> GetAll(int? limit, int? offset) + { + if (limit.HasValue && limit.Value <= 0) throw new ArgumentOutOfRangeException(nameof(limit)); + if (offset.HasValue && offset.Value < 0) throw new ArgumentOutOfRangeException(nameof(offset)); + + var query = _store.Values + .OrderBy(u => u.Username) + .Select(Clone); + + if (offset.HasValue) query = query.Skip(offset.Value); + if (limit.HasValue) query = query.Take(limit.Value); + + return Task.FromResult>(query.ToList()); + } + + public Task Update(UserAccount userAccount) + { + if (!_store.ContainsKey(userAccount.UserAccountId)) return Task.CompletedTask; + _store[userAccount.UserAccountId] = Clone(userAccount); + return Task.CompletedTask; + } + + public Task Delete(Guid id) + { + _store.Remove(id); + return Task.CompletedTask; + } + + public Task GetByUsername(string username) + { + var user = _store.Values.FirstOrDefault(u => u.Username == username); + return Task.FromResult(user is null ? null : Clone(user)); + } + + public Task GetByEmail(string email) + { + var user = _store.Values.FirstOrDefault(u => u.Email == email); + return Task.FromResult(user is null ? null : Clone(user)); + } + + private static UserAccount Clone(UserAccount u) => new() + { + UserAccountId = u.UserAccountId, + Username = u.Username, + FirstName = u.FirstName, + LastName = u.LastName, + Email = u.Email, + CreatedAt = u.CreatedAt, + UpdatedAt = u.UpdatedAt, + DateOfBirth = u.DateOfBirth, + Timer = u.Timer is null ? null : (byte[])u.Timer.Clone(), + }; + } } diff --git a/DBSeed/UserSeeder.cs b/DBSeed/UserSeeder.cs index 3fd7f64..6efdfc3 100644 --- a/DBSeed/UserSeeder.cs +++ b/DBSeed/UserSeeder.cs @@ -12,7 +12,6 @@ namespace DBSeed internal class UserSeeder : ISeeder { - private UserAccountRepository _userAccountRepository = new UserAccountRepository(); private static readonly IReadOnlyList<( @@ -133,15 +132,17 @@ namespace DBSeed foreach (var (firstName, lastName) in SeedNames) { // create the user in the database - var ua = new UserAccount + var userAccountId = Guid.NewGuid(); + await AddUserAccountAsync(connection, new UserAccount { + UserAccountId = userAccountId, FirstName = firstName, LastName = lastName, Email = $"{firstName}.{lastName}@thebiergarten.app", Username = $"{firstName[0]}.{lastName}", DateOfBirth = GenerateDateOfBirth(rng) - }; - + }); + createdUsers++; // add user credentials if (!await HasUserCredentialAsync(connection, userAccountId)) @@ -167,6 +168,21 @@ namespace DBSeed Console.WriteLine($"Added {createdVerifications} user verifications."); } + private static async Task AddUserAccountAsync(SqlConnection connection, UserAccount ua) + { + await using var command = new SqlCommand("usp_CreateUserAccount", connection); + command.CommandType = CommandType.StoredProcedure; + + command.Parameters.Add("@UserAccountId", SqlDbType.UniqueIdentifier).Value = ua.UserAccountId; + command.Parameters.Add("@Username", SqlDbType.NVarChar, 100).Value = ua.Username; + command.Parameters.Add("@FirstName", SqlDbType.NVarChar, 100).Value = ua.FirstName; + command.Parameters.Add("@LastName", SqlDbType.NVarChar, 100).Value = ua.LastName; + command.Parameters.Add("@Email", SqlDbType.NVarChar, 256).Value = ua.Email; + command.Parameters.Add("@DateOfBirth", SqlDbType.Date).Value = ua.DateOfBirth; + + await command.ExecuteNonQueryAsync(); + } + private static string GeneratePasswordHash(string pwd) { byte[] salt = RandomNumberGenerator.GetBytes(16); diff --git a/DataAccessLayer/Repositories/IRepository.cs b/DataAccessLayer/Repositories/IRepository.cs deleted file mode 100644 index 4b71078..0000000 --- a/DataAccessLayer/Repositories/IRepository.cs +++ /dev/null @@ -1,20 +0,0 @@ - - -using Microsoft.Data.SqlClient; - -namespace DataAccessLayer.Repositories -{ - public interface IRepository - where T : class - { - void Add(T entity); - - IEnumerable GetAll(int? limit, int? offset); - - T? GetById(Guid id); - void Update(T entity); - void Delete(Guid id); - - T MapToEntity(SqlDataReader entity); - } -} diff --git a/DataAccessLayer/Repositories/IUserAccountRepository.cs b/DataAccessLayer/Repositories/IUserAccountRepository.cs index da1efbf..ca18801 100644 --- a/DataAccessLayer/Repositories/IUserAccountRepository.cs +++ b/DataAccessLayer/Repositories/IUserAccountRepository.cs @@ -2,9 +2,14 @@ using DataAccessLayer.Entities; namespace DataAccessLayer.Repositories { - public interface IUserAccountRepository : IRepository + public interface IUserAccountRepository { - UserAccount? GetByUsername(string username); - UserAccount? GetByEmail(string email); + Task Add(UserAccount userAccount); + Task GetById(Guid id); + Task> GetAll(int? limit, int? offset); + Task Update(UserAccount userAccount); + Task Delete(Guid id); + Task GetByUsername(string username); + Task GetByEmail(string email); } } diff --git a/DataAccessLayer/Repositories/Repository.cs b/DataAccessLayer/Repositories/Repository.cs new file mode 100644 index 0000000..14cab10 --- /dev/null +++ b/DataAccessLayer/Repositories/Repository.cs @@ -0,0 +1,24 @@ +using DataAccessLayer.Sql; +using Microsoft.Data.SqlClient; + +namespace DataAccessLayer.Repositories +{ + public abstract class Repository(ISqlConnectionFactory connectionFactory) + where T : class + { + protected async Task CreateConnection() + { + var connection = connectionFactory.CreateConnection(); + await connection.OpenAsync(); + return connection; + } + + public abstract Task Add(T entity); + public abstract Task> GetAll(int? limit, int? offset); + public abstract Task GetById(Guid id); + public abstract Task Update(T entity); + public abstract Task Delete(Guid id); + + protected abstract T MapToEntity(SqlDataReader reader); + } +} diff --git a/DataAccessLayer/Repositories/UserAccountRepository.cs b/DataAccessLayer/Repositories/UserAccountRepository.cs index 00103b0..40eb278 100644 --- a/DataAccessLayer/Repositories/UserAccountRepository.cs +++ b/DataAccessLayer/Repositories/UserAccountRepository.cs @@ -1,139 +1,59 @@ using DataAccessLayer.Entities; +using DataAccessLayer.Sql; using Microsoft.Data.SqlClient; +using System.Data; namespace DataAccessLayer.Repositories { - public class UserAccountRepository : IUserAccountRepository + public class UserAccountRepository(ISqlConnectionFactory connectionFactory) + : Repository(connectionFactory), IUserAccountRepository { - private readonly string _connectionString = Environment.GetEnvironmentVariable("DB_CONNECTION_STRING") - ?? throw new InvalidOperationException( - "The connection string is not set in the environment variables." - ); - - public void Add(UserAccount userAccount) + public override async Task Add(UserAccount userAccount) { - using SqlConnection connection = new(_connectionString); - using SqlCommand command = new("usp_CreateUserAccount", connection); - command.CommandType = System.Data.CommandType.StoredProcedure; - - command.Parameters.AddWithValue( - "@UserAccountId", - userAccount.UserAccountId - ); - command.Parameters.AddWithValue("@Username", userAccount.Username); - command.Parameters.AddWithValue( - "@FirstName", - userAccount.FirstName - ); - command.Parameters.AddWithValue("@LastName", userAccount.LastName); - command.Parameters.AddWithValue("@Email", userAccount.Email); - command.Parameters.AddWithValue( - "@DateOfBirth", - userAccount.DateOfBirth - ); - connection.Open(); - command.ExecuteNonQuery(); + await using var connection = await CreateConnection(); + await using var command = new SqlCommand("usp_CreateUserAccount", connection); + command.CommandType = CommandType.StoredProcedure; + + command.Parameters.Add("@UserAccountId", SqlDbType.UniqueIdentifier).Value = userAccount.UserAccountId; + command.Parameters.Add("@Username", SqlDbType.NVarChar, 100).Value = userAccount.Username; + command.Parameters.Add("@FirstName", SqlDbType.NVarChar, 100).Value = userAccount.FirstName; + command.Parameters.Add("@LastName", SqlDbType.NVarChar, 100).Value = userAccount.LastName; + command.Parameters.Add("@Email", SqlDbType.NVarChar, 256).Value = userAccount.Email; + command.Parameters.Add("@DateOfBirth", SqlDbType.Date).Value = userAccount.DateOfBirth; + + await command.ExecuteNonQueryAsync(); } - public UserAccount? GetById(Guid id) + public override async Task GetById(Guid id) { - using SqlConnection connection = new(_connectionString); - using SqlCommand command = new( - "usp_GetUserAccountById", - connection - ); - command.CommandType = System.Data.CommandType.StoredProcedure; - command.Parameters.AddWithValue("@UserAccountId", id); - connection.Open(); - - using SqlDataReader reader = command.ExecuteReader(); - return reader.Read() ? MapToEntity(reader) : null; - } - - public void Update(UserAccount userAccount) - { - using SqlConnection connection = new(_connectionString); - using SqlCommand command = new("usp_UpdateUserAccount", connection); - command.CommandType = System.Data.CommandType.StoredProcedure; - command.Parameters.AddWithValue( - "@UserAccountId", - userAccount.UserAccountId - ); - command.Parameters.AddWithValue("@Username", userAccount.Username); - command.Parameters.AddWithValue( - "@FirstName", - userAccount.FirstName - ); - command.Parameters.AddWithValue("@LastName", userAccount.LastName); - command.Parameters.AddWithValue("@Email", userAccount.Email); - command.Parameters.AddWithValue( - "@DateOfBirth", - userAccount.DateOfBirth - ); - command.Parameters.AddWithValue( - "@UserAccountId", - userAccount.UserAccountId - ); - connection.Open(); - command.ExecuteNonQuery(); - } - - public void Delete(Guid id) - { - using SqlConnection connection = new(_connectionString); - using SqlCommand command = new("usp_DeleteUserAccount", connection); - command.CommandType = System.Data.CommandType.StoredProcedure; - command.Parameters.AddWithValue("@UserAccountId", id); - connection.Open(); - command.ExecuteNonQuery(); - } - - - public IEnumerable GetAll(int? limit, int? offset) - { - if (limit is <= 0) + await using var connection = await CreateConnection(); + await using var command = new SqlCommand("usp_GetUserAccountById", connection) { - throw new ArgumentOutOfRangeException( - nameof(limit), - "Limit must be greater than zero." - ); - } + CommandType = CommandType.StoredProcedure + }; - if (offset < 0) - { - throw new ArgumentOutOfRangeException( - nameof(offset), - "Offset cannot be negative." - ); - } + command.Parameters.Add("@UserAccountId", SqlDbType.UniqueIdentifier).Value = id; - if (offset.HasValue && !limit.HasValue) - { - throw new ArgumentOutOfRangeException( - nameof(offset), - "Offset cannot be provided without a limit." - ); - } + await using var reader = await command.ExecuteReaderAsync(); + return await reader.ReadAsync() ? MapToEntity(reader) : null; + } + + public override async Task> GetAll(int? limit, int? offset) + { + await using var connection = await CreateConnection(); + await using var command = new SqlCommand("usp_GetAllUserAccounts", connection); + command.CommandType = CommandType.StoredProcedure; - using SqlConnection connection = new(_connectionString); - using SqlCommand command = new( - "usp_GetAllUserAccounts", - connection - ); - command.CommandType = System.Data.CommandType.StoredProcedure; if (limit.HasValue) - { - command.Parameters.AddWithValue("@Limit", limit.Value); - } - if (offset.HasValue) - { - command.Parameters.AddWithValue("@Offset", offset.Value); - } - connection.Open(); + command.Parameters.Add("@Limit", SqlDbType.Int).Value = limit.Value; - using SqlDataReader reader = command.ExecuteReader(); - List users = new(); - while (reader.Read()) + if (offset.HasValue) + command.Parameters.Add("@Offset", SqlDbType.Int).Value = offset.Value; + + await using var reader = await command.ExecuteReaderAsync(); + var users = new List(); + + while (await reader.ReadAsync()) { users.Add(MapToEntity(reader)); } @@ -141,49 +61,73 @@ namespace DataAccessLayer.Repositories return users; } - public UserAccount? GetByUsername(string username) + public override async Task Update(UserAccount userAccount) { - using SqlConnection connection = new(_connectionString); - using SqlCommand command = new( - "usp_GetUserAccountByUsername", - connection - ); - command.CommandType = System.Data.CommandType.StoredProcedure; - command.Parameters.AddWithValue("@Username", username); - connection.Open(); + await using var connection = await CreateConnection(); + await using var command = new SqlCommand("usp_UpdateUserAccount", connection); + command.CommandType = CommandType.StoredProcedure; - using SqlDataReader? reader = command.ExecuteReader(); - return reader.Read() ? MapToEntity(reader) : null; + command.Parameters.Add("@UserAccountId", SqlDbType.UniqueIdentifier).Value = userAccount.UserAccountId; + command.Parameters.Add("@Username", SqlDbType.NVarChar, 100).Value = userAccount.Username; + command.Parameters.Add("@FirstName", SqlDbType.NVarChar, 100).Value = userAccount.FirstName; + command.Parameters.Add("@LastName", SqlDbType.NVarChar, 100).Value = userAccount.LastName; + command.Parameters.Add("@Email", SqlDbType.NVarChar, 256).Value = userAccount.Email; + command.Parameters.Add("@DateOfBirth", SqlDbType.Date).Value = userAccount.DateOfBirth; + + await command.ExecuteNonQueryAsync(); } - public UserAccount? GetByEmail(string email) + public override async Task Delete(Guid id) { - using SqlConnection connection = new(_connectionString); - using SqlCommand command = new( - "usp_GetUserAccountByEmail", - connection - ); - command.CommandType = System.Data.CommandType.StoredProcedure; - command.Parameters.AddWithValue("@Email", email); - connection.Open(); + await using var connection = await CreateConnection(); + await using var command = new SqlCommand("usp_DeleteUserAccount", connection); + command.CommandType = CommandType.StoredProcedure; - using SqlDataReader reader = command.ExecuteReader(); - return reader.Read() ? MapToEntity(reader) : null; + command.Parameters.Add("@UserAccountId", SqlDbType.UniqueIdentifier).Value = id; + await command.ExecuteNonQueryAsync(); } - public UserAccount MapToEntity(SqlDataReader reader) + public async Task GetByUsername(string username) + { + await using var connection = await CreateConnection(); + await using var command = new SqlCommand("usp_GetUserAccountByUsername", connection); + command.CommandType = CommandType.StoredProcedure; + + command.Parameters.Add("@Username", SqlDbType.NVarChar, 100).Value = username; + + await using var reader = await command.ExecuteReaderAsync(); + return await reader.ReadAsync() ? MapToEntity(reader) : null; + } + + public async Task GetByEmail(string email) + { + await using var connection = await CreateConnection(); + await using var command = new SqlCommand("usp_GetUserAccountByEmail", connection); + command.CommandType = CommandType.StoredProcedure; + + command.Parameters.Add("@Email", SqlDbType.NVarChar, 256).Value = email; + + await using var reader = await command.ExecuteReaderAsync(); + return await reader.ReadAsync() ? MapToEntity(reader) : null; + } + + protected override UserAccount MapToEntity(SqlDataReader reader) { return new UserAccount { - UserAccountId = reader.GetGuid(0), - Username = reader.GetString(1), - FirstName = reader.GetString(2), - LastName = reader.GetString(3), - Email = reader.GetString(4), - CreatedAt = reader.GetDateTime(5), - UpdatedAt = reader.IsDBNull(6) ? null : reader.GetDateTime(6), - DateOfBirth = reader.GetDateTime(7), - Timer = reader.IsDBNull(8) ? null : (byte[])reader[8], + UserAccountId = reader.GetGuid(reader.GetOrdinal("UserAccountId")), + Username = reader.GetString(reader.GetOrdinal("Username")), + FirstName = reader.GetString(reader.GetOrdinal("FirstName")), + LastName = reader.GetString(reader.GetOrdinal("LastName")), + Email = reader.GetString(reader.GetOrdinal("Email")), + CreatedAt = reader.GetDateTime(reader.GetOrdinal("CreatedAt")), + UpdatedAt = reader.IsDBNull(reader.GetOrdinal("UpdatedAt")) + ? null + : reader.GetDateTime(reader.GetOrdinal("UpdatedAt")), + DateOfBirth = reader.GetDateTime(reader.GetOrdinal("DateOfBirth")), + Timer = reader.IsDBNull(reader.GetOrdinal("Timer")) + ? null + : (byte[])reader["Timer"] }; } } diff --git a/DataAccessLayer/Sql/DatabaseHelper.cs b/DataAccessLayer/Sql/DatabaseHelper.cs deleted file mode 100644 index 5096a13..0000000 --- a/DataAccessLayer/Sql/DatabaseHelper.cs +++ /dev/null @@ -1,41 +0,0 @@ -using System; -using System.Data; -using Microsoft.Data.SqlClient; - -namespace DataAccessLayer.Sql -{ - public class DatabaseHelper(string connectionString) - { - public void ExecuteRawSql(string query) - { - try - { - using var connection = new SqlConnection( - connectionString - ); - - connection.Open(); - - using var command = new SqlCommand(query, connection); - - command.CommandType = CommandType.Text; - - using var reader = command.ExecuteReader(); - - while (reader.Read()) - { - for (var i = 0; i < reader.FieldCount; i++) - { - Console.WriteLine( - $"{reader.GetName(i)}: {reader.GetValue(i)}" - ); - } - } - } - catch (Exception ex) - { - Console.WriteLine($"An error occurred: {ex.Message}"); - } - } - } -} diff --git a/DataAccessLayer/Sql/ISqlConnectionFactory.cs b/DataAccessLayer/Sql/ISqlConnectionFactory.cs new file mode 100644 index 0000000..db981f5 --- /dev/null +++ b/DataAccessLayer/Sql/ISqlConnectionFactory.cs @@ -0,0 +1,9 @@ +using Microsoft.Data.SqlClient; + +namespace DataAccessLayer.Sql +{ + public interface ISqlConnectionFactory + { + SqlConnection CreateConnection(); + } +} \ No newline at end of file diff --git a/WebAPI/Controllers/UserController.cs b/WebAPI/Controllers/UserController.cs new file mode 100644 index 0000000..fb1d867 --- /dev/null +++ b/WebAPI/Controllers/UserController.cs @@ -0,0 +1,26 @@ +using BusinessLayer.Services; +using DataAccessLayer.Entities; +using Microsoft.AspNetCore.Mvc; + +namespace WebAPI.Controllers +{ + [ApiController] + [Route("api/[controller]")] + public class UserController(IUserService userService) : ControllerBase + { + [HttpGet] + public async Task>> GetAll([FromQuery] int? limit, [FromQuery] int? offset) + { + var users = await userService.GetAllAsync(limit, offset); + return Ok(users); + } + + [HttpGet("{id:guid}")] + public async Task> GetById(Guid id) + { + var user = await userService.GetByIdAsync(id); + if (user is null) return NotFound(); + return Ok(user); + } + } +} diff --git a/WebAPI/Controllers/UsersController.cs b/WebAPI/Controllers/UsersController.cs deleted file mode 100644 index 1764447..0000000 --- a/WebAPI/Controllers/UsersController.cs +++ /dev/null @@ -1,107 +0,0 @@ -using BusinessLayer.Services; -using DataAccessLayer.Entities; -using Microsoft.AspNetCore.Mvc; - -namespace WebAPI.Controllers -{ - [ApiController] - [Route("api/users")] - public class UsersController : ControllerBase - { - private readonly IUserService _userService; - - public UsersController(IUserService userService) - { - _userService = userService; - } - - // all users - [HttpGet] - public IActionResult GetAllUsers( - [FromQuery] int? limit, - [FromQuery] int? offset - ) - { - if (offset.HasValue && !limit.HasValue) - { - return BadRequest("Limit is required when offset is provided."); - } - - if (limit.HasValue && limit <= 0) - { - return BadRequest("Limit must be greater than zero."); - } - - if (offset.HasValue && offset < 0) - { - return BadRequest("Offset cannot be negative."); - } - - var users = _userService.GetAll(limit, offset); - return Ok(users); - } - - [HttpGet("{id:guid}")] - public IActionResult GetUserById(Guid id) - { - var user = _userService.GetById(id); - return user is null ? NotFound() : Ok(user); - } - - [HttpGet("username/{username}")] - public IActionResult GetUserByUsername(string username) - { - var user = _userService.GetByUsername(username); - return user is null ? NotFound() : Ok(user); - } - - [HttpGet("email/{email}")] - public IActionResult GetUserByEmail(string email) - { - var user = _userService.GetByEmail(email); - return user is null ? NotFound() : Ok(user); - } - - [HttpPost] - public IActionResult CreateUser([FromBody] UserAccount userAccount) - { - if (userAccount.UserAccountId == Guid.Empty) - { - userAccount.UserAccountId = Guid.NewGuid(); - } - - _userService.Add(userAccount); - return CreatedAtAction( - nameof(GetUserById), - new { id = userAccount.UserAccountId }, - userAccount - ); - } - - [HttpPut("{id:guid}")] - public IActionResult UpdateUser( - Guid id, - [FromBody] UserAccount userAccount - ) - { - if ( - userAccount.UserAccountId != Guid.Empty - && userAccount.UserAccountId != id - ) - { - return BadRequest("UserAccountID does not match route id."); - } - - userAccount.UserAccountId = id; - _userService.Update(userAccount); - return NoContent(); - } - - [HttpDelete("{id:guid}")] - public IActionResult DeleteUser(Guid id) - { - _userService.Delete(id); - return NoContent(); - } - } -} diff --git a/WebAPI/Infrastructure/DefaultSqlConnectionFactory.cs b/WebAPI/Infrastructure/DefaultSqlConnectionFactory.cs new file mode 100644 index 0000000..c1c27e5 --- /dev/null +++ b/WebAPI/Infrastructure/DefaultSqlConnectionFactory.cs @@ -0,0 +1,25 @@ +using DataAccessLayer.Sql; +using Microsoft.Data.SqlClient; + +namespace WebAPI.Infrastructure +{ + public class DefaultSqlConnectionFactory : ISqlConnectionFactory + { + private readonly string _connectionString; + + public DefaultSqlConnectionFactory(IConfiguration configuration) + { + _connectionString = + Environment.GetEnvironmentVariable("DB_CONNECTION_STRING") + ?? configuration.GetConnectionString("Default") + ?? throw new InvalidOperationException( + "Database connection string not configured. Set DB_CONNECTION_STRING env var or ConnectionStrings:Default." + ); + } + + public SqlConnection CreateConnection() + { + return new SqlConnection(_connectionString); + } + } +} diff --git a/WebAPI/Program.cs b/WebAPI/Program.cs index 9b595a0..0b78fad 100644 --- a/WebAPI/Program.cs +++ b/WebAPI/Program.cs @@ -1,6 +1,7 @@ using BusinessLayer.Services; -using DataAccessLayer; using DataAccessLayer.Repositories; +using DataAccessLayer.Sql; +using WebAPI.Infrastructure; var builder = WebApplication.CreateBuilder(args); @@ -8,9 +9,11 @@ builder.Services.AddControllers(); builder.Services.AddEndpointsApiExplorer(); builder.Services.AddSwaggerGen(); builder.Services.AddOpenApi(); + +// Dependency Injection +builder.Services.AddSingleton(); builder.Services.AddScoped(); builder.Services.AddScoped(); - var app = builder.Build(); if (app.Environment.IsDevelopment()) From 89da531c480d36c2dcbd8e34ed0c8027fdc2d78f Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Thu, 15 Jan 2026 21:48:20 -0500 Subject: [PATCH 23/25] Restructure project --- .../API.Core/API.Core.csproj | 10 +- .../Controllers/NotFoundController.cs | 0 .../API.Core}/Controllers/UserController.cs | 0 {WebAPI => API/API.Core}/Program.cs | 12 +- .../API.Core}/Properties/launchSettings.json | 0 {WebAPI => API/API.Core}/WebAPI.http | 0 .../API.Core}/appsettings.Development.json | 0 {WebAPI => API/API.Core}/appsettings.json | 0 .../Database.Core/Database.Core.csproj | 1 + .../Database.Core}/Program.cs | 0 .../scripts/01-schema/schema.sql | 0 .../02-functions/UDF_GetCountryIdByCode.sql | 0 .../UDF_GetStateProvinceIdByCode.sql | 0 .../01-UserAccount/USP_CreateUserAccount.sql | 0 .../01-UserAccount/USP_DeleteUserAccount.sql | 0 .../01-UserAccount/USP_GetAllUserAccounts.sql | 0 .../USP_GetUserAccountByEmail.sql | 0 .../01-UserAccount/USP_GetUserAccountById.sql | 0 .../USP_GetUserAccountByUsername.sql | 0 .../01-UserAccount/USP_UpdateUserAccount.sql | 0 .../USP_AddUserCredential.sql | 0 .../USP_AddUserVerification.sql | 0 .../03-crud/04-Location/USP_CreateCity.sql | 0 .../03-crud/04-Location/USP_CreateCountry.sql | 0 .../04-Location/USP_CreateStateProvince.sql | 0 .../Database.Seed/Database.Seed.csproj | 3 +- {DBSeed => Database/Database.Seed}/ISeeder.cs | 0 .../Database.Seed}/LocationSeeder.cs | 0 {DBSeed => Database/Database.Seed}/Program.cs | 0 .../Database.Seed}/UserSeeder.cs | 0 .../Repository.Core}/Entities/UserAccount.cs | 0 .../Entities/UserCredential.cs | 0 .../Entities/UserVerification.cs | 0 .../Repositories/IUserAccountRepository.cs | 0 .../Repositories/Repository.cs | 0 .../Repositories/UserAccountRepository.cs | 0 .../Repository.Core/Repository.Core.csproj | 2 + .../Sql/DefaultSqlConnectionFactory.cs | 20 +++ .../Sql/ISqlConnectionFactory.cs | 0 .../Repository.Tests/Repository.Tests.csproj | 3 +- .../UserAccountRepositoryTests.cs | 0 .../Service.Core/Service.Core.csproj | 3 +- .../Service.Core}/Services/IUserService.cs | 0 .../Service.Core}/Services/UserService.cs | 0 .../DefaultSqlConnectionFactory.cs | 25 ---- biergarten.sln | 119 ------------------ biergarten.slnx | 16 +++ 47 files changed, 57 insertions(+), 157 deletions(-) rename WebAPI/WebAPI.csproj => API/API.Core/API.Core.csproj (59%) rename {WebAPI => API/API.Core}/Controllers/NotFoundController.cs (100%) rename {WebAPI => API/API.Core}/Controllers/UserController.cs (100%) rename {WebAPI => API/API.Core}/Program.cs (81%) rename {WebAPI => API/API.Core}/Properties/launchSettings.json (100%) rename {WebAPI => API/API.Core}/WebAPI.http (100%) rename {WebAPI => API/API.Core}/appsettings.Development.json (100%) rename {WebAPI => API/API.Core}/appsettings.json (100%) rename DataLayer/DataLayer.csproj => Database/Database.Core/Database.Core.csproj (91%) rename {DataLayer => Database/Database.Core}/Program.cs (100%) rename {DataLayer => Database/Database.Core}/scripts/01-schema/schema.sql (100%) rename {DataLayer => Database/Database.Core}/scripts/02-functions/UDF_GetCountryIdByCode.sql (100%) rename {DataLayer => Database/Database.Core}/scripts/02-functions/UDF_GetStateProvinceIdByCode.sql (100%) rename {DataLayer => Database/Database.Core}/scripts/03-crud/01-UserAccount/USP_CreateUserAccount.sql (100%) rename {DataLayer => Database/Database.Core}/scripts/03-crud/01-UserAccount/USP_DeleteUserAccount.sql (100%) rename {DataLayer => Database/Database.Core}/scripts/03-crud/01-UserAccount/USP_GetAllUserAccounts.sql (100%) rename {DataLayer => Database/Database.Core}/scripts/03-crud/01-UserAccount/USP_GetUserAccountByEmail.sql (100%) rename {DataLayer => Database/Database.Core}/scripts/03-crud/01-UserAccount/USP_GetUserAccountById.sql (100%) rename {DataLayer => Database/Database.Core}/scripts/03-crud/01-UserAccount/USP_GetUserAccountByUsername.sql (100%) rename {DataLayer => Database/Database.Core}/scripts/03-crud/01-UserAccount/USP_UpdateUserAccount.sql (100%) rename {DataLayer => Database/Database.Core}/scripts/03-crud/02-UserCredential/USP_AddUserCredential.sql (100%) rename {DataLayer => Database/Database.Core}/scripts/03-crud/03-UserVerification/USP_AddUserVerification.sql (100%) rename {DataLayer => Database/Database.Core}/scripts/03-crud/04-Location/USP_CreateCity.sql (100%) rename {DataLayer => Database/Database.Core}/scripts/03-crud/04-Location/USP_CreateCountry.sql (100%) rename {DataLayer => Database/Database.Core}/scripts/03-crud/04-Location/USP_CreateStateProvince.sql (100%) rename DBSeed/DBSeed.csproj => Database/Database.Seed/Database.Seed.csproj (80%) rename {DBSeed => Database/Database.Seed}/ISeeder.cs (100%) rename {DBSeed => Database/Database.Seed}/LocationSeeder.cs (100%) rename {DBSeed => Database/Database.Seed}/Program.cs (100%) rename {DBSeed => Database/Database.Seed}/UserSeeder.cs (100%) rename {DataAccessLayer => Repository/Repository.Core}/Entities/UserAccount.cs (100%) rename {DataAccessLayer => Repository/Repository.Core}/Entities/UserCredential.cs (100%) rename {DataAccessLayer => Repository/Repository.Core}/Entities/UserVerification.cs (100%) rename {DataAccessLayer => Repository/Repository.Core}/Repositories/IUserAccountRepository.cs (100%) rename {DataAccessLayer => Repository/Repository.Core}/Repositories/Repository.cs (100%) rename {DataAccessLayer => Repository/Repository.Core}/Repositories/UserAccountRepository.cs (100%) rename DataAccessLayer/DataAccessLayer.csproj => Repository/Repository.Core/Repository.Core.csproj (76%) create mode 100644 Repository/Repository.Core/Sql/DefaultSqlConnectionFactory.cs rename {DataAccessLayer => Repository/Repository.Core}/Sql/ISqlConnectionFactory.cs (100%) rename DALTests/DALTests.csproj => Repository/Repository.Tests/Repository.Tests.csproj (84%) rename {DALTests => Repository/Repository.Tests}/UserAccountRepositoryTests.cs (100%) rename BusinessLayer/BusinessLayer.csproj => Service/Service.Core/Service.Core.csproj (62%) rename {BusinessLayer => Service/Service.Core}/Services/IUserService.cs (100%) rename {BusinessLayer => Service/Service.Core}/Services/UserService.cs (100%) delete mode 100644 WebAPI/Infrastructure/DefaultSqlConnectionFactory.cs delete mode 100644 biergarten.sln create mode 100644 biergarten.slnx diff --git a/WebAPI/WebAPI.csproj b/API/API.Core/API.Core.csproj similarity index 59% rename from WebAPI/WebAPI.csproj rename to API/API.Core/API.Core.csproj index af503a3..1e7ec86 100644 --- a/WebAPI/WebAPI.csproj +++ b/API/API.Core/API.Core.csproj @@ -3,14 +3,20 @@ net10.0 enable enable + WebAPI - + - + + + + + + diff --git a/WebAPI/Controllers/NotFoundController.cs b/API/API.Core/Controllers/NotFoundController.cs similarity index 100% rename from WebAPI/Controllers/NotFoundController.cs rename to API/API.Core/Controllers/NotFoundController.cs diff --git a/WebAPI/Controllers/UserController.cs b/API/API.Core/Controllers/UserController.cs similarity index 100% rename from WebAPI/Controllers/UserController.cs rename to API/API.Core/Controllers/UserController.cs diff --git a/WebAPI/Program.cs b/API/API.Core/Program.cs similarity index 81% rename from WebAPI/Program.cs rename to API/API.Core/Program.cs index 0b78fad..81bab8e 100644 --- a/WebAPI/Program.cs +++ b/API/API.Core/Program.cs @@ -1,7 +1,6 @@ using BusinessLayer.Services; using DataAccessLayer.Repositories; using DataAccessLayer.Sql; -using WebAPI.Infrastructure; var builder = WebApplication.CreateBuilder(args); @@ -16,14 +15,11 @@ builder.Services.AddScoped(); builder.Services.AddScoped(); var app = builder.Build(); -if (app.Environment.IsDevelopment()) -{ - app.UseSwagger(); - app.UseSwaggerUI(); - app.MapOpenApi(); -} +app.UseSwagger(); +app.UseSwaggerUI(); +app.MapOpenApi(); app.UseHttpsRedirection(); app.MapControllers(); app.MapFallbackToController("Handle404", "NotFound"); -app.Run(); +app.Run(); \ No newline at end of file diff --git a/WebAPI/Properties/launchSettings.json b/API/API.Core/Properties/launchSettings.json similarity index 100% rename from WebAPI/Properties/launchSettings.json rename to API/API.Core/Properties/launchSettings.json diff --git a/WebAPI/WebAPI.http b/API/API.Core/WebAPI.http similarity index 100% rename from WebAPI/WebAPI.http rename to API/API.Core/WebAPI.http diff --git a/WebAPI/appsettings.Development.json b/API/API.Core/appsettings.Development.json similarity index 100% rename from WebAPI/appsettings.Development.json rename to API/API.Core/appsettings.Development.json diff --git a/WebAPI/appsettings.json b/API/API.Core/appsettings.json similarity index 100% rename from WebAPI/appsettings.json rename to API/API.Core/appsettings.json diff --git a/DataLayer/DataLayer.csproj b/Database/Database.Core/Database.Core.csproj similarity index 91% rename from DataLayer/DataLayer.csproj rename to Database/Database.Core/Database.Core.csproj index a7fd617..00a74a3 100644 --- a/DataLayer/DataLayer.csproj +++ b/Database/Database.Core/Database.Core.csproj @@ -4,6 +4,7 @@ net10.0 enable enable + DataLayer diff --git a/DataLayer/Program.cs b/Database/Database.Core/Program.cs similarity index 100% rename from DataLayer/Program.cs rename to Database/Database.Core/Program.cs diff --git a/DataLayer/scripts/01-schema/schema.sql b/Database/Database.Core/scripts/01-schema/schema.sql similarity index 100% rename from DataLayer/scripts/01-schema/schema.sql rename to Database/Database.Core/scripts/01-schema/schema.sql diff --git a/DataLayer/scripts/02-functions/UDF_GetCountryIdByCode.sql b/Database/Database.Core/scripts/02-functions/UDF_GetCountryIdByCode.sql similarity index 100% rename from DataLayer/scripts/02-functions/UDF_GetCountryIdByCode.sql rename to Database/Database.Core/scripts/02-functions/UDF_GetCountryIdByCode.sql diff --git a/DataLayer/scripts/02-functions/UDF_GetStateProvinceIdByCode.sql b/Database/Database.Core/scripts/02-functions/UDF_GetStateProvinceIdByCode.sql similarity index 100% rename from DataLayer/scripts/02-functions/UDF_GetStateProvinceIdByCode.sql rename to Database/Database.Core/scripts/02-functions/UDF_GetStateProvinceIdByCode.sql diff --git a/DataLayer/scripts/03-crud/01-UserAccount/USP_CreateUserAccount.sql b/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_CreateUserAccount.sql similarity index 100% rename from DataLayer/scripts/03-crud/01-UserAccount/USP_CreateUserAccount.sql rename to Database/Database.Core/scripts/03-crud/01-UserAccount/USP_CreateUserAccount.sql diff --git a/DataLayer/scripts/03-crud/01-UserAccount/USP_DeleteUserAccount.sql b/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_DeleteUserAccount.sql similarity index 100% rename from DataLayer/scripts/03-crud/01-UserAccount/USP_DeleteUserAccount.sql rename to Database/Database.Core/scripts/03-crud/01-UserAccount/USP_DeleteUserAccount.sql diff --git a/DataLayer/scripts/03-crud/01-UserAccount/USP_GetAllUserAccounts.sql b/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetAllUserAccounts.sql similarity index 100% rename from DataLayer/scripts/03-crud/01-UserAccount/USP_GetAllUserAccounts.sql rename to Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetAllUserAccounts.sql diff --git a/DataLayer/scripts/03-crud/01-UserAccount/USP_GetUserAccountByEmail.sql b/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountByEmail.sql similarity index 100% rename from DataLayer/scripts/03-crud/01-UserAccount/USP_GetUserAccountByEmail.sql rename to Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountByEmail.sql diff --git a/DataLayer/scripts/03-crud/01-UserAccount/USP_GetUserAccountById.sql b/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountById.sql similarity index 100% rename from DataLayer/scripts/03-crud/01-UserAccount/USP_GetUserAccountById.sql rename to Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountById.sql diff --git a/DataLayer/scripts/03-crud/01-UserAccount/USP_GetUserAccountByUsername.sql b/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountByUsername.sql similarity index 100% rename from DataLayer/scripts/03-crud/01-UserAccount/USP_GetUserAccountByUsername.sql rename to Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountByUsername.sql diff --git a/DataLayer/scripts/03-crud/01-UserAccount/USP_UpdateUserAccount.sql b/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_UpdateUserAccount.sql similarity index 100% rename from DataLayer/scripts/03-crud/01-UserAccount/USP_UpdateUserAccount.sql rename to Database/Database.Core/scripts/03-crud/01-UserAccount/USP_UpdateUserAccount.sql diff --git a/DataLayer/scripts/03-crud/02-UserCredential/USP_AddUserCredential.sql b/Database/Database.Core/scripts/03-crud/02-UserCredential/USP_AddUserCredential.sql similarity index 100% rename from DataLayer/scripts/03-crud/02-UserCredential/USP_AddUserCredential.sql rename to Database/Database.Core/scripts/03-crud/02-UserCredential/USP_AddUserCredential.sql diff --git a/DataLayer/scripts/03-crud/03-UserVerification/USP_AddUserVerification.sql b/Database/Database.Core/scripts/03-crud/03-UserVerification/USP_AddUserVerification.sql similarity index 100% rename from DataLayer/scripts/03-crud/03-UserVerification/USP_AddUserVerification.sql rename to Database/Database.Core/scripts/03-crud/03-UserVerification/USP_AddUserVerification.sql diff --git a/DataLayer/scripts/03-crud/04-Location/USP_CreateCity.sql b/Database/Database.Core/scripts/03-crud/04-Location/USP_CreateCity.sql similarity index 100% rename from DataLayer/scripts/03-crud/04-Location/USP_CreateCity.sql rename to Database/Database.Core/scripts/03-crud/04-Location/USP_CreateCity.sql diff --git a/DataLayer/scripts/03-crud/04-Location/USP_CreateCountry.sql b/Database/Database.Core/scripts/03-crud/04-Location/USP_CreateCountry.sql similarity index 100% rename from DataLayer/scripts/03-crud/04-Location/USP_CreateCountry.sql rename to Database/Database.Core/scripts/03-crud/04-Location/USP_CreateCountry.sql diff --git a/DataLayer/scripts/03-crud/04-Location/USP_CreateStateProvince.sql b/Database/Database.Core/scripts/03-crud/04-Location/USP_CreateStateProvince.sql similarity index 100% rename from DataLayer/scripts/03-crud/04-Location/USP_CreateStateProvince.sql rename to Database/Database.Core/scripts/03-crud/04-Location/USP_CreateStateProvince.sql diff --git a/DBSeed/DBSeed.csproj b/Database/Database.Seed/Database.Seed.csproj similarity index 80% rename from DBSeed/DBSeed.csproj rename to Database/Database.Seed/Database.Seed.csproj index 54b70c3..70839e4 100644 --- a/DBSeed/DBSeed.csproj +++ b/Database/Database.Seed/Database.Seed.csproj @@ -4,6 +4,7 @@ net10.0 enable enable + DBSeed @@ -16,6 +17,6 @@ - + diff --git a/DBSeed/ISeeder.cs b/Database/Database.Seed/ISeeder.cs similarity index 100% rename from DBSeed/ISeeder.cs rename to Database/Database.Seed/ISeeder.cs diff --git a/DBSeed/LocationSeeder.cs b/Database/Database.Seed/LocationSeeder.cs similarity index 100% rename from DBSeed/LocationSeeder.cs rename to Database/Database.Seed/LocationSeeder.cs diff --git a/DBSeed/Program.cs b/Database/Database.Seed/Program.cs similarity index 100% rename from DBSeed/Program.cs rename to Database/Database.Seed/Program.cs diff --git a/DBSeed/UserSeeder.cs b/Database/Database.Seed/UserSeeder.cs similarity index 100% rename from DBSeed/UserSeeder.cs rename to Database/Database.Seed/UserSeeder.cs diff --git a/DataAccessLayer/Entities/UserAccount.cs b/Repository/Repository.Core/Entities/UserAccount.cs similarity index 100% rename from DataAccessLayer/Entities/UserAccount.cs rename to Repository/Repository.Core/Entities/UserAccount.cs diff --git a/DataAccessLayer/Entities/UserCredential.cs b/Repository/Repository.Core/Entities/UserCredential.cs similarity index 100% rename from DataAccessLayer/Entities/UserCredential.cs rename to Repository/Repository.Core/Entities/UserCredential.cs diff --git a/DataAccessLayer/Entities/UserVerification.cs b/Repository/Repository.Core/Entities/UserVerification.cs similarity index 100% rename from DataAccessLayer/Entities/UserVerification.cs rename to Repository/Repository.Core/Entities/UserVerification.cs diff --git a/DataAccessLayer/Repositories/IUserAccountRepository.cs b/Repository/Repository.Core/Repositories/IUserAccountRepository.cs similarity index 100% rename from DataAccessLayer/Repositories/IUserAccountRepository.cs rename to Repository/Repository.Core/Repositories/IUserAccountRepository.cs diff --git a/DataAccessLayer/Repositories/Repository.cs b/Repository/Repository.Core/Repositories/Repository.cs similarity index 100% rename from DataAccessLayer/Repositories/Repository.cs rename to Repository/Repository.Core/Repositories/Repository.cs diff --git a/DataAccessLayer/Repositories/UserAccountRepository.cs b/Repository/Repository.Core/Repositories/UserAccountRepository.cs similarity index 100% rename from DataAccessLayer/Repositories/UserAccountRepository.cs rename to Repository/Repository.Core/Repositories/UserAccountRepository.cs diff --git a/DataAccessLayer/DataAccessLayer.csproj b/Repository/Repository.Core/Repository.Core.csproj similarity index 76% rename from DataAccessLayer/DataAccessLayer.csproj rename to Repository/Repository.Core/Repository.Core.csproj index 31415c8..f9aea58 100644 --- a/DataAccessLayer/DataAccessLayer.csproj +++ b/Repository/Repository.Core/Repository.Core.csproj @@ -3,6 +3,7 @@ net10.0 enable enable + DataAccessLayer @@ -11,5 +12,6 @@ Version="160.1000.6" /> + diff --git a/Repository/Repository.Core/Sql/DefaultSqlConnectionFactory.cs b/Repository/Repository.Core/Sql/DefaultSqlConnectionFactory.cs new file mode 100644 index 0000000..2011fd5 --- /dev/null +++ b/Repository/Repository.Core/Sql/DefaultSqlConnectionFactory.cs @@ -0,0 +1,20 @@ +using Microsoft.Data.SqlClient; +using Microsoft.Extensions.Configuration; + + +namespace DataAccessLayer.Sql +{ + public class DefaultSqlConnectionFactory(IConfiguration configuration) : ISqlConnectionFactory + { + private readonly string _connectionString = Environment.GetEnvironmentVariable("DB_CONNECTION_STRING") + ?? configuration.GetConnectionString("Default") + ?? throw new InvalidOperationException( + "Database connection string not configured. Set DB_CONNECTION_STRING env var or ConnectionStrings:Default." + ); + + public SqlConnection CreateConnection() + { + return new SqlConnection(_connectionString); + } + } +} diff --git a/DataAccessLayer/Sql/ISqlConnectionFactory.cs b/Repository/Repository.Core/Sql/ISqlConnectionFactory.cs similarity index 100% rename from DataAccessLayer/Sql/ISqlConnectionFactory.cs rename to Repository/Repository.Core/Sql/ISqlConnectionFactory.cs diff --git a/DALTests/DALTests.csproj b/Repository/Repository.Tests/Repository.Tests.csproj similarity index 84% rename from DALTests/DALTests.csproj rename to Repository/Repository.Tests/Repository.Tests.csproj index fb1edc2..4fa2c9e 100644 --- a/DALTests/DALTests.csproj +++ b/Repository/Repository.Tests/Repository.Tests.csproj @@ -4,6 +4,7 @@ enable enable false + DALTests @@ -18,6 +19,6 @@ - + diff --git a/DALTests/UserAccountRepositoryTests.cs b/Repository/Repository.Tests/UserAccountRepositoryTests.cs similarity index 100% rename from DALTests/UserAccountRepositoryTests.cs rename to Repository/Repository.Tests/UserAccountRepositoryTests.cs diff --git a/BusinessLayer/BusinessLayer.csproj b/Service/Service.Core/Service.Core.csproj similarity index 62% rename from BusinessLayer/BusinessLayer.csproj rename to Service/Service.Core/Service.Core.csproj index 22ade32..3a607d0 100644 --- a/BusinessLayer/BusinessLayer.csproj +++ b/Service/Service.Core/Service.Core.csproj @@ -3,9 +3,10 @@ net10.0 enable enable + BusinessLayer - + diff --git a/BusinessLayer/Services/IUserService.cs b/Service/Service.Core/Services/IUserService.cs similarity index 100% rename from BusinessLayer/Services/IUserService.cs rename to Service/Service.Core/Services/IUserService.cs diff --git a/BusinessLayer/Services/UserService.cs b/Service/Service.Core/Services/UserService.cs similarity index 100% rename from BusinessLayer/Services/UserService.cs rename to Service/Service.Core/Services/UserService.cs diff --git a/WebAPI/Infrastructure/DefaultSqlConnectionFactory.cs b/WebAPI/Infrastructure/DefaultSqlConnectionFactory.cs deleted file mode 100644 index c1c27e5..0000000 --- a/WebAPI/Infrastructure/DefaultSqlConnectionFactory.cs +++ /dev/null @@ -1,25 +0,0 @@ -using DataAccessLayer.Sql; -using Microsoft.Data.SqlClient; - -namespace WebAPI.Infrastructure -{ - public class DefaultSqlConnectionFactory : ISqlConnectionFactory - { - private readonly string _connectionString; - - public DefaultSqlConnectionFactory(IConfiguration configuration) - { - _connectionString = - Environment.GetEnvironmentVariable("DB_CONNECTION_STRING") - ?? configuration.GetConnectionString("Default") - ?? throw new InvalidOperationException( - "Database connection string not configured. Set DB_CONNECTION_STRING env var or ConnectionStrings:Default." - ); - } - - public SqlConnection CreateConnection() - { - return new SqlConnection(_connectionString); - } - } -} diff --git a/biergarten.sln b/biergarten.sln deleted file mode 100644 index 76307d6..0000000 --- a/biergarten.sln +++ /dev/null @@ -1,119 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.14.36603.0 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataLayer", "DataLayer\DataLayer.csproj", "{F8223224-F3B7-4D9D-A701-9F0ADDA20792}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataAccessLayer", "DataAccessLayer\DataAccessLayer.csproj", "{5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebAPI", "WebAPI\WebAPI.csproj", "{D6B25565-723E-4F79-AA83-A48A3C3DD6C2}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BusinessLayer", "BusinessLayer\BusinessLayer.csproj", "{EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DALTests", "DALTests\DALTests.csproj", "{99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DBSeed", "DBSeed\DBSeed.csproj", "{82C1A7F9-695C-4243-83AB-8B8A54810763}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Debug|x64.ActiveCfg = Debug|Any CPU - {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Debug|x64.Build.0 = Debug|Any CPU - {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Debug|x86.ActiveCfg = Debug|Any CPU - {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Debug|x86.Build.0 = Debug|Any CPU - {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Release|Any CPU.ActiveCfg = Release|Any CPU - {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Release|Any CPU.Build.0 = Release|Any CPU - {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Release|x64.ActiveCfg = Release|Any CPU - {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Release|x64.Build.0 = Release|Any CPU - {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Release|x86.ActiveCfg = Release|Any CPU - {F8223224-F3B7-4D9D-A701-9F0ADDA20792}.Release|x86.Build.0 = Release|Any CPU - {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Debug|x64.ActiveCfg = Debug|Any CPU - {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Debug|x64.Build.0 = Debug|Any CPU - {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Debug|x86.ActiveCfg = Debug|Any CPU - {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Debug|x86.Build.0 = Debug|Any CPU - {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Release|Any CPU.Build.0 = Release|Any CPU - {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Release|x64.ActiveCfg = Release|Any CPU - {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Release|x64.Build.0 = Release|Any CPU - {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Release|x86.ActiveCfg = Release|Any CPU - {5B2A93D1-007B-42D1-8F76-E1BF25F9B3B4}.Release|x86.Build.0 = Release|Any CPU - {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Debug|x64.ActiveCfg = Debug|Any CPU - {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Debug|x64.Build.0 = Debug|Any CPU - {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Debug|x86.ActiveCfg = Debug|Any CPU - {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Debug|x86.Build.0 = Debug|Any CPU - {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Release|Any CPU.Build.0 = Release|Any CPU - {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Release|x64.ActiveCfg = Release|Any CPU - {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Release|x64.Build.0 = Release|Any CPU - {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Release|x86.ActiveCfg = Release|Any CPU - {D6B25565-723E-4F79-AA83-A48A3C3DD6C2}.Release|x86.Build.0 = Release|Any CPU - {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Debug|x64.ActiveCfg = Debug|Any CPU - {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Debug|x64.Build.0 = Debug|Any CPU - {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Debug|x86.ActiveCfg = Debug|Any CPU - {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Debug|x86.Build.0 = Debug|Any CPU - {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Release|Any CPU.ActiveCfg = Release|Any CPU - {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Release|Any CPU.Build.0 = Release|Any CPU - {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Release|x64.ActiveCfg = Release|Any CPU - {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Release|x64.Build.0 = Release|Any CPU - {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Release|x86.ActiveCfg = Release|Any CPU - {EC30D3C4-34BB-4824-A0C5-6802BAAA6C48}.Release|x86.Build.0 = Release|Any CPU - {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Debug|x64.ActiveCfg = Debug|Any CPU - {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Debug|x64.Build.0 = Debug|Any CPU - {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Debug|x86.ActiveCfg = Debug|Any CPU - {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Debug|x86.Build.0 = Debug|Any CPU - {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Release|Any CPU.Build.0 = Release|Any CPU - {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Release|x64.ActiveCfg = Release|Any CPU - {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Release|x64.Build.0 = Release|Any CPU - {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Release|x86.ActiveCfg = Release|Any CPU - {99A04D79-A1A9-4BF5-9B70-58FC2B5D2E8A}.Release|x86.Build.0 = Release|Any CPU - {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Debug|x64.ActiveCfg = Debug|Any CPU - {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Debug|x64.Build.0 = Debug|Any CPU - {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Debug|x86.ActiveCfg = Debug|Any CPU - {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Debug|x86.Build.0 = Debug|Any CPU - {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Release|Any CPU.Build.0 = Release|Any CPU - {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Release|x64.ActiveCfg = Release|Any CPU - {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Release|x64.Build.0 = Release|Any CPU - {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Release|x86.ActiveCfg = Release|Any CPU - {5B37FCDB-1BD0-439A-A840-61322353EAAE}.Release|x86.Build.0 = Release|Any CPU - {82C1A7F9-695C-4243-83AB-8B8A54810763}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {82C1A7F9-695C-4243-83AB-8B8A54810763}.Debug|Any CPU.Build.0 = Debug|Any CPU - {82C1A7F9-695C-4243-83AB-8B8A54810763}.Debug|x64.ActiveCfg = Debug|Any CPU - {82C1A7F9-695C-4243-83AB-8B8A54810763}.Debug|x64.Build.0 = Debug|Any CPU - {82C1A7F9-695C-4243-83AB-8B8A54810763}.Debug|x86.ActiveCfg = Debug|Any CPU - {82C1A7F9-695C-4243-83AB-8B8A54810763}.Debug|x86.Build.0 = Debug|Any CPU - {82C1A7F9-695C-4243-83AB-8B8A54810763}.Release|Any CPU.ActiveCfg = Release|Any CPU - {82C1A7F9-695C-4243-83AB-8B8A54810763}.Release|Any CPU.Build.0 = Release|Any CPU - {82C1A7F9-695C-4243-83AB-8B8A54810763}.Release|x64.ActiveCfg = Release|Any CPU - {82C1A7F9-695C-4243-83AB-8B8A54810763}.Release|x64.Build.0 = Release|Any CPU - {82C1A7F9-695C-4243-83AB-8B8A54810763}.Release|x86.ActiveCfg = Release|Any CPU - {82C1A7F9-695C-4243-83AB-8B8A54810763}.Release|x86.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {9AF13035-54A8-46EA-8BED-866F683D9AED} - EndGlobalSection -EndGlobal diff --git a/biergarten.slnx b/biergarten.slnx new file mode 100644 index 0000000..c2686d1 --- /dev/null +++ b/biergarten.slnx @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + From 53a7569ed51ea2c611aa8687ac3bff9104783065 Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Thu, 22 Jan 2026 22:37:44 -0500 Subject: [PATCH 24/25] Remove architecture overview from README Removed the architecture overview and related details from the README. --- README.md | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) diff --git a/README.md b/README.md index f29948f..8b13789 100644 --- a/README.md +++ b/README.md @@ -1,52 +1 @@ -# Biergarten SQL Server - Architecture Overview -This solution is a monolith-oriented Web API with a layered structure. The current focus is a SQL Server-backed data layer with stored procedures and a repository-based DAL. - -## High-level projects - -- `WebAPI/` - ASP.NET Core API endpoints (controllers) and application entrypoint. -- `BusinessLayer/` - Intended home for domain/business logic -- `DataAccessLayer/` - Repository implementations, entities (POCOs), and SQL helpers. -- `DataLayer/` - DbUp console app that applies embedded schema/functions/procedures. -- `DBSeed/` - Console app for seeding locations and test user data. -- `DALTests/` - Data access tests. - -## Data access architecture - -- **Entities (POCOs)** live in `DataAccessLayer/Entities/`. -- **Repositories** live in `DataAccessLayer/Repositories/` and implement interfaces like `IUserAccountRepository`. -- **SQL execution** lives in `DataAccessLayer/Sql/`. -- **Stored procedures** for CRUD live under `DataLayer/scripts/03-crud/` and are invoked by repositories. - -Example flow: - -``` -WebAPI Controller -> UserService -> UserAccountRepository -> stored procedure -``` - -The repositories are currently responsible for: -- Opening connections using `DB_CONNECTION_STRING` -- Executing stored procedures -- Mapping result sets to POCOs - -## Database schema and seed tooling - -- `DataLayer/scripts/01-schema/schema.sql` contains the database schema definitions. -- `DataLayer/scripts/02-functions/` holds application functions. -- `DataLayer/scripts/03-crud/` holds CRUD stored procedures. -- `DataLayer/Program.cs` runs DbUp to apply embedded scripts to the database. -- `DBSeed/Program.cs` runs the location and user seeders using `DB_CONNECTION_STRING`. - -## Key conventions - -- **Environment variables**: `DB_CONNECTION_STRING` is required for DAL and seed tooling. -- **Stored procedures**: CRUD operations use `usp_*` procedures. - -## Suggested dependency direction - -``` -WebAPI -> BusinessLayer -> DataAccessLayer -> SQL Server - -> DataLayer (schema/seed/scripts) -``` - -Keep business logic in `BusinessLayer` and avoid direct SQL or ADO code outside `DataAccessLayer`. From a6702c89fd6bed84dd90bd6adce214188716d0c0 Mon Sep 17 00:00:00 2001 From: Aaron Po Date: Mon, 26 Jan 2026 18:29:00 -0500 Subject: [PATCH 25/25] add issue template --- .github/ISSUE_TEMPLATE/feature_request.md | 43 +++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..18b8de6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,43 @@ +--- +name: Feature Request (BDD) +about: Create a new feature using user story + BDD acceptance criteria +title: "[Feature] " +labels: ["feature", "BDD"] +assignees: [] +--- + +## User Story +**As a** (who wants to accomplish something) +**I want to** (what they want to accomplish) +**So that** (why they want to accomplish that thing) + +## Acceptance Criteria (BDD) + +### Scenario 1 + + +Given ... +When ... +Then ... + + +### Scenario 2 + + +Given ... +When ... +Then ... + + +### Scenario 3 + + +Given ... +When ... +Then ... + + +## Subtasks +- [ ] Task 1 +- [ ] Task 2 +- [ ] Task 3 \ No newline at end of file