oHTTP.cContentType="application/x-www-form-urlencoded; charset:utf-8"
Also thanks for the tip with the STRCONV. I always love VFP and Web Connection and the great support I get! Glad that I don't have to learn C#...
:) Hermann
From: | Hermann Strijewski |
To: | Rick Strahl |
oHTTP.cContentType="application/x-www-form-urlencoded; charset:utf-8"
Also thanks for the tip with the STRCONV. I always love VFP and Web Connection and the great support I get! Glad that I don't have to learn C#...
:) Hermann
From what you're posting here the string looks fine - it doesn't have extended characters. But to be sure you should use STRCONV(cXML,9) to encode any possible extended characters.
Ideally it's best to build up the XML inside of the XMLDOM... You can use wwXML::AddElement() method which will properly encode values. You load an empty document, then call AddElement to add the nodes.
Also you should the content-encoding to UTF-8 and content type to text/xml when sending. So set cContentType explicitly to:
text/xml;charset=utf-8
The error coming back from the server seems to indicate a failure of XML formatting, but it could also be a structural problem - maybe you're missing elements or values - I don't know. You'd have to check with the provider or try to dig up an example that you can check out and trace with Fiddler or in a browser. There may be other things that have to be matched.
+++ Rick ---
From: | Rick Strahl |
To: | Hermann Strijewski |
+++ Rick ---
oHTTP.cContentType="application/x-www-form-urlencoded; charset:utf-8"
Also thanks for the tip with the STRCONV. I always love VFP and Web Connection and the great support I get! Glad that I don't have to learn C#...
:) Hermann
From what you're posting here the string looks fine - it doesn't have extended characters. But to be sure you should use STRCONV(cXML,9) to encode any possible extended characters.
Ideally it's best to build up the XML inside of the XMLDOM... You can use wwXML::AddElement() method which will properly encode values. You load an empty document, then call AddElement to add the nodes.
Also you should the content-encoding to UTF-8 and content type to text/xml when sending. So set cContentType explicitly to:
text/xml;charset=utf-8
The error coming back from the server seems to indicate a failure of XML formatting, but it could also be a structural problem - maybe you're missing elements or values - I don't know. You'd have to check with the provider or try to dig up an example that you can check out and trace with Fiddler or in a browser. There may be other things that have to be matched.
+++ Rick ---
"Microsoft JScript runtime error: 'HoverPanel' is undefined"
Thanks,
Raju
So, I had this:
this.cSkipFieldsForUpdates = 'altpartno, before_qty_recd, vendor'
But is causes problems in building the Update sequence for Sql Server, as it does not seem to skip them due to that space and the test that it used to look for field names.
It wants this:
this.cSkipFieldsForUpdates = 'altpartno,before_qty_recd,vendor'
I think all it needs is some simple code to strip out all spaces from cSkipFieldsFromUpate or lcSkipFields, and it would then be tolerant of having spaces after the commas. It would then work either way.
Here's the code in wwSql.SqlBuildUpdateStatementFromObject() where I think the no-spaces-allowed coding is killing me:
FOR lnX=1 TO lnFields lcField = laFields[lnX]IF"," + UPPER(lcField) + "," $ lcSkipFieldsLOOPENDIF ...
I am getting a parse error with wwJsonSerializer. Here is my code with a reference to the json data in question:
lcHTML = oHTTP.HTTPGet("http://tinyurl.com/ap57olf","","","") loSer = CREATEOBJECT("wwJsonSerializer") loUnder = loSer.Deserialize(lcHTML)
The crash occurs in wwjsonSerializer: Line 48: [ADDPROPERTY(loObject,lcProperty, this.Deserialize(lcValue) )]
lcValue contains the following (including the double quotes which appear to be the problem):
""North Atlantic""
jsonlint.com does show the json data is valid.
~bob
When following the instructions for Rick's famous "Hello world" example I keep getting the following message after calling http://localhost/DevDemo/default.htm in Chrome.
You can skip the German comments - I'm just leaving them in for Rick :-)
KonfigurationsfehlerBeschreibung: Fehler beim Verarbeiten einer Konfigurationsdatei, die für diese Anforderung erforderlich ist. Überprüfen Sie die unten angegebenen Fehlerinformationen, und ändern Sie die Konfigurationsdatei entsprechend.
Parserfehlermeldung: Einen Abschnitt, der als allowDefinition='MachineToApplication' registriert ist, über die Programmebene hinaus zu verwenden verursacht einen Fehler. Dieser Fehler kann von einem virtuellen Verzeichnis verursacht werden, das nicht als Anwendung in IIS konfiguriert ist.
Quellfehler:
Zeile 62: </compilation>
Zeile 63: <!-- Web Connection Managed Module requires that it runs in FULL TRUST (COM Interop) -->
Zeile 64: <trust level="Full"/>
Zeile 65: <httpHandlers>
Zeile 66: </httpHandlers>Quelldatei: C:\inetpub\wwwroot\devdemo\web.config Zeile: 64
Versionsinformationen: Microsoft .NET Framework-Version:2.0.50727.5466; ASP.NET-Version:2.0.50727.5456
A listing of web.config at that point is included at the end.
I installed IIS Express (64bit), .NET Framework 4, reinstalled WebConnection 5.65 and get the server running.
But when calling localhost/DevDemo/default.htm and selecting the Hello World Test Page (Testpage.dp) I get the problem. The a listing of web.config follows below.
I _have_ tried to change line 54 from "Full" to "FULL TRUST" - no change.
Any hints, pointers in the right direction?
******************************************************************
<?xml version="1.0"?>
<configuration>
<configSections>
<section name="webConnectionVisualStudio" type="System.Configuration.NameValueSectionHandler,System,Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
<section name="webConnectionConfiguration" type="System.Configuration.NameValueSectionHandler,System,Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
<section name="webConnectionErrorPages" type="System.Configuration.NameValueSectionHandler,System,Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
</configSections>
<webConnectionVisualStudio>
<!-- Configuration Settings for the Web Connection Visual Studio Add-in
Not used at runtime, only at the design time -->
<add key="FoxProjectBasePath" value="c:\wconnect\"/>
<add key="WebProjectBasePath" value="C:\inetpub\wwwroot\DevDemo\"/>
<add key="WebProjectVirtual" value="http://localhost/DevDemo"/>
<!-- Optional PRG launched when VFP IDE launches -->
<add key="IdeOnLoadPrg" value=""/>
<!-- The default browser used. Blank IE Automation, otherwise specify browser exe path -->
<add key="WebBrowser" value=""/>
<add key="WebBrowserAlternate" value="C:\Program Files (x86)\mozilla firefox\firefox.exe"/>
<!-- The editor used to edit FoxPro code - blank means FoxPro Editor is used -->
<add key="FoxProEditor" value=""/>
<add key="_FoxProEditorAlternate" value="C:\Program Files (x86)\pspad editor\pspad.exe"/>
</webConnectionVisualStudio>
<webConnectionConfiguration>
<!-- NOTE: These settings apply only to the Web Connection Managed Module! -->
<add key="Timeout" value="60"/>
<add key="PostBufferLimit" value="0"/>
<add key="TempPath" value="c:\temp\dd\"/>
<add key="TempFilePrefix" value="DD_"/>
<add key="MessagingMechanism" value="File"/>
<add key="AdminAccount" value="ANY"/>
<add key="AdminPage" value="~/admin/admin.aspx"/>
<add key="ExeFile" value="c:\wconnect\DevDemo.exe"/>
<add key="UpdateFile" value=""/>
<add key="LogDetail" value="False"/>
<add key="ValidateRequest" value="False"/>
<add key="ComServerProgId" value="DevDemo.DevDemoServer"/>
<add key="ComServerLoadingMode" value="LoadBased"/>
<add key="ServerCount" value="2"/>
<add key="AutoStartServers" value="False"/>
<add key="MessageDisplayFooter" value="Message generated by Web Connection IIS Connector Module"/>
</webConnectionConfiguration>
<webConnectionErrorPages>
<!-- NOTE: These settings apply only to the Web Connection Managed Module! -->
<add key="Exception" value=""/>
<add key="OleError" value=""/>
<add key="Timeout" value=""/>
<add key="NoOutput" value=""/>
<add key="Busy" value=""/>
<add key="Maintenance" value=""/>
<add key="InvalidRequestId" value=""/>
<add key="TranmitFileFailure" value=""/>
<add key="PostBufferSize" value=""/>
</webConnectionErrorPages>
<system.web>
<compilation defaultLanguage="c#" debug="true">
<!-- Build Providers enable your script extensions to be editable in Visual Studio -->
<buildProviders>
<add extension=".wcsx" type="System.Web.Compilation.PageBuildProvider"/>
<add extension=".wc" type="System.Web.Compilation.PageBuildProvider"/>
<add extension=".dp" type="System.Web.Compilation.PageBuildProvider"/>
</buildProviders>
</compilation>
<!-- Web Connection Managed Module requires that it runs in FULL TRUST (COM Interop) -->
<trust level="Full"/>
<httpHandlers>
</httpHandlers>
</system.web>
<!-- IIS 7 Script Map Configuration -->
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
<handlers>
<add name=".dp_wconnect-module" path="*.dp" verb="*" type="Westwind.WebConnection.WebConnectionHandler,WebConnectionModule" preCondition="integratedMode"/>
<add name=".wwsoap_wconnect-module" path="*.wwsoap" verb="*" type="Westwind.WebConnection.WebConnectionHandler,WebConnectionModule" preCondition="integratedMode"/>
<add name=".wc_wconnect-module" path="*.wc" verb="*" type="Westwind.WebConnection.WebConnectionHandler,WebConnectionModule" preCondition="integratedMode"/>
<add name=".wcs_wconnect-module" path="*.wcs" verb="*" type="Westwind.WebConnection.WebConnectionHandler,WebConnectionModule" preCondition="integratedMode"/>
<add name=".wcsx_wconnect-module" path="*.wcsx" verb="*" type="Westwind.WebConnection.WebConnectionHandler,WebConnectionModule" preCondition="integratedMode"/>
</handlers>
<!--
*** ExtensionLess URL handling ***
* Requires Url Rewrite Module 2.0 is installed
-->
<!--
<rewrite>
<rules>
<rule name="ExtensionLessUrls" patternSyntax="Wildcard" stopProcessing="true">
<match url="*.*" negate="true" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
<action type="Rewrite" url="UrlRewriteHandler.dp" appendQueryString="true" />
</rule>
</rules>
</rewrite>
-->
</system.webServer>
</configuration>
Teddy
From: | Rick Strahl |
To: | Teddy Billewicz |
It sounds like a configuration issue with IIS, which has the base trust key locked so it can't be modified. I'm not sure why that would be to be honest - I've never seen this on a default installation unless a section was explicitly locked down by an administrator.
To fix this you'll need to find where the section is locked.
Go into the IIS Manager.
What does it say there? It should have:
level = Full legacyCasModel=False originUrl= processRequestInApplicationTrust=True
If it doesn't say full, change the value to Full. If it doesn't want to change, check on the right hand side to see wether there's an option to 'Unlock section'. My guess is that somewhere along the hierarchy the section is locked so it can't be changed further down.
If the above is fine, go down a level to the Web Site level (ie. Default Web Site, or YourSite) and repeat the above steps.
Again, by default this shouldn't be locked down, so I'm not sure why or how that would have gotten set. You're running Windows 7 I suppose? Admin lockdown of some sort?
+++ Rick ---
When following the instructions for Rick's famous "Hello world" example I keep getting the following message after calling http://localhost/DevDemo/default.htm in Chrome.
You can skip the German comments - I'm just leaving them in for Rick :-)
KonfigurationsfehlerBeschreibung: Fehler beim Verarbeiten einer Konfigurationsdatei, die für diese Anforderung erforderlich ist. Überprüfen Sie die unten angegebenen Fehlerinformationen, und ändern Sie die Konfigurationsdatei entsprechend.
Parserfehlermeldung: Einen Abschnitt, der als allowDefinition='MachineToApplication' registriert ist, über die Programmebene hinaus zu verwenden verursacht einen Fehler. Dieser Fehler kann von einem virtuellen Verzeichnis verursacht werden, das nicht als Anwendung in IIS konfiguriert ist.
Quellfehler:
Zeile 62: </compilation>
Zeile 63: <!-- Web Connection Managed Module requires that it runs in FULL TRUST (COM Interop) -->
Zeile 64: <trust level="Full"/>
Zeile 65: <httpHandlers>
Zeile 66: </httpHandlers>Quelldatei: C:\inetpub\wwwroot\devdemo\web.config Zeile: 64
Versionsinformationen: Microsoft .NET Framework-Version:2.0.50727.5466; ASP.NET-Version:2.0.50727.5456
A listing of web.config at that point is included at the end.
I installed IIS Express (64bit), .NET Framework 4, reinstalled WebConnection 5.65 and get the server running.
But when calling localhost/DevDemo/default.htm and selecting the Hello World Test Page (Testpage.dp) I get the problem. The a listing of web.config follows below.
I _have_ tried to change line 54 from "Full" to "FULL TRUST" - no change.
Any hints, pointers in the right direction?
******************************************************************
<?xml version="1.0"?>
<configuration>
<configSections>
<section name="webConnectionVisualStudio" type="System.Configuration.NameValueSectionHandler,System,Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
<section name="webConnectionConfiguration" type="System.Configuration.NameValueSectionHandler,System,Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
<section name="webConnectionErrorPages" type="System.Configuration.NameValueSectionHandler,System,Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
</configSections>
<webConnectionVisualStudio>
<!-- Configuration Settings for the Web Connection Visual Studio Add-in
Not used at runtime, only at the design time -->
<add key="FoxProjectBasePath" value="c:\wconnect\"/>
<add key="WebProjectBasePath" value="C:\inetpub\wwwroot\DevDemo\"/>
<add key="WebProjectVirtual" value="http://localhost/DevDemo"/>
<!-- Optional PRG launched when VFP IDE launches -->
<add key="IdeOnLoadPrg" value=""/>
<!-- The default browser used. Blank IE Automation, otherwise specify browser exe path -->
<add key="WebBrowser" value=""/>
<add key="WebBrowserAlternate" value="C:\Program Files (x86)\mozilla firefox\firefox.exe"/>
<!-- The editor used to edit FoxPro code - blank means FoxPro Editor is used -->
<add key="FoxProEditor" value=""/>
<add key="_FoxProEditorAlternate" value="C:\Program Files (x86)\pspad editor\pspad.exe"/>
</webConnectionVisualStudio>
<webConnectionConfiguration>
<!-- NOTE: These settings apply only to the Web Connection Managed Module! -->
<add key="Timeout" value="60"/>
<add key="PostBufferLimit" value="0"/>
<add key="TempPath" value="c:\temp\dd\"/>
<add key="TempFilePrefix" value="DD_"/>
<add key="MessagingMechanism" value="File"/>
<add key="AdminAccount" value="ANY"/>
<add key="AdminPage" value="~/admin/admin.aspx"/>
<add key="ExeFile" value="c:\wconnect\DevDemo.exe"/>
<add key="UpdateFile" value=""/>
<add key="LogDetail" value="False"/>
<add key="ValidateRequest" value="False"/>
<add key="ComServerProgId" value="DevDemo.DevDemoServer"/>
<add key="ComServerLoadingMode" value="LoadBased"/>
<add key="ServerCount" value="2"/>
<add key="AutoStartServers" value="False"/>
<add key="MessageDisplayFooter" value="Message generated by Web Connection IIS Connector Module"/>
</webConnectionConfiguration>
<webConnectionErrorPages>
<!-- NOTE: These settings apply only to the Web Connection Managed Module! -->
<add key="Exception" value=""/>
<add key="OleError" value=""/>
<add key="Timeout" value=""/>
<add key="NoOutput" value=""/>
<add key="Busy" value=""/>
<add key="Maintenance" value=""/>
<add key="InvalidRequestId" value=""/>
<add key="TranmitFileFailure" value=""/>
<add key="PostBufferSize" value=""/>
</webConnectionErrorPages>
<system.web>
<compilation defaultLanguage="c#" debug="true">
<!-- Build Providers enable your script extensions to be editable in Visual Studio -->
<buildProviders>
<add extension=".wcsx" type="System.Web.Compilation.PageBuildProvider"/>
<add extension=".wc" type="System.Web.Compilation.PageBuildProvider"/>
<add extension=".dp" type="System.Web.Compilation.PageBuildProvider"/>
</buildProviders>
</compilation>
<!-- Web Connection Managed Module requires that it runs in FULL TRUST (COM Interop) -->
<trust level="Full"/>
<httpHandlers>
</httpHandlers>
</system.web>
<!-- IIS 7 Script Map Configuration -->
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
<handlers>
<add name=".dp_wconnect-module" path="*.dp" verb="*" type="Westwind.WebConnection.WebConnectionHandler,WebConnectionModule" preCondition="integratedMode"/>
<add name=".wwsoap_wconnect-module" path="*.wwsoap" verb="*" type="Westwind.WebConnection.WebConnectionHandler,WebConnectionModule" preCondition="integratedMode"/>
<add name=".wc_wconnect-module" path="*.wc" verb="*" type="Westwind.WebConnection.WebConnectionHandler,WebConnectionModule" preCondition="integratedMode"/>
<add name=".wcs_wconnect-module" path="*.wcs" verb="*" type="Westwind.WebConnection.WebConnectionHandler,WebConnectionModule" preCondition="integratedMode"/>
<add name=".wcsx_wconnect-module" path="*.wcsx" verb="*" type="Westwind.WebConnection.WebConnectionHandler,WebConnectionModule" preCondition="integratedMode"/>
</handlers>
<!--
*** ExtensionLess URL handling ***
* Requires Url Rewrite Module 2.0 is installed
-->
<!--
<rewrite>
<rules>
<rule name="ExtensionLessUrls" patternSyntax="Wildcard" stopProcessing="true">
<match url="*.*" negate="true" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
<action type="Rewrite" url="UrlRewriteHandler.dp" appendQueryString="true" />
</rule>
</rules>
</rewrite>
-->
</system.webServer>
</configuration>
From: | Rick Strahl |
To: | Bob Roenigk |
FWIW, if you're running the latest version of Web Connection (5.65) it has DeserializeJson() which uses an external JSON parser that's more reliable than the internal fox based one.
+++ Rick ---
I am getting a parse error with wwJsonSerializer. Here is my code with a reference to the json data in question:
lcHTML = oHTTP.HTTPGet("http://tinyurl.com/ap57olf","","","") loSer = CREATEOBJECT("wwJsonSerializer") loUnder = loSer.Deserialize(lcHTML)
The crash occurs in wwjsonSerializer: Line 48: [ADDPROPERTY(loObject,lcProperty, this.Deserialize(lcValue) )]
lcValue contains the following (including the double quotes which appear to be the problem):
""North Atlantic""
jsonlint.com does show the json data is valid.
~bob
From: | Bob Roenigk |
To: | Rick Strahl |
The total data file is just short of 15k in size. The parse seems to fail immediately on the third line.
{"PRODUCTS": {"node_2": {"region": "North Atlantic","regioncode": "at","outlook": "ABNT20","discussion": "AXNT20","tropical_index_region": "at" },
~bob
FWIW, if you're running the latest version of Web Connection (5.65) it has DeserializeJson() which uses an external JSON parser that's more reliable than the internal fox based one.
+++ Rick ---
I am getting a parse error with wwJsonSerializer. Here is my code with a reference to the json data in question:
lcHTML = oHTTP.HTTPGet("http://tinyurl.com/ap57olf","","","") loSer = CREATEOBJECT("wwJsonSerializer") loUnder = loSer.Deserialize(lcHTML)
The crash occurs in wwjsonSerializer: Line 48: [ADDPROPERTY(loObject,lcProperty, this.Deserialize(lcValue) )]
lcValue contains the following (including the double quotes which appear to be the problem):
""North Atlantic""
jsonlint.com does show the json data is valid.
~bob
From: | Rick Strahl |
To: | Bob Roenigk |
I know the JSON you have there most likely wouldn't deserialize with the old serializer because it didn't allow for linebreaks in the whitespace.
+++ Rick ---
The total data file is just short of 15k in size. The parse seems to fail immediately on the third line.
{"PRODUCTS": {"node_2": {"region": "North Atlantic","regioncode": "at","outlook": "ABNT20","discussion": "AXNT20","tropical_index_region": "at" },
~bob
FWIW, if you're running the latest version of Web Connection (5.65) it has DeserializeJson() which uses an external JSON parser that's more reliable than the internal fox based one.
+++ Rick ---
I am getting a parse error with wwJsonSerializer. Here is my code with a reference to the json data in question:
lcHTML = oHTTP.HTTPGet("http://tinyurl.com/ap57olf","","","") loSer = CREATEOBJECT("wwJsonSerializer") loUnder = loSer.Deserialize(lcHTML)
The crash occurs in wwjsonSerializer: Line 48: [ADDPROPERTY(loObject,lcProperty, this.Deserialize(lcValue) )]
lcValue contains the following (including the double quotes which appear to be the problem):
""North Atlantic""
jsonlint.com does show the json data is valid.
~bob
The hide method being called on a drag panel object has started causing internal errors in jquery (1.8.3 via Cdn) and eventually causing the page to freeze.
FYI, I believe the localization admin page supporting javascript files differ between latest source code of WWWebToolkit and the standalone globalization package. I am using the files from the globalization standalone pkg and was not able to replicate on your online demo page (http://www.west-wind.com/WestwindWebToolkit/Westwind.GlobalizationWeb/LocalizationAdmin/LocalizationAdmin.aspx)
I tried with both Chrome and IE and the result is the same.
Any suggestions?
Agustin
Is there any way to set something in the response of an HTML page that would cause the visitor's browser to become authenticated within IIS, without bringing up the authentication dialog?
Our system allows users to log into the website, which we track using a session cookie and the wwSession table. This concerns our own user database, and has nothing to do with IIS authentication. Most subsequent requests go through our web app and it will confirm the user as necessary.
However, depending on the client, our pages include links to other media files (PDF files, etc) located within certain subfolders. Right now these subfolders allow Anonymous Access, and anybody could view the files if they have the appropriate links. There is really nothing 'critical' in these files, but the client would like to have it set so that anyone hitting these links be confirmed as being 'logged in' (to our system).
What I would like to do is when a user logs in, we send something in the response that causes that browser session to become authenticated automatically, instead of bringing up the authentication dialog and the user having to know the proper credentials. Then we could set the appropriate subfolders to require authentication before serving up the files. These files are not getting served through the WC app, but directly from IIS.
Is this possible, or is the authentication dialog required to be shown to the user for security reasons?
- Mike McDonald
Software Design of Kentucky
From: | Rick Strahl |
To: | Mike McDonald |
Otherwise no.
+++ Rick ---
Is there any way to set something in the response of an HTML page that would cause the visitor's browser to become authenticated within IIS, without bringing up the authentication dialog?
Our system allows users to log into the website, which we track using a session cookie and the wwSession table. This concerns our own user database, and has nothing to do with IIS authentication. Most subsequent requests go through our web app and it will confirm the user as necessary.
However, depending on the client, our pages include links to other media files (PDF files, etc) located within certain subfolders. Right now these subfolders allow Anonymous Access, and anybody could view the files if they have the appropriate links. There is really nothing 'critical' in these files, but the client would like to have it set so that anyone hitting these links be confirmed as being 'logged in' (to our system).
What I would like to do is when a user logs in, we send something in the response that causes that browser session to become authenticated automatically, instead of bringing up the authentication dialog and the user having to know the proper credentials. Then we could set the appropriate subfolders to require authentication before serving up the files. These files are not getting served through the WC app, but directly from IIS.
Is this possible, or is the authentication dialog required to be shown to the user for security reasons?
- Mike McDonald
Software Design of Kentucky
If you downloaded the CHM file and open it you need to unblock the CHM help file from Explorer - Windows puts a block on CHM files downloaded from the Internet (either directly or even if in a ZIP file). This only goes away if you install the file with an installer...
More info in the help file and here:
http://www.west-wind.com/weblog/posts/2012/Jan/11/Problems-with-opening-CHM-Help-files-from-Network-or-Internet
+++ Rick ---
I tried with both Chrome and IE and the result is the same.
Any suggestions?
From: | Marty Cantwell |
To: | Mike McDonald |
I've never found a way to use Basic Authentication without user interaction. So the only way I've found to do what you are attempting is to use a server proxy to serve up the files instead of doing so with IIS. There are a couple of ways I've used to do this myself.
One way is to have your server copy the file(s) into a folder structure which has Anonymous access and redirect the user directly to the file(s). For higher security you could hash the name of the specific file(s). Then after a timeout period of your choice, your app could then delete the files or you could use Rick's cool FileDelete.exe utility that comes with Web Connection do this housekeeping.
Another way is to use your application to stream the files to the user directly. You would have to manage the 'directory listing' of the files the user sees, but from your description it sounds like you may already do that anyway. This way your files are always stored in a proteced folder that your app has access to and never directly exposed to the public Internet.
I have personally used both these methods and they help ensure that the user getting a file is authenticated through the app, especially the latter method.
Marty
Is there any way to set something in the response of an HTML page that would cause the visitor's browser to become authenticated within IIS, without bringing up the authentication dialog?
Our system allows users to log into the website, which we track using a session cookie and the wwSession table. This concerns our own user database, and has nothing to do with IIS authentication. Most subsequent requests go through our web app and it will confirm the user as necessary.
However, depending on the client, our pages include links to other media files (PDF files, etc) located within certain subfolders. Right now these subfolders allow Anonymous Access, and anybody could view the files if they have the appropriate links. There is really nothing 'critical' in these files, but the client would like to have it set so that anyone hitting these links be confirmed as being 'logged in' (to our system).
What I would like to do is when a user logs in, we send something in the response that causes that browser session to become authenticated automatically, instead of bringing up the authentication dialog and the user having to know the proper credentials. Then we could set the appropriate subfolders to require authentication before serving up the files. These files are not getting served through the WC app, but directly from IIS.
Is this possible, or is the authentication dialog required to be shown to the user for security reasons?
- Mike McDonald
Software Design of Kentucky
If you mean you're hitting the HTML files and can't expand the TreeView, that means you have the wrong (likely older) JS files in the Templates folder. Make sure you overwrite those with the current ones.
Doug
From: | Agustin |
To: | Rick Strahl |
Thank you.
agm
What do you mean by open the project on the Web? You mean the CHM file? Or the Web HTML files?
If you downloaded the CHM file and open it you need to unblock the CHM help file from Explorer - Windows puts a block on CHM files downloaded from the Internet (either directly or even if in a ZIP file). This only goes away if you install the file with an installer...
More info in the help file and here:
http://www.west-wind.com/weblog/posts/2012/Jan/11/Problems-with-opening-CHM-Help-files-from-Network-or-Internet
+++ Rick ---
I tried with both Chrome and IE and the result is the same.
Any suggestions?
Agustin
From: | Teddy B. (Germany) |
To: | Rick Strahl |
thanks for your response. I checked the settings, as you suggested.
They are (or seem to be) correct on all levels that I found to check. I found:
legacyCasModel = False
level = Full
origUrl (nothing)
ProcessRequestInApplicationTrust = True
at the following levels
Server/Machine Root - system.web/trust
Sites - system.web/trust
Default Web Site
In each case the section does not seem to be locked (on the right hand side of the IIS-manager).
Underneath the Default Web Site level I have devdemo, wconnect and wwthreads but cannot locate any system.web/trust.
I am using IIS Express 8 (german version) und Win7 (64) and don't really understand more than that there is a trust level problem.
Teddy
PS: I do have Teamviewer on my machine
It sounds like a configuration issue with IIS, which has the base trust key locked so it can't be modified. I'm not sure why that would be to be honest - I've never seen this on a default installation unless a section was explicitly locked down by an administrator.
To fix this you'll need to find where the section is locked.
Go into the IIS Manager.
What does it say there? It should have:
level = Full legacyCasModel=False originUrl= processRequestInApplicationTrust=True
If it doesn't say full, change the value to Full. If it doesn't want to change, check on the right hand side to see wether there's an option to 'Unlock section'. My guess is that somewhere along the hierarchy the section is locked so it can't be changed further down.
If the above is fine, go down a level to the Web Site level (ie. Default Web Site, or YourSite) and repeat the above steps.
Again, by default this shouldn't be locked down, so I'm not sure why or how that would have gotten set. You're running Windows 7 I suppose? Admin lockdown of some sort?
+++ Rick ---
------------------------
{"total":"424","data":[{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"17 SHERIDAN ST","shpcity":"ASHLAND","shpstate":"ME","shpzip":"04733","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"140 CAPITOL ST","shpcity":"AUGUSTA","shpstate":"ME","shpzip":"04330","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"139 STATE ST","shpcity":"AUGUSTA","shpstate":"ME","shpzip":"04330","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"615 ODLIN RD","shpcity":"BANGOR","shpstate":"ME","shpzip":"04401","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"645 ODLIN RD","shpcity":"BANGOR","shpstate":"ME","shpzip":"04401","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"59 PARK ST","shpcity":"BANGOR","shpstate":"ME","shpzip":"04401","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"85 MOUNT DESERT ST","shpcity":"BAR HARBOR","shpstate":"ME","shpzip":"04609","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"766 HIGH ST","shpcity":"BATH","shpstate":"ME","shpzip":"04530","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"19 WALDO AVE","shpcity":"BELFAST","shpstate":"ME","shpzip":"04915","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"55 MAIN ST","shpcity":"BELFGRADE","shpstate":"ME","shpzip":"04917","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"10 JEFFERSON ST","shpcity":"BIDDEFORD","shpstate":"ME","shpzip":"04005","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"52 MEADOW ST","shpcity":"BINGHAM","shpstate":"ME","shpzip":"04920","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"134 HIGH ST","shpcity":"BLUE HILL","shpstate":"ME","shpzip":"04614","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"8 EASTERN AVE","shpcity":"BOOTHBAY HARBOR","shpstate":"ME","shpzip":"04538","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"52 MAIN ST","shpcity":"BOWDOINHAM","shpstate":"ME","shpzip":"04008","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"ST HWY RTE 221","shpcity":"BRADFORD","shpstate":"ME","shpzip":"04410","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"92 CHAMBERLAIN ST","shpcity":"BREWER","shpstate":"ME","shpzip":"04412","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"6 STATE STREET","shpcity":"BREWER","shpstate":"ME","shpzip":"04412","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"4 FLINT ST","shpcity":"BRIDGTON","shpstate":"ME","shpzip":"04009","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"31 CHURCH ST","shpcity":"BROWNVILLE","shpstate":"ME","shpzip":"04414","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"360 BATH RD","shpcity":"BRUNSWICK","shpstate":"ME","shpzip":"04011","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"8 EVERETT ST","shpcity":"BRUNSWICK","shpstate":"ME","shpzip":"04011","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"15 CENTRAL ST","shpcity":"BUCKSPORT","shpstate":"ME","shpzip":"04416","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"14 CHURCH ST","shpcity":"CALAIS","shpstate":"ME","shpzip":"04619","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"240 UNION ST","shpcity":"CALAIS","shpstate":"ME","shpzip":"04619","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"40 ELM ST","shpcity":"CAMDEN","shpstate":"ME","shpzip":"04843","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"15 HIGH ST","shpcity":"CARIBOU","shpstate":"ME","shpzip":"04736","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"144 COURT ST","shpcity":"CASTINE","shpstate":"ME","shpzip":"04421","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"MUTTON LN","shpcity":"CLINTON","shpstate":"ME","shpzip":"04927","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"15 STATION","shpcity":"COLUMBIA","shpstate":"ME","shpzip":"04623","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"343 MAIN ST","shpcity":"CORINTH","shpstate":"ME","shpzip":"04427","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"MAIN ST","shpcity":"CORNISH","shpstate":"ME","shpzip":"04020","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"267 MAIN ST","shpcity":"CUMBERLAND","shpstate":"ME","shpzip":"04021","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"STATE HWY RTE 191","shpcity":"CUTLER","shpstate":"ME","shpzip":"04626","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"34 CALAIS RD","shpcity":"DANFORTH","shpstate":"ME","shpzip":"04424","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"ST RTE 15","shpcity":"DEER ISLE","shpstate":"ME","shpzip":"04627","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"18 MAIN ST","shpcity":"DEXTER","shpstate":"ME","shpzip":"04930","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"4 KIDDER ST","shpcity":"DIXFIELD","shpstate":"ME","shpzip":"04224","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"55 DWELLY AVE","shpcity":"DOVER","shpstate":"ME","shpzip":"04426","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"2 E MAIN ST","shpcity":"DOVER","shpstate":"ME","shpzip":"04426","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"8 BIRCH ST","shpcity":"EAST MILLINOCKET","shpstate":"ME","shpzip":"04430","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"6 LEGION RD","shpcity":"EASTON","shpstate":"ME","shpzip":"04740","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"22 STEVENS AVE","shpcity":"EASTPORT","shpstate":"ME","shpzip":"04631","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"14 E KIDDERHILL RD","shpcity":"EDDINGTON","shpstate":"ME","shpzip":"04428","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"EASTERN RD","shpcity":"ELLSWORTH","shpstate":"ME","shpzip":"04605","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"195 MAIN ST","shpcity":"ELLSWORTH","shpstate":"ME","shpzip":"04605","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"445 MAIN ST","shpcity":"ELLSWORTH","shpstate":"ME","shpzip":"04605","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"197 MAIN ST","shpcity":"ELLSWORTH","shpstate":"ME","shpzip":"04605","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"STATE ST","shpcity":"ELLSWORTH","shpstate":"ME","shpzip":"04605","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"22 LAWRENCE AVE","shpcity":"FAIRFIELD","shpstate":"ME","shpzip":"04937","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"4 DEPOT RD","shpcity":"FALMOUTH","shpstate":"ME","shpzip":"04105","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"104 FAIRBANKS RD","shpcity":"FARMINGTON","shpstate":"ME","shpzip":"04938","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"18 HIGH ST","shpcity":"FARMINGTON","shpstate":"ME","shpzip":"04938","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"7 MAIN STREET","shpcity":"FARMINGTON","shpstate":"ME","shpzip":"04938","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"5 FORT HILL RD","shpcity":"FORT FAIRFIELD","shpstate":"ME","shpzip":"04742","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"14 MAIN ST","shpcity":"FRANKLIN","shpstate":"ME","shpzip":"04634","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1 JUSTINS WAY","shpcity":"FREEPORT","shpstate":"ME","shpzip":"04032","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"27 ST AGATHA RD","shpcity":"FRENCHVILLE","shpstate":"ME","shpzip":"04745","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"16 BRUNSWICK AVE","shpcity":"GARDINER","shpstate":"ME","shpzip":"04345","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"RTE 127","shpcity":"GEORGETOWN","shpstate":"ME","shpzip":"04548","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1 CHURCH ST","shpcity":"GORHAM","shpstate":"ME","shpzip":"04038","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"21 MORNEAULT RD","shpcity":"GRAND ISLE","shpstate":"ME","shpzip":"04746","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"WEST ST","shpcity":"GREENVILLE","shpstate":"ME","shpzip":"04441","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"26 HIGH ST","shpcity":"GUILFORD","shpstate":"ME","shpzip":"04443","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1987 HARPSWELL ISLAND RD","shpcity":"HARPSWELL","shpstate":"ME","shpzip":"04079","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"ST RTE 117","shpcity":"HARRISON","shpstate":"ME","shpzip":"04040","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"15 BILLINGS RD","shpcity":"HERMON","shpstate":"ME","shpzip":"04401","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"250 BANGOR ST","shpcity":"HOULTON","shpstate":"ME","shpzip":"04730","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"35 COURT ST","shpcity":"HOULTON","shpstate":"ME","shpzip":"04730","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"2 PIPER ST","shpcity":"JACKMAN","shpstate":"ME","shpzip":"04945","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"9 W MAIN ST","shpcity":"JONESPORT","shpstate":"ME","shpzip":"04649","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"3 AND 6 COMMERCE DR","shpcity":"KENNEBUNK","shpstate":"ME","shpzip":"04043","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"29 GROVE ST","shpcity":"KENNEBUNK","shpstate":"ME","shpzip":"04043","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1 SPRING ST","shpcity":"KENNEBUNKPORT","shpstate":"ME","shpzip":"04046","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"66 ASH ST","shpcity":"LEWISTON","shpstate":"ME","shpzip":"04240","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"58 WESTMINISTER ST","shpcity":"LEWISTON","shpstate":"ME","shpzip":"04240","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"100 WESTMINSTER ST","shpcity":"LEWISTON","shpstate":"ME","shpzip":"04240","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"8 BURBANK ST","shpcity":"LIMERICK","shpstate":"ME","shpzip":"04048","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"241 MAIN ST","shpcity":"LIMESTONE","shpstate":"ME","shpzip":"04750","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"ST RTE 89","shpcity":"LIMESTONE","shpstate":"ME","shpzip":"04750","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"42 W BROADWAY ST","shpcity":"LINCOLN","shpstate":"ME","shpzip":"04457","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"42 W BROADWAY ST","shpcity":"LINCOLN","shpstate":"ME","shpzip":"04457","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"5 ADDISON ST","shpcity":"LISBON FALLS","shpstate":"ME","shpzip":"04252","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"US RTE 1","shpcity":"LITTLETON","shpstate":"ME","shpzip":"04760","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"33 UNION ST","shpcity":"LIVERMORE FALLS","shpstate":"ME","shpzip":"04254","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"4 MAIN ST","shpcity":"LUBEC","shpstate":"ME","shpzip":"04652","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"CENTER ST & BROADWAY","shpcity":"MACHIAS","shpstate":"ME","shpzip":"04654","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"3 COURT ST","shpcity":"MACHIAS","shpstate":"ME","shpzip":"04654","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"MAIN STREET","shpcity":"MACHIAS","shpstate":"ME","shpzip":"04654","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"5 STACKPOLE RD","shpcity":"MACHIAS","shpstate":"ME","shpzip":"04654","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"639 MAIN ST","shpcity":"MADAWASKA","shpstate":"ME","shpzip":"04756","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"MAPLE ST","shpcity":"MADISON","shpstate":"ME","shpzip":"04950","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"2 YORK ST","shpcity":"MARS HILL","shpstate":"ME","shpzip":"04758","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"30 PLEASANT ST","shpcity":"MECHANIC FALLS","shpstate":"ME","shpzip":"04256","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"US RTE 1","shpcity":"MILBRIDGE","shpstate":"ME","shpzip":"04658","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"INDIAN TOWNSHIP #3","shpcity":"MILLINOCKET","shpstate":"ME","shpzip":"04462","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"PENOBSCOTT AVE","shpcity":"MILLINOCKET","shpstate":"ME","shpzip":"04462","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"32 ELM ST","shpcity":"MILO","shpstate":"ME","shpzip":"04463","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"40 SWAN LAKE","shpcity":"MONROE","shpstate":"ME","shpzip":"04951","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"27 BLANCHARD RD","shpcity":"MONSON","shpstate":"ME","shpzip":"04464","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"213 S MAIN ST","shpcity":"MORRILL","shpstate":"ME","shpzip":"04952","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"8 SCHOOL ST","shpcity":"NEW SWEDEN","shpstate":"ME","shpzip":"04762","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"121 MAIN ST","shpcity":"NEWPORT","shpstate":"ME","shpzip":"04953","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"40 WELLS ST","shpcity":"NORTH BERWICK","shpstate":"ME","shpzip":"03906","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"186 MAIN ST","shpcity":"NORTH HAVEN","shpstate":"ME","shpzip":"04853","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"32 MILLS RD","shpcity":"NORTH WHITEFIELD","shpstate":"ME","shpzip":"04353","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"122 NORTHEAST HARBOR RD","shpcity":"NORTHEAST HARBOR","shpstate":"ME","shpzip":"04662","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"25 FAIR ST","shpcity":"NORWAY","shpstate":"ME","shpzip":"04268","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"4 WATER ST","shpcity":"OAKLAND","shpstate":"ME","shpzip":"04963","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"19 PORTLAND AVE","shpcity":"OLD ORCHARD BEACH","shpstate":"ME","shpzip":"04064","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"211 CENTER ST","shpcity":"OLD TOWN","shpstate":"ME","shpzip":"04468","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"3 FOREST AVE","shpcity":"ORONO","shpstate":"ME","shpzip":"04473","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"714 RIVER RD","shpcity":"ORRINGTON","shpstate":"ME","shpzip":"04474","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"HIGH ST","shpcity":"OXFORD","shpstate":"ME","shpzip":"04270","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"355 KING ST","shpcity":"OXFORD","shpstate":"ME","shpzip":"04270","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"ISLAND AVE","shpcity":"PEAKS ISLAND","shpstate":"ME","shpzip":"04108","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"48 AYERRS JUNCTION RD","shpcity":"PEMBROKE","shpstate":"ME","shpzip":"04666","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1624 MAIN ST","shpcity":"PHIPPSBURG","shpstate":"ME","shpzip":"04562","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"10 EASY ST","shpcity":"PITTSFIELD","shpstate":"ME","shpzip":"04967","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"172 AUBURN ST","shpcity":"PORTLAND","shpstate":"ME","shpzip":"04103","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1 CITY CENTER","shpcity":"PORTLAND","shpstate":"ME","shpzip":"04103","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1 DAVIS FARM RD","shpcity":"PORTLAND","shpstate":"ME","shpzip":"04101","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1R DAVIS FARM RD","shpcity":"PORTLAND","shpstate":"ME","shpzip":"04103","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"13 DAVIS FARM RD","shpcity":"PORTLAND","shpstate":"ME","shpzip":"04103","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"5 DAVIS FARM RD","shpcity":"PORTLAND","shpstate":"ME","shpzip":"04103","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"45 - 55 FOREST AVE","shpcity":"PORTLAND","shpstate":"ME","shpzip":"04103","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"175 INDUSTRIAL WAY","shpcity":"PORTLAND","shpstate":"ME","shpzip":"04103","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"557 ELMWOOD RD","shpcity":"POWNAL","shpstate":"ME","shpzip":"03458","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"100 CARMICHAEL ST","shpcity":"PRESQUE ISLE","shpstate":"ME","shpzip":"04769","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"85 HOULTON ROAD","shpcity":"PRESQUE ISLE","shpstate":"ME","shpzip":"04769","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"30 SECOND ST","shpcity":"PRESQUE ISLE","shpstate":"ME","shpzip":"04769","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"33 MAIN ST","shpcity":"PRINCETON","shpstate":"ME","shpzip":"04668","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"24 PLEASANT ST","shpcity":"RANGELEY","shpstate":"ME","shpzip":"05060","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"10 WINTHROP RD","shpcity":"READFIELD","shpstate":"ME","shpzip":"05350","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"5 SOUTHARD ST","shpcity":"RICHMOND","shpstate":"ME","shpzip":"05476","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"90 BROADWAY ST","shpcity":"ROCKLAND","shpstate":"ME","shpzip":"05062","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"39 - 41 LIMEROCK ST","shpcity":"ROCKLAND","shpstate":"ME","shpzip":"04841","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"BIRCH ST","shpcity":"ROCKWOOD","shpstate":"ME","shpzip":"04841","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"408 HANCOCK ST","shpcity":"RUMFORD","shpstate":"ME","shpzip":"04478","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"400 HANCOCK ST","shpcity":"RUMFORD","shpstate":"ME","shpzip":"04276","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"HANCOCK & ESSEX STS","shpcity":"RUMFORD","shpstate":"ME","shpzip":"04276","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"149 MAIN ST","shpcity":"SABATTUS","shpstate":"ME","shpzip":"05403","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"7 CHARLES ST","shpcity":"SANFORD","shpstate":"ME","shpzip":"03275","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"249 RTE 1","shpcity":"SCARBOROUGH","shpstate":"ME","shpzip":"04073","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"9 PROSPECT ST","shpcity":"SEARSPORT","shpstate":"ME","shpzip":"04974","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"ST RTE 15","shpcity":"SEDGWICK","shpstate":"ME","shpzip":"04676","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"10 NORTH AVE","shpcity":"SKOWHEGAN","shpstate":"ME","shpzip":"05482","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"12 NORTH AVE","shpcity":"SKOWHEGAN","shpstate":"ME","shpzip":"04976","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"12 JEWETT AVE","shpcity":"SOUTH BERWICK","shpstate":"ME","shpzip":"03872","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"70 E ST","shpcity":"SOUTH PORTLAND","shpstate":"ME","shpzip":"03462","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"155 GANNETT DRIVE","shpcity":"SOUTH PORTLAND","shpstate":"ME","shpzip":"04106","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"276 MAIN ST","shpcity":"SOUTHWEST HARBOR","shpstate":"ME","shpzip":"04679","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"3 OAK HILL RD","shpcity":"STANDISH","shpstate":"ME","shpzip":"04084","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"ST RTE 15","shpcity":"STONINGTON","shpstate":"ME","shpzip":"04676","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"56 TAUNTON DR","shpcity":"SULLIVAN","shpstate":"ME","shpzip":"04689","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"8 MECHANIC ST","shpcity":"TENANTS HARBOR","shpstate":"ME","shpzip":"04860","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"BINGHAM JACKMAN RD","shpcity":"THE FORKS","shpstate":"ME","shpzip":"04985","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"37 GLEASON ST","shpcity":"THOMASTON","shpstate":"ME","shpzip":"04861","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"8 LAFAYETTE ST","shpcity":"VAN BUREN","shpstate":"ME","shpzip":"04785","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"101 N HAVEN RD","shpcity":"VINALHAVEN","shpstate":"ME","shpzip":"04863","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"869 MAIN ST","shpcity":"WALDOBORO","shpstate":"ME","shpzip":"04572","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1294 MAIN ST","shpcity":"WASHBURN","shpstate":"ME","shpzip":"04786","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"10 APPLETON ST","shpcity":"WATERVILLE","shpstate":"ME","shpzip":"04901","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"46 ARMORY RD","shpcity":"WATERVILLE","shpstate":"ME","shpzip":"04901","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"51 INDUSTRIAL ST","shpcity":"WATERVILLE","shpstate":"ME","shpzip":"04901","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"334 POST RD","shpcity":"WELLS","shpstate":"ME","shpzip":"04090","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"66 ASH ST","shpcity":"WESTBROOK","shpstate":"ME","shpzip":"04092","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"5 ROWELL ST & CANAL ST","shpcity":"WILTON","shpstate":"ME","shpzip":"04294","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"426 GRAY RD","shpcity":"WINDHAM","shpstate":"ME","shpzip":"04062","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"55 UNDERWOOD WAY","shpcity":"WINDHAM","shpstate":"ME","shpzip":"04062","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"17 NEWMAN ST","shpcity":"WINTER HARBOR","shpstate":"ME","shpzip":"04693","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"42 OAK ST","shpcity":"WINTERPORT","shpstate":"ME","shpzip":"04496","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"10 WATER ST","shpcity":"WISCASSET","shpstate":"ME","shpzip":"04578","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"853 HOULTON RD","shpcity":"WOODLAND","shpstate":"ME","shpzip":"04694","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"26 SOUTH ST","shpcity":"YARMOUTH","shpstate":"ME","shpzip":"04096","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"26 LONG SANDS RD","shpcity":"YORK","shpstate":"ME","shpzip":"03909","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"LIBRARY AVE","shpcity":"ALSTEAD","shpstate":"NH","shpzip":"03602","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"16 HILL AVE","shpcity":"ASHLAND","shpstate":"NH","shpzip":"03217","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"97 MAIN ST","shpcity":"ATKINSON","shpstate":"NH","shpzip":"03811","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"PROVIDENCE RD","shpcity":"BARRINGTON","shpstate":"NH","shpzip":"03825","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"GEORGE ST","shpcity":"BARTLETT","shpstate":"NH","shpzip":"03812","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"24 N AMHERST RD","shpcity":"BEDFORD","shpstate":"NH","shpzip":"03102","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"7 GALE ST","shpcity":"BELMONT","shpstate":"NH","shpzip":"03220","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"N MAIN ST","shpcity":"BELMONT","shpstate":"NH","shpzip":"03220","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"6 OLD PRESCOTT HILL RD","shpcity":"BELMONT","shpstate":"NH","shpzip":"03220","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"51 HIGH ST","shpcity":"BERLIN","shpstate":"NH","shpzip":"03570","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"CROSS ST","shpcity":"BETHELHELM","shpstate":"NH","shpzip":"03574","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"21 SPRING ST","shpcity":"BRISTOL","shpstate":"NH","shpzip":"03222","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"371 OWL ST","shpcity":"CAMPTON","shpstate":"NH","shpzip":"03223","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"192 RTE 4","shpcity":"CANAAN","shpstate":"NH","shpzip":"03741","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"166 DEERFIELD RD","shpcity":"CANDIA","shpstate":"NH","shpzip":"03034","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"288 SHAKER RD","shpcity":"CANTERBURY","shpstate":"NH","shpzip":"03224","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"PLYMOUTH RD","shpcity":"CENTER HARBOR","shpstate":"NH","shpzip":"03226","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"39 FOLSOM RD","shpcity":"CENTER OSSIPEE","shpstate":"NH","shpzip":"03814","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"31 SQUAM LAKE RD","shpcity":"CENTER SANDWICH","shpstate":"NH","shpzip":"03227","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"33 CHURCH ST","shpcity":"CHARLESTOWN","shpstate":"NH","shpzip":"03603","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"BRIGGS LN","shpcity":"CHARLESTOWN","shpstate":"NH","shpzip":"03603","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"195 BROAD ST","shpcity":"CLAREMONT","shpstate":"NH","shpzip":"03743","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"197 MAIN ST","shpcity":"COLEBROOK","shpstate":"NH","shpzip":"03576","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1 HORSESHOE POND LN","shpcity":"CONCORD","shpstate":"NH","shpzip":"03301","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"4 PARK ST","shpcity":"CONCORD","shpstate":"NH","shpzip":"03301","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"64 REGIONAL DR","shpcity":"CONCORD","shpstate":"NH","shpzip":"03301","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"12 SOUTH ST","shpcity":"CONCORD","shpstate":"NH","shpzip":"03301","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1 MELODY LN","shpcity":"CONWAY","shpstate":"NH","shpzip":"03818","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"18 WHITE MTN HWY","shpcity":"CONWAY","shpstate":"NH","shpzip":"03818","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"ST HWY RTE 104","shpcity":"DANBURY","shpstate":"NH","shpzip":"03230","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"2 CANDIA RD","shpcity":"DEERFIELD","shpstate":"NH","shpzip":"03037","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"52 E BROADWAY ST","shpcity":"DERRY","shpstate":"NH","shpzip":"03038","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"57 ST THOMAS ST","shpcity":"DOVER","shpstate":"NH","shpzip":"03820","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"MONUMENT RD","shpcity":"DUBLIN","shpstate":"NH","shpzip":"03444","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"MCDANIEL DR","shpcity":"DURHAM","shpstate":"NH","shpzip":"03824","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"17 MAIN ST","shpcity":"ENFIELD","shpstate":"NH","shpzip":"03748","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"121 MAIN ST","shpcity":"EPPING","shpstate":"NH","shpzip":"03042","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"12 BLACK HILL RD","shpcity":"EPSOM","shpstate":"NH","shpzip":"03234","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"ST HWY RTE 26","shpcity":"ERROL","shpstate":"NH","shpzip":"03579","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"15 CENTER ST","shpcity":"EXETER","shpstate":"NH","shpzip":"03833","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"MAIN ST","shpcity":"FARMINGTON","shpstate":"NH","shpzip":"03085","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"S MAIN ST & GARFIELD ST","shpcity":"FARMINGTON","shpstate":"NH","shpzip":"03835","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"11 UPPER TROY RD","shpcity":"FITZWILLIAM","shpstate":"NH","shpzip":"03447","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"WALLACE HILL RD","shpcity":"FRANCONIA","shpstate":"NH","shpzip":"03580","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"76 FRANKLIN ST","shpcity":"FRANKLIN","shpstate":"NH","shpzip":"03235","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"14 WHITE ST","shpcity":"GOFFSTOWN","shpstate":"NH","shpzip":"03045","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"22 LANCASTER ST","shpcity":"GORHAM","shpstate":"NH","shpzip":"03581","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"LOT 984 ROAD ROUND THE LAKE","shpcity":"GRANTHAM","shpstate":"NH","shpzip":"03753","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"764 FORST RD","shpcity":"GREENFIELD","shpstate":"NH","shpzip":"03047","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1575 GREENLAND RD","shpcity":"GREENLAND","shpstate":"NH","shpzip":"03840","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"13 DUNSTER HILL RD","shpcity":"GREENVILLE","shpstate":"NH","shpzip":"03048","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"STATE ST","shpcity":"GROVETON","shpstate":"NH","shpzip":"03582","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"116 MAIN ST","shpcity":"HAMPSTEAD","shpstate":"NH","shpzip":"03841","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"169 WINNACUNNET RD","shpcity":"HAMPTOM","shpstate":"NH","shpzip":"03842","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"4 SCHOOL ST","shpcity":"HANCOCK","shpstate":"NH","shpzip":"03449","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"4 SCHOOL ST","shpcity":"HANOVER","shpstate":"NH","shpzip":"03755","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"44 MAIN ST","shpcity":"HARRISVILLE","shpstate":"NH","shpzip":"03450","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"MAIN ST","shpcity":"HINSDALE","shpstate":"NH","shpzip":"03451","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"7 BROCKES RD","shpcity":"HUDSON","shpstate":"NH","shpzip":"03051","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"19 THORN HILL RD","shpcity":"JACKSON","shpstate":"NH","shpzip":"03846","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"16 RIVER ST","shpcity":"JAFFERY","shpstate":"NH","shpzip":"03452","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"US HWY RTE 2","shpcity":"JEFFERSON","shpstate":"NH","shpzip":"03583","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"15 BRADCO RD","shpcity":"KEENE","shpstate":"NH","shpzip":"03431","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"64 WASHINGTON ST","shpcity":"KEENE","shpstate":"NH","shpzip":"03431","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"17 BARTLETT","shpcity":"KINGSTON","shpstate":"NH","shpzip":"03848","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"762 N MAIN ST","shpcity":"LACONIA","shpstate":"NH","shpzip":"03246","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"74 BRIDGE ST RTE 2","shpcity":"LANCASTER","shpstate":"NH","shpzip":"03584","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"13 HIGH ST","shpcity":"LANCASTER","shpstate":"NH","shpzip":"03584","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"RTE 2","shpcity":"LANCASTER","shpstate":"NH","shpzip":"03584","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"20 BANK ST","shpcity":"LEBANON","shpstate":"NH","shpzip":"03766","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"92 ETNA RD","shpcity":"LEBANON","shpstate":"NH","shpzip":"03766","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"MAIN ST","shpcity":"LISBON","shpstate":"NH","shpzip":"03585","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"33 PLEASANT ST","shpcity":"LITTLETON","shpstate":"NH","shpzip":"03561","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"50 PLEASNT ST","shpcity":"LITTLETON","shpstate":"NH","shpzip":"03561","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"4 ON THE COMMON","shpcity":"LYME","shpstate":"NH","shpzip":"03768","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"7 RTE 113N","shpcity":"MADISON","shpstate":"NH","shpzip":"03849","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"25 CONCORD ST","shpcity":"MANCHESTER","shpstate":"NH","shpzip":"03101","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"900 ELM ST","shpcity":"MANCHESTER","shpstate":"NH","shpzip":"03101","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"770 ELM ST","shpcity":"MANCHESTER","shpstate":"NH","shpzip":"03101","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"100 GAY ST","shpcity":"MANCHESTER","shpstate":"NH","shpzip":"03104","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"875 HOLT AVE","shpcity":"MANCHESTER","shpstate":"NH","shpzip":"03109","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"120 MAIN ST","shpcity":"MARLBOROUGH","shpstate":"NH","shpzip":"03445","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"10 TELEPHONE RD","shpcity":"MARLOW","shpstate":"NH","shpzip":"03456","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"11 WATER ST","shpcity":"MEREDITH","shpstate":"NH","shpzip":"03253","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"417 DANIEL WEBSTER HWY","shpcity":"MERRIMACK","shpstate":"NH","shpzip":"03054","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"237 DANIEL WEBSTER HWY","shpcity":"MERRIMACK","shpstate":"NH","shpzip":"03054","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"16 PLEASANT ST","shpcity":"MILAN","shpstate":"NH","shpzip":"03588","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"194 SOUTH ST","shpcity":"MILFORD","shpstate":"NH","shpzip":"03055","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"18 SILVER ST","shpcity":"MILTON","shpstate":"NH","shpzip":"03851","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"WESTERN AVE","shpcity":"MILTON MILLS","shpstate":"NH","shpzip":"03852","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"STATE HWY RTE 109","shpcity":"MOULTONBORO","shpstate":"NH","shpzip":"03254","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"7 GRAHAM DR","shpcity":"NASHUA","shpstate":"NH","shpzip":"03061","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"124 W PEARL ST","shpcity":"NASHUA","shpstate":"NH","shpzip":"03060","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"HIGH ST & PITMAN RD","shpcity":"NEW BOSTON","shpstate":"NH","shpzip":"03070","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1 VALLEY VIEW RD","shpcity":"NEW BOSTON","shpstate":"NH","shpzip":"03070","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1 GERRY ST","shpcity":"NEWMARKET","shpstate":"NH","shpzip":"03857","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"7 MAIN ST","shpcity":"NEWPORT","shpstate":"NH","shpzip":"03773","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"7 MAPLE ST","shpcity":"NEWPORT","shpstate":"NH","shpzip":"03773","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"27 KEARSARGE ST","shpcity":"NORTH CONWAY","shpstate":"NH","shpzip":"03860","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"2760 DARTMOUTH COLLEGE RD","shpcity":"NORTH HAVERHILL","shpstate":"NH","shpzip":"03774","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"MAIN ST","shpcity":"NORTH STRATFORD","shpstate":"NH","shpzip":"03590","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"868 1ST NEW HAMPSHIRE TPKE","shpcity":"NORTHWOOD","shpstate":"NH","shpzip":"03261","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"68 OLD BRIDGE RD","shpcity":"PELHAM","shpstate":"NH","shpzip":"03076","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"4 CHARLES ST","shpcity":"PENACOOK","shpstate":"NH","shpzip":"03303","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"24 CONCORD ST","shpcity":"PETERBOROUGH","shpstate":"NH","shpzip":"05346","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"ST HWY RTE 25","shpcity":"PIKE","shpstate":"NH","shpzip":"03780","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"DALTON ST","shpcity":"PITTSBURG","shpstate":"NH","shpzip":"03592","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"10 BRIDGE ST","shpcity":"PITTSFIELD","shpstate":"NH","shpzip":"03263","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"93 MAIN ST","shpcity":"PLAISTOW","shpstate":"NH","shpzip":"03865","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"72 LANGDON ST","shpcity":"PLYMOUTH","shpstate":"NH","shpzip":"03264","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"56 ISLINGTON ST","shpcity":"PORTSMOUTH","shpstate":"NH","shpzip":"04102","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"5 FLORAL AVE","shpcity":"RAYMOND","shpstate":"NH","shpzip":"04071","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"CENTER RD","shpcity":"RINDGE","shpstate":"NH","shpzip":"03266","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"162 MAINT ST","shpcity":"RINDGE","shpstate":"NH","shpzip":"03266","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"11 DREYER WAY","shpcity":"ROCHESTER","shpstate":"NH","shpzip":"04970","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"13 WENTWORTH","shpcity":"ROCHESTER","shpstate":"NH","shpzip":"04970","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"482 MAIN ST","shpcity":"RUMNEY","shpstate":"NH","shpzip":"03266","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"694 CENTRAL RD","shpcity":"RYE BEACH","shpstate":"NH","shpzip":"05701","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"128 N BROADWAY","shpcity":"SALEM","shpstate":"NH","shpzip":"01906","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"N BROADWAY","shpcity":"SALEM","shpstate":"NH","shpzip":"03079","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"15 CEDAR ST","shpcity":"SANBORNVILLE","shpstate":"NH","shpzip":"04280","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"38 NEW RD","shpcity":"SEABROOK","shpstate":"NH","shpzip":"03079","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"106 HIGH ST","shpcity":"SOMERSWORTH","shpstate":"NH","shpzip":"05155","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"100 TRI-CITY RD","shpcity":"SOMERSWORTH","shpstate":"NH","shpzip":"03878","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"372 RTE 9 A","shpcity":"SPOFFORD","shpstate":"NH","shpzip":"05252","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"OLD CONCORD ST, RTE 9","shpcity":"SULLIVAN","shpstate":"NH","shpzip":"05769","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"4 MAPLE ST","shpcity":"SUNAPEE","shpstate":"NH","shpzip":"03782","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"16 PLEASANT ST","shpcity":"SUNCOOK","shpstate":"NH","shpzip":"03878","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"49 WHITTIER RD","shpcity":"TAMWORTH","shpstate":"NH","shpzip":"03886","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"19 PROSPECT ST","shpcity":"TILTON","shpstate":"NH","shpzip":"03276","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"41 PROSPECT ST","shpcity":"TROY","shpstate":"NH","shpzip":"03465","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"ST HWY RTE 3","shpcity":"TWIN MOUNTAIN","shpstate":"NH","shpzip":"03595","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"WESTMINSTER & PARK","shpcity":"WALPOLE","shpstate":"NH","shpzip":"03608","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"MAIN ST","shpcity":"WARREN","shpstate":"NH","shpzip":"03279","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"4 NOON PEAK RD","shpcity":"WATERVILLE VALLEY","shpstate":"NH","shpzip":"03223","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"B ST","shpcity":"WEST STEWARTSTOWN","shpstate":"NH","shpzip":"03597","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"792 RTE 63","shpcity":"WESTMORELAND","shpstate":"NH","shpzip":"03467","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"12 PLEASANT ST","shpcity":"WHITEFIELD","shpstate":"NH","shpzip":"03598","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"33 MICHIGAN ST","shpcity":"WINCHESTER","shpstate":"NH","shpzip":"03470","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"7 INDUSTRIAL DR","shpcity":"WINDHAM","shpstate":"NH","shpzip":"03087","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"43 GLENDON ST","shpcity":"WOLFEBORO","shpstate":"NH","shpzip":"03894","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"WATER ST","shpcity":"WOODSVILLE","shpstate":"NH","shpzip":"03785","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"105 SCHOOL ST","shpcity":"ARLINGTON","shpstate":"VT","shpzip":"05250","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"110 CHURCH ST","shpcity":"BARNET","shpstate":"VT","shpzip":"05821","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"46 ELM ST","shpcity":"BARRE","shpstate":"VT","shpzip":"05641","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"188 ELM ST","shpcity":"BARTON","shpstate":"VT","shpzip":"05822","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"3 HENRY ST","shpcity":"BELLOWS FALLS","shpstate":"VT","shpzip":"05101","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"126 PLEASANT ST","shpcity":"BENNINGTON","shpstate":"VT","shpzip":"05201","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"160 MAIN ST","shpcity":"BETHEL","shpstate":"VT","shpzip":"05032","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"14 N PLEASANT ST","shpcity":"BRADFORD","shpstate":"VT","shpzip":"05033","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"3 CASE ST","shpcity":"BRANDON","shpstate":"VT","shpzip":"05733","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"213 MAIN ST","shpcity":"BRATTLEBORO","shpstate":"VT","shpzip":"05301","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"78 RIDGE RD","shpcity":"BROOKFIELD","shpstate":"VT","shpzip":"05036","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"266 MAIN ST","shpcity":"BURLINGTON","shpstate":"VT","shpzip":"05401","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"58 SOUTH ST","shpcity":"CASTLETON","shpstate":"VT","shpzip":"05735","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"19 MAPLE AVE","shpcity":"CHELSEA","shpstate":"VT","shpzip":"05038","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"152 MAIN ST","shpcity":"CONCORD","shpstate":"VT","shpzip":"05824","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"63 N CRAFTSBURY RD","shpcity":"CRAFTBURY","shpstate":"VT","shpzip":"05286","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"222 US RTE 2 E","shpcity":"DANVILLE","shpstate":"VT","shpzip":"05828","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"50 MAIN ST","shpcity":"DERBY","shpstate":"VT","shpzip":"05829","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"5016 US RTE 5","shpcity":"DERBY","shpstate":"VT","shpzip":"05829","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"2826 RTE 30","shpcity":"DORSET","shpstate":"VT","shpzip":"05251","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"917 US RTE 5","shpcity":"DUMMERSTON","shpstate":"VT","shpzip":"05301","crossdock":"CONC"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"9467 RTE 36","shpcity":"EAST FAIRFIELD","shpstate":"VT","shpzip":"05448","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"200 MAIN ST","shpcity":"ENOSBURG FALLS","shpstate":"VT","shpzip":"05450","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"9 LINCOLN ST","shpcity":"ESSEX JUNCTION","shpstate":"VT","shpzip":"05452","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"4 MARBLE ST","shpcity":"FAIR HAVEN","shpstate":"VT","shpzip":"05743","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1150 MAIN ST","shpcity":"FAIRFAX","shpstate":"VT","shpzip":"05454","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"26 LAKE MOREY RD","shpcity":"FAIRLEE","shpstate":"VT","shpzip":"05045","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"3 ALLEN RD","shpcity":"GRAND ISLE","shpstate":"VT","shpzip":"05458","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"2622 THE BEND RD","shpcity":"GREENSBORO","shpstate":"VT","shpzip":"05841","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"PO BOX 244","shpcity":"GROTON","shpstate":"VT","shpzip":"05046","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"13 KELLOGG ST","shpcity":"HARDWICK","shpstate":"VT","shpzip":"05843","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"110 ALDER ST","shpcity":"ISLAND POND","shpstate":"VT","shpzip":"05846","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"3033 VT RTE 100","shpcity":"JACKSONVILLE","shpstate":"VT","shpzip":"05342","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"3698 VT RTE 30","shpcity":"JAMACIA","shpstate":"VT","shpzip":"05343","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"82 UPPER PLEASANT VALLEY RD","shpcity":"JEFFERSONVILLE","shpstate":"VT","shpzip":"05464","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"136 RAILROAD ST","shpcity":"JOHNSON","shpstate":"VT","shpzip":"05656","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"90 COMMERCIAL AVE","shpcity":"LUNENBURG","shpstate":"VT","shpzip":"05906","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"6 - 8 CENTER ST","shpcity":"LYNDONVILLE","shpstate":"VT","shpzip":"05851","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"157 SCHOOL ST","shpcity":"MANCHESTER","shpstate":"VT","shpzip":"05254","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"34 COURT ST","shpcity":"MIDDLEBURY","shpstate":"VT","shpzip":"05753","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1077 US RTE 2","shpcity":"MIDDLESEX","shpstate":"VT","shpzip":"05602","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"56 WELCH PARK DRIVE","shpcity":"MIDDLESEX","shpstate":"VT","shpzip":"05603","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"6 CHERRY ST","shpcity":"MILTON","shpstate":"VT","shpzip":"05468","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"130 CATAMOUNT PARK","shpcity":"MILTON","shpstate":"VT","shpzip":"05468","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"131 CATAMOUNT DR","shpcity":"MILTON","shpstate":"VT","shpzip":"05468","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"120 CATAMOUNT DR","shpcity":"MILTON","shpstate":"VT","shpzip":"05468","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"25 SCHOOL ST","shpcity":"MONTPELIER","shpstate":"VT","shpzip":"05602","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"103 MEAD HILL RD","shpcity":"MORGAN","shpstate":"VT","shpzip":"05853","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"252 UNION ST","shpcity":"MORRISVILLE","shpstate":"VT","shpzip":"05661","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"188 CHAPEL ST","shpcity":"NEWBURY","shpstate":"VT","shpzip":"05051","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"669 VT RTE 30","shpcity":"NEWFANE","shpstate":"VT","shpzip":"05345","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"DERBY ROAD","shpcity":"NEWPORT","shpstate":"VT","shpzip":"05855","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"32 SECOND ST","shpcity":"NEWPORT","shpstate":"VT","shpzip":"05855","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"606 E MAIN ST","shpcity":"NORTH TROY","shpstate":"VT","shpzip":"05859","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"163 TELEPHONE RD","shpcity":"ORLEANS","shpstate":"VT","shpzip":"05860","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"US HWY RTE 2","shpcity":"PITTSFIELD","shpstate":"VT","shpzip":"05762","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"3799 US RTE 7","shpcity":"PITTSFORD","shpstate":"VT","shpzip":"05763","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"280 HIGH ST","shpcity":"PLAINFIELD","shpstate":"VT","shpzip":"05667","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"166 BEAMAN ST","shpcity":"POULTNEY","shpstate":"VT","shpzip":"05764","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"242 RTE 346","shpcity":"POWNAL","shpstate":"VT","shpzip":"04069","crossdock":""},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"19 PINE ST","shpcity":"PROCTOR","shpstate":"VT","shpzip":"05765","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"9 CHRISTIAN SQUARE","shpcity":"PUTNEY","shpstate":"VT","shpzip":"03801","crossdock":""},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"67 PHEASANT TRACE","shpcity":"QUECHE","shpstate":"VT","shpzip":"05059","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"26 PLEASANT ST","shpcity":"RANDOLPH","shpstate":"VT","shpzip":"03461","crossdock":""},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"43 MILL ST","shpcity":"READING","shpstate":"VT","shpzip":"04355","crossdock":""},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"535 TUNNEL ST","shpcity":"READSBORO","shpstate":"VT","shpzip":"04357","crossdock":""},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"20 INTERVALE AVE","shpcity":"RICHFORD","shpstate":"VT","shpzip":"05261","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"46 PARK ROW","shpcity":"ROCHESTER","shpstate":"VT","shpzip":"03867","crossdock":""},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"GRANVILLE RD","shpcity":"RUPERT","shpstate":"VT","shpzip":"05767","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"25 CURTIS AVE","shpcity":"RUTLAND","shpstate":"VT","shpzip":"05768","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"PITTSFORD RD","shpcity":"RUTLAND","shpstate":"VT","shpzip":"05701","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1431 US RTE 7 N","shpcity":"RUTLAND","shpstate":"VT","shpzip":"05701","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"55 WEST ST","shpcity":"RUTLAND","shpstate":"VT","shpzip":"05701","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"25 BANK ST","shpcity":"SAINT ALBANS","shpstate":"VT","shpzip":"05478","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"1094 MAIN ST STE 2","shpcity":"ST JOHNSBURY","shpstate":"VT","shpzip":"05819","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"162 MEMORIAL DRIVE","shpcity":"ST. JOHNSBURY","shpstate":"VT","shpzip":"05819","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"166 MEMORIAL DR","shpcity":"ST. JOHNSBURY","shpstate":"VT","shpzip":"05819","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"2070 SMEAD RD","shpcity":"SALISBURY","shpstate":"VT","shpzip":"04976","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"603 FALLS RD","shpcity":"SHELBURNE","shpstate":"VT","shpzip":"04681","crossdock":""},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"800 HINESBURG RD","shpcity":"SOUTH BURLINGTON","shpstate":"VT","shpzip":"05403","crossdock":"PORT"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"131 MELENDY HILL RD","shpcity":"SOUTH LONDONDERRY","shpstate":"VT","shpzip":"05115","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"38 VT RTE 110","shpcity":"SOUTH ROYALTON","shpstate":"VT","shpzip":"04974","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"251 RTE 132","shpcity":"SOUTH STRAFFORD","shpstate":"VT","shpzip":"05068","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"74 HIGHLAND AVE","shpcity":"STOWE","shpstate":"VT","shpzip":"05672","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"435 SOUTH RD","shpcity":"SUNDERLAND","shpstate":"VT","shpzip":"05252","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"33 FIRST ST","shpcity":"SWANTON","shpstate":"VT","shpzip":"05488","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"4132 VT RTE 101","shpcity":"TROY","shpstate":"VT","shpzip":"05868","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"265 VT RTE 110","shpcity":"TUNBRIDGE","shpstate":"VT","shpzip":"05077","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"24 PARK ST","shpcity":"UNDERHILL","shpstate":"VT","shpzip":"05489","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"273 MONKTON RD","shpcity":"VERGENNED","shpstate":"VT","shpzip":"05491","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"660 RTE 100","shpcity":"WARDSBORO","shpstate":"VT","shpzip":"05355","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"3 SWASEY CT","shpcity":"WATERBURY","shpstate":"VT","shpzip":"05676","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"222 US RTE 5","shpcity":"WEST BURKE","shpstate":"VT","shpzip":"05871","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"150 BARNES ST","shpcity":"WEST RUTLAND","shpstate":"VT","shpzip":"05777","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"7 CURRIER ST","shpcity":"WHITE RIVER JCT","shpstate":"VT","shpzip":"05001","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"119 GATES ST","shpcity":"WHITE RIVER JCT","shpstate":"VT","shpzip":"05001","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"108 KLINE DRIVE","shpcity":"WHITE RIVER JCT","shpstate":"VT","shpzip":"05001","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"58 N MAIN ST","shpcity":"WHITE RIVER JCT","shpstate":"VT","shpzip":"05001","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"33 LATHROP CT","shpcity":"WILLIAMSTOWN","shpstate":"VT","shpzip":"05679","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"164 GRIMES HILL RD","shpcity":"WILLIAMSVILLE","shpstate":"VT","shpzip":"05362","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"9 PINE ST","shpcity":"WINDSOR","shpstate":"VT","shpzip":"05089","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"90 W ALLEN ST","shpcity":"WINOOSKI","shpstate":"VT","shpzip":"05404","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"9 GOLF AVE","shpcity":"WOODSTOCK","shpstate":"VT","shpzip":"05091","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"435 SOUTH RD","shpcity":"EAST ARLINGTON","shpstate":"VT","shpzip":"05252","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"270 BATES ST","shpcity":"MILLINOCKET","shpstate":"ME","shpzip":"04462","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"172 AUBURN ST.","shpcity":"NORTH DEERING","shpstate":"ME","shpzip":"04105","crossdock":"PORT"}]}
-----------------------
In version 5.65 it errors out... When debuggun the deserialize code loobject contains..
missing most of the json object
ST","shpcity":"WINOOSKI","shpstate":"VT","shpzip":"05404","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"9 GOLF AVE","shpcity":"WOODSTOCK","shpstate":"VT","shpzip":"05091","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"435 SOUTH RD","shpcity":"EAST ARLINGTON","shpstate":"VT","shpzip":"05252","crossdock":"MIDD"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"270 BATES ST","shpcity":"MILLINOCKET","shpstate":"ME","shpzip":"04462","crossdock":"BANG"},{"cusno":"5947","btoname":"FAIRPOINT COMMUNICATIONS","btoadd1":"45 FOREST AVE.","btocity":"PORTLAND","btostate":"ME","btozip":"04101","shpname":"FAIRPOINT COMMUNICATIONS","shpadd1":"172 AUBURN ST.","shpcity":"NORTH DEERING","shpstate":"ME","shpzip":"04105","crossdock":"PORT"}]}
I reverted back to version 5.63... works perfect again